diff --git a/CHANGELOG.md b/CHANGELOG.md index afb48ecc..0f75d060 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,55 @@ # CHANGELOG +## v5.1.0 + +### API Versions + +| API Name | API Version | +|----------|-------------| +| shopper-login | 1.46.0 | +| shopper-baskets | 1.11.0 | +| shopper-baskets | 2.5.1 | +| shopper-configurations | 1.2.0 | +| shopper-consents | 1.1.4 | +| shopper-context | 1.1.3 | +| shopper-customers | 1.6.1 | +| shopper-experience | 1.2.1 | +| shopper-gift-certificates | 1.2.0 | +| shopper-orders | 1.12.1 | +| shopper-payments | 1.4.0 | +| shopper-products | 1.3.0 | +| shopper-promotions | 1.2.0 | +| shopper-search | 1.8.0 | +| shopper-seo | 1.0.17 | +| shopper-stores | 1.2.0 | + +### Enchancements + +- Allow developers to pass in custom fetch implementation via `clientConfig` [#272](https://github.com/SalesforceCommerceCloud/commerce-sdk-isomorphic/pull/272) + +## v5.0.0 + +### API Versions + +| API Name | API Version | +|----------|-------------| +| shopper-baskets | 1.9.4 | +| shopper-baskets | 2.3.3 | +| shopper-configurations | 1.0.2 | +| shopper-consents | 1.1.4 | +| shopper-context | 1.1.3 | +| shopper-customers | 1.3.2 | +| shopper-experience | 1.1.2 | +| shopper-gift-certificates | 1.0.29 | +| shopper-login | 1.42.2 | +| shopper-orders | 1.10.0 | +| shopper-payments | 1.2.3 | +| shopper-products | 1.1.3 | +| shopper-promotions | 1.0.39 | +| shopper-search | 1.5.4 | +| shopper-seo | 1.0.17 | +| shopper-stores | 1.0.19 | + ## v4.2.0 ### API Versions diff --git a/README.md b/README.md index f23a2313..945f2be8 100644 --- a/README.md +++ b/README.md @@ -223,6 +223,45 @@ await helpers.callCustomEndpoint({ For more documentation about this helper function, please refer to the [commerce-sdk-isomorphic docs](https://salesforcecommercecloud.github.io/commerce-sdk-isomorphic/modules/helpers.html). +#### Custom Fetch function + +You can provide your own custom fetch function to intercept, log, or modify all SDK requests. This is useful for: +- **Request/Response Logging**: Track all API calls for debugging and monitoring +- **Request Interception**: Add custom headers, modify request URLs, or implement custom retry logic +- **Error Handling**: Add custom error processing or transformation before responses reach your application +- **Performance Monitoring**: Measure request/response times and track API performance metrics + +**Example with Logging:** +```javascript +// Custom fetch function with detailed logging +const customFetch = async (url, options) => { + console.log(`[SDK Request] ${options?.method || 'GET'} ${url}`); + console.log('[SDK Request Headers]', options?.headers); + if (options?.body) { + console.log('[SDK Request Body]', options.body); + } + + const startTime = Date.now(); + const response = await fetch(url, options); + const duration = Date.now() - startTime; + + console.log(`[SDK Response] ${response.status} ${response.statusText} (${duration}ms)`); + console.log('[SDK Response Headers]', Object.fromEntries(response.headers.entries())); + + return response; +}; + +const config = { + parameters: { + clientId: '', + organizationId: '', + shortCode: '', + siteId: '', + }, + fetch: customFetch, +}; +``` + #### Encoding special characters The SDK currently single encodes special characters for query parameters in UTF-8 format based on SCAPI guidelines. However, the SDK does NOT encode path parameters, and will require the developer to encode any path parameters with special characters. diff --git a/api-versions.txt b/api-versions.txt index ac3a9e0e..22821f62 100644 --- a/api-versions.txt +++ b/api-versions.txt @@ -1,14 +1,18 @@ -shopper-baskets-oas-v1=1.9.1 -shopper-baskets-oas-v2=2.1.1 +# APIs for ECOM v26.3 +# Formally Shopper Login +auth-oas-v1=1.46.0 +shopper-baskets-oas-v1=1.11.0 +shopper-baskets-oas-v2=2.5.1 +shopper-configurations-oas-v1=1.2.0 shopper-consents-oas-v1=1.1.4 shopper-context-oas-v1=1.1.3 -shopper-customers-oas-v1=1.2.1 -shopper-experience-oas-v1=1.1.2 -shopper-gift-certificates-oas-v1=1.0.29 -shopper-login-oas-v1=1.42.2 -shopper-orders-oas-v1=1.6.0 -shopper-products-oas-v1=1.1.2 -shopper-promotions-oas-v1=1.0.39 -shopper-search-oas-v1=1.5.4 -shopper-seo-oas-v1=1.0.16 -shopper-stores-oas-v1=1.0.19 +shopper-customers-oas-v1=1.6.1 +shopper-experience-oas-v1=1.2.1 +shopper-gift-certificates-oas-v1=1.2.0 +shopper-orders-oas-v1=1.12.1 +shopper-payments-oas-v1=1.4.0 +shopper-products-oas-v1=1.3.0 +shopper-promotions-oas-v1=1.2.0 +shopper-search-oas-v1=1.8.0 +shopper-seo-oas-v1=1.0.17 +shopper-stores-oas-v1=1.2.0 diff --git a/apis/shopper-login-oas-1.40.0/shopper-login-oas-v1-public.yaml b/apis/auth-oas-1.46.0/auth-oas-v1-public.yaml similarity index 72% rename from apis/shopper-login-oas-1.40.0/shopper-login-oas-v1-public.yaml rename to apis/auth-oas-1.46.0/auth-oas-v1-public.yaml index 69b14958..09226210 100644 --- a/apis/shopper-login-oas-1.40.0/shopper-login-oas-v1-public.yaml +++ b/apis/auth-oas-1.46.0/auth-oas-v1-public.yaml @@ -2,10 +2,10 @@ openapi: 3.0.3 info: x-api-type: Shopper x-api-family: Shopper - title: Shopper Login - version: 1.40.0 + title: Auth + version: 1.46.0 description: |- - [Download API specification](https://developer.salesforce.com/static/commercecloud/commerce-api/shopper-login/shopper-login-oas-v1-public.yaml) + [Download API specification](https://developer.salesforce.com/static/commercecloud/commerce-api/auth/auth-oas-v1-public.yaml) # API Overview @@ -205,6 +205,7 @@ paths: operationId: authorizePasswordlessCustomer parameters: - $ref: '#/components/parameters/organizationId' + - $ref: '#/components/parameters/register_customer' - name: Authorization in: header description: 'Base64-encoded string for HTTP Basic authentication. The string is composed of a client ID and client secret, separated by a colon (`:`), for example: `clientId:clientSecret`' @@ -741,7 +742,7 @@ paths: - $ref: '#/components/parameters/organizationId' - name: Authorization in: header - description: "Base64-encoded string for HTTP Basic authentication. The string is composed of a client ID and client secret, separated by a colon (`:`), for example: `clientId:clientSecret`. \nRequired unless the grant type is `authorization_code_pkce`." + description: "Base64-encoded string for HTTP Basic authentication. The string is composed of a client ID and client secret, separated by a colon (`:`), for example: `clientId:clientSecret`. \nNot required if the grant type is `authorization_code_pkce` or `refresh_token`." required: false schema: type: string @@ -891,7 +892,7 @@ paths: type: string /organizations/{organizationId}/oauth2/session-bridge/token: post: - summary: Get a shopper JWT access token for a registered customer using session bridging. + summary: Get a shopper JWT access token for a customer using session bridging. description: |- For public client ID requests, you must set the grant_type to `session_bridge`. @@ -1064,7 +1065,7 @@ paths: - $ref: '#/components/parameters/organizationId' - name: Authorization in: header - description: "Base64-encoded string for HTTP Basic authentication. The string is composed of a client ID and client secret, separated by a colon (`:`), for example: `clientId:clientSecret`. \nRequired unless the grant type is `authorization_code_pkce`." + description: "Base64-encoded string for HTTP Basic authentication. The string is composed of a client ID and client secret, separated by a colon (`:`), for example: `clientId:clientSecret`. \nNot required if the grant type is `authorization_code_pkce` or `refresh_token`." required: false schema: type: string @@ -2232,7 +2233,906 @@ paths: examples: InternalServerError500: $ref: '#/components/examples/InternalServerError500' + /organizations/{organizationId}/oauth2/webauthn/register/authorize: + post: + summary: Authorize user for WebAuthn registration + description: "Authorizes a user to register a WebAuthn credential (passkey). This endpoint validates the user's \ncredentials and creates a password action token that can be used to start the registration process.\nThe token is sent to the user via the specified channel (email or SMS).\n\nThe SLAS client must have the `sfcc.pwdless_login` scope to access this endpoint." + operationId: authorizeWebauthnRegistration + parameters: + - $ref: '#/components/parameters/organizationId' + - name: Authorization + in: header + description: 'Base64-encoded string for HTTP Basic authentication. The string is composed of a client ID and client secret, separated by a colon (`:`). For example: `clientId:clientSecret`.' + required: false + schema: + type: string + example: Basic czZCaGRSa3F0MzpnWDFmQmF0M2JW + requestBody: + content: + application/x-www-form-urlencoded: + schema: + $ref: '#/components/schemas/PasswordActionRequest' + required: true + responses: + '204': + description: User successfully authorized for WebAuthn registration. TOTP sent to user. + '400': + description: Bad request + content: + application/problem+json: + schema: + $ref: '#/components/schemas/Oauth2ErrorResponse' + examples: + BadOrMissingClientId400: + $ref: '#/components/examples/BadOrMissingClientId400' + '401': + description: Unauthorized + content: + application/problem+json: + schema: + $ref: '#/components/schemas/Oauth2ErrorResponse' + examples: + Unauthorized401: + $ref: '#/components/examples/InvalidClient401' + /organizations/{organizationId}/oauth2/webauthn/register/start: + post: + summary: Start WebAuthn registration + description: | + Starts the WebAuthn registration process by generating credential creation options. + Returns the challenge and other parameters needed by the authenticator to create a new credential. + + The SLAS client must have the `sfcc.pwdless_login` scope to access this endpoint. + operationId: startWebauthnUserRegistration + parameters: + - $ref: '#/components/parameters/organizationId' + - name: Authorization + in: header + description: 'Base64-encoded string for HTTP Basic authentication. The string is composed of a client ID and client secret, separated by a colon (`:`). For example: `clientId:clientSecret`.' + required: false + schema: + type: string + example: Basic czZCaGRSa3F0MzpnWDFmQmF0M2JW + requestBody: + required: true + content: + application/x-www-form-urlencoded: + schema: + $ref: '#/components/schemas/RegistrationStartRequest' + examples: + registrationStartRequest: + value: + client_id: 12345678-1234-1234-1234-123456789012 + pwd_action_token: '12345678' + user_id: user@example.com + channel_id: RefArch + display_name: John Doe + nick_name: My iPhone + responses: + '200': + description: Registration options successfully generated. + content: + application/json: + schema: + type: object + examples: + startWebauthnUserRegistrationSuccess: + $ref: '#/components/examples/startWebauthnUserRegistrationSuccess' + '400': + description: Bad request + content: + application/problem+json: + schema: + $ref: '#/components/schemas/Oauth2ErrorResponse' + examples: + BadOrMissingClientId400: + $ref: '#/components/examples/BadOrMissingClientId400' + '401': + description: Unauthorized + content: + application/problem+json: + schema: + $ref: '#/components/schemas/Oauth2ErrorResponse' + examples: + Unauthorized401: + $ref: '#/components/examples/InvalidClient401' + /organizations/{organizationId}/oauth2/webauthn/register/finish: + post: + summary: Finish WebAuthn registration + description: | + Completes the WebAuthn registration process by verifying the credential created by the authenticator. + Stores the public key and credential information for future authentication. + + The SLAS client must have the `sfcc.pwdless_login` scope to access this endpoint. + operationId: finishWebauthnUserRegistration + parameters: + - $ref: '#/components/parameters/organizationId' + - name: Authorization + in: header + description: 'Base64-encoded string for HTTP Basic authentication. The string is composed of a client ID and client secret, separated by a colon (`:`). For example: `clientId:clientSecret`.' + required: false + schema: + type: string + example: Basic czZCaGRSa3F0MzpnWDFmQmF0M2JW + requestBody: + required: true + content: + application/json: + schema: + $ref: '#/components/schemas/RegistrationFinishRequest' + responses: + '204': + description: Registration successfully completed + '400': + description: Bad request + content: + application/problem+json: + schema: + $ref: '#/components/schemas/Oauth2ErrorResponse' + examples: + BadOrMissingClientId400: + $ref: '#/components/examples/BadOrMissingClientId400' + '401': + description: Unauthorized + content: + application/problem+json: + schema: + $ref: '#/components/schemas/Oauth2ErrorResponse' + examples: + Unauthorized401: + $ref: '#/components/examples/InvalidClient401' + /organizations/{organizationId}/oauth2/webauthn/authenticate/start: + post: + summary: Start WebAuthn authentication + description: | + Starts the WebAuthn authentication process by generating credential request options. + Returns the challenge and allowed credentials for the user to authenticate with. + + The SLAS client must have the `sfcc.pwdless_login` scope to access this endpoint. + operationId: startWebauthnAuthentication + parameters: + - $ref: '#/components/parameters/organizationId' + - name: Authorization + in: header + description: 'Base64-encoded string for HTTP Basic authentication. The string is composed of a client ID and client secret, separated by a colon (`:`). For example: `clientId:clientSecret`.' + required: false + schema: + type: string + example: Basic czZCaGRSa3F0MzpnWDFmQmF0M2JW + requestBody: + required: true + content: + application/x-www-form-urlencoded: + schema: + $ref: '#/components/schemas/AuthenticateRequest' + examples: + authenticateRequest: + value: + tenant_id: zzte_053 + client_id: 12345678-1234-1234-1234-123456789012 + channel_id: RefArch + user_id: user@example.com + responses: + '200': + description: Authentication options successfully generated + content: + application/json: + schema: + $ref: '#/components/schemas/PublicKeyCredentialRequestOptions' + examples: + webauthnAuthenticationStartSuccess: + $ref: '#/components/examples/webauthnAuthenticationStartSuccess' + '400': + description: Bad request + content: + application/problem+json: + schema: + $ref: '#/components/schemas/Oauth2ErrorResponse' + examples: + BadOrMissingClientId400: + $ref: '#/components/examples/BadOrMissingClientId400' + '401': + description: Unauthorized + content: + application/problem+json: + schema: + $ref: '#/components/schemas/Oauth2ErrorResponse' + examples: + Unauthorized401: + $ref: '#/components/examples/InvalidClient401' + '404': + description: Not Found + content: + application/problem+json: + schema: + $ref: '#/components/schemas/Oauth2ErrorResponse' + examples: + UserNotFound404: + $ref: '#/components/examples/UserNotFound404' + /organizations/{organizationId}/oauth2/webauthn/authenticate/finish: + post: + summary: Finish WebAuthn authentication + description: | + Completes the WebAuthn authentication process by verifying the assertion from the authenticator. + Returns OAuth tokens upon successful authentication. + + The SLAS client must have the `sfcc.pwdless_login` scope to access this endpoint. + operationId: finishWebauthnAuthentication + parameters: + - $ref: '#/components/parameters/organizationId' + - name: Authorization + in: header + description: 'Base64-encoded string for HTTP Basic authentication. The string is composed of a client ID and client secret, separated by a colon (`:`). For example: `clientId:clientSecret`.' + required: false + schema: + type: string + example: Basic czZCaGRSa3F0MzpnWDFmQmF0M2JW + requestBody: + required: true + content: + application/json: + schema: + $ref: '#/components/schemas/AuthenticateFinishRequest' + responses: + '200': + description: Authentication successful + content: + application/json: + schema: + $ref: '#/components/schemas/AuthenticateResult' + examples: + webauthnAuthenticationFinishSuccess: + $ref: '#/components/examples/webauthnAuthenticationFinishSuccess' + '400': + description: Bad request + content: + application/problem+json: + schema: + $ref: '#/components/schemas/Oauth2ErrorResponse' + examples: + BadOrMissingClientId400: + $ref: '#/components/examples/BadOrMissingClientId400' + '401': + description: Unauthorized + content: + application/problem+json: + schema: + $ref: '#/components/schemas/Oauth2ErrorResponse' + examples: + Unauthorized401: + $ref: '#/components/examples/InvalidClient401' + /organizations/{organizationId}/oauth2/webauthn/passkey/user/{loginId}: + get: + summary: Retrieve passkey user information and credentials by login ID + description: "This endpoint retrieves a user's WebAuthn passkey information including all associated credentials. \nIt returns the user's profile information along with a list of all registered passkey credentials.\n\nThe SLAS client must have the `sfcc.pwdless_login` scope to access this endpoint.\n\nThis endpoint requires Shopper JWT authentication. " + operationId: getPasskeyUserByLoginId + parameters: + - $ref: '#/components/parameters/organizationId' + - $ref: '#/components/parameters/channel_id' + - name: loginId + in: path + description: The login ID (username) of the user whose passkey information is being retrieved + required: true + schema: + type: string + minLength: 1 + maxLength: 256 + example: user@example.com + - name: Authorization + in: header + description: Shopper JWT access token + required: true + schema: + type: string + minLength: 1 + maxLength: 4096 + example: Bearer eyJ2ZXIiOiIxLjAiLCJraWQiOiI0ZTQyNTFkOS0zM2Y2LTRjMTMtYjZmZC1mOWJkNTJmYTZhNDciLCJ0eXAiOiJqd3QiLCJjbHYiOiJKMi4xLjAiLCJhbGciOiJFUzI1NiJ9... + responses: + '200': + description: The passkey user information and credentials were retrieved successfully. + content: + application/json: + schema: + $ref: '#/components/schemas/PasskeyUser' + examples: + getPasskeyUserByLoginIdSuccess: + $ref: '#/components/examples/getPasskeyUserByLoginIdSuccess' + headers: + X-RateLimit-1M-Limit: + description: The 1 minute maximum number of requests permitted per hour. + schema: + type: string + X-RateLimit-1M-Remaining: + description: The 1 minute number of requests remaining in the current rate limit window. + schema: + type: string + X-RateLimit-1M-Reset: + description: The 1 minute time at which the current rate limit window resets in UTC epoch seconds. + schema: + type: string + X-RateLimit-5M-Limit: + description: The 5 minute maximum number of requests permitted per hour. + schema: + type: string + X-RateLimit-5M-Remaining: + description: The 5 minute number of requests remaining in the current rate limit window. + schema: + type: string + X-RateLimit-5M-Reset: + description: The 5 minute time at which the current rate limit window resets in UTC epoch seconds. + schema: + type: string + '400': + description: Bad request + content: + application/problem+json: + schema: + $ref: '#/components/schemas/Oauth2ErrorResponse' + examples: + BadOrMissingLoginId400: + value: + error: invalid_request + error_description: The login ID is missing or invalid. + headers: + X-RateLimit-1M-Limit: + description: The 1 minute maximum number of requests permitted per hour. + schema: + type: string + X-RateLimit-1M-Remaining: + description: The 1 minute number of requests remaining in the current rate limit window. + schema: + type: string + X-RateLimit-1M-Reset: + description: The 1 minute time at which the current rate limit window resets in UTC epoch seconds. + schema: + type: string + X-RateLimit-5M-Limit: + description: The 5 minute maximum number of requests permitted per hour. + schema: + type: string + X-RateLimit-5M-Remaining: + description: The 5 minute number of requests remaining in the current rate limit window. + schema: + type: string + X-RateLimit-5M-Reset: + description: The 5 minute time at which the current rate limit window resets in UTC epoch seconds. + schema: + type: string + '401': + description: Unauthorized + content: + application/problem+json: + schema: + $ref: '#/components/schemas/Oauth2ErrorResponse' + examples: + Unauthorized401: + $ref: '#/components/examples/InvalidClient401' + headers: + X-RateLimit-1M-Limit: + description: The 1 minute maximum number of requests permitted per hour. + schema: + type: string + X-RateLimit-1M-Remaining: + description: The 1 minute number of requests remaining in the current rate limit window. + schema: + type: string + X-RateLimit-1M-Reset: + description: The 1 minute time at which the current rate limit window resets in UTC epoch seconds. + schema: + type: string + X-RateLimit-5M-Limit: + description: The 5 minute maximum number of requests permitted per hour. + schema: + type: string + X-RateLimit-5M-Remaining: + description: The 5 minute number of requests remaining in the current rate limit window. + schema: + type: string + X-RateLimit-5M-Reset: + description: The 5 minute time at which the current rate limit window resets in UTC epoch seconds. + schema: + type: string + '403': + description: Forbidden - token validation failed + content: + application/problem+json: + schema: + $ref: '#/components/schemas/Oauth2ErrorResponse' + examples: + TokenMismatch403: + value: + error: forbidden + error_description: The loginId, organizationId, or channel_id in the token does not match the request parameters. + headers: + X-RateLimit-1M-Limit: + description: The 1 minute maximum number of requests permitted per hour. + schema: + type: string + X-RateLimit-1M-Remaining: + description: The 1 minute number of requests remaining in the current rate limit window. + schema: + type: string + X-RateLimit-1M-Reset: + description: The 1 minute time at which the current rate limit window resets in UTC epoch seconds. + schema: + type: string + X-RateLimit-5M-Limit: + description: The 5 minute maximum number of requests permitted per hour. + schema: + type: string + X-RateLimit-5M-Remaining: + description: The 5 minute number of requests remaining in the current rate limit window. + schema: + type: string + X-RateLimit-5M-Reset: + description: The 5 minute time at which the current rate limit window resets in UTC epoch seconds. + schema: + type: string + '404': + description: Not found + content: + application/problem+json: + schema: + $ref: '#/components/schemas/Oauth2ErrorResponse' + examples: + PasskeyUserNotFound404: + value: + error: not_found + error_description: No passkey user found with the provided login ID. + headers: + X-RateLimit-1M-Limit: + description: The 1 minute maximum number of requests permitted per hour. + schema: + type: string + X-RateLimit-1M-Remaining: + description: The 1 minute number of requests remaining in the current rate limit window. + schema: + type: string + X-RateLimit-1M-Reset: + description: The 1 minute time at which the current rate limit window resets in UTC epoch seconds. + schema: + type: string + X-RateLimit-5M-Limit: + description: The 5 minute maximum number of requests permitted per hour. + schema: + type: string + X-RateLimit-5M-Remaining: + description: The 5 minute number of requests remaining in the current rate limit window. + schema: + type: string + X-RateLimit-5M-Reset: + description: The 5 minute time at which the current rate limit window resets in UTC epoch seconds. + schema: + type: string + security: + - ShopperToken: + - sfcc.pwdless_login + delete: + summary: Delete passkey user and all associated credentials + description: "This endpoint deletes a user's WebAuthn passkey information and all associated credentials.\nThe endpoint validates the Shopper JWT signature and ensures that the loginId, organizationId, \nand channel_id in the token match the values in the path and query parameters.\n\nThe SLAS client must have the `sfcc.pwdless_login` scope to access this endpoint.\n\nThis endpoint requires Shopper JWT authentication. " + operationId: deletePasskeyUser + parameters: + - $ref: '#/components/parameters/organizationId' + - $ref: '#/components/parameters/channel_id' + - name: loginId + in: path + description: The login ID (username) of the user whose passkey information is being deleted + required: true + schema: + type: string + minLength: 1 + maxLength: 256 + example: user@example.com + - name: Authorization + in: header + description: Shopper JWT access token + required: true + schema: + type: string + minLength: 1 + maxLength: 4096 + example: Bearer eyJ2ZXIiOiIxLjAiLCJraWQiOiI0ZTQyNTFkOS0zM2Y2LTRjMTMtYjZmZC1mOWJkNTJmYTZhNDciLCJ0eXAiOiJqd3QiLCJjbHYiOiJKMi4xLjAiLCJhbGciOiJFUzI1NiJ5... + responses: + '204': + description: The passkey user and all credentials were deleted successfully. + headers: + X-RateLimit-1M-Limit: + description: The 1 minute maximum number of requests permitted per hour. + schema: + type: string + X-RateLimit-1M-Remaining: + description: The 1 minute number of requests remaining in the current rate limit window. + schema: + type: string + X-RateLimit-1M-Reset: + description: The 1 minute time at which the current rate limit window resets in UTC epoch seconds. + schema: + type: string + X-RateLimit-5M-Limit: + description: The 5 minute maximum number of requests permitted per hour. + schema: + type: string + X-RateLimit-5M-Remaining: + description: The 5 minute number of requests remaining in the current rate limit window. + schema: + type: string + X-RateLimit-5M-Reset: + description: The 5 minute time at which the current rate limit window resets in UTC epoch seconds. + schema: + type: string + '400': + description: Bad request + content: + application/problem+json: + schema: + $ref: '#/components/schemas/Oauth2ErrorResponse' + examples: + BadOrMissingLoginId400: + value: + error: invalid_request + error_description: The login ID is missing or invalid. + headers: + X-RateLimit-1M-Limit: + description: The 1 minute maximum number of requests permitted per hour. + schema: + type: string + X-RateLimit-1M-Remaining: + description: The 1 minute number of requests remaining in the current rate limit window. + schema: + type: string + X-RateLimit-1M-Reset: + description: The 1 minute time at which the current rate limit window resets in UTC epoch seconds. + schema: + type: string + X-RateLimit-5M-Limit: + description: The 5 minute maximum number of requests permitted per hour. + schema: + type: string + X-RateLimit-5M-Remaining: + description: The 5 minute number of requests remaining in the current rate limit window. + schema: + type: string + X-RateLimit-5M-Reset: + description: The 5 minute time at which the current rate limit window resets in UTC epoch seconds. + schema: + type: string + '401': + description: Unauthorized + content: + application/problem+json: + schema: + $ref: '#/components/schemas/Oauth2ErrorResponse' + examples: + Unauthorized401: + $ref: '#/components/examples/InvalidClient401' + headers: + X-RateLimit-1M-Limit: + description: The 1 minute maximum number of requests permitted per hour. + schema: + type: string + X-RateLimit-1M-Remaining: + description: The 1 minute number of requests remaining in the current rate limit window. + schema: + type: string + X-RateLimit-1M-Reset: + description: The 1 minute time at which the current rate limit window resets in UTC epoch seconds. + schema: + type: string + X-RateLimit-5M-Limit: + description: The 5 minute maximum number of requests permitted per hour. + schema: + type: string + X-RateLimit-5M-Remaining: + description: The 5 minute number of requests remaining in the current rate limit window. + schema: + type: string + X-RateLimit-5M-Reset: + description: The 5 minute time at which the current rate limit window resets in UTC epoch seconds. + schema: + type: string + '403': + description: Forbidden - token validation failed + content: + application/problem+json: + schema: + $ref: '#/components/schemas/Oauth2ErrorResponse' + examples: + TokenMismatch403: + value: + error: forbidden + error_description: The loginId, organizationId, or channel_id in the token does not match the request parameters. + headers: + X-RateLimit-1M-Limit: + description: The 1 minute maximum number of requests permitted per hour. + schema: + type: string + X-RateLimit-1M-Remaining: + description: The 1 minute number of requests remaining in the current rate limit window. + schema: + type: string + X-RateLimit-1M-Reset: + description: The 1 minute time at which the current rate limit window resets in UTC epoch seconds. + schema: + type: string + X-RateLimit-5M-Limit: + description: The 5 minute maximum number of requests permitted per hour. + schema: + type: string + X-RateLimit-5M-Remaining: + description: The 5 minute number of requests remaining in the current rate limit window. + schema: + type: string + X-RateLimit-5M-Reset: + description: The 5 minute time at which the current rate limit window resets in UTC epoch seconds. + schema: + type: string + '404': + description: Not found + content: + application/problem+json: + schema: + $ref: '#/components/schemas/Oauth2ErrorResponse' + examples: + PasskeyUserNotFound404: + value: + error: not_found + error_description: No passkey user found with the provided login ID. + headers: + X-RateLimit-1M-Limit: + description: The 1 minute maximum number of requests permitted per hour. + schema: + type: string + X-RateLimit-1M-Remaining: + description: The 1 minute number of requests remaining in the current rate limit window. + schema: + type: string + X-RateLimit-1M-Reset: + description: The 1 minute time at which the current rate limit window resets in UTC epoch seconds. + schema: + type: string + X-RateLimit-5M-Limit: + description: The 5 minute maximum number of requests permitted per hour. + schema: + type: string + X-RateLimit-5M-Remaining: + description: The 5 minute number of requests remaining in the current rate limit window. + schema: + type: string + X-RateLimit-5M-Reset: + description: The 5 minute time at which the current rate limit window resets in UTC epoch seconds. + schema: + type: string + security: + - ShopperToken: + - sfcc.pwdless_login + /organizations/{organizationId}/oauth2/webauthn/passkey/user/{loginId}/credentials/{credentialId}: + delete: + summary: Delete a specific passkey credential + description: "This endpoint deletes a specific WebAuthn passkey credential for a user.\nThe endpoint validates the Shopper JWT signature and ensures that the loginId, organizationId, \nand channel_id in the token match the values in the path and query parameters.\n\nThe SLAS client must have the `sfcc.pwdless_login` scope to access this endpoint.\n\nThis endpoint requires Shopper JWT authentication. " + operationId: deletePasskeyCredential + parameters: + - $ref: '#/components/parameters/organizationId' + - $ref: '#/components/parameters/channel_id' + - name: loginId + in: path + description: The login ID (username) of the user whose passkey credential is being deleted + required: true + schema: + type: string + minLength: 1 + maxLength: 256 + example: user@example.com + - name: credentialId + in: path + description: The unique identifier of the credential to delete + required: true + schema: + type: string + minLength: 1 + maxLength: 1024 + example: Y3JlZGVudGlhbElkMTIz + - name: Authorization + in: header + description: Shopper JWT access token + required: true + schema: + type: string + minLength: 1 + maxLength: 4096 + example: Bearer eyJ2ZXIiOiIxLjAiLCJraWQiOiI0ZTQyNTFkOS0zM2Y2LTRjMTMtYjZmZC1mOWJkNTJmYTZhNDciLCJ0eXAiOiJqd3QiLCJjbHYiOiJKMi4xLjAiLCJhbGciOiJFUzI1NiJ5... + responses: + '204': + description: The passkey credential was deleted successfully. + headers: + X-RateLimit-1M-Limit: + description: The 1 minute maximum number of requests permitted per hour. + schema: + type: string + X-RateLimit-1M-Remaining: + description: The 1 minute number of requests remaining in the current rate limit window. + schema: + type: string + X-RateLimit-1M-Reset: + description: The 1 minute time at which the current rate limit window resets in UTC epoch seconds. + schema: + type: string + X-RateLimit-5M-Limit: + description: The 5 minute maximum number of requests permitted per hour. + schema: + type: string + X-RateLimit-5M-Remaining: + description: The 5 minute number of requests remaining in the current rate limit window. + schema: + type: string + X-RateLimit-5M-Reset: + description: The 5 minute time at which the current rate limit window resets in UTC epoch seconds. + schema: + type: string + '400': + description: Bad request + content: + application/problem+json: + schema: + $ref: '#/components/schemas/Oauth2ErrorResponse' + examples: + BadOrMissingParameter400: + value: + error: invalid_request + error_description: The login ID or credential ID is missing or invalid. + headers: + X-RateLimit-1M-Limit: + description: The 1 minute maximum number of requests permitted per hour. + schema: + type: string + X-RateLimit-1M-Remaining: + description: The 1 minute number of requests remaining in the current rate limit window. + schema: + type: string + X-RateLimit-1M-Reset: + description: The 1 minute time at which the current rate limit window resets in UTC epoch seconds. + schema: + type: string + X-RateLimit-5M-Limit: + description: The 5 minute maximum number of requests permitted per hour. + schema: + type: string + X-RateLimit-5M-Remaining: + description: The 5 minute number of requests remaining in the current rate limit window. + schema: + type: string + X-RateLimit-5M-Reset: + description: The 5 minute time at which the current rate limit window resets in UTC epoch seconds. + schema: + type: string + '401': + description: Unauthorized + content: + application/problem+json: + schema: + $ref: '#/components/schemas/Oauth2ErrorResponse' + examples: + Unauthorized401: + $ref: '#/components/examples/InvalidClient401' + headers: + X-RateLimit-1M-Limit: + description: The 1 minute maximum number of requests permitted per hour. + schema: + type: string + X-RateLimit-1M-Remaining: + description: The 1 minute number of requests remaining in the current rate limit window. + schema: + type: string + X-RateLimit-1M-Reset: + description: The 1 minute time at which the current rate limit window resets in UTC epoch seconds. + schema: + type: string + X-RateLimit-5M-Limit: + description: The 5 minute maximum number of requests permitted per hour. + schema: + type: string + X-RateLimit-5M-Remaining: + description: The 5 minute number of requests remaining in the current rate limit window. + schema: + type: string + X-RateLimit-5M-Reset: + description: The 5 minute time at which the current rate limit window resets in UTC epoch seconds. + schema: + type: string + '403': + description: Forbidden - token validation failed + content: + application/problem+json: + schema: + $ref: '#/components/schemas/Oauth2ErrorResponse' + examples: + TokenMismatch403: + value: + error: forbidden + error_description: The loginId, organizationId, or channel_id in the token does not match the request parameters. + headers: + X-RateLimit-1M-Limit: + description: The 1 minute maximum number of requests permitted per hour. + schema: + type: string + X-RateLimit-1M-Remaining: + description: The 1 minute number of requests remaining in the current rate limit window. + schema: + type: string + X-RateLimit-1M-Reset: + description: The 1 minute time at which the current rate limit window resets in UTC epoch seconds. + schema: + type: string + X-RateLimit-5M-Limit: + description: The 5 minute maximum number of requests permitted per hour. + schema: + type: string + X-RateLimit-5M-Remaining: + description: The 5 minute number of requests remaining in the current rate limit window. + schema: + type: string + X-RateLimit-5M-Reset: + description: The 5 minute time at which the current rate limit window resets in UTC epoch seconds. + schema: + type: string + '404': + description: Not found + content: + application/problem+json: + schema: + $ref: '#/components/schemas/Oauth2ErrorResponse' + examples: + PasskeyCredentialNotFound404: + value: + error: not_found + error_description: No passkey credential found with the provided credential ID. + headers: + X-RateLimit-1M-Limit: + description: The 1 minute maximum number of requests permitted per hour. + schema: + type: string + X-RateLimit-1M-Remaining: + description: The 1 minute number of requests remaining in the current rate limit window. + schema: + type: string + X-RateLimit-1M-Reset: + description: The 1 minute time at which the current rate limit window resets in UTC epoch seconds. + schema: + type: string + X-RateLimit-5M-Limit: + description: The 5 minute maximum number of requests permitted per hour. + schema: + type: string + X-RateLimit-5M-Remaining: + description: The 5 minute number of requests remaining in the current rate limit window. + schema: + type: string + X-RateLimit-5M-Reset: + description: The 5 minute time at which the current rate limit window resets in UTC epoch seconds. + schema: + type: string + security: + - ShopperToken: + - sfcc.pwdless_login components: + securitySchemes: + ShopperToken: + type: oauth2 + description: "ShopperToken authentication follows the authorization code grant flow, as defined by the OAuth 2.1 standard. Depending on the type of OAuth client (public or private), this authorization flow has further requirements. \nFor a detailed description of the authorization flow, see the [SLAS overview](https://developer.salesforce.com/docs/commerce/commerce-api/references?meta=shopper-login:Summary).\nA shopper token allows you to access the Shopper API endpoints of both OCAPI and the B2C Commerce API. These endpoints can be used to build headless storefronts and other applications.\nThe `ShopperToken` security scheme is a parent of other security schemes, such as `ShopperTokenTsob`. A Shopper API endpoint can require a specific child scheme (`ShopperTokenTsob`, for example) that cannot be accessed with a regular shopper token.\n" + flows: + clientCredentials: + tokenUrl: https://{shortCode}.api.commercecloud.salesforce.com/shopper/auth/v1/organizations/{organizationId}/oauth2/token + scopes: + sfcc.pwdless_login: Passwordless Login scope + sfcc.session_bridge: Session Bridge scope + sfcc.ta_ext_on_behalf_of: Trusted Agent External On Behalf Of scope + sfcc.ts_ext_on_behalf_of: Trusted System External On Behalf Of scope + authorizationCode: + authorizationUrl: https://{short-code}.api.commercecloud.salesforce.com/shopper/auth/v1/organizations/{organizationId}/oauth2/authorize + tokenUrl: https://{short-code}.api.commercecloud.salesforce.com/shopper/auth/v1/organizations/{organizationId}/oauth2/token + scopes: + sfcc.pwdless_login: Passwordless Login scope + sfcc.session_bridge: Session Bridge scope + sfcc.ta_ext_on_behalf_of: Trusted Agent External On Behalf Of scope + sfcc.ts_ext_on_behalf_of: Trusted System External On Behalf Of scope schemas: OrganizationId: description: An identifier for the organization the request is being made by @@ -2341,9 +3241,10 @@ components: enum: - callback - sms + - email locale: type: string - description: The locale of the template. Not needed for the `callback` mode + description: The locale of the template. Required when the mode is `email` or `sms`. example: en-us usid: type: string @@ -2356,11 +3257,36 @@ components: example: RefArch callback_uri: type: string - description: | + description: |- The callback URI. Required when the mode is `callback`. The `callback_uri` property will be validated against the callback URIs that have been registered with the SLAS client. The callback URI _must_ be a `POST` endpoint because the token will be included in the body. Wildcards are not allowed in the callback_uri because this is a security risk that can expose the token. This is not considered an OAuth2 callback_url. example: http://localhost:9050/passwordless/login/callback + last_name: + maxLength: 100 + type: string + description: "The user's last name. Required when `register_customer` is `true`. \nThe `last_name` parameter is not used when `register_customer` parameter is not added or is `false`." + example: Sampleson + email: + maxLength: 128 + type: string + description: "The user's email address. Required when `register_customer` is `true` and `user_id` is not an email address. \nThe `email` parameter is not used when `register_customer` parameter is not added or is `false`." + example: samantha.sampleson@example.com + first_name: + maxLength: 100 + type: string + description: "The user's first name. Optional when `register_customer` is `true`. \nThe `first_name` parameter is not used when `register_customer` parameter is not added or is `false`." + example: Samantha + phone_number: + maxLength: 48 + type: string + description: "The user's phone number. Optional when `register_customer` is `true`. \nThe `phone_number` parameter is not used when `register_customer` parameter is not added or is `false`." + example: 17776665555 + customer_no: + maxLength: 100 + type: string + description: "The customer number assigned to the shopper profile when `register_customer` is set to `true`. \nIf the `customer_no` already exists, the request fails. \nThe `customer_no` parameter is optional and only used when `register_customer` is set to `true`." + example: 123456789 description: A request for a passwordless login token. This is only available for registered users using B2C Commerce. TokenType: type: string @@ -2743,13 +3669,14 @@ components: enum: - callback - sms + - email channel_id: type: string description: The channel (B2C Commerce site) that the user is associated with. example: RefArch locale: type: string - description: The locale of the template. + description: The locale of the template. Required when the mode is `email` or `sms`. example: en-us client_id: maxLength: 40 @@ -2784,7 +3711,6 @@ components: required: - channel_id - client_id - - code_verifier - pwd_action_token type: object properties: @@ -2821,6 +3747,11 @@ components: type: string description: Adding a `hint` query parameter with a value of `cross_device` will remove the need to have the code_verifier for password reset request. If the `hint` query parameter is used it must also have been used in the password action request. example: cross_device + user_id: + maxLength: 128 + type: string + description: User ID for logging in. This is the id that is used to log into SFCC. Required only when hint is provided. + example: samantha.sampleson@example.com description: A request for creating a new password using the password action token. PasswordLessLoginTokenRequest: required: @@ -2883,6 +3814,426 @@ components: enum: - access_token - refresh_token + RegistrationStartRequest: + type: object + description: | + WebAuthn registration request. Inherits most fields from PasswordActionVerifyRequest + but does NOT use code_verifier or new_password fields. + required: + - channel_id + - pwd_action_token + - user_id + properties: + client_id: + type: string + description: OAuth client identifier. Required if Authorization header is not provided. + pattern: ^[A-Za-z0-9_-]+$ + minLength: 36 + maxLength: 36 + example: 12345678-1234-1234-1234-123456789012 + pwd_action_token: + type: string + description: Password action token (TOTP) received by the user. + pattern: ^[0-9]{8}$ + example: '12345678' + user_id: + type: string + description: The ID of the user. + maxLength: 128 + example: user@example.com + channel_id: + type: string + description: The ID of the channel. + pattern: ^[A-Za-z0-9_-]+$ + maxLength: 100 + example: RefArch + display_name: + type: string + description: Display name for the passkey. + maxLength: 128 + example: John Doe + nick_name: + type: string + description: Nickname for the credential. + maxLength: 128 + example: My iPhone + AuthenticatorAttestationResponseJson: + type: object + description: Authenticator response for registration (attestation). + required: + - clientDataJSON + - attestationObject + properties: + clientDataJSON: + description: Base64url-encoded client data JSON. + type: array + items: + type: object + properties: + id: + type: string + format: byte + example: eyJ0eXBlIjoid2ViYXV0aG4uY3JlYXRlIiwiY2hhbGxlbmdlIjoiVjJGc2RHVnlJRmRvYVhSbElGUmxjM1FnUTJoaGJHeGxibWRsIiwib3JpZ2luIjoiaHR0cHM6Ly9leGFtcGxlLmNvbSJ9 + attestationObject: + description: Base64url-encoded attestation object. + type: array + items: + type: object + properties: + id: + type: string + format: byte + example: o2NmbXRkbm9uZWdhdHRTdG10oGhhdXRoRGF0YVikSZYN5YgOjGh0NBcPZHZgW4_krrmihjLHmVzzuoMdl2NFAAAAAK3OAAI1vMYKZIsLJfHwVQMAIAECAwQFBgcICQoLDA0ODxAREhMUFRYXGBkaGxwdHh8gpQECAyYgASFYIIGjL8Hs9Yz5LvVGBnGJlGYKbJZXLqLLnKLJKLJLKLJLIlgg + AuthenticatorAssertionResponseJson: + type: object + description: Authenticator response for authentication (assertion). + required: + - authenticatorData + - clientDataJSON + - signature + properties: + authenticatorData: + description: Base64url-encoded authenticator data + type: array + items: + type: object + properties: + id: + type: string + format: byte + example: SZYN5YgOjGh0NBcPZHZgW4_krrmihjLHmVzzuoMdl2MFAAAAAQ + clientDataJSON: + description: Base64url-encoded client data JSON. + type: array + items: + type: object + properties: + id: + type: string + format: byte + example: eyJ0eXBlIjoid2ViYXV0aG4uZ2V0IiwiY2hhbGxlbmdlIjoiVjJGc2RHVnlJRmRvYVhSbElGUmxjM1FnUTJoaGJHeGxibWRsIiwib3JpZ2luIjoiaHR0cHM6Ly9leGFtcGxlLmNvbSJ9 + signature: + description: Base64url-encoded signature. + type: array + items: + type: object + properties: + id: + type: string + format: byte + example: MEYCIQDqwzerkQlKKLJKLJKLJKLJKLJKLJKLJKLJKLJKLJKLJAiEA + userHandle: + description: Base64url-encoded user handle. + nullable: true + type: array + items: + type: object + properties: + id: + type: string + format: byte + example: dXNlckBleGFtcGxlLmNvbQ + PublicKeyCredentialJson: + type: object + description: "WebAuthn credential representation. The response field can contain either\nAuthenticatorAttestationResponseJson (for registration) or \nAuthenticatorAssertionResponseJson (for authentication).\n" + required: + - id + - rawId + - type + - response + properties: + id: + type: string + description: Base64url-encoded credential ID + maxLength: 256 + example: AQIDBAUGBwgJCgsMDQ4PEA + rawId: + type: string + description: Base64url-encoded raw credential ID. + maxLength: 256 + example: AQIDBAUGBwgJCgsMDQ4PEA + type: + type: string + description: The type of credential. + enum: + - public-key + example: public-key + clientExtensionResults: + type: string + description: WebAuthn client extension results (typically empty). + nullable: true + maxLength: 100 + example: + extensions: {} + response: + oneOf: + - $ref: '#/components/schemas/AuthenticatorAttestationResponseJson' + - $ref: '#/components/schemas/AuthenticatorAssertionResponseJson' + description: Authenticator response (attestation for registration, assertion for authentication) + RegistrationFinishRequest: + type: object + required: + - client_id + - channel_id + - pwd_action_token + - username + - credential + properties: + client_id: + type: string + description: The ID of the OAuth client. + maxLength: 36 + example: 12345678-1234-1234-1234-123456789012 + username: + type: string + description: Username for the credential. + maxLength: 128 + example: user@example.com + credential: + $ref: '#/components/schemas/PublicKeyCredentialJson' + channel_id: + type: string + description: The ID of the channel. + maxLength: 128 + example: RefArch + pwd_action_token: + type: string + description: Password action token. + maxLength: 8 + pattern: ^[0-9]{8}$ + example: '12345678' + AuthenticateRequest: + type: object + required: + - client_id + - channel_id + properties: + tenant_id: + type: string + description: The ID of the tenant. + maxLength: 8 + example: zzte_053 + client_id: + type: string + description: The ID of the OAuth client. + pattern: ^[A-Za-z0-9_-]+$ + minLength: 36 + maxLength: 36 + example: 12345678-1234-1234-1234-123456789012 + channel_id: + type: string + description: The ID of the channel. + pattern: ^[A-Za-z0-9_-]+$ + maxLength: 100 + example: RefArch + user_id: + type: string + description: The ID of the user. + maxLength: 128 + example: user@example.com + PublicKeyCredentialDescriptor: + type: object + description: Public key credential descriptor. + required: + - type + - id + properties: + type: + type: string + maxLength: 256 + description: Credential type. + enum: + - public-key + example: public-key + id: + type: string + description: The base64url-encoded ID of the credential. + maxLength: 64 + example: AQIDBAUGBwgJCgsMDQ4PEA + transports: + type: array + description: Authenticator transports. + example: + - internal + - usb + items: + type: string + maxLength: 8 + enum: + - usb + - nfc + - ble + - internal + example: usb + PublicKeyCredentialRequestOptions: + type: object + description: Options for requesting a WebAuthn credential (returned by authenticate/start). + properties: + challenge: + type: string + description: Base64url-encoded challenge. + maxLength: 512 + example: V2FsdGVyIFdoaXRlIFRlc3QgQ2hhbGxlbmdl + timeout: + type: integer + description: Timeout value in milliseconds. + example: 60000 + rpId: + type: string + description: The ID of the relying party. + maxLength: 256 + example: example.com + allowCredentials: + type: array + description: Allowed credentials for authentication. + items: + $ref: '#/components/schemas/PublicKeyCredentialDescriptor' + userVerification: + type: string + description: The level of requirement for user verification. + enum: + - required + - preferred + - discouraged + example: preferred + extensions: + type: object + description: WebAuthn extensions. + additionalProperties: true + AuthenticateFinishRequest: + type: object + required: + - channel_id + - client_id + - credential + properties: + user_id: + maxLength: 128 + type: string + description: The ID of the user. + example: user@example.com + channel_id: + type: string + maxLength: 100 + description: The ID of the channel. + example: RefArch + client_id: + type: string + description: The ID of the OAuth client. + minLength: 36 + maxLength: 36 + example: 12345678-1234-1234-1234-123456789012 + email: + type: string + format: email + description: User's email address. + maxLength: 128 + example: user@example.com + tenant_id: + type: string + description: The ID of the tenant. + maxLength: 8 + example: zzte_053 + usid: + type: string + description: The unique session ID. + maxLength: 128 + example: 87654321-4321-4321-4321-210987654321 + credential: + $ref: '#/components/schemas/PublicKeyCredentialJson' + AuthenticateResult: + type: object + properties: + credentialId: + type: string + description: The credential ID that was used for authentication. + maxLength: 1024 + example: AQIDBAUGBwgJCgsMDQ4PEA + username: + type: string + description: The authenticated username. + maxLength: 128 + example: user@example.com + success: + type: boolean + description: Specifies whether authentication was successful (true) or not (false). + example: true + tokenResponse: + $ref: '#/components/schemas/TokenResponse' + PasskeyCredential: + type: object + description: Represents a WebAuthn passkey credential + properties: + id: + type: integer + format: int32 + description: Unique identifier for the credential + example: 20 + userId: + type: integer + format: int32 + description: The ID of the user who owns this credential + example: 26 + credentialId: + type: string + description: The WebAuthn credential ID + maxLength: 1024 + example: SVKfbUGBXofb2JzliJrMtZDENYByWgq_j4-p2M_3wC4 + nickName: + type: string + description: User-friendly name for the credential + maxLength: 32 + example: Fingerprint + publicKey: + type: string + description: The public key associated with this credential + maxLength: 1024 + example: pQECAyYgASFYIHM_4IKLMC8dboiRNfD0E0Gk4LmCTIgEyCTr-9SyHHeIIlggfn5_AzAl67kttLXWb-_Ts6MG7WHKoXzlKtame_wEYPE + userHandle: + type: string + description: The user handle associated with this credential + maxLength: 128 + example: yRU-7pWyWUE6nw8hztqqUZG635p7UKDDb2lbC1FyF78 + signatureCount: + type: string + maxLength: 8 + description: The signature counter for replay attack prevention + example: '42' + PasskeyUser: + type: object + description: Represents a passkey user with their associated credentials + properties: + id: + type: integer + format: int32 + description: Unique identifier for the passkey user + example: 26 + userName: + type: string + description: The username of the passkey user + maxLength: 128 + example: user@example.com + displayName: + type: string + description: The display name of the passkey user + maxLength: 256 + example: John Doe + userHandle: + type: string + description: The user handle (WebAuthn user ID) + maxLength: 128 + example: yRU-7pWyWUE6nw8hztqqUZG635p7UKDDb2lbC1FyF78 + slasUserId: + type: integer + format: int32 + description: The associated SLAS user ID + example: 10000 + credentials: + type: array + description: Set of passkey credentials associated with this user + uniqueItems: true + items: + $ref: '#/components/schemas/PasskeyCredential' parameters: organizationId: description: An identifier for the organization the request is being made by @@ -2892,6 +4243,18 @@ components: example: f_ecom_zzxy_prd schema: $ref: '#/components/schemas/OrganizationId' + register_customer: + name: register_customer + in: query + description: |- + When set to `true`, creates a new customer profile in B2C Commerce if one doesn't already exist. Requires `last_name` and `email` body parameters unless `user_id` is an email address. Optionally accepts `first_name` and `phone_number` body parameters. + If the customer profile doesn't exist, it is created when the TOTP is validated via the `passwordless/token` endpoint. + + When set to `false` (or omitted), no customer profile is created in B2C Commerce. + required: false + schema: + maxLength: 5 + type: string client_id: name: client_id in: query @@ -3279,3 +4642,80 @@ components: use: sig x: KpmPoZTFXs80Uxy7QcOQ9aaqW35xgT3Qyakee8zR7gA 'y': P87TZ52rjnOGlmjaPeUGbLaOqiB7FHnoEzULIw6QlfJ + startWebauthnUserRegistrationSuccess: + value: + extensions: {} + attestation: none + challenge: qcjjr4ZckSHuiSd1nShZkVt12I1udQO_7MAkynXP8Nk + authenticatorSelection: + userVerification: preferred + requireResidentKey: false + residentKey: preferred + user: + name: darth.vader + id: GyOH81kDRxJBvHPQkkbmTagOADuixhp_37P_UnSwHAI + displayName: Darth Vader + rp: + name: SLAS Service + id: localhost + timeout: 90000 + excludeCredentials: [] + pubKeyCredParams: + alg: -7 + type: public-key + webauthnAuthenticationStartSuccess: + value: + challenge: V2FsdGVyIFdoaXRlIFRlc3QgQ2hhbGxlbmdl + timeout: 60000 + rpId: localhost + allowCredentials: + - type: public-key + id: AQIDBAUGBwgJCgsMDQ4PEA + transports: + - usb + - nfc + userVerification: preferred + extensions: {} + UserNotFound404: + value: + error: not_found + error_description: User Not Found + webauthnAuthenticationFinishSuccess: + value: + credentialId: AQIDBAUGBwgJCgsMDQ4PEA + username: user@example.com + success: true + tokenResponse: + access_token: eyJ2ZXIiOiIxLjAiLCJraWQiOiJTTEFTIiwidHlwIjoiand0IiwiY2x2IjoiSjIuMS4wIiwiYWxnIjoiRVMyNTYifQ.eyJhdWQiOiJjb3JlL2Rldi9idGluZ2V5bHRtMiIsImF1dCI6IkdVSUQiLCJzdWIiOiJ1c2lkOjo1NGFkMmM1YS05MWYwLTQ0YWItODE3Yy03M2Q2Yjg2ODcyZDk6OnVwbjpndWVzdCIsIm5iZiI6MTU4Mjg0NTYyNCwiY3R4Ijoic2ZkYy5jb21tZXJjZWNsb3VkIiwiaXNzIjoiY29yZS9kZXYvYnRpbmdleWx0bTIiLCJzdHkiOiJVc2VyIiwiaXN0IjoxLCJleHAiOjE1ODI4NDU3NDQsImlhdCI6MTU4Mjg0NTY1NCwianRpIjoiQzJDOTA0ODg2NDA3MDkwNDg4NjQwNzMyMjExNzQ1ODEyMTQzIn0.2a6lMBSY17PrhDO8pvEk7PCXW_nkguMHi4J-Tuirkz-ETB6rnKyuRjF5yD6B55tMvm8dO8ulAHyDYqjObMxLJg + id_token: eyJraWQiOiI3NGU2YjMxZS1lYTczLTQ3OTYtOWRkYi1jMDJmZGI4ZDgwYmUiLCJhbGciOiJSUzI1NiJ9.eyJzdWIiOiJ1c2lkOmQ1MDBhMzY5LTc1MWQtNDkzYy1iNDAzLThmOThmYjg3MTdiNiIsImF1ZCI6IjU1M2FjOGFjLTRkYjktNGVkMy04MjVjLTNhZTNiZjVkMzI3YiIsImlzcyI6ImRldi51cy5zaG9wcGVyLmNjLnNhbGVzZm9yY2UuY29tIiwibmFtZSI6ImJsYWlyLnNsYXMudGVzdEBnbWFpbC5jb20iLCJleHAiOjE1OTExMTE0MzgsImlhdCI6MTU5MTEwOTYzOCwiZW1haWwiOiJibGFpci5zbGFzLnRlc3RAZ21haWwuY29tIn0.KgpAcq-G9Lz7IGnjkJlaFLFXYncVCwcVrRIuy3bEfgzRozqaDRvAori4oOz4RtgYjmoc5x2euoisHL0mVnHgPKOdYBty1wTJqneJEQt6hP4Kp0KFciID_ILCi-DE8VWS5t0NknnMP_iKhIkqcRL48iwPFUWkWA6AEWxE_yvJLNRLithsSxsx7EfBfpD8Hr2b5tMEwImQNmJNYGRTI4LSmcYspBORvJoAnfGpMC0kglxl40bhf5j4ItX4_DiWQC4zaGYD-HJV4BDr6C7iGCs5ZVPypF0yQD3iBio26fwj9Ys5WF9XMtPtqET2kqsz6fDC5GkE6HTUHH_r87jxbDq-8w + refresh_token: EgMYpjfFKdlSy-a3PYeyihmP95IpIp3FaDpPmVH1yu8.lahomBi7zJbRa6yKAuAAiKu3lprTPsEueKwqcBvhRLU + expires_in: 900 + refresh_token_expires_in: 7776000 + token_type: Bearer + usid: 18cda486-fe32-4e27-888b-6e4f89938e67 + customer_id: '1000005' + enc_user_id: 45D39A8499A95288F82855427EBA99B5 + idp_access_token: '' + getPasskeyUserByLoginIdSuccess: + value: + id: 26 + userName: user@example.com + displayName: John Doe + userHandle: yRU-7pWyWUE6nw8hztqqUZG635p7UKDDb2lbC1FyF78 + slasUserId: 10000 + credentials: + - id: 21 + userId: 26 + credentialId: t5Awv5pJ_kM7K8U2-5ijw5rSKNkHFHTTg_gAbdrod8c + nickName: Fingerprint + publicKey: pQECAyYgASFYIKIpY59lUthC1dDw_9WXKCOaLNCB2WSoGrK0kAZG33s3IlggxTvdmk2QC_HPjAwf_eHdoxIBvfN3c376ws8xUaxlJ4A + userHandle: yRU-7pWyWUE6nw8hztqqUZG635p7UKDDb2lbC1FyF78 + signatureCount: '2' + - id: 22 + userId: 26 + credentialId: SVKfbUGBXofb2JzliJrMtZDENYByWgq_j4-p2M_3wC4 + nickName: YubiKey + publicKey: pQECAyYgASFYIHM_4IKLMC8dboiRNfD0E0Gk4LmCTIgEyCTr-9SyHHeIIlggfn5_AzAl67kttLXWb-_Ts6MG7WHKoXzlKtame_wEYPE + userHandle: yRU-7pWyWUE6nw8hztqqUZG635p7UKDDb2lbC1FyF78 + signatureCount: '5' +x-sdk-classname: ShopperLogin diff --git a/apis/shopper-login-oas-1.40.0/exchange.json b/apis/auth-oas-1.46.0/exchange.json similarity index 60% rename from apis/shopper-login-oas-1.40.0/exchange.json rename to apis/auth-oas-1.46.0/exchange.json index 43afb0d7..18e71d86 100644 --- a/apis/shopper-login-oas-1.40.0/exchange.json +++ b/apis/auth-oas-1.46.0/exchange.json @@ -1,9 +1,9 @@ { - "main": "shopper-login-oas-v1-public.yaml", - "name": "Shopper Login OAS", + "main": "auth-oas-v1-public.yaml", + "name": "Auth OAS", "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", - "assetId": "shopper-login-oas", - "version": "1.40.0", + "assetId": "auth-oas", + "version": "1.46.0", "classifier": "oas", "tags": [], "descriptorVersion": "1.0.0", diff --git a/apis/shopper-baskets-oas-1.9.1/exchange.json b/apis/shopper-baskets-oas-1.11.0/exchange.json similarity index 93% rename from apis/shopper-baskets-oas-1.9.1/exchange.json rename to apis/shopper-baskets-oas-1.11.0/exchange.json index e9b52400..8d6741e2 100644 --- a/apis/shopper-baskets-oas-1.9.1/exchange.json +++ b/apis/shopper-baskets-oas-1.11.0/exchange.json @@ -3,7 +3,7 @@ "name": "Shopper Baskets OAS", "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", "assetId": "shopper-baskets-oas", - "version": "1.9.1", + "version": "1.11.0", "classifier": "oas", "tags": [], "descriptorVersion": "1.0.0", diff --git a/apis/shopper-baskets-oas-1.9.1/shopper-baskets-oas-v1-public.yaml b/apis/shopper-baskets-oas-1.11.0/shopper-baskets-oas-v1-public.yaml similarity index 99% rename from apis/shopper-baskets-oas-1.9.1/shopper-baskets-oas-v1-public.yaml rename to apis/shopper-baskets-oas-1.11.0/shopper-baskets-oas-v1-public.yaml index e136564d..629d6b31 100644 --- a/apis/shopper-baskets-oas-1.9.1/shopper-baskets-oas-v1-public.yaml +++ b/apis/shopper-baskets-oas-1.11.0/shopper-baskets-oas-v1-public.yaml @@ -3,7 +3,7 @@ info: x-api-type: Shopper x-api-family: Checkout title: Shopper Baskets - version: 1.9.1 + version: 1.11.0 description: |- [Download API specification](https://developer.salesforce.com/static/commercecloud/commerce-api/shopper-baskets/shopper-baskets-oas-v1-public.yaml) @@ -44,7 +44,7 @@ info: For details on how to request a shopper access token from SLAS, see the guest user flows for [public clients](https://developer.salesforce.com/docs/commerce/commerce-api/guide/slas-public-client.html#guest-user) and [private clients](https://developer.salesforce.com/docs/commerce/commerce-api/guide/slas-private-client.html#guest-user) in the SLAS guides. - You must include the relevant scope(s) in the client ID used to generate the SLAS token. For details, see the [Authorization Scopes Catalog.](https://developer.salesforce.com/docs/commerce/commerce-api/guide/auth-z-scope-catalog.html) + You must include `sfcc.shopper-baskets-orders` or `sfcc.shopper-baskets-orders.rw` in the client ID used to generate the SLAS token. For a full list of permissions, see the [Authorization Scopes Catalog.](https://developer.salesforce.com/docs/commerce/commerce-api/guide/auth-z-scope-catalog.html) The following resources require an Account Manager OAuth token with a client ID: @@ -119,12 +119,14 @@ paths: The created basket is initialized with default values. Optional JSON data provided in the request body is populated into the created basket. It can be updated with other endpoints offered by the Shopper Baskets API. - Each customer can have just one open basket. When a basket is created, it is said to be open. It remains open until either an order is created from it or it is deleted. + Each shopper is limited to one open basket at a time. Attempting to create a second basket for the same customer will result in a 400 Bad Request error with the message: "Customer Baskets Quota Exceeded". + A basket is considered "open" upon creation and remains in this state until it is either converted into an order or explicitly deleted. For implementation best practices, see [Hybrid Storefront Best Practices for Working with Baskets](https://developer.salesforce.com/docs/commerce/commerce-api/guide/hybrid-storefront-baskets.html#hybrid-storefront-best-practices-for-working-with-baskets). operationId: createBasket summary: Create a new basket. security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard responses: '200': description: The initialized basket. @@ -205,6 +207,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/overrideExisting' - $ref: '#/components/parameters/merge' @@ -296,6 +299,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/createDestinationBasket' - $ref: '#/components/parameters/productItemMergeMode' @@ -345,6 +349,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard responses: '204': description: Success, without a body. @@ -376,6 +381,7 @@ paths: - ShopperToken: - sfcc.shopper-baskets-orders.rw - sfcc.shopper-baskets-orders + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/locale' responses: @@ -417,6 +423,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/removeExternalTax' - $ref: '#/components/parameters/locale' @@ -485,6 +492,7 @@ paths: security: - ShopperTokenTaob: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/locale' responses: @@ -527,6 +535,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/locale' - $ref: '#/components/parameters/useAsShipping' @@ -582,6 +591,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/locale' requestBody: @@ -641,6 +651,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/locale' responses: @@ -689,6 +700,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/locale' requestBody: @@ -750,6 +762,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/locale' responses: @@ -806,6 +819,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard responses: '200': description: Success, the response body contains the basket without the deleted gift certificate. @@ -825,6 +839,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/locale' responses: @@ -949,6 +964,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard requestBody: content: application/json: @@ -1000,6 +1016,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard requestBody: content: application/json: @@ -1056,6 +1073,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/siteId' - $ref: '#/components/parameters/locale' @@ -1117,6 +1135,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard requestBody: content: application/json: @@ -1221,6 +1240,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard requestBody: content: application/json: @@ -1278,6 +1298,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/siteId' - $ref: '#/components/parameters/locale' @@ -1324,6 +1345,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard requestBody: content: application/json: @@ -1380,6 +1402,7 @@ paths: - ShopperToken: - sfcc.shopper-baskets-orders.rw - sfcc.shopper-baskets-orders + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/siteId' - $ref: '#/components/parameters/locale' @@ -1429,6 +1452,7 @@ paths: security: - ShopperTokenTaob: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard requestBody: content: application/json: @@ -1480,6 +1504,7 @@ paths: security: - ShopperTokenTaob: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/siteId' - $ref: '#/components/parameters/locale' @@ -1523,6 +1548,7 @@ paths: security: - ShopperTokenTaob: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard requestBody: content: application/json: @@ -1661,6 +1687,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard requestBody: content: application/json: @@ -1732,6 +1759,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/siteId' - $ref: '#/components/parameters/locale' @@ -1791,6 +1819,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard requestBody: content: application/json: @@ -1847,6 +1876,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard requestBody: content: application/json: @@ -1907,6 +1937,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard requestBody: content: application/json: @@ -1965,6 +1996,7 @@ paths: - ShopperToken: - sfcc.shopper-baskets-orders.rw - sfcc.shopper-baskets-orders + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/siteId' - $ref: '#/components/parameters/locale' @@ -2008,6 +2040,7 @@ paths: security: - ShopperTokenTaob: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/exchange' - $ref: '#/components/parameters/locale' @@ -2171,9 +2204,8 @@ components: DefaultFallback: default: default description: A specialized value indicating the system default values for locales. + pattern: ^default$ example: default - enum: - - default type: string LocaleCode: description: A descriptor for a geographical region by both a language and country code. By combining these two, regional differences in a language can be addressed, such as with the request header parameter `Accept-Language` following [RFC 2616](https://tools.ietf.org/html/rfc2616) & [RFC 1766](https://tools.ietf.org/html/rfc1766). This can also just refer to a language code, also RFC 2616/1766 compliant, as a default if there is no specific match for a country. Finally, can also be used to define default behavior if there is no locale specified. @@ -2379,24 +2411,11 @@ components: type: boolean required: - code - ISOCurrency: - pattern: ^[A-Z][A-Z][A-Z]$ - description: A three letter uppercase currency code conforming to the [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) standard. - example: USD - type: string - NoValue: - default: N/A - description: A specialized value indicating the lack of definition of a currency, for example, if the value of the monetary value of the currency is an undefined number. - example: N/A - enum: - - N/A - type: string CurrencyCode: description: A three letter uppercase currency code conforming to the [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) standard, or the string `N/A` indicating that a currency is not applicable. + pattern: ^([A-Z][A-Z][A-Z]|N/A)$ example: USD - oneOf: - - $ref: '#/components/schemas/ISOCurrency' - - $ref: '#/components/schemas/NoValue' + type: string CustomerInfo: additionalProperties: title: Additional Property Support diff --git a/apis/shopper-baskets-oas-2.1.1/exchange.json b/apis/shopper-baskets-oas-2.5.1/exchange.json similarity index 93% rename from apis/shopper-baskets-oas-2.1.1/exchange.json rename to apis/shopper-baskets-oas-2.5.1/exchange.json index 4014ccda..314a1405 100644 --- a/apis/shopper-baskets-oas-2.1.1/exchange.json +++ b/apis/shopper-baskets-oas-2.5.1/exchange.json @@ -3,7 +3,7 @@ "name": "Shopper Baskets OAS", "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", "assetId": "shopper-baskets-oas", - "version": "2.1.1", + "version": "2.5.1", "classifier": "oas", "tags": [], "descriptorVersion": "1.0.0", diff --git a/apis/shopper-baskets-oas-2.1.1/shopper-baskets-oas-v2-public.yaml b/apis/shopper-baskets-oas-2.5.1/shopper-baskets-oas-v2-public.yaml similarity index 95% rename from apis/shopper-baskets-oas-2.1.1/shopper-baskets-oas-v2-public.yaml rename to apis/shopper-baskets-oas-2.5.1/shopper-baskets-oas-v2-public.yaml index a5cedbfb..f143ea40 100644 --- a/apis/shopper-baskets-oas-2.1.1/shopper-baskets-oas-v2-public.yaml +++ b/apis/shopper-baskets-oas-2.5.1/shopper-baskets-oas-v2-public.yaml @@ -3,7 +3,7 @@ info: x-api-type: Shopper x-api-family: Checkout title: Shopper Baskets - version: 2.1.1 + version: 2.5.1 description: |- [Download API specification](https://developer.salesforce.com/static/commercecloud/commerce-api/shopper-baskets-v2/shopper-baskets-oas-v2-public.yaml) @@ -49,7 +49,7 @@ info: For details on how to request a shopper access token from SLAS, see the guest user flows for [public clients](https://developer.salesforce.com/docs/commerce/commerce-api/guide/slas-public-client.html#guest-user) and [private clients](https://developer.salesforce.com/docs/commerce/commerce-api/guide/slas-private-client.html#guest-user) in the SLAS guides. - You must include the relevant scope(s) in the client ID used to generate the SLAS token. For details, see the [Authorization Scopes Catalog.](https://developer.salesforce.com/docs/commerce/commerce-api/guide/auth-z-scope-catalog.html) + You must include `sfcc.shopper-baskets-orders` or `sfcc.shopper-baskets-orders.rw` in the client ID used to generate the SLAS token. For a full list of permissions, see the [Authorization Scopes Catalog.](https://developer.salesforce.com/docs/commerce/commerce-api/guide/auth-z-scope-catalog.html) The following resources require an Account Manager OAuth token with a client ID: @@ -63,7 +63,7 @@ info: For details on working with hooks, see [Extensibility with Hooks.](https://developer.salesforce.com/docs/commerce/commerce-api/guide/extensibility_via_hooks.html) - ## Basket Calculation + ### Basket Calculation Unless you’re using [hooks](https://developer.salesforce.com/docs/commerce/commerce-api/guide/extensibility_via_hooks.html), each modification to a basket triggers the following calculations: @@ -82,7 +82,7 @@ info: - For external tax mode, use the tax rates returned by the tax API endpoints. 9. Calculate the order’s net, tax, and gross totals by adding up the line totals. - ## External Taxation + ### External Taxation The B2C Commerce API calculates taxes internally using tax tables. If you want to integrate with a third-party tax provider, or calculate tax on your own, you can use the external taxation feature to add a taxation rate and optional taxation value. When setting a taxation rate, the taxation is calculated for this specific rate. If you pass a value, this value is used as taxation value, as well, without recalculation. To use this feature, set the `taxMode` parameter to `external` when creating the basket. @@ -130,7 +130,8 @@ paths: The created basket is initialized with default values. Optional JSON data provided in the request body is populated into the created basket. It can be updated with other endpoints offered by the Shopper Baskets API. - Each customer can have just one open basket. When a basket is created, it is said to be open. It remains open until either an order is created from it or it is deleted. + Each shopper is limited to one open basket at a time. Attempting to create a second basket for the same customer will result in a 400 Bad Request error with the message: "Customer Baskets Quota Exceeded". + A basket is considered "open" upon creation and remains in this state until it is either converted into an order or explicitly deleted. For implementation best practices, see [Hybrid Storefront Best Practices for Working with Baskets](https://developer.salesforce.com/docs/commerce/commerce-api/guide/hybrid-storefront-baskets.html#hybrid-storefront-best-practices-for-working-with-baskets). operationId: createBasket summary: Create a new basket. parameters: @@ -138,6 +139,7 @@ paths: - $ref: '#/components/parameters/organizationId' - $ref: '#/components/parameters/taxMode' - $ref: '#/components/parameters/temporary' + - $ref: '#/components/parameters/populateCustomerDetails' - $ref: '#/components/parameters/locale' requestBody: content: @@ -195,6 +197,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard /organizations/{organizationId}/baskets/actions/transfer: post: description: |- @@ -215,6 +218,7 @@ paths: parameters: - $ref: '#/components/parameters/overrideExisting' - $ref: '#/components/parameters/merge' + - $ref: '#/components/parameters/populateCustomerDetails' - $ref: '#/components/parameters/locale' responses: '200': @@ -254,6 +258,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/siteId' - $ref: '#/components/parameters/organizationId' @@ -343,6 +348,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/siteId' - $ref: '#/components/parameters/organizationId' @@ -387,6 +393,7 @@ paths: - ShopperToken: - sfcc.shopper-baskets-orders - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard delete: description: Removes a basket. operationId: deleteBasket @@ -417,6 +424,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard patch: description: |- Updates a basket. Only the currency of the basket, source code, the custom @@ -482,6 +490,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/siteId' - $ref: '#/components/parameters/organizationId' @@ -579,6 +588,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/siteId' - $ref: '#/components/parameters/organizationId' @@ -637,6 +647,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/siteId' - $ref: '#/components/parameters/organizationId' @@ -685,6 +696,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/siteId' - $ref: '#/components/parameters/organizationId' @@ -747,6 +759,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/siteId' - $ref: '#/components/parameters/organizationId' @@ -800,6 +813,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/siteId' - $ref: '#/components/parameters/organizationId' @@ -826,6 +840,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard patch: description: Updates a gift certificate item of an existing basket. operationId: updateGiftCertificateItemInBasket @@ -874,6 +889,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/siteId' - $ref: '#/components/parameters/organizationId' @@ -918,7 +934,7 @@ paths: schema: type: array items: - $ref: '#/components/schemas/ProductItem' + $ref: '#/components/schemas/BasketProductItem' examples: ItemPost: $ref: '#/components/examples/ItemPost' @@ -975,6 +991,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard patch: description: |- Updates multiple items in a basket. This behaviour matches that of updating a @@ -1021,7 +1038,7 @@ paths: schema: type: array items: - $ref: '#/components/schemas/ProductItem' + $ref: '#/components/schemas/BasketProductItem' examples: ItemPatch: $ref: '#/components/examples/ItemPatch' @@ -1060,6 +1077,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/organizationId' - $ref: '#/components/parameters/basketId' @@ -1105,6 +1123,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard patch: description: |- Updates an item in a basket. The item to be updated can be a bundled product item, although the @@ -1147,7 +1166,7 @@ paths: content: application/json: schema: - $ref: '#/components/schemas/ProductItem' + $ref: '#/components/schemas/BasketProductItem' examples: ItemPatch: $ref: '#/components/examples/ItemPatch' @@ -1196,6 +1215,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/itemId' - $ref: '#/components/parameters/organizationId' @@ -1265,6 +1285,8 @@ paths: examples: PaymentInstrumentPost: $ref: '#/components/examples/PaymentInstrumentPost' + PaymentInstrumentPostWithSalesforcePayments: + $ref: '#/components/examples/PaymentInstrumentPostWithSalesforcePayments' required: true responses: '200': @@ -1301,6 +1323,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/organizationId' - $ref: '#/components/parameters/basketId' @@ -1349,6 +1372,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard patch: description: Updates payment instrument of an existing basket. operationId: updatePaymentInstrumentInBasket @@ -1405,6 +1429,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/paymentInstrumentId' - $ref: '#/components/parameters/organizationId' @@ -1451,6 +1476,7 @@ paths: - ShopperToken: - sfcc.shopper-baskets-orders - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/organizationId' - $ref: '#/components/parameters/basketId' @@ -1509,6 +1535,7 @@ paths: security: - ShopperTokenTaob: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/organizationId' - $ref: '#/components/parameters/basketId' @@ -1551,6 +1578,7 @@ paths: security: - ShopperTokenTaob: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard patch: description: |- Updates a custom manual price adjustment on the basket. Only the following path values are considered for the update; all other attributes are ignored. @@ -1608,6 +1636,7 @@ paths: security: - ShopperTokenTaob: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/priceAdjustmentId' - $ref: '#/components/parameters/organizationId' @@ -1747,6 +1776,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/organizationId' - $ref: '#/components/parameters/basketId' @@ -1809,6 +1839,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard patch: description: |- Updates a shipment for a basket. @@ -1877,6 +1908,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/shipmentId' - $ref: '#/components/parameters/organizationId' @@ -1935,6 +1967,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/organizationId' - $ref: '#/components/parameters/shipmentId' @@ -1993,6 +2026,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/organizationId' - $ref: '#/components/parameters/shipmentId' @@ -2042,6 +2076,7 @@ paths: - ShopperToken: - sfcc.shopper-baskets-orders - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/organizationId' - $ref: '#/components/parameters/shipmentId' @@ -2085,6 +2120,7 @@ paths: security: - ShopperTokenTaob: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/organizationId' - $ref: '#/components/parameters/basketId' @@ -2243,9 +2279,8 @@ components: DefaultFallback: default: default description: A specialized value indicating the system default values for locales. + pattern: ^default$ example: default - enum: - - default type: string LocaleCode: description: A descriptor for a geographical region by both a language and country code. By combining these two, regional differences in a language can be addressed, such as with the request header parameter `Accept-Language` following [RFC 2616](https://tools.ietf.org/html/rfc2616) & [RFC 1766](https://tools.ietf.org/html/rfc1766). This can also just refer to a language code, also RFC 2616/1766 compliant, as a default if there is no specific match for a country. Finally, can also be used to define default behavior if there is no locale specified. @@ -2451,24 +2486,11 @@ components: type: boolean required: - code - ISOCurrency: - pattern: ^[A-Z][A-Z][A-Z]$ - description: A three letter uppercase currency code conforming to the [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) standard. - example: USD - type: string - NoValue: - default: N/A - description: A specialized value indicating the lack of definition of a currency, for example, if the value of the monetary value of the currency is an undefined number. - example: N/A - enum: - - N/A - type: string CurrencyCode: description: A three letter uppercase currency code conforming to the [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) standard, or the string `N/A` indicating that a currency is not applicable. + pattern: ^([A-Z][A-Z][A-Z]|N/A)$ example: USD - oneOf: - - $ref: '#/components/schemas/ISOCurrency' - - $ref: '#/components/schemas/NoValue' + type: string CustomerInfo: additionalProperties: title: Additional Property Support @@ -2763,12 +2785,38 @@ components: description: The year the payment card is valid from. example: 2015 type: integer + GiftCardResponse: + additionalProperties: false + description: Document representing a gift card response. + type: object + properties: + brand: + maxLength: 256 + description: The gift card brand. + example: givex + type: string + maskedCardNumber: + maxLength: 40 + description: The masked gift card number. + example: '*********4422' + type: string + expirationMonth: + format: int32 + description: The month when the gift card expires. + example: 1 + type: integer + expirationYear: + format: int32 + description: The year when the gift card expires. + example: 2030 + type: integer PaymentInstrumentId: description: The payment instrument ID example: ba248424e3eee797f062162f8b type: string OrderPaymentInstrument: description: Document representing an order payment instrument. + type: object properties: amount: format: double @@ -2792,6 +2840,10 @@ components: description: The payment card. allOf: - $ref: '#/components/schemas/PaymentCard' + giftCard: + description: The gift card. + allOf: + - $ref: '#/components/schemas/GiftCardResponse' paymentInstrumentId: description: The payment instrument ID. It is read only. allOf: @@ -2801,7 +2853,62 @@ components: description: The payment method ID. It is read only. example: CREDIT_CARD type: string - type: object + paymentReference: + description: Payment reference information for various payment service providers, only when Salesforce Payments is enabled. + type: object + properties: + paymentReferenceId: + description: Payment reference identifier. Can be payment intent ID for Stripe, PSP reference for Adyen, PayPal order ID for PayPal, or similar identifier for other payment providers. + type: string + maxLength: 256 + example: pi_3N4B2vF0wDjebNCp1234567 + gateway: + description: The payment gateway used to process the payment. + example: stripe + type: string + enum: + - stripe + - paypal + - adyen + gatewayProperties: + description: The payment gateway specific properties. + type: object + additionalProperties: false + properties: + stripe: + description: | + # Stripe specific properties. + + - setupFutureUsage: Indicates that you intend to make future payments with this payment method. + - **on_session**: The payment method is intended to be used for a future payment on the same website session. + - **off_session**: The payment method is intended to be used for a future payment on a different website session. + - **null**: The payment method is not intended to be used for a future payment. + - clientSecret: Secret for Stripe client-side payment confirmation. Don't store, log, or expose the client secret to anyone other than the customer, and only use it on pages where TLS is enabled. + - type: string + - maxLength: 256 + - example: "pi_1J4K5L2eZvKYlo2CyZ8K5L6M_secret_abc123" + type: object + additionalProperties: true + paypal: + description: | + # PayPal specific properties. + type: object + additionalProperties: true + adyen: + description: | + # Adyen specific properties. + + - adyenError: Error information returned by Adyen if the payment fails. Null on success. + - adyenPaymentIntent: The Adyen payment intent object containing payment details and required actions. + - resultCode: The result of the payment request (for example, "REDIRECT_SHOPPER", "AUTHORISED", "PENDING", "REFUSED"). + - accountID: The Adyen merchant account ID. + - adyenPaymentIntentAction: The action object for payment methods requiring additional shopper interaction. + - url: The URL for completing the payment (redirect or 3DS authentication). + - type: The action type (for example, "redirect", "threeDS2", "voucher"). + - method: The HTTP method for the action (for example, "GET", "POST"). + - successful: A boolean indicating whether the Adyen operation is successful. + type: object + additionalProperties: true ProductItem: description: Document representing a product item. additionalProperties: @@ -3182,6 +3289,10 @@ components: type: string required: - id + BasketProductItem: + description: Document representing a basket product item. + allOf: + - $ref: '#/components/schemas/ProductItem' ShipmentId: minLength: 1 type: string @@ -3563,7 +3674,7 @@ components: description: The product items. type: array items: - $ref: '#/components/schemas/ProductItem' + $ref: '#/components/schemas/BasketProductItem' productSubTotal: format: double description: |- @@ -3747,6 +3858,95 @@ components: description: The year the payment card is valid from. example: 2019 type: integer + GiftCardRequest: + additionalProperties: false + description: Represents gift card details for a request. + type: object + required: + - brand + - cardNumber + - cvc + properties: + brand: + maxLength: 256 + description: The gift card type or brand (for example, givex, blackhawk). + example: givex + type: string + cardNumber: + maxLength: 40 + description: The gift card number. + example: '6364530000000000' + type: string + cvc: + maxLength: 4 + description: The card verification code (CVC/CVV) for the gift card. + example: '123' + type: string + expirationMonth: + format: int32 + description: The month when the gift card expires. + example: 1 + type: integer + expirationYear: + format: int32 + description: The year when the gift card expires. + example: 2030 + type: integer + PaymentReferenceRequest: + type: object + description: Properties for Payments Reference Request + properties: + paymentMethodType: + type: string + maxLength: 64 + description: Payment Method Type + example: card + zoneId: + type: string + description: The unique identifier for a Payments zone. + pattern: ^[a-zA-Z0-9\-_]{1,100}$ + minLength: 1 + maxLength: 100 + example: + Amer-Zone: null + gateway: + description: The payment gateway used to process the payment. + example: stripe + type: string + enum: + - stripe + - paypal + - adyen + gatewayProperties: + description: The payment gateway specific properties. + type: object + additionalProperties: false + properties: + stripe: + description: | + # Stripe specific properties. + + - setupFutureUsage: Indicates that you intend to make future payments with this payment method. + - **on_session**: The payment method is intended to be used for a future payment on the same website session. + - **off_session**: The payment method is intended to be used for a future payment on a different website session. + - **null**: The payment method is not intended to be used for a future payment. + type: object + additionalProperties: true + paypal: + description: | + # PayPal specific properties. + + - shippingPreference: Shipping preference for PayPal payment processing. Applicable only for basket payment instruments. + - **GET_FROM_FILE** + - **NO_SHIPPING** + - **SET_PROVIDED_ADDRESS** + type: object + additionalProperties: true + adyen: + description: | + # Adyen specific properties. + type: object + additionalProperties: true BasketPaymentInstrumentRequest: description: Document representing a basket payment instrument request. type: object @@ -3777,11 +3977,19 @@ components: description: The payment card. allOf: - $ref: '#/components/schemas/OrderPaymentCardRequest' + giftCardRequest: + description: The gift card request. + allOf: + - $ref: '#/components/schemas/GiftCardRequest' paymentMethodId: maxLength: 256 description: The payment method ID. example: CREDIT_CARD type: string + paymentReferenceRequest: + description: Payment reference information for various payment service providers, only when Salesforce Payments is enabled. + allOf: + - $ref: '#/components/schemas/PaymentReferenceRequest' PaymentCardSpec: description: Document representing the specification for a payment card. type: object @@ -4003,6 +4211,14 @@ components: schema: default: false type: boolean + populateCustomerDetails: + name: populateCustomerDetails + in: query + description: "If set to true, the system invokes the `dw.order.populateCustomerDetails` hook.\n\nBy default, the hook retrieves the registered customer's default address or first saved address, and payment instrument. \nThe hook then uses this information to populate the basket:\n- If no shipping address is specified, the shipping address is set to the customer's saved address.\n- If no billing address is specified, the billing address is set to the customer's saved address.\n- If no payment instrument is specified, the payment instrument is set to the customer's saved payment instrument.\n\nThis behavior can be customized by overriding the hook." + schema: + default: false + type: boolean + example: false locale: description: A descriptor for a geographical region by both a language and country code. By combining these two, regional differences in a language can be addressed, such as with the request header parameter `Accept-Language` following [RFC 2616](https://tools.ietf.org/html/rfc2616) & [RFC 1766](https://tools.ietf.org/html/rfc1766). This can also just refer to a language code, also RFC 2616/1766 compliant, as a default if there is no specific match for a country. Finally, can also be used to define default behavior if there is no locale specified. name: locale @@ -5381,6 +5597,16 @@ components: holder: Miller cardType: Visa paymentMethodId: CREDIT_CARD + PaymentInstrumentPostWithSalesforcePayments: + value: + amount: 15 + paymentMethodId: Salesforce Payments + paymentReferenceRequest: + paymentMethodType: paypal + zoneId: Amer-Zone + gatewayProperties: + paypal: + shippingPreference: SET_PROVIDED_ADDRESS PaymentInstrumentPatch: value: amount: 0 diff --git a/apis/shopper-configurations-oas-1.0.0/exchange.json b/apis/shopper-configurations-oas-1.2.0/exchange.json similarity index 93% rename from apis/shopper-configurations-oas-1.0.0/exchange.json rename to apis/shopper-configurations-oas-1.2.0/exchange.json index 272c2bfb..a9f6bb0c 100644 --- a/apis/shopper-configurations-oas-1.0.0/exchange.json +++ b/apis/shopper-configurations-oas-1.2.0/exchange.json @@ -3,7 +3,7 @@ "name": "Shopper Configurations OAS", "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", "assetId": "shopper-configurations-oas", - "version": "1.0.0", + "version": "1.2.0", "classifier": "oas", "tags": [], "descriptorVersion": "1.0.0", diff --git a/apis/shopper-configurations-oas-1.0.0/shopper-configurations-oas-v1-public.yaml b/apis/shopper-configurations-oas-1.2.0/shopper-configurations-oas-v1-public.yaml similarity index 61% rename from apis/shopper-configurations-oas-1.0.0/shopper-configurations-oas-v1-public.yaml rename to apis/shopper-configurations-oas-1.2.0/shopper-configurations-oas-v1-public.yaml index 1393fbe7..85145e86 100644 --- a/apis/shopper-configurations-oas-1.0.0/shopper-configurations-oas-v1-public.yaml +++ b/apis/shopper-configurations-oas-1.2.0/shopper-configurations-oas-v1-public.yaml @@ -3,8 +3,68 @@ info: x-api-type: Shopper x-api-family: Configuration title: Shopper Configurations - version: 1.0.0 - description: "[Download API specification](https://developer.salesforce.com/static/commercecloud/commerce-api/shopper-configurations/shopper-configurations-oas-v1-public.yaml)\n\n# API Overview\nIn commerce, there is a need to provide information to the shopper facing application to allow for making decisions on execution. This is highly cache-able data that rarely changes. \n\nIt encompasses toggles, preferences, and configuration that allow the application to be reactive to changes performed by the merchant, admin, or support engineer. \n\n## Use Cases\n1. What is the site name and site status (online / offline)\n2. What is the default and supported currencies\n3. What is the default and supported locales\n4. Which features are enabled\n\n# Example\n\n```\n{\n \"configurations\":[\n {\n \"configurationType\":\"siteConfiguration\",\n \"id\":\"id\",\n \"value\":\"TestWapi\"\n },\n {\n \"configurationType\":\"siteConfiguration\",\n \"id\":\"name\",\n \"value\":\"Test WAPI\"\n },\n {\n \"configurationType\":\"siteConfiguration\",\n \"id\":\"status\",\n \"value\":\"online\"\n },\n {\n \"configurationType\":\"siteConfiguration\",\n \"id\":\"timezone\",\n \"value\":\"Etc/UTC\"\n },\n {\n \"configurationType\":\"siteConfiguration\",\n \"id\":\"timezoneOffset\",\n \"value\":0\n },\n {\n \"configurationType\":\"siteConfiguration\",\n \"id\":\"defaultCurrency\",\n \"value\":\"USD\"\n },\n {\n \"configurationType\":\"siteConfiguration\",\n \"id\":\"allowedCurrencies\",\n \"value\":[\n \"USD\",\n \"EUR\"\n ]\n },\n {\n \"configurationType\":\"siteConfiguration\",\n \"id\":\"defaultLocale\",\n \"value\":\"default\"\n },\n {\n \"configurationType\":\"siteConfiguration\",\n \"id\":\"allowedLocales\",\n \"value\":[\n {\n \"country\":\"\",\n \"default\":true,\n \"displayCountry\":\"\",\n \"displayLanguage\":\"\",\n \"displayName\":\"default\",\n \"id\":\"default\",\n \"iso3Country\":\"\",\n \"iso3Language\":\"\",\n \"language\":\"\",\n \"name\":\"default\"\n },\n {\n \"country\":\"DE\",\n \"default\":false,\n \"displayCountry\":\"Deutschland\",\n \"displayLanguage\":\"Deutsch\",\n \"displayName\":\"Deutsch (Deutschland)\",\n \"id\":\"de-DE\",\n \"iso3Country\":\"DEU\",\n \"iso3Language\":\"deu\",\n \"language\":\"de\",\n \"name\":\"German (Germany)\"\n },\n {\n \"country\":\"\",\n \"default\":false,\n \"displayCountry\":\"\",\n \"displayLanguage\":\"Deutsch\",\n \"displayName\":\"Deutsch\",\n \"id\":\"de\",\n \"iso3Country\":\"\",\n \"iso3Language\":\"deu\",\n \"language\":\"de\",\n \"name\":\"German\"\n },\n {\n \"country\":\"US\",\n \"default\":false,\n \"displayCountry\":\"United States\",\n \"displayLanguage\":\"English\",\n \"displayName\":\"English (United States)\",\n \"id\":\"en-US\",\n \"iso3Country\":\"USA\",\n \"iso3Language\":\"eng\",\n \"language\":\"en\",\n \"name\":\"English (United States)\"\n },\n {\n \"country\":\"CA\",\n \"default\":false,\n \"displayCountry\":\"Canada\",\n \"displayLanguage\":\"English\",\n \"displayName\":\"English (Canada)\",\n \"id\":\"en-CA\",\n \"iso3Country\":\"CAN\",\n \"iso3Language\":\"eng\",\n \"language\":\"en\",\n \"name\":\"English (Canada)\"\n },\n {\n \"country\":\"\",\n \"default\":false,\n \"displayCountry\":\"\",\n \"displayLanguage\":\"English\",\n \"displayName\":\"English\",\n \"id\":\"en\",\n \"iso3Country\":\"\",\n \"iso3Language\":\"eng\",\n \"language\":\"en\",\n \"name\":\"English\"\n },\n {\n \"country\":\"\",\n \"default\":false,\n \"displayCountry\":\"\",\n \"displayLanguage\":\"español\",\n \"displayName\":\"español\",\n \"id\":\"es\",\n \"iso3Country\":\"\",\n \"iso3Language\":\"spa\",\n \"language\":\"es\",\n \"name\":\"Spanish\"\n }\n ]\n },\n {\n \"configurationType\":\"globalConfiguration\",\n \"id\":\"SalesforcePaymentsAllowed\",\n \"value\":true\n },\n {\n \"configurationType\":\"globalConfiguration\",\n \"id\":\"gcp\",\n \"value\":\"test-gcp-key\"\n }\n ]\n}\n```\n\n### Caching\n\nCaching capabilities are available for the Shopper Configuration APIs. For details, see [Server-Side Web-Tier Caching.](https://developer.salesforce.com/docs/commerce/commerce-api/guide/server-side-web-tier-caching.html)" + version: 1.2.0 + description: |- + [Download API specification](https://developer.salesforce.com/static/commercecloud/commerce-api/shopper-configurations/shopper-configurations-oas-v1-public.yaml) + + # API Overview + + The Shopper Configurations API provides cacheable configuration data to shopper-facing applications, enabling them to make decisions based on merchant settings without requiring server-side logic. + + This highly cacheable data encompasses toggles, preferences, and configuration information that allows the application to be reactive to changes performed by the merchant, admin, or support engineer. + + Configuration types include: + + - siteConfiguration: Site-specific settings such as name, status, currencies, and locales + - globalConfiguration: Instance-wide settings such as feature flags + + ## Authentication & Authorization + + The Shopper Configuration API requires a shopper access token from the Shopper Login and API Access Service (SLAS). + + You must include `sfcc.shopper-configuations` in the client ID used to generate the SLAS token. For a full list of required permissions, see the [Authorization Scopes Catalog.](https://developer.salesforce.com/docs/commerce/commerce-api/guide/auth-z-scope-catalog.html) + + For details on how to request a shopper access token from SLAS, see the guest user flows for [public clients](https://developer.salesforce.com/docs/commerce/commerce-api/guide/slas-public-client.html) and [private clients](https://developer.salesforce.com/docs/commerce/commerce-api/guide/slas-private-client.html) in the SLAS guides. + + ## Use Cases + + ### Use Hooks + You can extend the Shopper Configurations response with custom data using the `dw.shop.shopper_configuration.modifyGETResponse` hook. This is useful for adding custom site preferences to the response. + + ### Example Hook Implementation + + ```javascript + exports.modifyGETResponse = function (configResp) { + var customPreference = dw.system.Site.getCurrent().getCustomPreferenceValue( + "customerServiceEmail" + ); + configResp.c_customPrefs = { + customerServiceEmail: customPreference || "noreply@example.com" + }; + }; + ``` + + For details on hook registration, see [Hook Method Details](https://developer.salesforce.com/docs/commerce/commerce-api/guide/hook-method-details.html). + + ### Site Identification and Availability + + Retrieve the site's display name and current operational status to determine if the storefront is online, offline, or in a maintenance state for shoppers. + + ### Currency Configuration + + Identify the default currency for the site and the list of all supported currencies to ensure correct price rendering and multi-currency support. + + ### Locale and Language Settings + + Access the default locale and the full set of supported locales to localize content, formatting, and language for the shopper's specific region. + + ### Feature Enablement + + View the status of various storefront features and toggles to dynamically enable or disable application logic based on the merchant's active configuration. + + ### Caching + + Caching capabilities are available for the Shopper Configuration APIs. For details, see [Server-Side Web-Tier Caching.](https://developer.salesforce.com/docs/commerce/commerce-api/guide/server-side-web-tier-caching.html) servers: - url: https://{shortCode}.api.commercecloud.salesforce.com/configuration/shopper-configurations/v1 variables: @@ -59,6 +119,7 @@ paths: security: - ShopperToken: - sfcc.shopper-configurations + - sfcc.shopper-standard components: securitySchemes: ShopperToken: @@ -184,6 +245,55 @@ components: ConfigurationsExample: value: configurations: + - id: id + value: RefArch + configurationType: siteConfiguration + - id: name + value: Ref Arch + configurationType: siteConfiguration + - id: status + value: online + configurationType: siteConfiguration + - id: timezone + value: Etc/UTC + configurationType: siteConfiguration + - id: timezoneOffset + value: 0 + configurationType: siteConfiguration + - id: defaultCurrency + value: USD + configurationType: siteConfiguration + - id: allowedCurrencies + value: + - USD + - EUR + configurationType: siteConfiguration + - id: defaultLocale + value: en-US + configurationType: siteConfiguration + - id: allowedLocales + value: + - id: en-US + country: US + default: true + displayCountry: United States + displayLanguage: English + displayName: English (United States) + iso3Country: USA + iso3Language: eng + language: en + name: English (United States) + - id: en-CA + country: CA + default: false + displayCountry: Canada + displayLanguage: English + displayName: English (Canada) + iso3Country: CAN + iso3Language: eng + language: en + name: English (Canada) + configurationType: siteConfiguration - id: SalesforcePaymentsAllowed value: true configurationType: globalConfiguration diff --git a/apis/shopper-consents-oas-1.1.2/shopper-consents-oas-v1-public.yaml b/apis/shopper-consents-oas-1.1.2/shopper-consents-oas-v1-public.yaml deleted file mode 100644 index 65e6b648..00000000 --- a/apis/shopper-consents-oas-1.1.2/shopper-consents-oas-v1-public.yaml +++ /dev/null @@ -1,530 +0,0 @@ -openapi: 3.0.3 -info: - x-api-type: Shopper - x-api-family: Shopper - title: Shopper Consents - version: 1.1.2 - description: |- - [Download API specification](https://developer.salesforce.com/static/commercecloud/commerce-api/shopper-consents/shopper-consents-oas-v1-public.yaml) - - # API Overview - - The Shopper Consent API offers a centralized method for managing shopper consent. With this API, shoppers can view and update subscription preferences for marketing communications across various channels. This API controls how and where shoppers receive marketing messages while ensuring compliance with privacy regulations. - - ## Key Features - - - Multi-Channel Support: Manage communication subscriptions across email, SMS, push notifications, in-app messages, and postal mail. - - Organization-Based Management: Isolate consent preferences by organization for multi-tenant environments. - - Real-Time Updates: Instantly create and retrieve subscription preferences. - - Compliance Ready: Built with privacy regulations and consent-management best practices in mind. - - ## Authentication & Authorization - - The Shopper Consent API requires a JSON Web Token acquired using the Shopper Consent endpoint: - ``` - https://{{shortcode}}.api.commercecloud.salesforce.com/customer/shopper-customers/v1/organizations/{{organizationId}}/customers/actions/login - ``` - You must include the relevant scope(s) in the client ID used to generate the SLAS token. - - ### Required Scopes - - - `sfcc.shopper-consents`: Required for reading communication subscription data (GET operations). - - `sfcc.shopper-consents.rw`: Required for creating and modifying communication subscription data (POST operations). - - ## Use Cases - - ### Shopper Subscription Management - - Retrieve communication subscriptions: Retrieve relevant communication subscription options with display information. - - Guest shoppers can retrieve communication subscriptions options without pre-defined shopper credentials, for example: email address, phone number. - - Authenticated shoppers can retrieve communication subscription options available to their shopper credentials. - - Communication subscription options can be filtered by one or more qualifying tags. - - Update communication subscription consent preferences. - - ## Data Model - - ### Subscriptions - Subscriptions represent a shopper's consent to receive specific types of marketing communications. Each subscription includes: - - - Identifier: Descriptive identifier - - Consent Status: Opt-in or opt-out - - Display Information: Title, subtitle, and description for customer-facing interfaces - - Tags: Categorical tags indicating where the subscription option can appear - - Channels: Supported communication methods, such as email, SMS, push notification - - ### Channels - Channels define the communication methods available for a subscription: - - `email`: Email communications - - `sms`: SMS/text messages - - `whatsapp`: WhatsApp - - ### Tags - Tags indicate where subscription options are displayed in your shopper experience. Tags are also accepted as optional filtering parameters in the retrieval of shopper consent subscriptions. For example: - - `homepage_banner`: Main website homepage - - `registration`: Shopper registration process - - `checkout`: Checkout process - - `user_profile`: User profile management area - - ## Best Practices - - ### User Experience - - Make it easy for shoppers to update their preferences. - - Respect shopper choices immediately. - - ### Implementation Guidelines - - Implement clear and prominent unsubscribe mechanisms. - - ### Compliance Considerations - - Ensure consent is freely given, specific, informed, and unambiguous. - - Implement proper data retention and deletion policies. - - Provide easy access to consent history and preferences. - - ## Error Handling - - The API uses standard HTTP status codes and returns detailed error information to help with troubleshooting: - - - `400 Bad Request`: Invalid request format or missing required fields - - `401 Unauthorized`: Invalid or missing authentication token - - `403 Forbidden`: Insufficient permissions for the requested operation - - `404 Not Found`: Requested organization or resource not found - - `500 Internal Server Error`: Unexpected server error - - ## Rate Limits - - To ensure fair usage and system stability, the Shopper Consent API implements rate limiting. Refer to the response headers for current rate limit status and adjust your integration accordingly. -servers: - - url: https://{shortCode}.api.commercecloud.salesforce.com/shopper/shopper-consents/v1 - variables: - shortCode: - default: shortCode -paths: - /organizations/{organizationId}/subscriptions: - get: - summary: Get shopper consent preferences - description: Retrieve all subcription preferences for the shopper (authenticated or guest) - operationId: getSubscriptions - parameters: - - $ref: '#/components/parameters/organizationId' - - $ref: '#/components/parameters/siteId' - - $ref: '#/components/parameters/locale' - - $ref: '#/components/parameters/tags' - responses: - '200': - description: | - Successfully retrieved subscription preferences. - content: - application/json: - schema: - $ref: '#/components/schemas/ConsentSubscriptionResponse' - examples: - ConsentSubscriptionResponseAuthenticated: - $ref: '#/components/examples/ConsentSubscriptionResponseAuthenticated' - ConsentSubscriptionResponseGuest: - $ref: '#/components/examples/ConsentSubscriptionResponseGuest' - '400': - description: | - Error retrieving subscription preferences - content: - application/problem+json: - schema: - $ref: '#/components/schemas/ErrorResponse' - examples: - ConsentSubscriptionError: - $ref: '#/components/examples/ConsentSubscriptionError' - security: - - ShopperToken: - - sfcc.shopper-consents - post: - summary: Update shopper subscription preferences - description: Update the consent status for a given subscription. - operationId: updateSubscription - parameters: - - $ref: '#/components/parameters/organizationId' - - $ref: '#/components/parameters/siteId' - - $ref: '#/components/parameters/locale' - requestBody: - required: true - content: - application/json: - schema: - $ref: '#/components/schemas/ConsentSubscriptionRequest' - examples: - ConsentSubscriptionUpdateRequest: - $ref: '#/components/examples/ConsentSubscriptionUpdateRequest' - responses: - '200': - description: | - Successfully created or updated consent status. - content: - application/json: - schema: - $ref: '#/components/schemas/ConsentSubscription' - examples: - ConsentSubscriptionUpdateResponse: - $ref: '#/components/examples/ConsentSubscriptionUpdateResponse' - '400': - description: | - Error updating consent status - content: - application/problem+json: - schema: - $ref: '#/components/schemas/ErrorResponse' - examples: - ConsentSubscriptionUpdateError: - $ref: '#/components/examples/ConsentSubscriptionUpdateError' - security: - - ShopperToken: - - sfcc.shopper-consents.rw -components: - securitySchemes: - ShopperToken: - type: oauth2 - description: "ShopperToken authentication follows the authorization code grant flow, as defined by the OAuth 2.1 standard. Depending on the type of OAuth client (public or private), this authorization flow has further requirements. \nFor a detailed description of the authorization flow, see the [SLAS overview](https://developer.salesforce.com/docs/commerce/commerce-api/references?meta=shopper-login:Summary).\nA shopper token allows you to access the Shopper API endpoints B2C Commerce API. These endpoints can be used to build headless storefronts and other applications.\nThe `ShopperToken` security scheme is a parent of other security schemes, such as `ShopperTokenTsob`. A Shopper API endpoint can require a specific child scheme (`ShopperTokenTsob`, for example) that cannot be accessed with a regular shopper token.\n" - flows: - clientCredentials: - tokenUrl: https://{shortCode}.api.commercecloud.salesforce.com/shopper/auth/v1/organizations/{organizationId}/oauth2/token - scopes: - sfcc:shopper-consents: Allows read operations on shopper consents - authorizationCode: - authorizationUrl: https://{short-code}.api.commercecloud.salesforce.com/shopper/auth/v1/organizations/{organizationId}/oauth2/authorize - tokenUrl: https://{short-code}.api.commercecloud.salesforce.com/shopper/auth/v1/organizations/{organizationId}/oauth2/token - scopes: - sfcc.shopper-consents.rw: Allows read/write operations on shopper consents - schemas: - OrganizationId: - description: An identifier for the organization the request is being made by - example: f_ecom_zzxy_prd - type: string - minLength: 1 - maxLength: 32 - SiteId: - minLength: 1 - maxLength: 32 - description: The identifier of the site that a request is being made in the context of. Attributes might have site specific values, and some objects may only be assigned to specific sites - example: RefArch - type: string - LanguageCountry: - pattern: ^[a-z][a-z]-[A-Z][A-Z]$ - description: A concatenated version of the standard Language and Country codes, combined with a hyphen '`-`'. - example: en-US - type: string - LanguageCode: - pattern: ^[a-z][a-z]$ - description: A two letter lowercase language code conforming to the [ISO 639-1](https://www.iso.org/iso-639-language-codes.html) standard. Additionally, this may be used to submit requests with the header parameter `Accept-Language`, following [RFC 2616](https://tools.ietf.org/html/rfc2616) & [RFC 1766](https://tools.ietf.org/html/rfc1766). - example: en - type: string - DefaultFallback: - default: default - description: A specialized value indicating the system default values for locales. - example: default - enum: - - default - type: string - LocaleCode: - description: A descriptor for a geographical region by both a language and country code. By combining these two, regional differences in a language can be addressed, such as with the request header parameter `Accept-Language` following [RFC 2616](https://tools.ietf.org/html/rfc2616) & [RFC 1766](https://tools.ietf.org/html/rfc1766). This can also just refer to a language code, also RFC 2616/1766 compliant, as a default if there is no specific match for a country. Finally, can also be used to define default behavior if there is no locale specified. - oneOf: - - $ref: '#/components/schemas/LanguageCountry' - - $ref: '#/components/schemas/LanguageCode' - - $ref: '#/components/schemas/DefaultFallback' - Tag: - type: string - description: Filter criteria for consent subscriptions - minLength: 1 - maxLength: 256 - example: homepage_banner - SubscriptionId: - type: string - description: Identifier for the communication subscription - minLength: 1 - maxLength: 255 - pattern: ^[a-z0-9]+(?:-[a-z0-9]+)*$ - example: weekly-newsletter - ConsentId: - type: string - minLength: 19 - maxLength: 339 - description: | - Identifier for the shopper communication subscription consent -- formatted as `#` - example: - - jack.sparrow@salesforce.com#0eBWs0000001HmnMAE - - +1 424 535 3546#0eBWs0000001HmnMAE - ContactPointValue: - type: string - minLength: 3 - maxLength: 320 - description: | - The customer's contact point value, polymorphic based on the channel type as below: - - `sms` - Subject's phone number in E.164 format, ex: `+1 424 535 3546` - - `email` - Subject's email address in RFC 5321 & RFC 5322 format, ex: `jack.sparrow@salesforce.com` - example: - - jack.sparrow@salesforce.com - - +1 424 535 3546 - SubscriptionChannel: - type: string - enum: - - email - - sms - - push_notification - - in_app - - postal_mail - - whatsapp - example: - - email - - sms - - push_notification - - in_app - - postal_mail - - whatsapp - ConsentStatus: - type: string - description: The consent status of the subscription as supplied or recorded by this system - enum: - - opt_in - - opt_out - example: - - opt_in - - opt_out - SubscriptionTitle: - type: string - minLength: 1 - maxLength: 255 - example: Weekly Newsletter - SubscriptionSubtitle: - type: string - minLength: 1 - maxLength: 255 - example: Get our weekly newsletter with the latest updates - ConsentSubscription: - type: object - required: - - subscriptionId - - channel - properties: - subscriptionId: - $ref: '#/components/schemas/SubscriptionId' - consentId: - $ref: '#/components/schemas/ConsentId' - contactPointValue: - $ref: '#/components/schemas/ContactPointValue' - channel: - $ref: '#/components/schemas/SubscriptionChannel' - status: - $ref: '#/components/schemas/ConsentStatus' - title: - $ref: '#/components/schemas/SubscriptionTitle' - subtitle: - $ref: '#/components/schemas/SubscriptionSubtitle' - tags: - type: array - items: - $ref: '#/components/schemas/Tag' - minItems: 0 - maxItems: 10 - example: - - homepage_banner - - user_profile - ConsentSubscriptionResponse: - type: object - description: Collection wrapper of consent subscriptions - required: - - data - properties: - data: - type: array - minItems: 0 - maxItems: 50 - items: - $ref: '#/components/schemas/ConsentSubscription' - ErrorResponse: - type: object - additionalProperties: true - properties: - title: - description: "A short, human-readable summary of the problem\ntype. It will not change from occurrence to occurrence of the \nproblem, except for purposes of localization\n" - type: string - maxLength: 256 - example: You do not have enough credit - type: - description: | - A URI reference [RFC3986] that identifies the - problem type. This specification encourages that, when - dereferenced, it provide human-readable documentation for the - problem type (e.g., using HTML [W3C.REC-html5-20141028]). When - this member is not present, its value is assumed to be - "about:blank". It accepts relative URIs; this means - that they must be resolved relative to the document's base URI, as - per [RFC3986], Section 5. - type: string - maxLength: 2048 - example: NotEnoughMoney - detail: - description: A human-readable explanation specific to this occurrence of the problem. - type: string - example: Your current balance is 30, but that costs 50 - instance: - description: | - A URI reference that identifies the specific - occurrence of the problem. It may or may not yield further - information if dereferenced. It accepts relative URIs; this means - that they must be resolved relative to the document's base URI, as - per [RFC3986], Section 5. - type: string - maxLength: 2048 - example: /account/12345/msgs/abc - required: - - title - - type - - detail - ConsentSubscriptionRequest: - type: object - description: Consent subscription update request - required: - - subscriptionId - - contactPointValue - - channel - - status - properties: - subscriptionId: - $ref: '#/components/schemas/SubscriptionId' - contactPointValue: - $ref: '#/components/schemas/ContactPointValue' - channel: - $ref: '#/components/schemas/SubscriptionChannel' - status: - $ref: '#/components/schemas/ConsentStatus' - parameters: - organizationId: - description: An identifier for the organization the request is being made by - name: organizationId - in: path - required: true - example: f_ecom_zzxy_prd - schema: - $ref: '#/components/schemas/OrganizationId' - siteId: - description: The identifier of the site that a request is being made in the context of. Attributes might have site specific values, and some objects may only be assigned to specific sites. - name: siteId - in: query - required: true - examples: - SiteId: - value: RefArch - schema: - $ref: '#/components/schemas/SiteId' - locale: - description: A descriptor for a geographical region by both a language and country code. By combining these two, regional differences in a language can be addressed, such as with the request header parameter `Accept-Language` following [RFC 2616](https://tools.ietf.org/html/rfc2616) & [RFC 1766](https://tools.ietf.org/html/rfc1766). This can also just refer to a language code, also RFC 2616/1766 compliant, as a default if there is no specific match for a country. Finally, can also be used to define default behavior if there is no locale specified. - name: locale - in: query - examples: - LanguageCountry: - value: en-US - CountryCode: - value: US - schema: - $ref: '#/components/schemas/LocaleCode' - tags: - description: Optional parameter of 0 or more query string values which act as a filtering criteria. Multiple values are treated with `OR` logic, and absence of a value indicates no filtering by tag is desired. - name: tags - in: query - required: false - schema: - type: array - items: - $ref: '#/components/schemas/Tag' - minItems: 0 - maxItems: 10 - style: form - explode: false - examples: - one: - summary: One tag filter - value: - - homepage_banner - multiple: - summary: Multiple tag filters (ORs) - value: - - homepage_banner - - user_profile - - checkout - - registration - examples: - ConsentSubscriptionResponseAuthenticated: - summary: AUTHENTICATED shopper's available consent subscriptions - value: - data: - - subscriptionId: weekly-newsletter - contactPointValue: test@test.com - channel: email - status: opt_in - title: Weekly Newsletter - subtitle: Get our weekly newsletter with the latest updates. - tags: - - homepage_banner - - user_profile - - subscriptionId: weekly-newsletter - contactPointValue: +1 555 321 7654 - channel: whatsapp - status: opt_in - title: Weekly Newsletter - subtitle: Get our weekly newsletter with the latest updates. - tags: - - user_profile - - subscriptionId: promotional-offers - contactPointValue: +1 555 123 4567 - channel: sms - status: opt_out - title: Promotional Offers - subtitle: Receive special promotional offers. - tags: - - checkout - ConsentSubscriptionResponseGuest: - summary: GUEST shopper's available consent subscriptions - value: - data: - - subscriptionId: weekly-newsletter - channel: email - title: Weekly Newsletter - subtitle: Get our weekly newsletter with the latest updates. - tags: - - homepage_banner - - user_profile - - subscriptionId: weekly-newsletter - channel: whatsapp - title: Weekly Newsletter - subtitle: Get our weekly newsletter with the latest updates. - tags: - - user_profile - - subscriptionId: promotional-offers - channel: sms - title: Promotional Offers - subtitle: Receive special promotional offers. - tags: - - checkout - ConsentSubscriptionError: - value: - title: Error Retrieving Consent Subscription - type: https://api.commercecloud.salesforce.com/documentation/error/v1/errors/bad-request - detail: Error retrieving consent subscription. - ConsentSubscriptionUpdateRequest: - summary: Shopper's consent subscription update request - value: - subscriptionId: weekly-newsletter - contactPointValue: test@test.com - channel: email - status: opt_in - ConsentSubscriptionUpdateResponse: - summary: Shopper's consent subscription update response - value: - subscriptionId: weekly-newsletter - contactPointValue: test@test.com - channel: email - status: opt_in - title: Weekly Newsletter - subtitle: Get our weekly newsletter with the latest updates. - tags: - - homepage_banner - - user_profile - ConsentSubscriptionUpdateError: - value: - title: Error Updating Consent Subscription - type: https://api.commercecloud.salesforce.com/documentation/error/v1/errors/validation - detail: Consent subscription could not be updated. diff --git a/apis/shopper-consents-oas-1.1.2/exchange.json b/apis/shopper-consents-oas-1.1.4/exchange.json similarity index 93% rename from apis/shopper-consents-oas-1.1.2/exchange.json rename to apis/shopper-consents-oas-1.1.4/exchange.json index 07657dcb..a364781f 100644 --- a/apis/shopper-consents-oas-1.1.2/exchange.json +++ b/apis/shopper-consents-oas-1.1.4/exchange.json @@ -3,7 +3,7 @@ "name": "Shopper Consents OAS", "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", "assetId": "shopper-consents-oas", - "version": "1.1.2", + "version": "1.1.4", "classifier": "oas", "tags": [], "descriptorVersion": "1.0.0", diff --git a/apis/shopper-consents-oas-1.1.4/shopper-consents-oas-v1-public.yaml b/apis/shopper-consents-oas-1.1.4/shopper-consents-oas-v1-public.yaml new file mode 100644 index 00000000..09c1221a --- /dev/null +++ b/apis/shopper-consents-oas-1.1.4/shopper-consents-oas-v1-public.yaml @@ -0,0 +1,767 @@ +openapi: 3.0.3 +info: + x-api-type: Shopper + x-api-family: Shopper + title: Shopper Consents + version: 1.1.4 + description: "[Download API specification](https://developer.salesforce.com/static/commercecloud/commerce-api/shopper-consents/shopper-consents-oas-v1-public.yaml)\n\n# API Overview\n\nThe Shopper Consent API offers a centralized method for managing shopper consent. With this API, shoppers can view and update subscription preferences for marketing communications across various channels. This API controls how and where shoppers receive marketing messages while ensuring compliance with privacy regulations.\n\nThe Shopper Consent API provides sensible defaults for optional fields to simplify integration:\n- Consent Type: Defaults to \"marketing\" for marketing communications.\n- Consent Required: Defaults to false, making subscriptions optional by default.\n- Default Status: Defaults to \"opt_out\" to respect privacy-first principles.\n- Tags: Defaults to an empty array when not specified.\n\n## Authentication & Authorization\n\nThe Shopper Consent API requires a shopper access token from the Shopper Login and API Access Service (SLAS).\n\nYou must include the relevant scope(s) in the client ID used to generate the SLAS token.\n\n- `sfcc.shopper-consents`: Required for reading communication subscription data (GET operations).\n- `sfcc.shopper-consents.rw`: Required for creating and modifying communication subscription consent data (POST operations).\n\nFor a full list of required permissions, see the [Authorization Scopes Catalog.](https://developer.salesforce.com/docs/commerce/commerce-api/guide/auth-z-scope-catalog.html)\n\nFor details on how to request a shopper access token from SLAS, see the guest user flows for [public clients](https://developer.salesforce.com/docs/commerce/commerce-api/guide/slas-public-client.html) and [private clients](https://developer.salesforce.com/docs/commerce/commerce-api/guide/slas-private-client.html) in the SLAS guides. \n\n## Data Model\n\n### Subscriptions\nSubscriptions represent a shopper's consent to receive specific types of marketing communications. Each subscription includes:\n\n- Subscription Id: Descriptive identifier\n- Channels: Array of communication methods - Email, SMS, or WhatsApp\n- Consent Type: Marketing or legal subscription classification\n- Consent Required: Whether the subscription is mandatory for the shopper\n- Default Status: Default opt-in or opt-out behavior\n- Consent Status: Array of status entries for each channel showing current opt-in or opt-out status (conditionally returned based on expand parameter)\n- Rich Display Information: \n - Title: Simple localized string for subscription name\n - Subtitle: Simple localized string with HTML markup support for descriptions\n - Localized content determined by the locale parameter\n- Tags: Categorical tags indicating where the subscription option can appear (defaults to empty array, max 10 tags)\n\n### Channels\nChannels define the communication methods available for a subscription:\n- `email`: Email communications\n- `sms`: SMS/text messages\n- `whatsapp`: WhatsApp messaging\n\n### Tags\nTags indicate where subscription options are displayed in your shopper experience. Tags are also accepted as optional filtering parameters in the retrieval of shopper consent subscriptions. For example:\n- `homepage_banner`: Main website homepage\n- `registration`: Shopper registration form\n- `checkout`: Checkout flow\n- `user_profile`: User profile management section\n\n## Use Cases\n\n### Retrieve communication subscriptions\n\nRetrieve relevant communication subscription options with rich display information.\n - Communication subscription options can be filtered by one or more qualifying tags.\n - Use the `expand` parameter to conditionally include subscription status.\n\n### Update individual subscription consent\n\nUpdate consent status for a single subscription with simple request/response pattern.\n\n### Bulk subscription updates\n\nEfficiently manage multiple subscription preferences with a single request.\n - Update 1-50 subscriptions per bulk request.\n - Partial success handling with detailed error reporting for failed updates.\n\n## Advanced Features\n\n### Expand Parameter\n\nThe `expand` parameter provides conditional field inclusion:\n- `expand=[]` (default): Returns basic subscription information\n- `expand=[\"consentStatus\"]`: Include consent status information in the response\n- Future expansion may include additional fields\n\n## Best Practices\n\n- Use single subscription updates for real-time, interactive preference changes.\n- Use bulk operations when updating multiple subscriptions to reduce API calls and improve performance.\n- Only request status information when needed using the expand parameter to reduce latency." +servers: + - url: https://{shortCode}.api.commercecloud.salesforce.com/shopper/shopper-consents/v1 + variables: + shortCode: + default: shortCode +paths: + /organizations/{organizationId}/subscriptions: + get: + summary: Get shopper consent preferences + description: "Retrieve all subscription preferences for the shopper (authenticated or guest).\n\nUse the 'expand' parameter to include additional fields in the response:\n- expand=[\"consentStatus\"]: Include subscription status information\n- expand=[]: Default behavior, excludes status for privacy and performance\n\nThe expand parameter provides privacy benefits by not exposing sensitive status \ninformation unless explicitly requested.\n" + operationId: getSubscriptions + parameters: + - $ref: '#/components/parameters/organizationId' + - $ref: '#/components/parameters/siteId' + - $ref: '#/components/parameters/locale' + - $ref: '#/components/parameters/tags' + - $ref: '#/components/parameters/expand' + responses: + '200': + description: | + Successfully retrieved subscription preferences. + content: + application/json: + schema: + $ref: '#/components/schemas/ConsentSubscriptionResponse' + examples: + ConsentSubscriptionResponseAuthenticated: + $ref: '#/components/examples/ConsentSubscriptionResponseAuthenticated' + ConsentSubscriptionResponseAuthenticatedExpanded: + $ref: '#/components/examples/ConsentSubscriptionResponseAuthenticatedExpanded' + ConsentSubscriptionResponseGuest: + $ref: '#/components/examples/ConsentSubscriptionResponseGuest' + '400': + description: | + Error retrieving subscription preferences + content: + application/problem+json: + schema: + $ref: '#/components/schemas/ErrorResponse' + examples: + ConsentSubscriptionError: + $ref: '#/components/examples/ConsentSubscriptionError' + security: + - ShopperToken: + - sfcc.shopper-consents + - sfcc.shopper-consents.rw + post: + summary: Update shopper subscription preference + description: Update the consent status for a single subscription. + operationId: updateSubscription + parameters: + - $ref: '#/components/parameters/organizationId' + - $ref: '#/components/parameters/siteId' + - $ref: '#/components/parameters/locale' + requestBody: + required: true + content: + application/json: + schema: + $ref: '#/components/schemas/ConsentSubscriptionRequest' + examples: + ConsentSubscriptionUpdateRequest: + $ref: '#/components/examples/ConsentSubscriptionUpdateRequest' + responses: + '200': + description: | + Subscription update completed successfully. + content: + application/json: + schema: + $ref: '#/components/schemas/ConsentSubscriptionUpdateResponse' + examples: + ConsentSubscriptionUpdateResponseSuccess: + $ref: '#/components/examples/ConsentSubscriptionUpdateResponseSuccess' + '400': + description: | + Error with request format or validation + content: + application/problem+json: + schema: + $ref: '#/components/schemas/ErrorResponse' + examples: + ConsentSubscriptionUpdateError: + $ref: '#/components/examples/ConsentSubscriptionUpdateError' + security: + - ShopperToken: + - sfcc.shopper-consents.rw + /organizations/{organizationId}/subscriptions/actions/bulk: + post: + summary: Update shopper subscription preferences + description: Update the consent status for multiple subscriptions in a single bulk request. Supports 1-50 subscription updates per request with partial success handling. + operationId: updateSubscriptions + parameters: + - $ref: '#/components/parameters/organizationId' + - $ref: '#/components/parameters/siteId' + - $ref: '#/components/parameters/locale' + requestBody: + required: true + content: + application/json: + schema: + $ref: '#/components/schemas/ConsentSubscriptionBulkRequest' + examples: + ConsentSubscriptionBulkUpdateRequest: + $ref: '#/components/examples/ConsentSubscriptionBulkUpdateRequest' + responses: + '200': + description: | + All subscription updates completed successfully. + content: + application/json: + schema: + $ref: '#/components/schemas/ConsentSubscriptionBulkResponse' + examples: + ConsentSubscriptionBulkUpdateResponseSuccess: + $ref: '#/components/examples/ConsentSubscriptionBulkUpdateResponseSuccess' + '207': + description: | + Partial success - some subscription updates succeeded, others failed. + content: + application/json: + schema: + $ref: '#/components/schemas/ConsentSubscriptionBulkResponse' + examples: + ConsentSubscriptionBulkUpdateResponsePartial: + $ref: '#/components/examples/ConsentSubscriptionBulkUpdateResponsePartial' + '400': + description: | + Error with bulk request format or validation + content: + application/problem+json: + schema: + $ref: '#/components/schemas/ErrorResponse' + examples: + BulkValidationError: + $ref: '#/components/examples/BulkValidationError' + security: + - ShopperToken: + - sfcc.shopper-consents.rw +components: + securitySchemes: + ShopperToken: + type: oauth2 + description: "ShopperToken authentication follows the authorization code grant flow, as defined by the OAuth 2.1 standard. Depending on the type of OAuth client (public or private), this authorization flow has further requirements. \nFor a detailed description of the authorization flow, see the [SLAS overview](https://developer.salesforce.com/docs/commerce/commerce-api/references?meta=shopper-login:Summary).\nA shopper token allows you to access the Shopper API endpoints B2C Commerce API. These endpoints can be used to build headless storefronts and other applications.\nThe `ShopperToken` security scheme is a parent of other security schemes, such as `ShopperTokenTsob`. A Shopper API endpoint can require a specific child scheme (`ShopperTokenTsob`, for example) that cannot be accessed with a regular shopper token.\n" + flows: + clientCredentials: + tokenUrl: https://{shortCode}.api.commercecloud.salesforce.com/shopper/auth/v1/organizations/{organizationId}/oauth2/token + scopes: + sfcc.shopper-consents: Allows read operations on shopper consents + sfcc.shopper-consents.rw: Allows read/write operations on shopper consents + authorizationCode: + authorizationUrl: https://{short-code}.api.commercecloud.salesforce.com/shopper/auth/v1/organizations/{organizationId}/oauth2/authorize + tokenUrl: https://{short-code}.api.commercecloud.salesforce.com/shopper/auth/v1/organizations/{organizationId}/oauth2/token + scopes: + sfcc.shopper-consents: Allows read operations on shopper consents + sfcc.shopper-consents.rw: Allows read/write operations on shopper consents + schemas: + OrganizationId: + description: An identifier for the organization the request is being made by + example: f_ecom_zzxy_prd + type: string + minLength: 1 + maxLength: 32 + SiteId: + minLength: 1 + maxLength: 32 + description: The identifier of the site that a request is being made in the context of. Attributes might have site specific values, and some objects may only be assigned to specific sites + example: RefArch + type: string + LanguageCountry: + pattern: ^[a-z][a-z]-[A-Z][A-Z]$ + description: A concatenated version of the standard Language and Country codes, combined with a hyphen '`-`'. + example: en-US + type: string + LanguageCode: + pattern: ^[a-z][a-z]$ + description: A two letter lowercase language code conforming to the [ISO 639-1](https://www.iso.org/iso-639-language-codes.html) standard. Additionally, this may be used to submit requests with the header parameter `Accept-Language`, following [RFC 2616](https://tools.ietf.org/html/rfc2616) & [RFC 1766](https://tools.ietf.org/html/rfc1766). + example: en + type: string + DefaultFallback: + default: default + description: A specialized value indicating the system default values for locales. + pattern: ^default$ + example: default + type: string + LocaleCode: + description: A descriptor for a geographical region by both a language and country code. By combining these two, regional differences in a language can be addressed, such as with the request header parameter `Accept-Language` following [RFC 2616](https://tools.ietf.org/html/rfc2616) & [RFC 1766](https://tools.ietf.org/html/rfc1766). This can also just refer to a language code, also RFC 2616/1766 compliant, as a default if there is no specific match for a country. Finally, can also be used to define default behavior if there is no locale specified. + oneOf: + - $ref: '#/components/schemas/LanguageCountry' + - $ref: '#/components/schemas/LanguageCode' + - $ref: '#/components/schemas/DefaultFallback' + Tag: + type: string + description: Filter criteria for consent subscriptions + minLength: 1 + maxLength: 256 + example: homepage_banner + SubscriptionId: + type: string + description: Identifier for the communication subscription + minLength: 1 + maxLength: 255 + pattern: ^[a-z0-9]+(?:-[a-z0-9]+)*$ + example: weekly-newsletter + ChannelType: + type: string + enum: + - email + - sms + - whatsapp + example: email + SubscriptionChannel: + type: array + items: + $ref: '#/components/schemas/ChannelType' + minItems: 1 + maxItems: 3 + uniqueItems: true + example: + - email + - sms + ContactPointValue: + type: string + minLength: 3 + maxLength: 320 + description: | + The customer's contact point value, polymorphic based on the channel type as below: + - `sms` - Subject's phone number in E.164 format, ex: `+1 424 535 3546` + - `email` - Subject's email address in RFC 5321 & RFC 5322 format, ex: `jack.sparrow@salesforce.com` + example: jack.sparrow@salesforce.com + ConsentStatus: + type: string + description: The consent status of the subscription as supplied or recorded by this system + enum: + - opt_in + - opt_out + example: opt_in + SubscriptionStatusEntry: + type: object + description: Individual subscription status entry for a specific channel + required: + - channel + - contactPointValue + - status + properties: + channel: + $ref: '#/components/schemas/ChannelType' + contactPointValue: + $ref: '#/components/schemas/ContactPointValue' + status: + $ref: '#/components/schemas/ConsentStatus' + example: + channel: email + contactPointValue: john.doe@example.com + status: opt_in + additionalProperties: false + SubscriptionStatusArray: + type: array + description: Array of subscription status entries for different channels + items: + $ref: '#/components/schemas/SubscriptionStatusEntry' + minItems: 0 + maxItems: 10 + example: + - channel: email + contactPointValue: john.doe@example.com + status: opt_in + - channel: sms + contactPointValue: +1 555 123 4567 + status: opt_out + SubscriptionTitle: + type: string + description: The localized title of the subscription for shopper displays + minLength: 1 + maxLength: 255 + example: Weekly Newsletter + SubscriptionSubtitle: + type: string + description: The localized subtitle of the subscription for shopper displays, may contain HTML markup + minLength: 1 + maxLength: 2000 + example: Stay informed about new features. Learn more + ConsentSubscription: + type: object + required: + - subscriptionId + - channels + properties: + subscriptionId: + $ref: '#/components/schemas/SubscriptionId' + channels: + $ref: '#/components/schemas/SubscriptionChannel' + consentStatus: + $ref: '#/components/schemas/SubscriptionStatusArray' + description: "Subscription status information across different channels. This field is only included in the response \nwhen the 'expand' parameter contains \"consentStatus\". For privacy and performance \nreasons, status is not returned by default.\n" + title: + $ref: '#/components/schemas/SubscriptionTitle' + subtitle: + $ref: '#/components/schemas/SubscriptionSubtitle' + tags: + type: array + items: + $ref: '#/components/schemas/Tag' + minItems: 0 + maxItems: 10 + default: [] + example: + - homepage_banner + - user_profile + consentType: + type: string + enum: + - marketing + - legal + description: Type of consent subscription + default: marketing + example: marketing + consentRequired: + type: boolean + description: Whether this subscription is mandatory for the user + default: false + example: false + defaultStatus: + type: string + enum: + - opt_in + - opt_out + description: Default consent status for this subscription + default: opt_out + example: opt_out + ConsentSubscriptionResponse: + type: object + description: Collection wrapper of consent subscriptions + required: + - data + properties: + data: + type: array + minItems: 0 + maxItems: 50 + items: + $ref: '#/components/schemas/ConsentSubscription' + ErrorResponse: + type: object + additionalProperties: true + properties: + title: + description: "A short, human-readable summary of the problem\ntype. It will not change from occurrence to occurrence of the \nproblem, except for purposes of localization\n" + type: string + maxLength: 256 + example: You do not have enough credit + type: + description: | + A URI reference [RFC3986] that identifies the + problem type. This specification encourages that, when + dereferenced, it provide human-readable documentation for the + problem type (e.g., using HTML [W3C.REC-html5-20141028]). When + this member is not present, its value is assumed to be + "about:blank". It accepts relative URIs; this means + that they must be resolved relative to the document's base URI, as + per [RFC3986], Section 5. + type: string + maxLength: 2048 + example: NotEnoughMoney + detail: + description: A human-readable explanation specific to this occurrence of the problem. + type: string + example: Your current balance is 30, but that costs 50 + instance: + description: | + A URI reference that identifies the specific + occurrence of the problem. It may or may not yield further + information if dereferenced. It accepts relative URIs; this means + that they must be resolved relative to the document's base URI, as + per [RFC3986], Section 5. + type: string + maxLength: 2048 + example: /account/12345/msgs/abc + required: + - title + - type + - detail + ConsentSubscriptionRequest: + type: object + description: Consent subscription update request + required: + - subscriptionId + - contactPointValue + - channel + - status + properties: + subscriptionId: + $ref: '#/components/schemas/SubscriptionId' + contactPointValue: + $ref: '#/components/schemas/ContactPointValue' + channel: + $ref: '#/components/schemas/ChannelType' + status: + $ref: '#/components/schemas/ConsentStatus' + ConsentSubscriptionUpdateResponse: + type: object + description: Single subscription update response + required: + - subscriptionId + - contactPointValue + - channel + - status + properties: + subscriptionId: + $ref: '#/components/schemas/SubscriptionId' + channel: + $ref: '#/components/schemas/ChannelType' + contactPointValue: + $ref: '#/components/schemas/ContactPointValue' + status: + $ref: '#/components/schemas/ConsentStatus' + ConsentSubscriptionBulkRequest: + type: object + description: Bulk request for updating multiple consent subscriptions + required: + - subscriptions + properties: + subscriptions: + type: array + items: + $ref: '#/components/schemas/ConsentSubscriptionRequest' + minItems: 1 + maxItems: 50 + description: Array of subscription consent updates to process + example: + - subscriptionId: weekly-newsletter + channel: email + contactPointValue: john.doe@example.com + status: opt_in + - subscriptionId: sms-alerts + channel: sms + contactPointValue: +1 555 123 4567 + status: opt_out + ConsentSubscriptionError: + type: object + description: Error details for failed subscription updates + required: + - code + - message + properties: + code: + type: string + description: Error code indicating the type of failure + maxLength: 100 + example: INVALID_CONTACT_POINT + message: + type: string + description: Human-readable error message + maxLength: 500 + example: Invalid email address format + details: + type: object + description: Additional error details + example: + field: contactPointValue + provided: invalid-email + additionalProperties: false + ConsentSubscriptionResult: + type: object + description: Individual subscription update result with input parameters + required: + - subscriptionId + - contactPointValue + - channel + - status + - success + properties: + subscriptionId: + $ref: '#/components/schemas/SubscriptionId' + channel: + $ref: '#/components/schemas/ChannelType' + contactPointValue: + $ref: '#/components/schemas/ContactPointValue' + status: + $ref: '#/components/schemas/ConsentStatus' + success: + type: boolean + description: Whether the subscription update was successful + example: true + error: + $ref: '#/components/schemas/ConsentSubscriptionError' + description: Error details (present when success is false) + ConsentSubscriptionBulkResponse: + type: object + description: Bulk response with results for each subscription update request + required: + - results + properties: + results: + type: array + items: + $ref: '#/components/schemas/ConsentSubscriptionResult' + description: Results for each subscription update request + parameters: + organizationId: + description: An identifier for the organization the request is being made by + name: organizationId + in: path + required: true + example: f_ecom_zzxy_prd + schema: + $ref: '#/components/schemas/OrganizationId' + siteId: + description: The identifier of the site that a request is being made in the context of. Attributes might have site specific values, and some objects may only be assigned to specific sites. + name: siteId + in: query + required: true + examples: + SiteId: + value: RefArch + schema: + $ref: '#/components/schemas/SiteId' + locale: + description: A descriptor for a geographical region by both a language and country code. By combining these two, regional differences in a language can be addressed, such as with the request header parameter `Accept-Language` following [RFC 2616](https://tools.ietf.org/html/rfc2616) & [RFC 1766](https://tools.ietf.org/html/rfc1766). This can also just refer to a language code, also RFC 2616/1766 compliant, as a default if there is no specific match for a country. Finally, can also be used to define default behavior if there is no locale specified. + name: locale + in: query + examples: + LanguageCountry: + value: en-US + CountryCode: + value: US + schema: + $ref: '#/components/schemas/LocaleCode' + tags: + description: Optional parameter of 0 or more query string values which act as a filtering criteria. Multiple values are treated with `OR` logic, and absence of a value indicates no filtering by tag is desired. + name: tags + in: query + required: false + schema: + type: array + items: + $ref: '#/components/schemas/Tag' + minItems: 0 + maxItems: 10 + style: form + explode: false + examples: + one: + summary: One tag filter + value: + - homepage_banner + multiple: + summary: Multiple tag filters (ORs) + value: + - homepage_banner + - user_profile + - checkout + - registration + expand: + description: "Optional parameter to expand response with additional fields. \nAccepts an array of field names to include in the response.\nCurrently supports:\n- \"consentStatus\": Include consent status information in the response\n\nFuture expansions may include additional fields.\n" + name: expand + in: query + required: false + schema: + type: array + items: + type: string + enum: + - consentStatus + example: consentStatus + uniqueItems: true + default: [] + minItems: 0 + maxItems: 10 + style: form + explode: false + examples: + empty: + summary: No expansion (default behavior) + value: [] + consentStatus: + summary: Include status information + value: + - consentStatus + examples: + ConsentSubscriptionResponseAuthenticated: + summary: AUTHENTICATED shopper's available consent subscriptions + value: + data: + - subscriptionId: weekly-newsletter + channels: + - email + - whatsapp + title: Weekly Newsletter + subtitle: Get our weekly newsletter with the latest updates. Learn more + consentType: marketing + consentRequired: false + defaultStatus: opt_out + tags: + - homepage_banner + - user_profile + - subscriptionId: promotional-offers + channels: + - sms + title: Promotional Offers + subtitle: Receive special promotional offers. View terms + consentType: marketing + consentRequired: false + defaultStatus: opt_out + tags: + - checkout + ConsentSubscriptionResponseAuthenticatedExpanded: + summary: AUTHENTICATED shopper's consent subscriptions with expand=["consentStatus"] + value: + data: + - subscriptionId: weekly-newsletter + channels: + - email + - whatsapp + consentStatus: + - channel: email + contactPointValue: customer@example.com + status: opt_in + - channel: whatsapp + contactPointValue: +1 555 123 4567 + status: opt_out + title: Weekly Newsletter + subtitle: Get our weekly newsletter with the latest updates. Learn more + consentType: marketing + consentRequired: false + defaultStatus: opt_out + tags: + - homepage_banner + - user_profile + - subscriptionId: promotional-offers + channels: + - sms + consentStatus: + - channel: sms + contactPointValue: +1 555 987 6543 + status: opt_out + title: Promotional Offers + subtitle: Receive special promotional offers. View terms + consentType: marketing + consentRequired: false + defaultStatus: opt_out + tags: + - checkout + - user_profile + - subscriptionId: privacy-policy-updates + channels: + - email + consentStatus: + - channel: email + contactPointValue: customer@example.com + status: opt_in + title: Privacy Policy Updates + subtitle: Important updates to our privacy policy. Read policy + consentType: legal + consentRequired: true + defaultStatus: opt_in + tags: + - registration + ConsentSubscriptionResponseGuest: + summary: GUEST shopper's available consent subscriptions + value: + data: + - subscriptionId: weekly-newsletter + channels: + - email + - whatsapp + title: Weekly Newsletter + subtitle: Get our weekly newsletter with the latest updates. Learn more + consentType: marketing + consentRequired: false + defaultStatus: opt_out + tags: + - homepage_banner + - user_profile + - subscriptionId: promotional-offers + channels: + - sms + title: Promotional Offers + subtitle: Receive special promotional offers. View terms + consentType: marketing + consentRequired: false + defaultStatus: opt_out + tags: + - checkout + ConsentSubscriptionError: + value: + title: Error Retrieving Consent Subscription + type: https://api.commercecloud.salesforce.com/documentation/error/v1/errors/bad-request + detail: Error retrieving consent subscription. + ConsentSubscriptionUpdateRequest: + summary: Single subscription update request + value: + subscriptionId: weekly-newsletter + contactPointValue: john.doe@example.com + channel: email + status: opt_in + ConsentSubscriptionUpdateResponseSuccess: + summary: Single subscription update successful (200 response) + value: + subscriptionId: weekly-newsletter + contactPointValue: john.doe@example.com + channel: email + status: opt_in + ConsentSubscriptionUpdateError: + value: + title: Error Updating Consent Subscription + type: https://api.commercecloud.salesforce.com/documentation/error/v1/errors/validation + detail: Consent subscription could not be updated. + ConsentSubscriptionBulkUpdateRequest: + summary: Bulk subscription update request + value: + subscriptions: + - subscriptionId: weekly-newsletter + contactPointValue: john.doe@example.com + channel: email + status: opt_in + - subscriptionId: sms-alerts + contactPointValue: +1 555 123 4567 + channel: sms + status: opt_out + ConsentSubscriptionBulkUpdateResponseSuccess: + summary: All subscription updates successful (200 response) + value: + results: + - subscriptionId: weekly-newsletter + contactPointValue: john.doe@example.com + channel: email + status: opt_in + success: true + - subscriptionId: sms-alerts + contactPointValue: +1 555 123 4567 + channel: sms + status: opt_out + success: true + ConsentSubscriptionBulkUpdateResponsePartial: + summary: Partial success - some updates failed (207 response) + value: + results: + - subscriptionId: weekly-newsletter + contactPointValue: john.doe@example.com + channel: email + status: opt_in + success: true + - subscriptionId: sms-alerts + contactPointValue: invalid-phone + channel: sms + status: opt_out + success: false + error: + code: INVALID_CONTACT_POINT + message: Invalid phone number format + details: + field: contactPointValue + provided: invalid-phone + BulkValidationError: + value: + title: Bulk Request Validation Error + type: https://api.commercecloud.salesforce.com/documentation/error/v1/errors/validation + detail: One or more validation errors occurred in the bulk request. + instance: /organizations/f_ecom_zzrf_001/subscriptions diff --git a/apis/shopper-context-oas-1.1.2/exchange.json b/apis/shopper-context-oas-1.1.3/exchange.json similarity index 93% rename from apis/shopper-context-oas-1.1.2/exchange.json rename to apis/shopper-context-oas-1.1.3/exchange.json index bbe3bee5..4a72a9a0 100644 --- a/apis/shopper-context-oas-1.1.2/exchange.json +++ b/apis/shopper-context-oas-1.1.3/exchange.json @@ -3,7 +3,7 @@ "name": "Shopper Context OAS", "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", "assetId": "shopper-context-oas", - "version": "1.1.2", + "version": "1.1.3", "classifier": "oas", "tags": [], "descriptorVersion": "1.0.0", diff --git a/apis/shopper-context-oas-1.1.2/shopper-context-oas-v1-public.yaml b/apis/shopper-context-oas-1.1.3/shopper-context-oas-v1-public.yaml similarity index 95% rename from apis/shopper-context-oas-1.1.2/shopper-context-oas-v1-public.yaml rename to apis/shopper-context-oas-1.1.3/shopper-context-oas-v1-public.yaml index a38269d3..8267f56f 100644 --- a/apis/shopper-context-oas-1.1.2/shopper-context-oas-v1-public.yaml +++ b/apis/shopper-context-oas-1.1.3/shopper-context-oas-v1-public.yaml @@ -3,8 +3,8 @@ info: x-api-type: Shopper x-api-family: Shopper title: Shopper Context - version: 1.1.2 - description: "[Download API specification](https://developer.salesforce.com/static/commercecloud/commerce-api/shopper-context/shopper-context-oas-v1-public.yaml)\n\n# API Overview\n\nWith the Shopper Context API, you can set any context information as a key/value pair and use it to retrieve personalized promotions, payment methods, and shipping methods. The context information that is set is evaluated against the customer group definitions to determine a customer group (shopper segment), and is then used to activate the experiences that are associated with a particular segment, such as promotions.\n\nYou can also get personalized API responses triggered by shopper context from the [Open Commerce API](https://developer.salesforce.com/docs/commerce/b2c-commerce/references/b2c-commerce-ocapi/get-started-with-ocapi.html) (OCAPI). Support for both the B2C Commerce API and OCAPI allows shopper context to be used in hybrid deployments.\n\n**Warning** \nAccess tokens with a scope that includes the Shopper Context API are powerful. They can activate specific promotions and can be used to see how a storefront would be displayed in the future. Don't share them with untrusted clients like web browsers or client apps.\n\nMake Shopper Context calls with a private client and only set shopper context through a secure backend channel. To avoid misuse, do not make direct calls through a browser or similar client in which data can be viewed. \n\nAs part of this, when creating a SLAS public client for a tenant, if you attempt to add the Shopper Context API scope, a warning message is displayed to ensure you are aware of the pitfalls of doing so.\n\n**Note**:\n\nShopper context is valid for 1 day for guest shoppers and 7 days for registered shoppers. To extend the context set, create a new context. As a best practice, refresh your contexts periodically to ensure that the right personalized experience is rendered for your shoppers.\n\n## Authentication & Authorization\n\nThe Shopper Context API requires a shopper access token from the Shopper Login and API Access Service (SLAS).\n\nFor details on how to request a shopper access token from SLAS, see the guest user flows for [public clients](https://developer.salesforce.com/docs/commerce/commerce-api/guide/slas-public-client.html) and [private clients](https://developer.salesforce.com/docs/commerce/commerce-api/guide/slas-private-client.html) in the SLAS guides. \n\nAdd `sfcc.shopper-context.rw` to the scopes configuration for the SLAS API client.\n\nFor more information, see [Authorization for Shopper APIs](https://developer.salesforce.com/docs/commerce/commerce-api/guide/authorization-for-shopper-apis.html) in the Get Started guides.\n\n**Warning**: As with all APIs, never store access tokens in the browser because this creates a security vulnerability.\n\n## Use Cases\n\nFor detailed usage information, see the [Shopper Context guides](https://developer.salesforce.com/docs/commerce/commerce-api/guide/shopper-context-api.html)." + version: 1.1.3 + description: "[Download API specification](https://developer.salesforce.com/static/commercecloud/commerce-api/shopper-context/shopper-context-oas-v1-public.yaml)\n\n# API Overview\n\nWith the Shopper Context API, you can set any context information as a key/value pair and use it to retrieve personalized promotions, payment methods, and shipping methods. The context information that is set is evaluated against the customer group definitions to determine a customer group (shopper segment), and is then used to activate the experiences that are associated with a particular segment, such as promotions.\n\nYou can also get personalized API responses triggered by shopper context from the [Open Commerce API](https://developer.salesforce.com/docs/commerce/b2c-commerce/references/b2c-commerce-ocapi/get-started-with-ocapi.html) (OCAPI). Support for both the B2C Commerce API and OCAPI allows shopper context to be used in hybrid deployments.\n\n**Warning** \nAccess tokens with a scope that includes the Shopper Context API are powerful. They can activate specific promotions and can be used to see how a storefront would be displayed in the future. Don't share them with untrusted clients like web browsers or client apps.\n\nMake Shopper Context calls with a private client and only set shopper context through a secure backend channel. To avoid misuse, do not make direct calls through a browser or similar client in which data can be viewed. \n\nAs part of this, when creating a SLAS public client for a tenant, if you attempt to add the Shopper Context API scope, a warning message is displayed to ensure you are aware of the pitfalls of doing so.\n\n**Note**:\n\nShopper context is valid for 1 day for guest shoppers and 7 days for registered shoppers. To extend the context set, create a new context. As a best practice, refresh your contexts periodically to ensure that the right personalized experience is rendered for your shoppers.\n\n## Authentication & Authorization\n\nThe Shopper Context API requires a shopper access token from the Shopper Login and API Access Service (SLAS).\n\nYou must include `sfcc.shopper-context.rw` in the client ID used to generate the SLAS token. For a full list of permissions, see the [Authorization Scopes Catalog.](https://developer.salesforce.com/docs/commerce/commerce-api/guide/auth-z-scope-catalog.html) \n\nFor details on how to request a shopper access token from SLAS, see the guest user flows for [public clients](https://developer.salesforce.com/docs/commerce/commerce-api/guide/slas-public-client.html) and [private clients](https://developer.salesforce.com/docs/commerce/commerce-api/guide/slas-private-client.html) in the SLAS guides.\n\nFor more information, see [Authorization for Shopper APIs](https://developer.salesforce.com/docs/commerce/commerce-api/guide/authorization-for-shopper-apis.html) in the Get Started guides. \n\n**Warning**: As with all APIs, never store access tokens in the browser because this creates a security vulnerability.\n\n## Use Cases\n\nFor detailed usage information, see the [Shopper Context guides](https://developer.salesforce.com/docs/commerce/commerce-api/guide/shopper-context-api.html)." servers: - url: https://{shortCode}.api.commercecloud.salesforce.com/shopper/shopper-context/v1 variables: diff --git a/apis/shopper-customers-oas-1.1.2/exchange.json b/apis/shopper-customers-oas-1.6.1/exchange.json similarity index 93% rename from apis/shopper-customers-oas-1.1.2/exchange.json rename to apis/shopper-customers-oas-1.6.1/exchange.json index d2d72864..a47aa3ff 100644 --- a/apis/shopper-customers-oas-1.1.2/exchange.json +++ b/apis/shopper-customers-oas-1.6.1/exchange.json @@ -3,7 +3,7 @@ "name": "Shopper Customers OAS", "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", "assetId": "shopper-customers-oas", - "version": "1.1.2", + "version": "1.6.1", "classifier": "oas", "tags": [], "descriptorVersion": "1.0.0", diff --git a/apis/shopper-customers-oas-1.1.2/shopper-customers-oas-v1-public.yaml b/apis/shopper-customers-oas-1.6.1/shopper-customers-oas-v1-public.yaml similarity index 90% rename from apis/shopper-customers-oas-1.1.2/shopper-customers-oas-v1-public.yaml rename to apis/shopper-customers-oas-1.6.1/shopper-customers-oas-v1-public.yaml index da507670..240d0232 100644 --- a/apis/shopper-customers-oas-1.1.2/shopper-customers-oas-v1-public.yaml +++ b/apis/shopper-customers-oas-1.6.1/shopper-customers-oas-v1-public.yaml @@ -3,7 +3,7 @@ info: x-api-type: Shopper x-api-family: Customer title: Shopper Customers - version: 1.1.2 + version: 1.6.1 description: |- [Download API specification](https://developer.salesforce.com/static/commercecloud/commerce-api/shopper-customers/shopper-customers-oas-v1-public.yaml) @@ -13,11 +13,11 @@ info: ## Authentication & Authorization - The client requesting the customer information must have access to the Customer and Product List resources. The API requests pass a system-to-system bearer token in the header of the request. For the trusted system API, the trusted client must first authenticate against Account manager to log in on behalf of a customer. + The client requesting the customer information must have access to the Customer and Product List resources. The Shopper Customer API requires a shopper access token from the Shopper Login and API Access Service (SLAS). - For details on how to request a shopper access token from SLAS, see the guest user flows for [public clients](https://developer.salesforce.com/docs/commerce/commerce-api/guide/slas-public-client.html#guest-user) and [private clients](https://developer.salesforce.com/docs/commerce/commerce-api/guide/slas-private-client.html#guest-user) in the SLAS guides. + You must include the relevant scope(s) in the client ID used to generate the SLAS token. For a full list of permissions, see the [Authorization Scopes Catalog.](https://developer.salesforce.com/docs/commerce/commerce-api/guide/auth-z-scope-catalog.html) - You must include the relevant scope(s) in the client ID used to generate the SLAS token. For details, see the [Authorization Scopes Catalog.](https://developer.salesforce.com/docs/commerce/commerce-api/guide/auth-z-scope-catalog.html) + For details on how to request a shopper access token from SLAS, see the guest user flows for [public clients](https://developer.salesforce.com/docs/commerce/commerce-api/guide/slas-public-client.html#guest-user) and [private clients](https://developer.salesforce.com/docs/commerce/commerce-api/guide/slas-private-client.html#guest-user) in the SLAS guides. ## Use Cases @@ -116,6 +116,7 @@ paths: security: - ShopperToken: - sfcc.shopper-customers.register + - sfcc.shopper-standard /organizations/{organizationId}/customers/password/actions/reset: post: summary: Reset customer password after obtaining a reset token. @@ -279,6 +280,7 @@ paths: security: - ShopperToken: - sfcc.shopper-customers.register + - sfcc.shopper-standard /organizations/{organizationId}/customers/{customerId}: get: summary: Get a customer and all existing addresses and payment instruments associated with the requested customer. This endpoint only accepts a registered customer ShopperToken (JWT). @@ -287,6 +289,7 @@ paths: - $ref: '#/components/parameters/customerId' - $ref: '#/components/parameters/organizationId' - $ref: '#/components/parameters/siteId' + - $ref: '#/components/parameters/expandCustomer' responses: '200': description: Success @@ -297,6 +300,8 @@ paths: examples: getCustomerSuccess: $ref: '#/components/examples/getCustomerSuccess' + getCustomerSuccessWithSalesforcePayments: + $ref: '#/components/examples/getCustomerSuccessWithSalesforcePayments' '400': description: | CustomerId URL parameter does not match the verified customer represented by the JWT token. @@ -321,6 +326,7 @@ paths: - ShopperToken: - sfcc.shopper-myaccount - sfcc.shopper-myaccount.rw + - sfcc.shopper-standard patch: summary: Update a customer. This endpoint only accepts a registered customer ShopperToken (JWT). operationId: updateCustomer @@ -370,6 +376,7 @@ paths: security: - ShopperToken: - sfcc.shopper-myaccount.rw + - sfcc.shopper-standard /organizations/{organizationId}/customers/{customerId}/addresses: post: summary: Create a new address with the given name for the customer. This endpoint only accepts a registered customer ShopperToken (JWT). @@ -420,6 +427,7 @@ paths: security: - ShopperToken: - sfcc.shopper-myaccount.addresses.rw + - sfcc.shopper-standard /organizations/{organizationId}/customers/{customerId}/addresses/{addressName}: get: summary: Retrieve a customer's address by address name. This endpoint only accepts a registered customer ShopperToken (JWT). @@ -463,6 +471,7 @@ paths: - ShopperToken: - sfcc.shopper-myaccount.addresses - sfcc.shopper-myaccount.addresses.rw + - sfcc.shopper-standard delete: summary: Delete a customer's address by address name. This endpoint only accepts a registered customer ShopperToken (JWT). operationId: removeCustomerAddress @@ -497,6 +506,7 @@ paths: security: - ShopperToken: - sfcc.shopper-myaccount.addresses.rw + - sfcc.shopper-standard patch: summary: Update a customer's address by address name. This endpoint only accepts a registered customer ShopperToken (JWT). operationId: updateCustomerAddress @@ -547,6 +557,7 @@ paths: security: - ShopperToken: - sfcc.shopper-myaccount.addresses.rw + - sfcc.shopper-standard /organizations/{organizationId}/customers/{customerId}/baskets: get: summary: Get the baskets for a customer. This endpoint accepts a registered customer ShopperToken (JWT) or a guest customer ShopperToken. @@ -588,6 +599,7 @@ paths: security: - ShopperToken: - sfcc.shopper-myaccount.baskets + - sfcc.shopper-standard /organizations/{organizationId}/customers/{customerId}/orders: get: summary: Return a page list of all the customer's orders. The default page size is 10. This endpoint accepts a registered customer ShopperToken (JWT) or a guest customer ShopperToken. @@ -599,6 +611,7 @@ paths: - $ref: '#/components/parameters/from' - $ref: '#/components/parameters/until' - $ref: '#/components/parameters/status' + - $ref: '#/components/parameters/expandCustomersOrders' - $ref: '#/components/parameters/siteId' - name: limit in: query @@ -614,7 +627,7 @@ paths: required: false schema: type: integer - format: int64 + format: int32 default: 0 minimum: 0 description: Used to retrieve the results based on a particular resource offset. @@ -651,6 +664,7 @@ paths: security: - ShopperToken: - sfcc.shopper-myaccount.orders + - sfcc.shopper-standard /organizations/{organizationId}/customers/{customerId}/password: put: summary: Update a customer's password. This endpoint only accepts a registered customer ShopperToken (JWT). @@ -694,6 +708,7 @@ paths: security: - ShopperToken: - sfcc.shopper-customers.login + - sfcc.shopper-standard /organizations/{organizationId}/customers/{customerId}/payment-instruments: post: summary: Add a payment instrument to the customer information. This endpoint only accepts a registered customer ShopperToken (JWT). @@ -744,6 +759,7 @@ paths: security: - ShopperToken: - sfcc.shopper-myaccount.paymentinstruments.rw + - sfcc.shopper-standard /organizations/{organizationId}/customers/{customerId}/payment-instruments/{paymentInstrumentId}: get: summary: Retrieve a customer's payment instrument by its ID. This endpoint only accepts a registered customer ShopperToken (JWT). @@ -787,6 +803,7 @@ paths: - ShopperToken: - sfcc.shopper-myaccount.paymentinstruments - sfcc.shopper-myaccount.paymentinstruments.rw + - sfcc.shopper-standard delete: summary: Delete a customer's payment instrument. This endpoint only accepts a registered customer ShopperToken (JWT). operationId: deleteCustomerPaymentInstrument @@ -818,6 +835,97 @@ paths: examples: getCustomer404: $ref: '#/components/examples/getCustomer404' + security: + - ShopperToken: + - sfcc.shopper-myaccount.paymentinstruments.rw + - sfcc.shopper-standard + patch: + summary: Update a customer's payment instrument. This endpoint only accepts a registered customer ShopperToken (JWT). + operationId: updateCustomerPaymentInstrument + parameters: + - $ref: '#/components/parameters/paymentInstrumentId' + - $ref: '#/components/parameters/customerId' + - $ref: '#/components/parameters/organizationId' + - $ref: '#/components/parameters/siteId' + requestBody: + content: + application/json: + schema: + $ref: '#/components/schemas/CustomerPaymentInstrumentUpdateRequest' + examples: + UpdateCustomerPaymentInstrumentBody: + $ref: '#/components/examples/UpdateCustomerPaymentInstrumentBody' + required: true + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/CustomerPaymentInstrument' + examples: + updateCustomerPaymentInstrumentSuccess: + $ref: '#/components/examples/updateCustomerPaymentInstrumentSuccess' + '400': + description: | + Either the CustomerId URL parameter does not match the verified customer represented by the JWT token, or the request contains unsupported fields for update. + content: + application/problem+json: + schema: + $ref: '#/components/schemas/ErrorResponse' + examples: + invalidCustomer400: + $ref: '#/components/examples/invalidCustomer400' + updatePaymentInstrumentUnsupportedFields400: + $ref: '#/components/examples/updatePaymentInstrumentUnsupportedFields400' + '404': + description: | + Requested resource not found. + content: + application/problem+json: + schema: + $ref: '#/components/schemas/ErrorResponse' + examples: + getCustomer404: + $ref: '#/components/examples/getCustomer404' + security: + - ShopperToken: + - sfcc.shopper-myaccount.paymentinstruments.rw + - sfcc.shopper-standard + /organizations/{organizationId}/customers/{customerId}/payment-method-references/{paymentMethodReferenceId}: + delete: + summary: Delete a customer's payment method reference. This endpoint only accepts a registered customer ShopperToken (JWT). + description: Deletes a specific payment method reference from a customer's account using the payment method reference ID and account ID. + operationId: deleteCustomerPaymentMethodReference + parameters: + - $ref: '#/components/parameters/paymentMethodReferenceId' + - $ref: '#/components/parameters/customerId' + - $ref: '#/components/parameters/organizationId' + - $ref: '#/components/parameters/siteId' + - $ref: '#/components/parameters/accountId' + responses: + '204': + description: No content + '400': + description: | + CustomerId URL parameter does not match the verified customer represented by the JWT token. + content: + application/problem+json: + schema: + $ref: '#/components/schemas/ErrorResponse' + examples: + registerCustomer400: + $ref: '#/components/examples/registerCustomer400' + '404': + description: | + Requested resource not found. + content: + application/problem+json: + schema: + $ref: '#/components/schemas/ErrorResponse' + examples: + getCustomer404: + $ref: '#/components/examples/getCustomer404' security: - ShopperToken: - sfcc.shopper-myaccount.paymentinstruments.rw @@ -863,6 +971,7 @@ paths: - ShopperToken: - sfcc.shopper-myaccount.productlists - sfcc.shopper-myaccount.productlists.rw + - sfcc.shopper-standard post: summary: Create a customer product list. This endpoint accepts a registered customer ShopperToken (JWT) or a guest customer ShopperToken. operationId: createCustomerProductList @@ -912,6 +1021,7 @@ paths: security: - ShopperToken: - sfcc.shopper-myaccount.productlists.rw + - sfcc.shopper-standard /organizations/{organizationId}/customers/{customerId}/product-lists/{listId}: get: summary: Return a customer product list for the given customer and the items in the list. This endpoint accepts a registered customer ShopperToken (JWT) or a guest customer ShopperToken. @@ -955,6 +1065,7 @@ paths: - ShopperToken: - sfcc.shopper-myaccount.productlists - sfcc.shopper-myaccount.productlists.rw + - sfcc.shopper-standard delete: description: Delete a customer product list. This endpoint accepts a registered customer ShopperToken (JWT) or a guest customer ShopperToken. operationId: deleteCustomerProductList @@ -989,6 +1100,7 @@ paths: security: - ShopperToken: - sfcc.shopper-myaccount.productlists.rw + - sfcc.shopper-standard patch: summary: Change a product list. Changeable properties include name, description, and if the list is public. This endpoint accepts a registered customer ShopperToken (JWT) or a guest customer ShopperToken. operationId: updateCustomerProductList @@ -1039,6 +1151,7 @@ paths: security: - ShopperToken: - sfcc.shopper-myaccount.productlists.rw + - sfcc.shopper-standard /organizations/{organizationId}/customers/{customerId}/product-lists/{listId}/items: post: summary: Add an item to the customer's product list. @@ -1091,6 +1204,7 @@ paths: security: - ShopperToken: - sfcc.shopper-myaccount.productlists.rw + - sfcc.shopper-standard /organizations/{organizationId}/customers/{customerId}/product-lists/{listId}/items/{itemId}: get: summary: Return an item of a customer product list and the actual product details such as image, availability, and price. This endpoint accepts a registered customer ShopperToken (JWT) or a guest customer ShopperToken. @@ -1135,6 +1249,7 @@ paths: - ShopperToken: - sfcc.shopper-myaccount.productlists - sfcc.shopper-myaccount.productlists.rw + - sfcc.shopper-standard delete: summary: Remove an item from a customer product list. This endpoint accepts a registered customer ShopperToken (JWT) or a guest customer ShopperToken. operationId: deleteCustomerProductListItem @@ -1160,6 +1275,7 @@ paths: security: - ShopperToken: - sfcc.shopper-myaccount.productlists.rw + - sfcc.shopper-standard patch: summary: Update an item in a customer's product list. description: |- @@ -1212,6 +1328,7 @@ paths: security: - ShopperToken: - sfcc.shopper-myaccount.productlists.rw + - sfcc.shopper-standard /organizations/{organizationId}/product-lists: get: summary: 'Retrieve all public product lists as defined by the given search term, for example: email OR first name and last name). This endpoint accepts a registered customer ShopperToken (JWT) or a guest customer ShopperToken.' @@ -1265,6 +1382,7 @@ paths: security: - ShopperToken: - sfcc.shopper-productlists + - sfcc.shopper-standard /organizations/{organizationId}/product-lists/{listId}: get: summary: Retrieve a public product list by ID and the items under that product list. This endpoint accepts a registered customer ShopperToken (JWT) or a guest customer ShopperToken. @@ -1313,6 +1431,51 @@ paths: security: - ShopperToken: - sfcc.shopper-productlists + - sfcc.shopper-standard + /organizations/{organizationId}/product-lists/{listId}/items: + get: + summary: Retrieve all items of a public product list. + description: The possible expansions are product, images, and availability. For images and availability, the product must be expanded as well. This endpoint accepts a registered customer ShopperToken (JWT) or a guest customer ShopperToken. + operationId: getPublicProductListItems + parameters: + - $ref: '#/components/parameters/listId' + - $ref: '#/components/parameters/organizationId' + - $ref: '#/components/parameters/expandProductListsItems' + - $ref: '#/components/parameters/siteId' + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/PublicProductListItemResult' + examples: + publicProductListItemsResult: + $ref: '#/components/examples/publicProductListItemsResult' + '400': + description: | + Invalid request parameters + content: + application/problem+json: + schema: + $ref: '#/components/schemas/ErrorResponse' + examples: + getPublicProductListItems400: + $ref: '#/components/examples/getPublicProductListItems400' + '404': + description: | + The specified product list was not found or is not public. + content: + application/problem+json: + schema: + $ref: '#/components/schemas/ErrorResponse' + examples: + getPublicProductListItems404: + $ref: '#/components/examples/getPublicProductListItems404' + security: + - ShopperToken: + - sfcc.shopper-productlists + - sfcc.shopper-standard /organizations/{organizationId}/product-lists/{listId}/items/{itemId}: get: summary: Retrieve an item from a public product list and the actual product details such as product, image, availability, and price. This endpoint accepts a registered customer ShopperToken (JWT) or a guest customer ShopperToken. @@ -1365,6 +1528,7 @@ paths: security: - ShopperToken: - sfcc.shopper-productlists + - sfcc.shopper-standard components: securitySchemes: ShopperToken: @@ -1650,6 +1814,32 @@ components: description: The default payment instrument. example: true description: Method for customers to pay for the goods purchased on an ecommerce site. Payment methods include - credit card, debit card, bank account, and gift card. + CustomerPaymentMethodReference: + type: object + properties: + type: + type: string + description: The payment method type. It is read only. + example: card + enum: + - card + - sepa_debit + id: + type: string + description: The gateway ID for the payment method. It is read only. + maxLength: 256 + example: pm_1234567890 + last4: + maxLength: 4 + description: The last four digits of the payment method number. It is read only. + example: 4242 + type: string + accountId: + type: string + description: Account identifier + example: acct_1RegszI5I22eU0I3 + minLength: 1 + maxLength: 100 Customer: description: Person or entity who shops on Commerce Cloud storefronts by creating a shopper account in Commerce Cloud. properties: @@ -1759,6 +1949,11 @@ components: items: $ref: '#/components/schemas/CustomerPaymentInstrument' type: array + paymentMethodReferences: + description: Payment method reference information for Salesforce Payments. + type: array + items: + $ref: '#/components/schemas/CustomerPaymentMethodReference' phoneBusiness: description: The customer's business phone number. example: 555-555-5555 @@ -2174,24 +2369,11 @@ components: type: boolean required: - code - ISOCurrency: - pattern: ^[A-Z][A-Z][A-Z]$ - description: A three letter uppercase currency code conforming to the [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) standard. - example: USD - type: string - NoValue: - default: N/A - description: A specialized value indicating the lack of definition of a currency, for example, if the value of the monetary value of the currency is an undefined number. - example: N/A - enum: - - N/A - type: string CurrencyCode: description: A three letter uppercase currency code conforming to the [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) standard, or the string `N/A` indicating that a currency is not applicable. + pattern: ^([A-Z][A-Z][A-Z]|N/A)$ example: USD - oneOf: - - $ref: '#/components/schemas/ISOCurrency' - - $ref: '#/components/schemas/NoValue' + type: string CustomerInfo: additionalProperties: title: Additional Property Support @@ -2424,12 +2606,38 @@ components: type: integer type: object additionalProperties: false + GiftCardResponse: + additionalProperties: false + description: Document representing a gift card response. + type: object + properties: + brand: + maxLength: 256 + description: The gift card brand. + example: givex + type: string + maskedCardNumber: + maxLength: 40 + description: The masked gift card number. + example: '*********4422' + type: string + expirationMonth: + format: int32 + description: The month when the gift card expires. + example: 1 + type: integer + expirationYear: + format: int32 + description: The year when the gift card expires. + example: 2030 + type: integer PaymentInstrumentId: description: The payment instrument ID example: ba248424e3eee797f062162f8b type: string OrderPaymentInstrument: description: Document representing an order payment instrument. + type: object properties: amount: format: double @@ -2453,6 +2661,10 @@ components: description: The payment card. allOf: - $ref: '#/components/schemas/PaymentCard' + giftCard: + description: The gift card. + allOf: + - $ref: '#/components/schemas/GiftCardResponse' paymentInstrumentId: description: The payment instrument ID. It is read only. allOf: @@ -2462,7 +2674,62 @@ components: description: The payment method ID. It is read only. example: CREDIT_CARD type: string - type: object + paymentReference: + description: Payment reference information for various payment service providers, only when Salesforce Payments is enabled. + type: object + properties: + paymentReferenceId: + description: Payment reference identifier. Can be payment intent ID for Stripe, PSP reference for Adyen, PayPal order ID for PayPal, or similar identifier for other payment providers. + type: string + maxLength: 256 + example: pi_3N4B2vF0wDjebNCp1234567 + gateway: + description: The payment gateway used to process the payment. + example: stripe + type: string + enum: + - stripe + - paypal + - adyen + gatewayProperties: + description: The payment gateway specific properties. + type: object + additionalProperties: false + properties: + stripe: + description: | + # Stripe specific properties. + + - setupFutureUsage: Indicates that you intend to make future payments with this payment method. + - **on_session**: The payment method is intended to be used for a future payment on the same website session. + - **off_session**: The payment method is intended to be used for a future payment on a different website session. + - **null**: The payment method is not intended to be used for a future payment. + - clientSecret: Secret for Stripe client-side payment confirmation. Don't store, log, or expose the client secret to anyone other than the customer, and only use it on pages where TLS is enabled. + - type: string + - maxLength: 256 + - example: "pi_1J4K5L2eZvKYlo2CyZ8K5L6M_secret_abc123" + type: object + additionalProperties: true + paypal: + description: | + # PayPal specific properties. + type: object + additionalProperties: true + adyen: + description: | + # Adyen specific properties. + + - adyenError: Error information returned by Adyen if the payment fails. Null on success. + - adyenPaymentIntent: The Adyen payment intent object containing payment details and required actions. + - resultCode: The result of the payment request (for example, "REDIRECT_SHOPPER", "AUTHORISED", "PENDING", "REFUSED"). + - accountID: The Adyen merchant account ID. + - adyenPaymentIntentAction: The action object for payment methods requiring additional shopper interaction. + - url: The URL for completing the payment (redirect or 3DS authentication). + - type: The action type (for example, "redirect", "threeDS2", "voucher"). + - method: The HTTP method for the action (for example, "GET", "POST"). + - successful: A boolean indicating whether the Adyen operation is successful. + type: object + additionalProperties: true ProductItem: description: Document representing a product item. additionalProperties: @@ -2843,6 +3110,10 @@ components: type: string required: - id + BasketProductItem: + description: Document representing a basket product item. + allOf: + - $ref: '#/components/schemas/ProductItem' ShipmentId: minLength: 1 type: string @@ -3224,7 +3495,7 @@ components: description: The product items. type: array items: - $ref: '#/components/schemas/ProductItem' + $ref: '#/components/schemas/BasketProductItem' productSubTotal: format: double description: |- @@ -3323,13 +3594,6 @@ components: required: - total type: object - Limit: - default: 10 - minimum: 1 - format: int32 - description: Maximum records to retrieve per request, not to exceed the maximum defined. A limit must be at least 1 so at least one record is returned (if any match the criteria). - type: integer - example: 10 Total: default: 0 minimum: 0 @@ -3345,9 +3609,10 @@ components: - total properties: limit: - maximum: 200 - allOf: - - $ref: '#/components/schemas/Limit' + format: int32 + description: Maximum records to retrieve per request. The limit with its constraints (minimum, maximum, default) is defined by the request parameter `limit` of the endpoint returning this schema. + type: integer + example: 10 total: $ref: '#/components/schemas/Total' Offset: @@ -3375,6 +3640,112 @@ components: maxLength: 50 type: string example: '00000410' + OmsProductData: + description: "Additional information retrieved from Order Management (OMS) \nSee https://developer.salesforce.com/docs/atlas.en-us.order_management_developer_guide.meta/order_management_developer_guide/sforce_api_objects_orderitemsummary.htm for more information.\nOnly available in context of an order." + additionalProperties: false + properties: + status: + description: Order Management (OMS) status + example: ordered + enum: + - ordered + - returned + - canceled + - paid + - reshipped + - fulfilled + - partially_fulfilled + - allocated + - partially_allocated + - return_initiated + type: string + quantityAvailableToCancel: + format: double + description: The quantity that can be cancelled. + example: 2 + type: number + type: object + OrderProductItem: + description: Document representing an order product item. + allOf: + - $ref: '#/components/schemas/ProductItem' + properties: + omsData: + description: Product information retrieved from Order Management (OMS). Only available in the context of an order. + allOf: + - $ref: '#/components/schemas/OmsProductData' + OmsShipmentItem: + description: Individual item within a shipment + type: object + additionalProperties: false + properties: + id: + description: Unique identifier for the shipment item + type: string + example: 0OBVF000006603F4AQ + productItemId: + description: Reference to the product item in the order + type: string + example: 10uVF0000002fGnYAI + quantity: + description: Quantity of product items with the referenced productItemId in this shipment + type: number + format: double + example: 2 + OmsShipment: + description: Shipment information from Salesforce Order Management created during fulfillment process. See https://developer.salesforce.com/docs/atlas.en-us.230.0.order_management_developer_guide.meta/order_management_developer_guide/sforce_api_objects_fulfillmentorder.htm for more information. + type: object + additionalProperties: false + properties: + id: + description: Unique identifier for the shipment + type: string + example: 0OBVF000000003F4AQ + status: + description: Current status of the shipment + type: string + example: shipped + provider: + description: Shipping provider name + type: string + example: UPS + trackingNumber: + description: Tracking number for the shipment + type: string + example: '123456789' + trackingUrl: + description: URL to track the shipment + type: string + example: https://www.ups.com/track?loc=en_US&tracknum=123456789 + expectedDeliveryDate: + description: Expected delivery date and time + type: string + format: date-time + example: 2025-11-12T20:00:00.000+0000 + actualDeliveryDate: + description: Actual delivery date and time (null if not yet delivered) + type: string + format: date-time + example: 2025-11-12T20:00:00.000+0000 + shipmentItems: + description: Items included in this shipment + type: array + items: + $ref: '#/components/schemas/OmsShipmentItem' + OmsData: + description: "Additional information retrieved from Order Management (OMS) \nSee https://developer.salesforce.com/docs/atlas.en-us.order_management_developer_guide.meta/order_management_developer_guide/sforce_api_objects_ordersummary.htm for more information." + additionalProperties: false + properties: + status: + description: Current status of the order + type: string + example: shipped + shipments: + description: List of shipments associated with the order + type: array + items: + $ref: '#/components/schemas/OmsShipment' + type: object Order: description: Document representing an order. type: object @@ -3535,7 +3906,7 @@ components: description: The product items. It is read only. type: array items: - $ref: '#/components/schemas/ProductItem' + $ref: '#/components/schemas/OrderProductItem' productSubTotal: format: double description: |- @@ -3591,6 +3962,10 @@ components: example: ShoppingSite allOf: - $ref: '#/components/schemas/SiteId' + omsData: + description: Information retrieved from Order Management (OMS) for the order. + allOf: + - $ref: '#/components/schemas/OmsData' sourceCode: description: The source code assigned to the basket from which this order was created. It is read only. example: OUTDOOR1 @@ -3778,6 +4153,30 @@ components: description: The default payment instrument. example: true description: Document representing a customer payment instrument request. + CustomerPaymentInstrumentUpdateRequest: + type: object + properties: + default: + type: boolean + description: The default payment instrument. + example: true + paymentCard: + type: object + properties: + expirationMonth: + type: integer + format: int32 + minimum: 1 + maximum: 12 + description: The month when the payment card expires. + example: 12 + expirationYear: + type: integer + format: int32 + description: The year when the payment card expires. + example: 2028 + description: The payment card expiration information. + description: Document representing a customer payment instrument update request. Only allows updating the default flag and card expiration date. CustomerProductListRegistrant: description: Document representing a customer product list registrant. properties: @@ -4035,6 +4434,13 @@ components: type: object additionalProperties: type: string + shippingMethods: + description: |- + The array of applicable shipping methods for this product. This array can be empty. + This property is only returned in context of the 'shipping_methods' expansion. + type: array + items: + $ref: '#/components/schemas/ShippingMethod' required: - id type: object @@ -4881,6 +5287,18 @@ components: - public - type type: object + PublicProductListItemResult: + description: Results containing an array of public product list items. + allOf: + - $ref: '#/components/schemas/ResultBase' + - type: object + properties: + data: + description: The array of public product list items. + type: array + items: + $ref: '#/components/schemas/PublicProductListItem' + type: object parameters: organizationId: description: An identifier for the organization the request is being made by @@ -4924,6 +5342,33 @@ components: schema: minLength: 1 type: string + expandCustomer: + name: expand + in: query + description: |- + Expands the response with additional customer data. + - addresses (Default) + - paymentinstruments (Default) + - paymentmethodreferences (Requires Salesforce Payments integration; ignored otherwise) + - none (Excludes all expansion data) + required: false + schema: + type: array + items: + type: string + enum: + - none + - addresses + - paymentinstruments + - paymentmethodreferences + example: + - addresses + example: + - addresses + - paymentinstruments + - paymentmethodreferences + style: form + explode: false addressName: name: addressName in: path @@ -4958,6 +5403,16 @@ components: required: false schema: type: string + expandCustomersOrders: + name: expand + in: query + required: false + schema: + type: string + enum: + - oms + example: oms + description: "This parameter enhances the order result with extra data. By using `expand=som`, all orders for the current customer are loaded \ndirectly from Salesforce Order Management (SOM). The system returns the retrieved SOM order data, along with any orders not yet \ntransferred to SOM. If your instance is not integrated with SOM, the `expand=som` command is disregarded." paymentInstrumentId: name: paymentInstrumentId in: path @@ -4966,6 +5421,26 @@ components: schema: minLength: 1 type: string + paymentMethodReferenceId: + name: paymentMethodReferenceId + in: path + description: The ID of the payment method reference to delete. + required: true + schema: + minLength: 1 + maxLength: 256 + type: string + example: pm_12345678 + accountId: + name: accountId + in: query + description: The account ID used to scope payment method references. + required: true + schema: + minLength: 1 + maxLength: 256 + type: string + example: acc_987654321 listId: name: listId in: path @@ -4993,17 +5468,38 @@ components: firstName: name: firstName in: query - description: The first name of the customer the product lists belong to. + description: The first name of the customer the product lists belong to. This field is case sensitive and must be an exact match. required: false schema: type: string lastName: name: lastName in: query - description: The last name of the customer the product lists belong to. + description: The last name of the customer the product lists belong to. This field is case sensitive and must be an exact match. required: false schema: type: string + expandProductListsItems: + name: expand + in: query + description: Expand product details. Valid values are 'product', 'images', 'availability'. For images and availability, the product must also be expanded. + required: false + schema: + type: array + items: + type: string + enum: + - product + - images + - availability + example: + - product + example: + - product + - images + - availability + style: form + explode: false examples: CustomerRegistrationBody: value: @@ -5123,6 +5619,40 @@ components: phoneBusiness: '234560003' phoneHome: '123450003' phoneMobile: '345670003' + getCustomerSuccessWithSalesforcePayments: + value: + addresses: + - address1: 10 Presidential Way + addressId: me + city: Woburn + countryCode: US + firstName: John + fullName: John M. Smith + lastName: Smith + postalCode: '01827' + salutation: Mr. + stateCode: MA + authType: registered + creationDate: '2020-02-14T20:39:53.818Z' + customerId: abfTEMDZOgi3JPrkHjv9IhoziM + customerNo: '00010009' + email: jsmith@demandware.com + firstName: John + gender: 1 + lastName: Smith + paymentInstruments: [] + paymentMethodReferences: + - type: card + id: pm_card_1234567890 + last4: '4242' + accountId: acct_1RegszI5I22eU0I3 + - type: sepa_debit + id: pm_sepa_debit_1234567890 + last4: '5678' + accountId: acct_1RegszI5I22eU0I3 + phoneBusiness: '234560003' + phoneHome: '123450003' + phoneMobile: '345670003' getCustomer404: value: title: Not Found @@ -5852,6 +6382,38 @@ components: paymentMethodId: OCAPI_Payment_Simple paymentInstrumentId: cdOLciWbOsYl6aaadkwcsx9xHH default: false + UpdateCustomerPaymentInstrumentBody: + value: + default: false + paymentCard: + expirationYear: 2028 + expirationMonth: 12 + updateCustomerPaymentInstrumentSuccess: + value: + paymentCard: + cardType: MasterCard + creditCardExpired: false + expirationMonth: 12 + expirationYear: 2028 + holder: John Smith + issueNumber: i117 + maskedNumber: '***4567' + numberLastDigits: '4567' + validFromMonth: 8 + validFromYear: 2007 + paymentMethodId: OCAPI_Payment_Simple + paymentInstrumentId: cdOLciWbOsYl6aaadkwcsx9xHH + default: false + invalidCustomer400: + value: + title: Invalid Customer + type: https://api.commercecloud.salesforce.com/documentation/error/v1/errors/invalid-customer + detail: CustomerId URL parameter does not match the verified customer represented by the JWT token. + updatePaymentInstrumentUnsupportedFields400: + value: + title: Unsupported Fields + type: https://api.commercecloud.salesforce.com/documentation/error/v1/errors/unsupported-fields + detail: Unsupported fields in the request for updates. customerProductListResult: value: limit: 1 @@ -6126,6 +6688,45 @@ components: type: https://api.commercecloud.salesforce.com/documentation/error/v1/errors/invalid-access-token detail: The request is unauthorized, the access token is invalid. accessToken: iI6IjEiLCJhbGciOiJIUzI1NiIsInR5cCI6Ik + publicProductListItemsResult: + value: + data: + - id: item-1 + priority: 1 + type: product + product: + id: apple-ipod-classic + name: Apple iPod Classic + currency: USD + price: 199.99 + imageGroups: + - images: + - alt: ALT master detail + link: https://example.com/foo/bar/master_detail.jpg + title: TITLE master detail + viewType: large + - id: item-2 + priority: 2 + type: product + product: + id: sony-headphones + name: Sony Wireless Headphones + currency: USD + price: 149.99 + limit: 2 + total: 25 + getPublicProductListItems400: + value: + title: Invalid expand parameter + type: https://api.commercecloud.salesforce.com/documentation/error/v1/errors/invalid-expand-parameter + detail: An invalid expand parameter 'wishList' was found. + param: wishList + getPublicProductListItems404: + value: + title: Product List Not Found + type: https://api.commercecloud.salesforce.com/documentation/error/v1/errors/product-list-not-found + detail: A product list with ID 'my-wishlist' couldn't be found. + productListId: my-wishlist publicProductListItemsExample: value: id: 023513f915fad06573f330fb0d diff --git a/apis/shopper-experience-oas-1.0.9/shopper-experience-oas-v1-public.yaml b/apis/shopper-experience-oas-1.0.9/shopper-experience-oas-v1-public.yaml deleted file mode 100644 index 4bc42a11..00000000 --- a/apis/shopper-experience-oas-1.0.9/shopper-experience-oas-v1-public.yaml +++ /dev/null @@ -1,619 +0,0 @@ -openapi: 3.0.3 -info: - x-api-type: Shopper - x-api-family: Experience - title: Shopper Experience - version: 1.0.9 - description: |- - [Download API specification](https://developer.salesforce.com/static/commercecloud/commerce-api/shopper-experience/shopper-experience-oas-v1-public.yaml) - - # API Overview - Use the Shopper Experience API to look up page information for pages that are created in Page Designer. - - Responses include the following: - - - The entire component hierarchy of the page at design time. - - All merchant data provided at design time. - - Server-side scripting data provided at run time. - - Both the page and components contain the values of all native and custom attributes that have been populated during page authoring. - - Only visible pages are returned. Because the visibility of components is driven by rules (scheduling or customer groups, for example), these rules are subject to evaluation when assembling the component hierarchy in the response. Only components that are visible for the current customer context appear in the response. The same rules apply to the page itself, which is only be processed and returned if it is visible. - - **Important**: Currently, the Shopper Experience API can’t be used when the [storefront password protection](https://documentation.b2c.commercecloud.salesforce.com/DOC1/index.jsp?topic=%2Fcom.demandware.dochelp%2Fcontent%2Fb2c_commerce%2Ftopics%2Fpermissions%2Fb2c_storefront_password_protection.html&resultof=%22%73%74%6f%72%65%66%72%6f%6e%74%22%20%22%70%72%6f%74%65%63%74%69%6f%6e%22%20%22%70%72%6f%74%65%63%74%22%20) feature is enabled. - - ## Authentication & Authorization - - The Shopper Experience API requires a shopper access token from the Shopper Login and API Access Service (SLAS). - - For details on how to request a shopper access token from SLAS, see the guest user flows for [public clients](https://developer.salesforce.com/docs/commerce/commerce-api/guide/slas-public-client.html#guest-user) and [private clients](https://developer.salesforce.com/docs/commerce/commerce-api/guide/slas-private-client.html#guest-user) in the SLAS guides. - - You must include the relevant scope(s) in the client ID used to generate the SLAS token. For details, see the [Authorization Scopes Catalog.](https://developer.salesforce.com/docs/commerce/commerce-api/guide/auth-z-scope-catalog.html). -servers: - - url: https://{shortCode}.api.commercecloud.salesforce.com/experience/shopper-experience/v1 - variables: - shortCode: - default: shortCode -paths: - /organizations/{organizationId}/pages: - get: - summary: Get Page Designer pages. - description: "Get Page Designer pages. The results apply the visibility rules for each page's components, such as personalization or scheduled visibility.\n\nYou must provide the `aspectTypeId` along with either a `categoryId` or a `productId`. Since you can only create one page-to-product or page-to-category assignment per aspect type, the result contains at most one element.\n\n**Important**: \n- Currently, you can't use the Shopper Experience API when the [storefront password protection](https://documentation.b2c.commercecloud.salesforce.com/DOC1/index.jsp?topic=%2Fcom.demandware.dochelp%2Fcontent%2Fb2c_commerce%2Ftopics%2Fpermissions%2Fb2c_storefront_password_protection.html&resultof=%22%73%74%6f%72%65%66%72%6f%6e%74%22%20%22%70%72%6f%74%65%63%74%69%6f%6e%22%20%22%70%72%6f%74%65%63%74%22%20) feature is enabled.\n- Because this resource uses the GET method, you must not pass sensitive data, for example: payment card information, and must not perform transactional processes within the server-side scripts that are run for the page and components.\n- Be aware that pagecache during fingerprint calculation will only be leveraged for pages and their components that don't use visibility rules. Furthermore the pagecaching of the actual response assembly solely depends on the response instrumentation with the serverside page type and component type script implementations. For more details also see the [Page Designer Caching Guide](https://developer.salesforce.com/docs/commerce/b2c-commerce/guide/b2c-dev-for-page-designer.html#page-caching)." - operationId: getPages - parameters: - - $ref: '#/components/parameters/organizationId' - - $ref: '#/components/parameters/categoryId' - - $ref: '#/components/parameters/productId' - - $ref: '#/components/parameters/aspectTypeId' - - $ref: '#/components/parameters/aspectAttributes' - - $ref: '#/components/parameters/parameters' - - $ref: '#/components/parameters/siteId' - - $ref: '#/components/parameters/locale' - responses: - '200': - description: Success. - content: - application/json: - schema: - $ref: '#/components/schemas/PageResult' - examples: - PageResult: - $ref: '#/components/examples/PageResult' - '400': - description: | - Business Object ID Invalid - content: - application/problem+json: - schema: - $ref: '#/components/schemas/ErrorResponse' - examples: - BusinessObjectIDInvalid: - $ref: '#/components/examples/BusinessObjectIDInvalid' - '404': - description: | - Requested Aspect Type Not Found - content: - application/problem+json: - schema: - $ref: '#/components/schemas/ErrorResponse' - examples: - AspectTypeNotFound: - $ref: '#/components/examples/AspectTypeNotFound' - security: - - ShopperToken: - - sfcc.shopper-experience - /organizations/{organizationId}/pages/{pageId}: - get: - summary: Get a Page Designer page based on a single page ID. - description: "Get a Page Designer page for a specific page ID. The results apply the visibility rules for the page's components, such as personalization or scheduled visibility.\n\n**Important**: \n- Currently, you can't use the Shopper Experience API when the [storefront password protection](https://documentation.b2c.commercecloud.salesforce.com/DOC1/index.jsp?topic=%2Fcom.demandware.dochelp%2Fcontent%2Fb2c_commerce%2Ftopics%2Fpermissions%2Fb2c_storefront_password_protection.html&resultof=%22%73%74%6f%72%65%66%72%6f%6e%74%22%20%22%70%72%6f%74%65%63%74%69%6f%6e%22%20%22%70%72%6f%74%65%63%74%22%20) feature is enabled.\n- Because this resource uses the GET method, you must not pass sensitive data, for example: payment card information, and must not perform transactional processes within the server-side scripts that are run for the page and components.\n- Be aware that pagecache during fingerprint calculation will only be leveraged for pages and their components that don't use visibility rules. Furthermore the pagecaching of the actual response assembly solely depends on the response instrumentation with the serverside page type and component type script implementations. For more details also see the [Page Designer Caching Guide](https://developer.salesforce.com/docs/commerce/b2c-commerce/guide/b2c-dev-for-page-designer.html#page-caching)." - operationId: getPage - parameters: - - $ref: '#/components/parameters/pageId' - - $ref: '#/components/parameters/organizationId' - - $ref: '#/components/parameters/aspectAttributes' - - $ref: '#/components/parameters/parameters' - - $ref: '#/components/parameters/siteId' - - $ref: '#/components/parameters/locale' - responses: - '200': - description: Success. - content: - application/json: - schema: - $ref: '#/components/schemas/Page' - examples: - Page: - $ref: '#/components/examples/Page' - '400': - description: | - Provided Aspect Attribute Invalid - content: - application/problem+json: - schema: - $ref: '#/components/schemas/ErrorResponse' - examples: - AspectAttributeInvalid: - $ref: '#/components/examples/AspectAttributeInvalid' - '404': - description: | - Requested Page Not Found - content: - application/problem+json: - schema: - $ref: '#/components/schemas/ErrorResponse' - examples: - PageNotFound: - $ref: '#/components/examples/PageNotFound' - security: - - ShopperToken: - - sfcc.shopper-experience -components: - securitySchemes: - ShopperToken: - type: oauth2 - description: "ShopperToken authentication follows the authorization code grant flow, as defined by the OAuth 2.1 standard. Depending on the type of OAuth client (public or private), this authorization flow has further requirements. \nFor a detailed description of the authorization flow, see the [SLAS overview](https://developer.salesforce.com/docs/commerce/commerce-api/references?meta=shopper-login:Summary).\nA shopper token allows you to access the Shopper API endpoints of both OCAPI and the B2C Commerce API. These endpoints can be used to build headless storefronts and other applications.\nThe `ShopperToken` security scheme is a parent of other security schemes, such as `ShopperTokenTsob`. A Shopper API endpoint can require a specific child scheme (`ShopperTokenTsob`, for example) that cannot be accessed with a regular shopper token.\n" - flows: - clientCredentials: - tokenUrl: https://{shortCode}.api.commercecloud.salesforce.com/shopper/auth/v1/organizations/{organizationId}/oauth2/token - scopes: - sfcc.shopper-experience: Shopper Experience scope READONLY - authorizationCode: - authorizationUrl: https://{short-code}.api.commercecloud.salesforce.com/shopper/auth/v1/organizations/{organizationId}/oauth2/authorize - tokenUrl: https://{short-code}.api.commercecloud.salesforce.com/shopper/auth/v1/organizations/{organizationId}/oauth2/token - scopes: - sfcc.shopper-experience: Shopper Experience scope READONLY - schemas: - OrganizationId: - description: An identifier for the organization the request is being made by - example: f_ecom_zzxy_prd - type: string - minLength: 1 - maxLength: 32 - SiteId: - minLength: 1 - maxLength: 32 - description: The identifier of the site that a request is being made in the context of. Attributes might have site specific values, and some objects may only be assigned to specific sites - example: RefArch - type: string - LanguageCountry: - pattern: ^[a-z][a-z]-[A-Z][A-Z]$ - description: A concatenated version of the standard Language and Country codes, combined with a hyphen '`-`'. - example: en-US - type: string - LanguageCode: - pattern: ^[a-z][a-z]$ - description: A two letter lowercase language code conforming to the [ISO 639-1](https://www.iso.org/iso-639-language-codes.html) standard. Additionally, this may be used to submit requests with the header parameter `Accept-Language`, following [RFC 2616](https://tools.ietf.org/html/rfc2616) & [RFC 1766](https://tools.ietf.org/html/rfc1766). - example: en - type: string - DefaultFallback: - default: default - description: A specialized value indicating the system default values for locales. - example: default - enum: - - default - type: string - LocaleCode: - description: A descriptor for a geographical region by both a language and country code. By combining these two, regional differences in a language can be addressed, such as with the request header parameter `Accept-Language` following [RFC 2616](https://tools.ietf.org/html/rfc2616) & [RFC 1766](https://tools.ietf.org/html/rfc1766). This can also just refer to a language code, also RFC 2616/1766 compliant, as a default if there is no specific match for a country. Finally, can also be used to define default behavior if there is no locale specified. - oneOf: - - $ref: '#/components/schemas/LanguageCountry' - - $ref: '#/components/schemas/LanguageCode' - - $ref: '#/components/schemas/DefaultFallback' - Region: - properties: - id: - maxLength: 256 - title: ID - description: Region identifier. - example: header - type: string - components: - title: Components - description: The components in the region. - example: - - id: iofwj38fhw3f - typeId: commerce_assets.banner - data: - title: Products On Sale - bannerImage: sale/topsellerPromo.jpg - custom: - thumbnail_full: http://static.myshop.com/sale/topsellerPromo.jpg - type: array - items: - $ref: '#/components/schemas/Component' - required: - - id - type: object - Component: - properties: - id: - maxLength: 256 - title: ID - description: Component identifier. - example: rfdvj4ojtltljw3 - type: string - typeId: - maxLength: 256 - title: Component Type ID - description: Component type identifier. - example: commerce_assets.carousel - type: string - data: - title: Component Data - description: The configuration data assigned to the component. - example: - title: Topseller - category: topseller - type: object - additionalProperties: false - custom: - title: Custom Component Data - description: Any custom data added by the custom code for this component. - example: - detailUrl: www.myshop.com/topseller - type: object - additionalProperties: false - regions: - title: Regions - description: The regions (and their assigned components) for the component. - example: - - id: tiles - components: - - id: w3reö9wsjf3 - typeId: commerce_assets.productTile - data: - product: iphone6 - - id: cgn8d4ngdl4n - typeId: commerce_assets.productTile - data: - product: iphone7 - type: array - items: - $ref: '#/components/schemas/Region' - required: - - id - - typeId - type: object - Page: - properties: - id: - maxLength: 256 - title: ID - description: Page identifier. - example: homepage - type: string - typeId: - maxLength: 256 - title: Page Type ID - description: Page type identifier. - example: storePage - type: string - aspectTypeId: - maxLength: 256 - title: Aspect Type ID - description: The aspect type assigned to the page. - example: pdpAspect - type: string - name: - maxLength: 4000 - title: Page Name - description: Display name of the page. - example: Homepage - type: string - description: - maxLength: 4000 - title: Page Description - description: Description of the page. - example: Home page of the storefront. - type: string - pageTitle: - maxLength: 4000 - title: SEO Title - description: The SEO title of the page. - example: Homepage - My Shop - type: string - pageDescription: - maxLength: 4000 - title: SEO Description - description: The SEO description of the page. - example: Get started shopping - type: string - pageKeywords: - maxLength: 4000 - title: SEO Keywords - description: The SEO keywords of the page. - example: fashion, my shop - type: string - data: - title: Page Data - description: The configuration data assigned to the page. - example: - thumbnail: myshop.jpg - type: object - additionalProperties: false - custom: - title: Custom Page Data - description: Any custom data added by the custom code for the page type. - example: - thumbnail_full: http://static.myshop.com/myshop.jpg - type: object - additionalProperties: false - regions: - title: Regions - description: The regions (and their assigned components) for the page. - example: - - id: header - components: - - id: iofwj38fhw3f - typeId: commerce_assets.banner - data: - title: Products On Sale - bannerImage: sale/topsellerPromo.jpg - custom: - thumbnail_full: http://static.myshop.com/sale/topsellerPromo.jpg - - id: main - components: - - id: rfdvj4ojtltljw3 - typeId: commerce_assets.carousel - data: - title: Topseller - category: topseller - custom: - detailUrl: www.myshop.com/topseller - regions: - - id: tiles - components: - - id: w3reö9wsjf3 - typeId: commerce_assets.productTile - data: - product: iphone6 - - id: cgn8d4ngdl4n - typeId: commerce_assets.productTile - data: - product: iphone7 - - id: footer - components: [] - type: array - items: - $ref: '#/components/schemas/Region' - required: - - id - - typeId - type: object - PageResult: - properties: - data: - title: Data - description: List of pages. - type: array - items: - $ref: '#/components/schemas/Page' - required: - - data - type: object - ErrorResponse: - type: object - additionalProperties: true - properties: - title: - description: "A short, human-readable summary of the problem\ntype. It will not change from occurrence to occurrence of the \nproblem, except for purposes of localization\n" - type: string - maxLength: 256 - example: You do not have enough credit - type: - description: | - A URI reference [RFC3986] that identifies the - problem type. This specification encourages that, when - dereferenced, it provide human-readable documentation for the - problem type (e.g., using HTML [W3C.REC-html5-20141028]). When - this member is not present, its value is assumed to be - "about:blank". It accepts relative URIs; this means - that they must be resolved relative to the document's base URI, as - per [RFC3986], Section 5. - type: string - maxLength: 2048 - example: NotEnoughMoney - detail: - description: A human-readable explanation specific to this occurrence of the problem. - type: string - example: Your current balance is 30, but that costs 50 - instance: - description: | - A URI reference that identifies the specific - occurrence of the problem. It may or may not yield further - information if dereferenced. It accepts relative URIs; this means - that they must be resolved relative to the document's base URI, as - per [RFC3986], Section 5. - type: string - maxLength: 2048 - example: /account/12345/msgs/abc - required: - - title - - type - - detail - parameters: - organizationId: - description: An identifier for the organization the request is being made by - name: organizationId - in: path - required: true - example: f_ecom_zzxy_prd - schema: - $ref: '#/components/schemas/OrganizationId' - categoryId: - name: categoryId - in: query - description: Category identifier that is used for searching the page assignment. Must be provided if no `productId` is provided. - required: false - schema: - maxLength: 256 - type: string - example: home-clearance - productId: - name: productId - in: query - description: Product identifier that is used for searching the page assignment. Must be provided if no `categoryId` is provided. - required: false - schema: - maxLength: 100 - type: string - example: iphone11 - aspectTypeId: - name: aspectTypeId - in: query - description: Aspect type identifier that is used for searching the page assignment in conjunction with either the `productId` or `categoryId`. - required: true - schema: - maxLength: 256 - type: string - example: pdp - aspectAttributes: - name: aspectAttributes - in: query - description: A JSON representation of aspect attributes. Each aspect attribute is a key/value pair. Aspect attributes serve as a runtime parameter contract between caller (for example, this API or the DWScript API) and callee (the page). This parameter must not contain more than 256 characters after URL decoding. - required: false - schema: - type: string - maxLength: 256 - example: |- - { - "product" : "iphone11", - "breadcrumbCategory" : "home-clearance" - } - parameters: - name: parameters - in: query - description: A free-form definition of parameters that influences the page rendering according to its implementation. This parameter must not contain more than 256 characters after URL decoding. - required: false - schema: - maxLength: 256 - type: string - example: refine=color,size;currency=USD;showNavigation=false - siteId: - description: The identifier of the site that a request is being made in the context of. Attributes might have site specific values, and some objects may only be assigned to specific sites. - name: siteId - in: query - required: true - examples: - SiteId: - value: RefArch - schema: - $ref: '#/components/schemas/SiteId' - locale: - description: A descriptor for a geographical region by both a language and country code. By combining these two, regional differences in a language can be addressed, such as with the request header parameter `Accept-Language` following [RFC 2616](https://tools.ietf.org/html/rfc2616) & [RFC 1766](https://tools.ietf.org/html/rfc1766). This can also just refer to a language code, also RFC 2616/1766 compliant, as a default if there is no specific match for a country. Finally, can also be used to define default behavior if there is no locale specified. - name: locale - in: query - examples: - LanguageCountry: - value: en-US - CountryCode: - value: US - schema: - $ref: '#/components/schemas/LocaleCode' - pageId: - name: pageId - in: path - description: Identifier for the requested page. - required: true - schema: - maxLength: 256 - type: string - example: homepage - examples: - PageResult: - value: - data: - - id: homePpage - typeId: storePage - aspectTypeId: pdpAspect - name: Homepage - description: Home page of the storefront. - pageTitle: Homepage - My Shop - pageDescription: Get started shopping - pageKeywords: fashion, my shop - data: - thumbnail: myshop.jpg - custom: - thumbnail_full: http://static.myshop.com/myshop.jpg - regions: - - id: header - components: - - id: 2192f5b9aac0f2af2385f6f6b7 - typeId: commerce_assets.banner - data: - title: Products On Sale - bannerImage: sale/topsellerPromo.jpg - custom: - thumbnail_full: http://static.myshop.com/sale/topsellerPromo.jpg - - id: main - components: - - id: 5c5ebbcd2aee1a67af519c83b5 - typeId: commerce_assets.carousel - data: - title: Topseller - category: topseller - custom: - detailUrl: www.myshop.com/topseller - regions: - - id: tiles - components: - - id: d98a30dfe93715e3e6fc22a329 - typeId: commerce_assets.productTile - data: - product: iphone6 - - id: 43aa39896afb9292308181ce14 - typeId: commerce_assets.productTile - data: - product: iphone7 - - id: detailpage - typeId: storePage - name: storepage - description: A Store page - pageTitle: A Store - pageDescription: Buy in store - pageKeywords: fashion, my shop, store - data: - thumbnail: mystore.jpg - BusinessObjectIDInvalid: - value: - title: Business Object ID Invalid - type: https://api.commercecloud.salesforce.com/documentation/error/v1/errors/business-object-id-invalid - detail: At least one provided business object identifier was invalid. This means either none was provided at all or exclusiveness of multiple identifiers wasn't honored or the referenced business object didn't exist. - AspectTypeNotFound: - value: - title: Aspect Type Not Found - type: https://api.commercecloud.salesforce.com/documentation/error/v1/errors/aspect-type-not-found - detail: No aspect type with ID 'pdp' was found in site 'RefArch'. - Page: - value: - id: homepage - typeId: storePage - aspectTypeId: pdpAspect - name: Homepage - description: Home page of the storefront. - pageTitle: Homepage - My Shop - pageDescription: Get started shopping - pageKeywords: fashion, my shop - data: - thumbnail: myshop.jpg - custom: - thumbnail_full: http://static.myshop.com/myshop.jpg - regions: - - id: header - components: - - id: 375b9107b067902827083772f9 - typeId: commerce_assets.banner - data: - title: Products On Sale - bannerImage: sale/topsellerPromo.jpg - custom: - thumbnail_full: http://static.myshop.com/sale/topsellerPromo.jpg - - id: main - components: - - id: be1f331b92d8ad7e38e440e35d - typeId: commerce_assets.carousel - data: - title: Topseller - category: topseller - custom: - detailUrl: www.myshop.com/topseller - regions: - - id: tiles - components: - - id: 45af07459684e6db78990c5d05 - typeId: commerce_assets.productTile - data: - product: iphone6 - - id: df6e33766d90e7e205d109aa2f - typeId: commerce_assets.productTile - data: - product: iphone7 - AspectAttributeInvalid: - value: - title: Aspect Attribute Invalid - type: https://api.commercecloud.salesforce.com/documentation/error/v1/errors/aspect-attribute-invalid - detail: 'Aspect attribute value "5555" does not fulfill its respective definition {"id" : "foobar", "type" : "string","required" : "false"}' - PageNotFound: - value: - title: Page Not Found - type: https://api.commercecloud.salesforce.com/documentation/error/v1/errors/page-not-found - detail: No visible page with ID 'homepage' was found in site 'RefArch'. diff --git a/apis/shopper-experience-oas-1.0.9/exchange.json b/apis/shopper-experience-oas-1.2.1/exchange.json similarity index 93% rename from apis/shopper-experience-oas-1.0.9/exchange.json rename to apis/shopper-experience-oas-1.2.1/exchange.json index 642a436c..1df2d0a9 100644 --- a/apis/shopper-experience-oas-1.0.9/exchange.json +++ b/apis/shopper-experience-oas-1.2.1/exchange.json @@ -3,7 +3,7 @@ "name": "Shopper Experience OAS", "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", "assetId": "shopper-experience-oas", - "version": "1.0.9", + "version": "1.2.1", "classifier": "oas", "tags": [], "descriptorVersion": "1.0.0", diff --git a/apis/shopper-experience-oas-1.2.1/shopper-experience-oas-v1-public.yaml b/apis/shopper-experience-oas-1.2.1/shopper-experience-oas-v1-public.yaml new file mode 100644 index 00000000..f35157df --- /dev/null +++ b/apis/shopper-experience-oas-1.2.1/shopper-experience-oas-v1-public.yaml @@ -0,0 +1,1399 @@ +openapi: 3.0.3 +info: + x-api-type: Shopper + x-api-family: Experience + title: Shopper Experience + version: 1.2.1 + description: |- + [Download API specification](https://developer.salesforce.com/static/commercecloud/commerce-api/shopper-experience/shopper-experience-oas-v1-public.yaml) + + # API Overview + Use the Shopper Experience API to look up page information for pages that are created in Page Designer, content assets and to access content folders. + + ## Authentication & Authorization + + The Shopper Experience API requires a shopper access token from the Shopper Login and API Access Service (SLAS). + + For details on how to request a shopper access token from SLAS, see the guest user flows for [public clients](https://developer.salesforce.com/docs/commerce/commerce-api/guide/slas-public-client.html#guest-user) and [private clients](https://developer.salesforce.com/docs/commerce/commerce-api/guide/slas-private-client.html#guest-user) in the SLAS guides. + + You must include `sfcc.shopper-experience` in the client ID used to generate the SLAS token. For a full list of required permissions, see the [Authorization Scopes Catalog.](https://developer.salesforce.com/docs/commerce/commerce-api/guide/auth-z-scope-catalog.html) + + **Important**: Currently, the Shopper Experience Pages endpoints can’t be used when the [storefront password protection](https://documentation.b2c.commercecloud.salesforce.com/DOC1/index.jsp?topic=%2Fcom.demandware.dochelp%2Fcontent%2Fb2c_commerce%2Ftopics%2Fpermissions%2Fb2c_storefront_password_protection.html&resultof=%22%73%74%6f%72%65%66%72%6f%6e%74%22%20%22%70%72%6f%74%65%63%74%69%6f%6e%22%20%22%70%72%6f%74%65%63%74%22%20) feature is enabled. + + ## Use Cases + + ### Access Content Folders + The API provides access to content folders, which are used to organize and manage content assets. Content folders support: + + - Hierarchical organization with nested subfolders + - Localized metadata including names, descriptions, and SEO attributes + - Custom attributes for extended functionality + - Configurable depth levels for subfolder retrieval (0, 1, or 2 levels) + + Only content folders that are marked as online are returned in the API responses. + + ## Page Responses + Responses for pages include the following: + + - The entire component hierarchy of the page at design time. + - All merchant data provided at design time. + - Server-side scripting data provided at run time. + + Both the page and components contain the values of all native and custom attributes that have been populated during page authoring. + + Only visible pages are returned. Because the visibility of components is driven by rules (scheduling or customer groups, for example), these rules are subject to evaluation when assembling the component hierarchy in the response. Only components that are visible for the current customer context appear in the response. The same rules apply to the page itself, which is only be processed and returned if it is visible. + + ## Content Asset Responses + + Content asset responses include: + + - Rich content including text, HTML, and images + - SEO metadata (title, description, keywords) + - Template information for rendering + - Folder organization structure + - Custom attributes and properties + + Only content assets that are marked as online are returned. Content assets provide flexible content management capabilities for storefronts. +servers: + - url: https://{shortCode}.api.commercecloud.salesforce.com/experience/shopper-experience/v1 + variables: + shortCode: + default: shortCode +paths: + /organizations/{organizationId}/pages: + get: + summary: Get Page Designer pages. + description: "Get Page Designer pages. The results apply the visibility rules for each page's components, such as personalization or scheduled visibility.\n\nYou must provide the `aspectTypeId` along with either a `categoryId` or a `productId`. Since you can only create one page-to-product or page-to-category assignment per aspect type, the result contains at most one element.\n\n**Important**: \n- Currently, you can't use the Shopper Experience Pages endpoints when the [storefront password protection](https://documentation.b2c.commercecloud.salesforce.com/DOC1/index.jsp?topic=%2Fcom.demandware.dochelp%2Fcontent%2Fb2c_commerce%2Ftopics%2Fpermissions%2Fb2c_storefront_password_protection.html&resultof=%22%73%74%6f%72%65%66%72%6f%6e%74%22%20%22%70%72%6f%74%65%63%74%69%6f%6e%22%20%22%70%72%6f%74%65%63%74%22%20) feature is enabled.\n- Because this resource uses the GET method, you must not pass sensitive data, for example: payment card information, and must not perform transactional processes within the server-side scripts that are run for the page and components.\n- Be aware that pagecache during fingerprint calculation will only be leveraged for pages and their components that don't use visibility rules. Furthermore the pagecaching of the actual response assembly solely depends on the response instrumentation with the serverside page type and component type script implementations. For more details also see the [Page Designer Caching Guide](https://developer.salesforce.com/docs/commerce/b2c-commerce/guide/b2c-dev-for-page-designer.html#page-caching)." + operationId: getPages + parameters: + - $ref: '#/components/parameters/organizationId' + - $ref: '#/components/parameters/categoryId' + - $ref: '#/components/parameters/productId' + - $ref: '#/components/parameters/aspectTypeId' + - $ref: '#/components/parameters/aspectAttributes' + - $ref: '#/components/parameters/parameters' + - $ref: '#/components/parameters/siteId' + - $ref: '#/components/parameters/locale' + responses: + '200': + description: Success. + content: + application/json: + schema: + $ref: '#/components/schemas/PageResult' + examples: + PageResult: + $ref: '#/components/examples/PageResult' + '400': + description: | + Business Object ID Invalid + content: + application/problem+json: + schema: + $ref: '#/components/schemas/ErrorResponse' + examples: + BusinessObjectIDInvalid: + $ref: '#/components/examples/BusinessObjectIDInvalid' + '404': + description: | + Requested Aspect Type Not Found + content: + application/problem+json: + schema: + $ref: '#/components/schemas/ErrorResponse' + examples: + AspectTypeNotFound: + $ref: '#/components/examples/AspectTypeNotFound' + security: + - ShopperToken: + - sfcc.shopper-experience + - sfcc.shopper-experience.pages + - sfcc.shopper-standard + /organizations/{organizationId}/pages/{pageId}: + get: + summary: Get a Page Designer page based on a single page ID. + description: "Get a Page Designer page for a specific page ID. The results apply the visibility rules for the page's components, such as personalization or scheduled visibility.\n\n**Important**: \n- Currently, you can't use the Shopper Experience Pages endpoints when the [storefront password protection](https://documentation.b2c.commercecloud.salesforce.com/DOC1/index.jsp?topic=%2Fcom.demandware.dochelp%2Fcontent%2Fb2c_commerce%2Ftopics%2Fpermissions%2Fb2c_storefront_password_protection.html&resultof=%22%73%74%6f%72%65%66%72%6f%6e%74%22%20%22%70%72%6f%74%65%63%74%69%6f%6e%22%20%22%70%72%6f%74%65%63%74%22%20) feature is enabled.\n- Because this resource uses the GET method, you must not pass sensitive data, for example: payment card information, and must not perform transactional processes within the server-side scripts that are run for the page and components.\n- Be aware that pagecache during fingerprint calculation will only be leveraged for pages and their components that don't use visibility rules. Furthermore the pagecaching of the actual response assembly solely depends on the response instrumentation with the serverside page type and component type script implementations. For more details also see the [Page Designer Caching Guide](https://developer.salesforce.com/docs/commerce/b2c-commerce/guide/b2c-dev-for-page-designer.html#page-caching)." + operationId: getPage + parameters: + - $ref: '#/components/parameters/pageId' + - $ref: '#/components/parameters/organizationId' + - $ref: '#/components/parameters/aspectAttributes' + - $ref: '#/components/parameters/parameters' + - $ref: '#/components/parameters/siteId' + - $ref: '#/components/parameters/locale' + responses: + '200': + description: Success. + content: + application/json: + schema: + $ref: '#/components/schemas/Page' + examples: + Page: + $ref: '#/components/examples/Page' + '400': + description: | + Invalid Query Parameter + content: + application/problem+json: + schema: + $ref: '#/components/schemas/ErrorResponse' + examples: + AspectAttributeInvalid: + $ref: '#/components/examples/AspectAttributeInvalid' + '401': + description: | + Unauthorized Access + content: + application/problem+json: + schema: + $ref: '#/components/schemas/ErrorResponse' + '404': + description: | + Requested Page Not Found + content: + application/problem+json: + schema: + $ref: '#/components/schemas/ErrorResponse' + examples: + PageNotFound: + $ref: '#/components/examples/PageNotFound' + security: + - ShopperToken: + - sfcc.shopper-experience + - sfcc.shopper-experience.pages + - sfcc.shopper-standard + /organizations/{organizationId}/contents/{id}: + get: + summary: Get a content asset by ID. + description: "Get a content asset by its unique identifier. Only content assets that are marked as online are returned.\n\nContent assets contain rich content that can be displayed on storefronts, including text, HTML, images, and custom attributes.\n\n**Important**: \n- Because this resource uses the GET method, you must not pass sensitive data and must not perform transactional processes." + operationId: getContent + parameters: + - $ref: '#/components/parameters/organizationId' + - $ref: '#/components/parameters/contentId' + - $ref: '#/components/parameters/siteId' + - $ref: '#/components/parameters/locale' + responses: + '200': + description: Success. + content: + application/json: + schema: + $ref: '#/components/schemas/Content' + examples: + Content: + $ref: '#/components/examples/Content' + '404': + description: | + Content Asset Not Found + content: + application/problem+json: + schema: + $ref: '#/components/schemas/ErrorResponse' + examples: + ContentNotFound: + $ref: '#/components/examples/ContentNotFound' + security: + - ShopperToken: + - sfcc.shopper-experience.contents + /organizations/{organizationId}/contents: + get: + summary: Get multiple content assets. + description: "Get multiple content assets by their identifiers. Only content assets that are marked as online are returned.\n\nThis endpoint allows you to retrieve multiple content assets in a single request, which is more efficient than making multiple individual requests.\n\n**Important**: \n- Because this resource uses the GET method, you must not pass sensitive data and must not perform transactional processes." + operationId: getMultipleContent + parameters: + - $ref: '#/components/parameters/organizationId' + - $ref: '#/components/parameters/contentIds' + - $ref: '#/components/parameters/siteId' + - $ref: '#/components/parameters/locale' + responses: + '200': + description: Success. + content: + application/json: + schema: + $ref: '#/components/schemas/ContentResult' + examples: + ContentResult: + $ref: '#/components/examples/ContentResult' + '400': + description: | + Bad Request + content: + application/problem+json: + schema: + $ref: '#/components/schemas/ErrorResponse' + examples: + GetContentsBadRequest: + $ref: '#/components/examples/GetContentsBadRequest' + security: + - ShopperToken: + - sfcc.shopper-experience.contents + /organizations/{organizationId}/content-search: + get: + summary: Search for content assets. + description: "Provides keyword and refinement search functionality for content assets. The search result contains only content\nthat is online and assigned to a folder.\n\n**Refinement Parameters:**\nThe following system refinement attribute IDs are supported:\n- `fdid`: Allows refinement per single content folder ID. Multiple folder IDs are not supported.\n\n**Important**: \n- Because this resource uses the GET method, you must not pass sensitive data and must not perform transactional processes." + operationId: searchContent + parameters: + - $ref: '#/components/parameters/organizationId' + - $ref: '#/components/parameters/contentSearchQuery' + - $ref: '#/components/parameters/contentSearchRefine' + - $ref: '#/components/parameters/contentSearchSort' + - $ref: '#/components/parameters/siteId' + - $ref: '#/components/parameters/locale' + - name: limit + in: query + required: false + schema: + type: integer + format: int32 + default: 50 + maximum: 200 + description: Maximum records to retrieve per request, not to exceed 200. Defaults to 50. + - name: offset + in: query + required: false + schema: + type: integer + format: int32 + default: 0 + minimum: 0 + description: Used to retrieve the results based on a particular resource offset. + responses: + '200': + description: Success. + content: + application/json: + schema: + $ref: '#/components/schemas/ContentSearchResult' + examples: + ContentSearchResult: + $ref: '#/components/examples/ContentSearchResult' + '400': + description: | + Bad Request + content: + application/problem+json: + schema: + $ref: '#/components/schemas/ErrorResponse' + examples: + ContentSearchBadRequest: + $ref: '#/components/examples/ContentSearchBadRequest' + security: + - ShopperToken: + - sfcc.shopper-experience.contents + /organizations/{organizationId}/folders/{id}: + get: + summary: Get content folder + description: "To access a content folder, you construct a URL using the template shown below. \nThis template requires you to specify a content folder id and a subfolder level. \nIn response, the server returns a corresponding content folder document. \nOnly content folders which are marked as online are returned." + operationId: getContentFolder + parameters: + - $ref: '#/components/parameters/organizationId' + - $ref: '#/components/parameters/folderId' + - $ref: '#/components/parameters/levels' + - $ref: '#/components/parameters/siteId' + - $ref: '#/components/parameters/locale' + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/ContentFolder' + examples: + ContentFolder: + $ref: '#/components/examples/ContentFolder' + '400': + description: Bad Request + content: + application/problem+json: + schema: + $ref: '#/components/schemas/ErrorResponse' + examples: + InvalidLevelsParameter: + $ref: '#/components/examples/InvalidLevelsParameter' + '401': + $ref: '#/components/responses/401unauthorized' + '403': + $ref: '#/components/responses/403forbidden' + '404': + description: Folder Not Found + content: + application/problem+json: + schema: + $ref: '#/components/schemas/ErrorResponse' + examples: + ContentFolderNotFound: + $ref: '#/components/examples/ContentFolderNotFound' + security: + - ShopperToken: + - sfcc.shopper-experience.folders + /organizations/{organizationId}/folders: + get: + summary: Get multiple content folders + description: "To access one or more content folders, you construct a URL using the template shown below. \nThis template requires you to specify one or more content folder ids as a query parameter and a subfolder level. \nIn response, the server returns a result set of corresponding content folder documents. \nOnly content folders which are marked as online are returned." + operationId: getContentFolders + parameters: + - $ref: '#/components/parameters/organizationId' + - $ref: '#/components/parameters/folderIds' + - $ref: '#/components/parameters/levels' + - $ref: '#/components/parameters/siteId' + - $ref: '#/components/parameters/locale' + responses: + '200': + description: Success + content: + application/json: + schema: + $ref: '#/components/schemas/ContentFolderResult' + examples: + ContentFolderResult: + $ref: '#/components/examples/ContentFolderResult' + '400': + description: Bad Request + content: + application/problem+json: + schema: + $ref: '#/components/schemas/ErrorResponse' + examples: + InvalidLevelsParameter: + $ref: '#/components/examples/InvalidLevelsParameter' + '401': + $ref: '#/components/responses/401unauthorized' + '403': + $ref: '#/components/responses/403forbidden' + security: + - ShopperToken: + - sfcc.shopper-experience.folders +components: + securitySchemes: + ShopperToken: + type: oauth2 + description: "ShopperToken authentication follows the authorization code grant flow, as defined by the OAuth 2.1 standard. Depending on the type of OAuth client (public or private), this authorization flow has further requirements. \nFor a detailed description of the authorization flow, see the [SLAS overview](https://developer.salesforce.com/docs/commerce/commerce-api/references?meta=shopper-login:Summary).\nA shopper token allows you to access the Shopper API endpoints of both OCAPI and the B2C Commerce API. These endpoints can be used to build headless storefronts and other applications.\nThe `ShopperToken` security scheme is a parent of other security schemes, such as `ShopperTokenTsob`. A Shopper API endpoint can require a specific child scheme (`ShopperTokenTsob`, for example) that cannot be accessed with a regular shopper token.\n" + flows: + clientCredentials: + tokenUrl: https://{shortCode}.api.commercecloud.salesforce.com/shopper/auth/v1/organizations/{organizationId}/oauth2/token + scopes: + sfcc.shopper-experience: Shopper Experience scope READONLY + sfcc.shopper-experience.pages: Shopper Experience scope READONLY for pages + sfcc.shopper-experience.contents: Shopper Experience scope READONLY for contents + sfcc.shopper-experience.folders: Shopper Experience scope READONLY for folders + authorizationCode: + authorizationUrl: https://{short-code}.api.commercecloud.salesforce.com/shopper/auth/v1/organizations/{organizationId}/oauth2/authorize + tokenUrl: https://{short-code}.api.commercecloud.salesforce.com/shopper/auth/v1/organizations/{organizationId}/oauth2/token + scopes: + sfcc.shopper-experience: Shopper Experience scope READONLY + sfcc.shopper-experience.pages: Shopper Experience scope READONLY for pages + sfcc.shopper-experience.contents: Shopper Experience scope READONLY for contents + sfcc.shopper-experience.folders: Shopper Experience scope READONLY for folders + schemas: + OrganizationId: + description: An identifier for the organization the request is being made by + example: f_ecom_zzxy_prd + type: string + minLength: 1 + maxLength: 32 + SiteId: + minLength: 1 + maxLength: 32 + description: The identifier of the site that a request is being made in the context of. Attributes might have site specific values, and some objects may only be assigned to specific sites + example: RefArch + type: string + LanguageCountry: + pattern: ^[a-z][a-z]-[A-Z][A-Z]$ + description: A concatenated version of the standard Language and Country codes, combined with a hyphen '`-`'. + example: en-US + type: string + LanguageCode: + pattern: ^[a-z][a-z]$ + description: A two letter lowercase language code conforming to the [ISO 639-1](https://www.iso.org/iso-639-language-codes.html) standard. Additionally, this may be used to submit requests with the header parameter `Accept-Language`, following [RFC 2616](https://tools.ietf.org/html/rfc2616) & [RFC 1766](https://tools.ietf.org/html/rfc1766). + example: en + type: string + DefaultFallback: + default: default + description: A specialized value indicating the system default values for locales. + pattern: ^default$ + example: default + type: string + LocaleCode: + description: A descriptor for a geographical region by both a language and country code. By combining these two, regional differences in a language can be addressed, such as with the request header parameter `Accept-Language` following [RFC 2616](https://tools.ietf.org/html/rfc2616) & [RFC 1766](https://tools.ietf.org/html/rfc1766). This can also just refer to a language code, also RFC 2616/1766 compliant, as a default if there is no specific match for a country. Finally, can also be used to define default behavior if there is no locale specified. + oneOf: + - $ref: '#/components/schemas/LanguageCountry' + - $ref: '#/components/schemas/LanguageCode' + - $ref: '#/components/schemas/DefaultFallback' + Region: + properties: + id: + maxLength: 256 + title: ID + description: Region identifier. + example: header + type: string + components: + title: Components + description: The components in the region. + example: + - id: iofwj38fhw3f + typeId: commerce_assets.banner + data: + title: Products On Sale + bannerImage: sale/topsellerPromo.jpg + custom: + thumbnail_full: http://static.myshop.com/sale/topsellerPromo.jpg + type: array + items: + $ref: '#/components/schemas/Component' + required: + - id + type: object + Component: + properties: + id: + maxLength: 256 + title: ID + description: Component identifier. + example: rfdvj4ojtltljw3 + type: string + typeId: + maxLength: 256 + title: Component Type ID + description: Component type identifier. + example: commerce_assets.carousel + type: string + data: + title: Component Data + description: The configuration data assigned to the component. + example: + title: Topseller + category: topseller + type: object + additionalProperties: false + custom: + title: Custom Component Data + description: Any custom data added by the custom code for this component. + example: + detailUrl: www.myshop.com/topseller + type: object + additionalProperties: false + regions: + title: Regions + description: The regions (and their assigned components) for the component. + example: + - id: tiles + components: + - id: w3reö9wsjf3 + typeId: commerce_assets.productTile + data: + product: iphone6 + - id: cgn8d4ngdl4n + typeId: commerce_assets.productTile + data: + product: iphone7 + type: array + items: + $ref: '#/components/schemas/Region' + required: + - id + - typeId + type: object + Page: + properties: + id: + maxLength: 256 + title: ID + description: Page identifier. + example: homepage + type: string + typeId: + maxLength: 256 + title: Page Type ID + description: Page type identifier. + example: storePage + type: string + aspectTypeId: + maxLength: 256 + title: Aspect Type ID + description: The aspect type assigned to the page. + example: pdpAspect + type: string + name: + maxLength: 4000 + title: Page Name + description: Display name of the page. + example: Homepage + type: string + description: + maxLength: 4000 + title: Page Description + description: Description of the page. + example: Home page of the storefront. + type: string + pageTitle: + maxLength: 4000 + title: SEO Title + description: The SEO title of the page. + example: Homepage - My Shop + type: string + pageDescription: + maxLength: 4000 + title: SEO Description + description: The SEO description of the page. + example: Get started shopping + type: string + pageKeywords: + maxLength: 4000 + title: SEO Keywords + description: The SEO keywords of the page. + example: fashion, my shop + type: string + data: + title: Page Data + description: The configuration data assigned to the page. + example: + thumbnail: myshop.jpg + type: object + additionalProperties: false + custom: + title: Custom Page Data + description: Any custom data added by the custom code for the page type. + example: + thumbnail_full: http://static.myshop.com/myshop.jpg + type: object + additionalProperties: false + regions: + title: Regions + description: The regions (and their assigned components) for the page. + example: + - id: header + components: + - id: iofwj38fhw3f + typeId: commerce_assets.banner + data: + title: Products On Sale + bannerImage: sale/topsellerPromo.jpg + custom: + thumbnail_full: http://static.myshop.com/sale/topsellerPromo.jpg + - id: main + components: + - id: rfdvj4ojtltljw3 + typeId: commerce_assets.carousel + data: + title: Topseller + category: topseller + custom: + detailUrl: www.myshop.com/topseller + regions: + - id: tiles + components: + - id: w3reö9wsjf3 + typeId: commerce_assets.productTile + data: + product: iphone6 + - id: cgn8d4ngdl4n + typeId: commerce_assets.productTile + data: + product: iphone7 + - id: footer + components: [] + type: array + items: + $ref: '#/components/schemas/Region' + required: + - id + - typeId + type: object + PageResult: + properties: + data: + title: Data + description: List of pages. + type: array + items: + $ref: '#/components/schemas/Page' + required: + - data + type: object + ErrorResponse: + type: object + additionalProperties: true + properties: + title: + description: "A short, human-readable summary of the problem\ntype. It will not change from occurrence to occurrence of the \nproblem, except for purposes of localization\n" + type: string + maxLength: 256 + example: You do not have enough credit + type: + description: | + A URI reference [RFC3986] that identifies the + problem type. This specification encourages that, when + dereferenced, it provide human-readable documentation for the + problem type (e.g., using HTML [W3C.REC-html5-20141028]). When + this member is not present, its value is assumed to be + "about:blank". It accepts relative URIs; this means + that they must be resolved relative to the document's base URI, as + per [RFC3986], Section 5. + type: string + maxLength: 2048 + example: NotEnoughMoney + detail: + description: A human-readable explanation specific to this occurrence of the problem. + type: string + example: Your current balance is 30, but that costs 50 + instance: + description: | + A URI reference that identifies the specific + occurrence of the problem. It may or may not yield further + information if dereferenced. It accepts relative URIs; this means + that they must be resolved relative to the document's base URI, as + per [RFC3986], Section 5. + type: string + maxLength: 2048 + example: /account/12345/msgs/abc + required: + - title + - type + - detail + ContentId: + maxLength: 256 + minLength: 1 + description: The id of the content asset. + example: homepage-banner + type: string + Content: + additionalProperties: + title: Additional Property Support + description: |- + This type supports additional properties passed along with the defined properties of this API. + To indicate that the properties were defined and expected to be handled as additional properties, they are expected to be prefixed with a `c_`. + The type will reject any property that does not fit this pattern, only allowing additional properties beginning with the known prefix. + example: c_trackingId + properties: + id: + title: ID + allOf: + - $ref: '#/components/schemas/ContentId' + name: + title: Name + description: The localized content asset name. + type: string + maxLength: 4000 + example: Homepage Banner + description: + title: Description + description: The localized content asset description. + type: string + maxLength: 4000 + example: Main banner displayed on the homepage + pageDescription: + title: Page Description + description: The localized content asset page description for SEO. + type: string + maxLength: 4000 + example: Discover our latest products and offers + pageKeywords: + title: Page Keywords + description: The localized content asset page keywords for SEO. + type: string + maxLength: 4000 + example: products, offers, sale, fashion + pageTitle: + title: Page Title + description: The localized content asset page title for SEO + type: string + maxLength: 4000 + example: Shop Now - Best Deals + required: + - id + type: object + Total: + default: 0 + minimum: 0 + format: int32 + description: The total number of hits that match the search's criteria. This can be greater than the number of results returned as search results are pagenated. + type: integer + example: 10 + ResultBase: + description: "Schema defining generic list result. Each response schema of a resource requiring a list response should extend this schema. \nAdditionally it needs to be defined what data is returned." + type: object + required: + - limit + - total + properties: + limit: + format: int32 + description: Maximum records to retrieve per request. The limit with its constraints (minimum, maximum, default) is defined by the request parameter `limit` of the endpoint returning this schema. + type: integer + example: 10 + total: + $ref: '#/components/schemas/Total' + ContentResult: + allOf: + - $ref: '#/components/schemas/ResultBase' + properties: + data: + title: Data + description: List of content assets. + type: array + items: + $ref: '#/components/schemas/Content' + required: + - data + type: object + Offset: + default: 0 + minimum: 0 + format: int32 + description: The zero-based index of the first hit/data to include in the result. + type: integer + example: 0 + PaginatedResultBase: + description: "Schema defining generic pageable result. Each response schema of a resource requiring pagination should extend this schema. \nIf you use this extend this schema directly, it needs to be defined what data is returned. Allowed names for the data field is `data`." + type: object + allOf: + - $ref: '#/components/schemas/ResultBase' + properties: + offset: + $ref: '#/components/schemas/Offset' + required: + - limit + - offset + - total + ContentSearchRefinementValue: + properties: + label: + title: Label + description: The localized label of the refinement value. + type: string + maxLength: 4000 + example: Banner + value: + title: Value + description: The refinement value. + type: string + maxLength: 256 + example: banner + hitCount: + title: Hit Count + description: The number of search hits when this refinement value is applied. + type: integer + minimum: 0 + example: 5 + required: + - value + type: object + ContentSearchRefinement: + properties: + attributeId: + title: Attribute ID + description: The ID of the refinement attribute. + type: string + maxLength: 256 + example: c_contentType + label: + title: Label + description: The localized label of the refinement attribute. + type: string + maxLength: 4000 + example: Content Type + values: + title: Values + description: The array of refinement values. + type: array + items: + $ref: '#/components/schemas/ContentSearchRefinementValue' + required: + - attributeId + type: object + ContentSearchResult: + allOf: + - $ref: '#/components/schemas/PaginatedResultBase' + properties: + query: + title: Query + description: The query String that was searched for. + type: string + maxLength: 256 + example: banner + hits: + title: Content Hits + description: The sorted array of search hits. Can be empty. + type: array + items: + $ref: '#/components/schemas/Content' + selectedRefinements: + title: Selected Refinements + description: Map of selected refinement attribute id/value(s) pairs. The sorting order is the same like in request URL. + type: object + additionalProperties: + type: string + maxLength: 256 + example: homepage-folder + example: + fdid: homepage-folder + c_contentType: banner + refinements: + title: Refinements + description: The sorted array of search refinements. Can be empty. + type: array + items: + $ref: '#/components/schemas/ContentSearchRefinement' + required: + - hits + type: object + FolderId: + maxLength: 256 + type: string + example: homepage-folder + ContentFolder: + additionalProperties: + title: Additional Property Support + description: |- + This type supports additional properties passed along with the defined properties of this API. + To indicate that the properties were defined and expected to be handled as additional properties, they are expected to be prefixed with a `c_`. + The type will reject any property that does not fit this pattern, only allowing additional properties beginning with the known prefix. + example: c_trackingId + properties: + id: + maxLength: 256 + title: ID + description: The id of the content folder. + example: homepage-folder + type: string + parentFolderId: + maxLength: 256 + title: Parent Folder ID + description: The id of the parent content folder. + example: root-folder + type: string + name: + title: Name + description: The localized content folder name. + type: string + maxLength: 4000 + example: Homepage Folder + description: + title: Description + description: The localized content folder description. + type: string + maxLength: 4000 + example: Folder containing homepage content assets + pageDescription: + title: Page Description + description: The localized content folder page description. + type: string + maxLength: 4000 + example: SEO description for homepage folder + pageKeywords: + title: Page Keywords + description: The localized content folder page keywords. + type: string + maxLength: 4000 + example: homepage, main, landing + pageTitle: + title: Page Title + description: The localized content folder page title. + type: string + maxLength: 4000 + example: Homepage Folder - My Store + folders: + title: Folders + description: The array of content subfolders. This array can be empty. + type: array + items: + $ref: '#/components/schemas/ContentFolder' + required: + - id + type: object + ContentFolderResult: + allOf: + - $ref: '#/components/schemas/ResultBase' + properties: + data: + title: Data + description: List of content folders. + type: array + items: + $ref: '#/components/schemas/ContentFolder' + required: + - data + type: object + parameters: + organizationId: + description: An identifier for the organization the request is being made by + name: organizationId + in: path + required: true + example: f_ecom_zzxy_prd + schema: + $ref: '#/components/schemas/OrganizationId' + categoryId: + name: categoryId + in: query + description: Category identifier that is used for searching the page assignment. Must be provided if no `productId` is provided. + required: false + schema: + maxLength: 256 + type: string + example: home-clearance + productId: + name: productId + in: query + description: Product identifier that is used for searching the page assignment. Must be provided if no `categoryId` is provided. + required: false + schema: + maxLength: 100 + type: string + example: iphone11 + aspectTypeId: + name: aspectTypeId + in: query + description: Aspect type identifier that is used for searching the page assignment in conjunction with either the `productId` or `categoryId`. + required: true + schema: + maxLength: 256 + type: string + example: pdp + aspectAttributes: + name: aspectAttributes + in: query + description: A JSON representation of aspect attributes. Each aspect attribute is a key/value pair. Aspect attributes serve as a runtime parameter contract between caller (for example, this API or the DWScript API) and callee (the page). This parameter must not contain more than 256 characters after URL decoding. + required: false + schema: + type: string + maxLength: 256 + example: |- + { + "product" : "iphone11", + "breadcrumbCategory" : "home-clearance" + } + parameters: + name: parameters + in: query + description: A free-form definition of parameters that influences the page rendering according to its implementation. This parameter must not contain more than 256 characters after URL decoding. + required: false + schema: + maxLength: 256 + type: string + example: refine=color,size;currency=USD;showNavigation=false + siteId: + description: The identifier of the site that a request is being made in the context of. Attributes might have site specific values, and some objects may only be assigned to specific sites. + name: siteId + in: query + required: true + examples: + SiteId: + value: RefArch + schema: + $ref: '#/components/schemas/SiteId' + locale: + description: A descriptor for a geographical region by both a language and country code. By combining these two, regional differences in a language can be addressed, such as with the request header parameter `Accept-Language` following [RFC 2616](https://tools.ietf.org/html/rfc2616) & [RFC 1766](https://tools.ietf.org/html/rfc1766). This can also just refer to a language code, also RFC 2616/1766 compliant, as a default if there is no specific match for a country. Finally, can also be used to define default behavior if there is no locale specified. + name: locale + in: query + examples: + LanguageCountry: + value: en-US + CountryCode: + value: US + schema: + $ref: '#/components/schemas/LocaleCode' + pageId: + name: pageId + in: path + description: Identifier for the requested page. + required: true + schema: + maxLength: 256 + type: string + example: homepage + contentId: + name: id + in: path + description: Identifier for the requested content asset. + required: true + schema: + $ref: '#/components/schemas/ContentId' + contentIds: + name: ids + in: query + example: homepage-banner,footer-content,sidebar-promo + description: Comma-separated list of content asset identifiers to retrieve. + required: true + style: form + explode: false + schema: + type: array + items: + $ref: '#/components/schemas/ContentId' + minItems: 1 + maxItems: 50 + example: + - homepage-banner + - footer-content + - sidebar-promo + contentSearchQuery: + name: q + in: query + description: The query phrase to search for content assets. For example, to search for content with "banner", type q=banner. + required: false + schema: + maxLength: 50 + minLength: 1 + type: string + example: banner + contentSearchRefine: + name: refine + in: query + description: "Parameter that represents a refinement attribute/value(s) pair. Refinement attribute ID and value(s) are separated by '='. Multiple values are supported by a subset of refinement attributes and can be provided by separating them using a pipe (URL encoded = \"|\"). Value ranges can be specified like this: refine=foo=(100..500). \nMultiple refine parameters can be provided by adding an underscore in combination with an integer counter right behind the parameter name and a counter range 1..9. I.e. refine_1=c_refinementType=type1|type2|type3.\n\nThe following system refinement attribute IDs are supported:\n- `fdid`: Allows refinement per single content folder ID. Multiple folder IDs are not supported." + required: false + style: form + explode: true + schema: + type: string + maxLength: 256 + example: fdid=homepage-folder + contentSearchSort: + name: sort + in: query + description: |- + Parameter that represents a sorting attribute/value(s) pair. Sorting attribute ID and value are separated by '='. The value describes the sort direction. Possible values are 'asc' and 'desc', for ascending or descending sort direction. I.e. sort=c_myAttribute=desc. + + Precondition: You have to select your sorting attributes in Business Manager > YourSite > Search Indexes > Content Index > Sorting Attributes. + required: false + style: form + explode: true + schema: + type: string + maxLength: 256 + example: name=asc + folderId: + name: id + in: path + description: Identifier for the requested content folder. + required: true + schema: + $ref: '#/components/schemas/FolderId' + levels: + name: levels + in: query + description: Specifies how many levels of nested subfolders you want the server to return. The default value is 1. Valid values are 0, 1, or 2. + required: false + schema: + type: integer + minimum: 0 + maximum: 2 + default: 1 + example: 1 + folderIds: + name: ids + in: query + example: homepage-folder,category-folder,product-folder + style: form + explode: false + description: Comma-separated list of content folder identifiers. + required: true + schema: + type: array + items: + allOf: + - $ref: '#/components/schemas/FolderId' + minItems: 1 + maxItems: 50 + example: + - homepage-folder + - category-folder + - product-folder + examples: + PageResult: + value: + data: + - id: homePpage + typeId: storePage + aspectTypeId: pdpAspect + name: Homepage + description: Home page of the storefront. + pageTitle: Homepage - My Shop + pageDescription: Get started shopping + pageKeywords: fashion, my shop + data: + thumbnail: myshop.jpg + custom: + thumbnail_full: http://static.myshop.com/myshop.jpg + regions: + - id: header + components: + - id: 2192f5b9aac0f2af2385f6f6b7 + typeId: commerce_assets.banner + data: + title: Products On Sale + bannerImage: sale/topsellerPromo.jpg + custom: + thumbnail_full: http://static.myshop.com/sale/topsellerPromo.jpg + - id: main + components: + - id: 5c5ebbcd2aee1a67af519c83b5 + typeId: commerce_assets.carousel + data: + title: Topseller + category: topseller + custom: + detailUrl: www.myshop.com/topseller + regions: + - id: tiles + components: + - id: d98a30dfe93715e3e6fc22a329 + typeId: commerce_assets.productTile + data: + product: iphone6 + - id: 43aa39896afb9292308181ce14 + typeId: commerce_assets.productTile + data: + product: iphone7 + - id: detailpage + typeId: storePage + name: storepage + description: A Store page + pageTitle: A Store + pageDescription: Buy in store + pageKeywords: fashion, my shop, store + data: + thumbnail: mystore.jpg + BusinessObjectIDInvalid: + value: + title: Business Object ID Invalid + type: https://api.commercecloud.salesforce.com/documentation/error/v1/errors/business-object-id-invalid + detail: At least one provided business object identifier was invalid. This means either none was provided at all or exclusiveness of multiple identifiers wasn't honored or the referenced business object didn't exist. + AspectTypeNotFound: + value: + title: Aspect Type Not Found + type: https://api.commercecloud.salesforce.com/documentation/error/v1/errors/aspect-type-not-found + detail: No aspect type with ID 'pdp' was found in site 'RefArch'. + Page: + value: + id: homepage + typeId: storePage + aspectTypeId: pdpAspect + name: Homepage + description: Home page of the storefront. + pageTitle: Homepage - My Shop + pageDescription: Get started shopping + pageKeywords: fashion, my shop + data: + thumbnail: myshop.jpg + custom: + thumbnail_full: http://static.myshop.com/myshop.jpg + regions: + - id: header + components: + - id: 375b9107b067902827083772f9 + typeId: commerce_assets.banner + data: + title: Products On Sale + bannerImage: sale/topsellerPromo.jpg + custom: + thumbnail_full: http://static.myshop.com/sale/topsellerPromo.jpg + - id: main + components: + - id: be1f331b92d8ad7e38e440e35d + typeId: commerce_assets.carousel + data: + title: Topseller + category: topseller + custom: + detailUrl: www.myshop.com/topseller + regions: + - id: tiles + components: + - id: 45af07459684e6db78990c5d05 + typeId: commerce_assets.productTile + data: + product: iphone6 + - id: df6e33766d90e7e205d109aa2f + typeId: commerce_assets.productTile + data: + product: iphone7 + AspectAttributeInvalid: + value: + title: Aspect Attribute Invalid + type: https://api.commercecloud.salesforce.com/documentation/error/v1/errors/aspect-attribute-invalid + detail: 'Aspect attribute value "5555" does not fulfill its respective definition {"id" : "foobar", "type" : "string","required" : "false"}' + PageNotFound: + value: + title: Page Not Found + type: https://api.commercecloud.salesforce.com/documentation/error/v1/errors/page-not-found + detail: No visible page with ID 'homepage' was found in site 'RefArch'. + Content: + value: + id: homepage-banner + name: Homepage Banner + description: Main promotional banner for the homepage + pageTitle: Homepage Banner - My Shop + pageDescription: Discover amazing products at great prices + pageKeywords: banner, promotion, homepage + ContentNotFound: + value: + title: Content Asset Not Found + type: https://api.commercecloud.salesforce.com/documentation/error/v1/errors/content-not-found + detail: No visible content asset with ID 'homepage-banner' was found in site 'RefArch'. + ContentResult: + value: + data: + - id: homepage-banner + name: Homepage Banner + description: Main promotional banner for the homepage + pageTitle: Homepage Banner - My Shop + pageDescription: Discover amazing products at great prices + pageKeywords: banner, promotion, homepage + - id: footer-content + name: Footer Content + description: Footer information and links + pageTitle: Footer - My Shop + pageDescription: Footer content with links and copyright information + pageKeywords: footer, links, copyright + total: 2 + limit: 2 + GetContentsBadRequest: + value: + title: Bad Request + type: https://api.commercecloud.salesforce.com/documentation/error/v1/errors/bad-request + detail: '''ids'' violates the value constraint. The expected value is between ''(0..50)''.' + parameter: ids + expected: (0..50) + ContentSearchResult: + value: + query: banner + hits: + - id: homepage-banner + name: Homepage Banner + description: Main promotional banner for the homepage + pageTitle: Homepage Banner - My Shop + pageDescription: Discover amazing products at great prices + pageKeywords: banner, promotion, homepage + - id: sidebar-banner + name: Sidebar Banner + description: Promotional banner for the sidebar + pageTitle: Sidebar Banner - My Shop + pageDescription: Check out our special offers + pageKeywords: banner, sidebar, promotion + selectedRefinements: + fdid: homepage-folder + c_contentType: banner + refinements: + - attributeId: c_contentType + label: Content Type + values: + - value: banner + label: Banner + hitCount: 15 + - value: text + label: Text Content + hitCount: 8 + - attributeId: fdid + label: Content Folder + values: + - value: homepage-folder + label: Homepage + hitCount: 5 + - value: promotions-folder + label: Promotions + hitCount: 10 + total: 2 + limit: 25 + offset: 0 + ContentSearchBadRequest: + value: + title: Bad Request + type: https://api.commercecloud.salesforce.com/documentation/error/v1/errors/bad-request + detail: 'Invalid refinement parameter format. Expected format: ''attribute=value''.' + parameter: refine + ContentFolder: + value: + id: homepage-folder + parentFolderId: root-folder + name: Homepage Folder + description: Folder containing homepage content assets + pageTitle: Homepage Folder - My Store + pageDescription: SEO description for homepage folder + pageKeywords: homepage, main, landing + folders: + - id: hero-section + parentFolderId: homepage-folder + name: Hero Section + description: Hero section content folder + folders: [] + - id: featured-products + parentFolderId: homepage-folder + name: Featured Products + description: Featured products content folder + folders: [] + c_customAttribute: customValue + InvalidLevelsParameter: + value: + title: Bad Request + type: https://api.commercecloud.salesforce.com/documentation/error/v1/errors/bad-request + detail: '''levels'' violates the value constraint. The expected value is between ''(0..2)''.' + UnauthorizedExample: + value: + type: https://api.commercecloud.salesforce.com/documentation/error/v1/errors/unauthorized + title: Unauthorized + detail: Your access token is invalid or expired and can’t be used to identify a user. + ForbiddenExample: + value: + type: https://api.commercecloud.salesforce.com/documentation/error/v1/errors/forbidden + title: Forbidden + detail: Your access token is valid, but you don’t have the required permissions to access the resource. + ContentFolderNotFound: + value: + title: Folder Not Found + type: https://api.commercecloud.salesforce.com/documentation/error/v1/errors/folder-not-found + detail: No online content folder with ID 'non-existent-folder' for site 'RefArch' could be found. + ContentFolderResult: + value: + limit: 2 + total: 10 + data: + - id: homepage-folder + parentFolderId: root-folder + name: Homepage Folder + description: Folder containing homepage content assets + pageTitle: Homepage Folder - My Store + pageDescription: SEO description for homepage folder + pageKeywords: homepage, main, landing + folders: + - id: hero-section + parentFolderId: homepage-folder + name: Hero Section + description: Hero section content folder + folders: [] + - id: featured-products + parentFolderId: homepage-folder + name: Featured Products + description: Featured products content folder + folders: [] + c_customAttribute: customValue + - id: category-folder + parentFolderId: root-folder + name: Category Folder + description: Folder containing category content assets + pageTitle: Category Folder - My Store + pageDescription: SEO description for category folder + pageKeywords: category, products, listing + folders: [] + responses: + 401unauthorized: + description: Your access token is invalid or expired and can’t be used to identify a user. + content: + application/problem+json: + schema: + $ref: '#/components/schemas/ErrorResponse' + examples: + UnauthorizedExample: + $ref: '#/components/examples/UnauthorizedExample' + 403forbidden: + description: Forbidden. Your access token is valid, but you don’t have the required permissions to access the resource. + content: + application/problem+json: + schema: + $ref: '#/components/schemas/ErrorResponse' + examples: + ForbiddenExample: + $ref: '#/components/examples/ForbiddenExample' diff --git a/apis/shopper-gift-certificates-oas-1.0.27/exchange.json b/apis/shopper-gift-certificates-oas-1.2.0/exchange.json similarity index 93% rename from apis/shopper-gift-certificates-oas-1.0.27/exchange.json rename to apis/shopper-gift-certificates-oas-1.2.0/exchange.json index 9e86bbe5..5c2916b3 100644 --- a/apis/shopper-gift-certificates-oas-1.0.27/exchange.json +++ b/apis/shopper-gift-certificates-oas-1.2.0/exchange.json @@ -3,7 +3,7 @@ "name": "Shopper Gift Certificates OAS", "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", "assetId": "shopper-gift-certificates-oas", - "version": "1.0.27", + "version": "1.2.0", "classifier": "oas", "tags": [], "descriptorVersion": "1.0.0", diff --git a/apis/shopper-gift-certificates-oas-1.0.27/shopper-gift-certificates-oas-v1-public.yaml b/apis/shopper-gift-certificates-oas-1.2.0/shopper-gift-certificates-oas-v1-public.yaml similarity index 99% rename from apis/shopper-gift-certificates-oas-1.0.27/shopper-gift-certificates-oas-v1-public.yaml rename to apis/shopper-gift-certificates-oas-1.2.0/shopper-gift-certificates-oas-v1-public.yaml index 776ba528..dbdb4229 100644 --- a/apis/shopper-gift-certificates-oas-1.0.27/shopper-gift-certificates-oas-v1-public.yaml +++ b/apis/shopper-gift-certificates-oas-1.2.0/shopper-gift-certificates-oas-v1-public.yaml @@ -1,11 +1,14 @@ openapi: 3.0.3 info: + x-api-type: Shopper + x-api-family: Pricing title: Shopper Gift Certificates - version: 1.0.27 + version: 1.2.0 description: |- - # API Overview [Download API specification](https://developer.salesforce.com/static/commercecloud/commerce-api/shopper-gift-certificates/shopper-gift-certificates-oas-v1-public.yaml) + # API Overview + Use the Shopper Gift Certificates API to obtain gift certificate details. ## Authentication & Authorization @@ -71,6 +74,7 @@ paths: security: - ShopperToken: - sfcc.shopper-gift-certificates + - sfcc.shopper-standard components: securitySchemes: ShopperToken: diff --git a/apis/shopper-orders-oas-1.5.1/exchange.json b/apis/shopper-orders-oas-1.12.1/exchange.json similarity index 93% rename from apis/shopper-orders-oas-1.5.1/exchange.json rename to apis/shopper-orders-oas-1.12.1/exchange.json index 732f2514..29aea030 100644 --- a/apis/shopper-orders-oas-1.5.1/exchange.json +++ b/apis/shopper-orders-oas-1.12.1/exchange.json @@ -3,7 +3,7 @@ "name": "Shopper Orders OAS", "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", "assetId": "shopper-orders-oas", - "version": "1.5.1", + "version": "1.12.1", "classifier": "oas", "tags": [], "descriptorVersion": "1.0.0", diff --git a/apis/shopper-orders-oas-1.5.1/shopper-orders-oas-v1-public.yaml b/apis/shopper-orders-oas-1.12.1/shopper-orders-oas-v1-public.yaml similarity index 83% rename from apis/shopper-orders-oas-1.5.1/shopper-orders-oas-v1-public.yaml rename to apis/shopper-orders-oas-1.12.1/shopper-orders-oas-v1-public.yaml index 047bca48..05c68ba3 100644 --- a/apis/shopper-orders-oas-1.5.1/shopper-orders-oas-v1-public.yaml +++ b/apis/shopper-orders-oas-1.12.1/shopper-orders-oas-v1-public.yaml @@ -3,11 +3,12 @@ info: x-api-type: Shopper x-api-family: Checkout title: Shopper Orders - version: 1.5.1 + version: 1.12.1 description: |- - # API Overview [Download API specification](https://developer.salesforce.com/static/commercecloud/commerce-api/shopper-orders/shopper-orders-oas-v1-public.yaml) + # API Overview + The Shopper Orders API enables you to: - Create orders based on baskets prepared using the Shopper Baskets API. @@ -29,7 +30,7 @@ info: For details on how to request a shopper access token from SLAS, see the guest user flows for [public clients](https://developer.salesforce.com/docs/commerce/commerce-api/guide/slas-public-client.html#guest-user) and [private clients](https://developer.salesforce.com/docs/commerce/commerce-api/guide/slas-private-client.html#guest-user) in the SLAS guides. - You must include the relevant scope(s) in the client ID used to generate the SLAS token. For details, see the [Authorization Scopes Catalog.](https://developer.salesforce.com/docs/commerce/commerce-api/guide/auth-z-scope-catalog.html) + You must include `sfcc.shopper-baskets-orders` or `sfcc.shopper-baskets-orders.rw` in the client ID used to generate the SLAS token. For a full list of permissions, see the [Authorization Scopes Catalog.](https://developer.salesforce.com/docs/commerce/commerce-api/guide/auth-z-scope-catalog.html) ## Use Cases @@ -104,6 +105,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard /organizations/{organizationId}/orders/{orderNo}: get: description: Gets information for an order. @@ -114,6 +116,7 @@ paths: - $ref: '#/components/parameters/organizationId' - $ref: '#/components/parameters/siteId' - $ref: '#/components/parameters/locale' + - $ref: '#/components/parameters/expandOrders' responses: '200': description: Success, the response body contains the order. @@ -137,6 +140,7 @@ paths: - ShopperToken: - sfcc.shopper-baskets-orders - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard /organizations/{organizationId}/orders/{orderNo}/lookup: post: description: |+ @@ -203,6 +207,76 @@ paths: - ShopperTokenTsob: - sfcc.shopper-baskets-orders - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard + /organizations/{organizationId}/orders/{orderNo}/actions/fail: + post: + description: |- + Fails an unplaced order and optionally reopens the basket when indicated. + Creates a HistoryEntry in the failed Order with provided reasonCode. + externalDocs: + description: Find more info on fail order behavior here + url: https://salesforcecommercecloud.github.io/b2c-dev-doc/docs/current/scriptapi/html/index.html?target=class_dw_order_OrderMgr.html#dw_order_OrderMgr_failOrder_Order_Boolean_DetailAnchor + operationId: failOrder + summary: Fail an Order. + parameters: + - $ref: '#/components/parameters/organizationId' + - $ref: '#/components/parameters/orderNo' + - $ref: '#/components/parameters/siteId' + - $ref: '#/components/parameters/locale' + - $ref: '#/components/parameters/reopenBasket' + requestBody: + content: + application/json: + examples: + FailOrder: + $ref: '#/components/examples/FailOrder' + schema: + $ref: '#/components/schemas/FailOrderRequest' + security: + - ShopperToken: + - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard + responses: + '201': + description: | + Order failed successfully. No content returned. + headers: + Location: + description: The location for accessing the reopened basket if one exists. + schema: + type: string + '204': + description: | + Order failed successfully. No content returned. + '400': + description: |- + Possible reasons: + - Invalid request parameters. + content: + application/json: + schema: + $ref: '#/components/schemas/ErrorResponse' + examples: + BadRequest: + $ref: '#/components/examples/BadRequest' + '404': + description: The order with the given order number is unknown for the shopper. + content: + application/json: + schema: + $ref: '#/components/schemas/ErrorResponse' + examples: + OrderNotFound: + $ref: '#/components/examples/OrderNotFound' + '409': + description: The order is in invalid status. + content: + application/json: + schema: + $ref: '#/components/schemas/ErrorResponse' + examples: + InvalidStateTransition: + $ref: '#/components/examples/InvalidStateTransition' /organizations/{organizationId}/orders/{orderNo}/payment-instruments: post: description: |- @@ -261,6 +335,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard /organizations/{organizationId}/orders/{orderNo}/payment-instruments/{paymentInstrumentId}: delete: description: Removes a payment instrument of an order. @@ -295,6 +370,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard patch: description: |- Updates a payment instrument of an order. @@ -318,11 +394,13 @@ paths: examples: PaymentInstrumentPatch: $ref: '#/components/examples/PaymentInstrumentPatch' + PaymentInstrumentPatchWithSalesforcePayments: + $ref: '#/components/examples/PaymentInstrumentPatchWithSalesforcePayments' schema: $ref: '#/components/schemas/OrderPaymentInstrumentRequest' responses: '200': - description: Success, the response body contains the order with the updated payment instrument. + description: Success, the response body contains the order with the updated payment instrument. When Salesforce Payments is enabled, the paymentReference object will be included in the paymentInstruments. content: application/json: schema: @@ -330,6 +408,8 @@ paths: examples: Order: $ref: '#/components/examples/examples-PaymentInstrumentPatch' + OrderWhenSalesforcePaymentsEnabled: + $ref: '#/components/examples/PaymentInstrumentPatchWhenSalesforcePaymentsEnabled' '400': description: |- Possible reasons: @@ -359,6 +439,7 @@ paths: security: - ShopperToken: - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard /organizations/{organizationId}/orders/{orderNo}/payment-methods: get: description: Gets the applicable payment methods for an existing order considering the open payment amount only. @@ -403,6 +484,7 @@ paths: - ShopperToken: - sfcc.shopper-baskets-orders - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard /organizations/{organizationId}/orders/{orderNo}/taxes: get: description: |- @@ -518,9 +600,8 @@ components: DefaultFallback: default: default description: A specialized value indicating the system default values for locales. + pattern: ^default$ example: default - enum: - - default type: string LocaleCode: description: A descriptor for a geographical region by both a language and country code. By combining these two, regional differences in a language can be addressed, such as with the request header parameter `Accept-Language` following [RFC 2616](https://tools.ietf.org/html/rfc2616) & [RFC 1766](https://tools.ietf.org/html/rfc1766). This can also just refer to a language code, also RFC 2616/1766 compliant, as a default if there is no specific match for a country. Finally, can also be used to define default behavior if there is no locale specified. @@ -726,24 +807,11 @@ components: type: boolean required: - code - ISOCurrency: - pattern: ^[A-Z][A-Z][A-Z]$ - description: A three letter uppercase currency code conforming to the [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) standard. - example: USD - type: string - NoValue: - default: N/A - description: A specialized value indicating the lack of definition of a currency, for example, if the value of the monetary value of the currency is an undefined number. - example: N/A - enum: - - N/A - type: string CurrencyCode: description: A three letter uppercase currency code conforming to the [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) standard, or the string `N/A` indicating that a currency is not applicable. + pattern: ^([A-Z][A-Z][A-Z]|N/A)$ example: USD - oneOf: - - $ref: '#/components/schemas/ISOCurrency' - - $ref: '#/components/schemas/NoValue' + type: string CustomerInfo: additionalProperties: title: Additional Property Support @@ -1038,12 +1106,38 @@ components: description: The year the payment card is valid from. example: 2015 type: integer + GiftCardResponse: + additionalProperties: false + description: Document representing a gift card response. + type: object + properties: + brand: + maxLength: 256 + description: The gift card brand. + example: givex + type: string + maskedCardNumber: + maxLength: 40 + description: The masked gift card number. + example: '*********4422' + type: string + expirationMonth: + format: int32 + description: The month when the gift card expires. + example: 1 + type: integer + expirationYear: + format: int32 + description: The year when the gift card expires. + example: 2030 + type: integer PaymentInstrumentId: description: The payment instrument ID example: ba248424e3eee797f062162f8b type: string OrderPaymentInstrument: description: Document representing an order payment instrument. + type: object properties: amount: format: double @@ -1067,6 +1161,10 @@ components: description: The payment card. allOf: - $ref: '#/components/schemas/PaymentCard' + giftCard: + description: The gift card. + allOf: + - $ref: '#/components/schemas/GiftCardResponse' paymentInstrumentId: description: The payment instrument ID. It is read only. allOf: @@ -1076,7 +1174,62 @@ components: description: The payment method ID. It is read only. example: CREDIT_CARD type: string - type: object + paymentReference: + description: Payment reference information for various payment service providers, only when Salesforce Payments is enabled. + type: object + properties: + paymentReferenceId: + description: Payment reference identifier. Can be payment intent ID for Stripe, PSP reference for Adyen, PayPal order ID for PayPal, or similar identifier for other payment providers. + type: string + maxLength: 256 + example: pi_3N4B2vF0wDjebNCp1234567 + gateway: + description: The payment gateway used to process the payment. + example: stripe + type: string + enum: + - stripe + - paypal + - adyen + gatewayProperties: + description: The payment gateway specific properties. + type: object + additionalProperties: false + properties: + stripe: + description: | + # Stripe specific properties. + + - setupFutureUsage: Indicates that you intend to make future payments with this payment method. + - **on_session**: The payment method is intended to be used for a future payment on the same website session. + - **off_session**: The payment method is intended to be used for a future payment on a different website session. + - **null**: The payment method is not intended to be used for a future payment. + - clientSecret: Secret for Stripe client-side payment confirmation. Don't store, log, or expose the client secret to anyone other than the customer, and only use it on pages where TLS is enabled. + - type: string + - maxLength: 256 + - example: "pi_1J4K5L2eZvKYlo2CyZ8K5L6M_secret_abc123" + type: object + additionalProperties: true + paypal: + description: | + # PayPal specific properties. + type: object + additionalProperties: true + adyen: + description: | + # Adyen specific properties. + + - adyenError: Error information returned by Adyen if the payment fails. Null on success. + - adyenPaymentIntent: The Adyen payment intent object containing payment details and required actions. + - resultCode: The result of the payment request (for example, "REDIRECT_SHOPPER", "AUTHORISED", "PENDING", "REFUSED"). + - accountID: The Adyen merchant account ID. + - adyenPaymentIntentAction: The action object for payment methods requiring additional shopper interaction. + - url: The URL for completing the payment (redirect or 3DS authentication). + - type: The action type (for example, "redirect", "threeDS2", "voucher"). + - method: The HTTP method for the action (for example, "GET", "POST"). + - successful: A boolean indicating whether the Adyen operation is successful. + type: object + additionalProperties: true ProductItem: description: Document representing a product item. additionalProperties: @@ -1457,6 +1610,10 @@ components: type: string required: - id + BasketProductItem: + description: Document representing a basket product item. + allOf: + - $ref: '#/components/schemas/ProductItem' ShipmentId: minLength: 1 type: string @@ -1838,7 +1995,7 @@ components: description: The product items. type: array items: - $ref: '#/components/schemas/ProductItem' + $ref: '#/components/schemas/BasketProductItem' productSubTotal: format: double description: |- @@ -1906,6 +2063,112 @@ components: maxLength: 50 type: string example: '00000410' + OmsProductData: + description: "Additional information retrieved from Order Management (OMS) \nSee https://developer.salesforce.com/docs/atlas.en-us.order_management_developer_guide.meta/order_management_developer_guide/sforce_api_objects_orderitemsummary.htm for more information.\nOnly available in context of an order." + additionalProperties: false + properties: + status: + description: Order Management (OMS) status + example: ordered + enum: + - ordered + - returned + - canceled + - paid + - reshipped + - fulfilled + - partially_fulfilled + - allocated + - partially_allocated + - return_initiated + type: string + quantityAvailableToCancel: + format: double + description: The quantity that can be cancelled. + example: 2 + type: number + type: object + OrderProductItem: + description: Document representing an order product item. + allOf: + - $ref: '#/components/schemas/ProductItem' + properties: + omsData: + description: Product information retrieved from Order Management (OMS). Only available in the context of an order. + allOf: + - $ref: '#/components/schemas/OmsProductData' + OmsShipmentItem: + description: Individual item within a shipment + type: object + additionalProperties: false + properties: + id: + description: Unique identifier for the shipment item + type: string + example: 0OBVF000006603F4AQ + productItemId: + description: Reference to the product item in the order + type: string + example: 10uVF0000002fGnYAI + quantity: + description: Quantity of product items with the referenced productItemId in this shipment + type: number + format: double + example: 2 + OmsShipment: + description: Shipment information from Salesforce Order Management created during fulfillment process. See https://developer.salesforce.com/docs/atlas.en-us.230.0.order_management_developer_guide.meta/order_management_developer_guide/sforce_api_objects_fulfillmentorder.htm for more information. + type: object + additionalProperties: false + properties: + id: + description: Unique identifier for the shipment + type: string + example: 0OBVF000000003F4AQ + status: + description: Current status of the shipment + type: string + example: shipped + provider: + description: Shipping provider name + type: string + example: UPS + trackingNumber: + description: Tracking number for the shipment + type: string + example: '123456789' + trackingUrl: + description: URL to track the shipment + type: string + example: https://www.ups.com/track?loc=en_US&tracknum=123456789 + expectedDeliveryDate: + description: Expected delivery date and time + type: string + format: date-time + example: 2025-11-12T20:00:00.000+0000 + actualDeliveryDate: + description: Actual delivery date and time (null if not yet delivered) + type: string + format: date-time + example: 2025-11-12T20:00:00.000+0000 + shipmentItems: + description: Items included in this shipment + type: array + items: + $ref: '#/components/schemas/OmsShipmentItem' + OmsData: + description: "Additional information retrieved from Order Management (OMS) \nSee https://developer.salesforce.com/docs/atlas.en-us.order_management_developer_guide.meta/order_management_developer_guide/sforce_api_objects_ordersummary.htm for more information." + additionalProperties: false + properties: + status: + description: Current status of the order + type: string + example: shipped + shipments: + description: List of shipments associated with the order + type: array + items: + $ref: '#/components/schemas/OmsShipment' + type: object Order: description: Document representing an order. type: object @@ -2066,7 +2329,7 @@ components: description: The product items. It is read only. type: array items: - $ref: '#/components/schemas/ProductItem' + $ref: '#/components/schemas/OrderProductItem' productSubTotal: format: double description: |- @@ -2122,6 +2385,10 @@ components: example: ShoppingSite allOf: - $ref: '#/components/schemas/SiteId' + omsData: + description: Information retrieved from Order Management (OMS) for the order. + allOf: + - $ref: '#/components/schemas/OmsData' sourceCode: description: The source code assigned to the basket from which this order was created. It is read only. example: OUTDOOR1 @@ -2215,6 +2482,18 @@ components: orderViewCode: description: The order view code associated with the order to be looked up. type: string + FailOrderRequest: + description: Document representing a fail order request. + type: object + properties: + reasonCode: + description: The reason code for failing the order. + enum: + - payment_confirm_failure + - payment_capture_failure + - payment_auth_failure + type: string + example: payment_confirm_failure OrderPaymentCardRequest: description: Document representing an order payment card request. type: object @@ -2268,6 +2547,95 @@ components: description: The year the payment card is valid from. example: 2019 type: integer + GiftCardRequest: + additionalProperties: false + description: Represents gift card details for a request. + type: object + required: + - brand + - cardNumber + - cvc + properties: + brand: + maxLength: 256 + description: The gift card type or brand (for example, givex, blackhawk). + example: givex + type: string + cardNumber: + maxLength: 40 + description: The gift card number. + example: '6364530000000000' + type: string + cvc: + maxLength: 4 + description: The card verification code (CVC/CVV) for the gift card. + example: '123' + type: string + expirationMonth: + format: int32 + description: The month when the gift card expires. + example: 1 + type: integer + expirationYear: + format: int32 + description: The year when the gift card expires. + example: 2030 + type: integer + PaymentReferenceRequest: + type: object + description: Properties for Payments Reference Request + properties: + paymentMethodType: + type: string + maxLength: 64 + description: Payment Method Type + example: card + zoneId: + type: string + description: The unique identifier for a Payments zone. + pattern: ^[a-zA-Z0-9\-_]{1,100}$ + minLength: 1 + maxLength: 100 + example: + Amer-Zone: null + gateway: + description: The payment gateway used to process the payment. + example: stripe + type: string + enum: + - stripe + - paypal + - adyen + gatewayProperties: + description: The payment gateway specific properties. + type: object + additionalProperties: false + properties: + stripe: + description: | + # Stripe specific properties. + + - setupFutureUsage: Indicates that you intend to make future payments with this payment method. + - **on_session**: The payment method is intended to be used for a future payment on the same website session. + - **off_session**: The payment method is intended to be used for a future payment on a different website session. + - **null**: The payment method is not intended to be used for a future payment. + type: object + additionalProperties: true + paypal: + description: | + # PayPal specific properties. + + - shippingPreference: Shipping preference for PayPal payment processing. Applicable only for basket payment instruments. + - **GET_FROM_FILE** + - **NO_SHIPPING** + - **SET_PROVIDED_ADDRESS** + type: object + additionalProperties: true + adyen: + description: | + # Adyen specific properties. + type: object + additionalProperties: true OrderPaymentInstrumentRequest: description: Document representing an order payment instrument request. additionalProperties: @@ -2297,11 +2665,19 @@ components: description: The payment card. allOf: - $ref: '#/components/schemas/OrderPaymentCardRequest' + giftCardRequest: + description: The gift card request. + allOf: + - $ref: '#/components/schemas/GiftCardRequest' paymentMethodId: maxLength: 256 description: The payment method ID. example: CREDIT_CARD type: string + paymentReferenceRequest: + description: Payment reference information for various payment service providers, only when Salesforce Payments is enabled. + allOf: + - $ref: '#/components/schemas/PaymentReferenceRequest' PaymentCardSpec: description: Document representing the specification for a payment card. type: object @@ -2462,6 +2838,31 @@ components: required: true schema: $ref: '#/components/schemas/OrderNo' + expandOrders: + name: expand + in: query + required: false + style: form + explode: false + example: oms,oms_shipments + schema: + type: array + items: + type: string + enum: + - oms + - oms_shipments + example: oms + description: "When you select 'oms' expand, data is loaded from Order Management (OMS), if available. \nWhen OMS data is available, the expand parameter has the following behavior:\n\"expand=oms\": order and related order entities (product & shipping items, delivery groups and price adjustments) are returned.\n\"expand=oms_shipments\": order and fulfillment (shipment) data is returned.\n\"expand=oms,oms_shipments\": order, related order entities and fulfillment (shipment) data are returned.\nIf your instance is not integrated with OMS or the order data is not available, the `expand=oms` command is disregarded." + reopenBasket: + name: reopenBasket + in: query + description: "Set to true to reopen basket from the order.\nA basket can only be reopened if no other basket for the customer exists at the moment of the call to fail Order, \nsince a customer is limited to 1 storefront basket at a time." + required: false + schema: + type: boolean + default: false + example: false paymentInstrumentId: name: paymentInstrumentId in: path @@ -2801,6 +3202,14 @@ components: type: https://api.commercecloud.salesforce.com/documentation/error/v1/errors/order-not-found title: Order Not Found detail: No order with number '123' was found. + FailOrder: + value: + reasonCode: payment_confirm_failure + InvalidStateTransition: + value: + type: https://api.commercecloud.salesforce.com/documentation/error/v1/errors/order-status-transition + title: Order Status Transition + detail: The order status change from 'Completed' to 'Failed' for order with number '00000335' isn't supported. PaymentInstrumentPost: value: amount: 700 @@ -2988,6 +3397,17 @@ components: paymentCard: cardType: Visa maskedNumber: '****-****-****-4567' + PaymentInstrumentPatchWithSalesforcePayments: + value: + amount: 700 + paymentMethodId: Salesforce Payments + paymentReferenceRequest: + paymentMethodType: card + zoneId: Amer-Zone + gateway: stripe + gatewayProperties: + stripe: + setupFutureUsage: on_session examples-PaymentInstrumentPatch: value: adjustedMerchandizeTotalTax: 30 @@ -3155,6 +3575,183 @@ components: status: new taxation: net taxTotal: 30.8 + PaymentInstrumentPatchWhenSalesforcePaymentsEnabled: + value: + adjustedMerchandizeTotalTax: 30 + adjustedShippingTotalTax: 0.8 + billingAddress: + address1: 104 Presidential Way + city: Woburn + countryCode: US + firstName: Stephanie + fullName: Stephanie Miller + id: 5f695b6f4bb63cb686483d65a0 + lastName: Miller + postalCode: '01801' + stateCode: MA + channelType: storefront + confirmationStatus: not_confirmed + couponItems: + - code: 5ties + couponItemId: d3f7ae47e5897a6b5d2fd541f0 + statusCode: applied + valid: true + createdBy: Customer + creationDate: '2019-10-22T12:17:28.341Z' + currency: USD + customerInfo: + customerId: beQeANXJNsd0xcINsB6cSrobQa + customerName: Stephanie Miller + email: shopper@salesforce-test.com + customerName: Stephanie Miller + exportStatus: not_exported + groupedTaxItems: + - taxRate: 0.05 + taxValue: 30.8 + guest: true + giftCertificateItems: + - amount: 1 + giftCertificateItemId: 540db3ffe58bfb04ab673757d7 + recipientEmail: miller@salesforce-test.com + shipmentId: me + lastModified: '2019-10-22T12:17:28.376Z' + merchandizeTotalTax: 30 + orderNo: '00000410' + orderPriceAdjustments: + - appliedDiscount: + amount: 10 + type: amount + reasonCode: customer service + createdBy: support + creationDate: '2019-10-22T12:17:28.347Z' + custom: true + lastModified: '2019-10-22T12:17:28.349Z' + manual: true + price: -10 + priceAdjustmentId: 63b9eb9b4a92bd3e5c6ee804c2 + promotionId: 5ties + orderToken: 7gJDIFlnho_mXrxfxVB9Neic3J7szzR9glvgU5Ath-I + orderTotal: 586.76 + orderViewCode: YGXrGbZWlr29tIsGnYgR5o_8OxBMXWigevx1WD0X1Hc + paymentInstruments: + - amount: 20 + paymentInstrumentId: ca47e0da3d49b067b630db624a + paymentMethodId: PAYPAL + paymentReference: + paymentReferenceId: PAY-1AB23456CD789012EF34GHIJ + - amount: 566.76 + paymentCard: + cardType: Visa + creditCardExpired: false + paymentInstrumentId: 6b970a04ca8a468a64b9936764 + paymentMethodId: CREDIT_CARD + paymentReference: + paymentReferenceId: 8815749596351791C + - amount: 2 + paymentCard: + expirationYear: 1990 + expirationMonth: 7 + validFromMonth: 8 + validFromYear: 2007 + issueNumber: i117 + maskedNumber: '******4567' + holder: Miller + cardType: Visa + paymentInstrumentId: 9f21f0b51f206fbde2ff5789e5 + paymentMethodId: CREDIT_CARD + paymentReference: + paymentReferenceId: pi_1J4K5L2eZvKYlo2CyZ8K5L6M + gateway: stripe + gatewayProperties: + stripe: + setupFutureUsage: on_session + clientSecret: pi_1J4K5L2eZvKYlo2CyZ8K5L6M_secret_abcdef123456 + paymentStatus: not_paid + productItems: + - adjustedTax: 30 + basePrice: 199.99 + bonusProductLineItem: false + gift: false + itemId: d9516eecc64bd90b0022714d26 + itemText: Green Umbrella - Sustained Edition + optionItems: + - adjustedTax: 0 + basePrice: 0 + bonusProductLineItem: false + gift: false + itemId: 8991e8d7adf0f46ffbc584e175 + itemText: 'Monogramming: Letter "A"' + optionId: textMonogramLetters + optionValueId: A + price: 0 + priceAfterItemDiscount: 0 + priceAfterOrderDiscount: 0 + productId: '701643632930' + productName: Flat Front Pant + shipmentId: me + tax: 0 + taxBasis: 0 + taxRate: 0.05 + priceAfterItemDiscount: 199.99 + priceAfterOrderDiscount: 199.99 + productId: '701643632930' + productName: Green Umbrella - Sustained Edition + quantity: 1 + shipmentId: me + tax: 30 + taxBasis: 199.99 + taxRate: 0.05 + productSubTotal: 199.99 + productTotal: 199.99 + shipments: + - adjustedMerchandizeTotalTax: 30 + adjustedShippingTotalTax: 0.8 + gift: false + merchandizeTotalTax: 199.99 + productSubTotal: 199.99 + productTotal: 199.99 + shipmentId: me + shipmentNo: '00000001' + shipmentTotal: 386.75 + shippingAddress: + address1: 104 Presidential Way + city: Woburn + countryCode: US + firstName: Stephanie + fullName: Stephanie Miller + id: 5f695b6f4bb63cb686483d65a0 + lastName: Miller + postalCode: '01801' + stateCode: MA + shippingMethod: + description: Order within the next 3 hours to get it tomorrow morning + id: EXPRESS + name: Express + price: 15.99 + shippingPromotions: + - calloutMsg: Free shipping amount has been reduced! + promotionId: freeshipping_level1 + promotionName: Free shipping Level 1 + shippingStatus: not_shipped + shippingTotal: 15.99 + shippingTotalTax: 0.8 + taxTotal: 30.8 + shippingItems: + - adjustedTax: 0.8 + basePrice: 15.99 + itemId: 768abee75aa8015239a9696c7e + itemText: Shipping + priceAfterItemDiscount: 15.99 + shipmentId: me + tax: 0.8 + taxBasis: 15.99 + taxRate: 0.05 + shippingStatus: not_shipped + shippingTotal: 15.99 + shippingTotalTax: 0.8 + status: new + taxation: net + taxTotal: 30.8 PaymentMethodsGet: value: applicablePaymentMethods: diff --git a/apis/shopper-payments-oas-1.4.0/exchange.json b/apis/shopper-payments-oas-1.4.0/exchange.json new file mode 100644 index 00000000..45182a6e --- /dev/null +++ b/apis/shopper-payments-oas-1.4.0/exchange.json @@ -0,0 +1,12 @@ +{ + "main": "shopper-payments-oas-v1-public.yaml", + "name": "Shopper Payments OAS", + "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", + "assetId": "shopper-payments-oas", + "version": "1.4.0", + "classifier": "oas", + "tags": [], + "descriptorVersion": "1.0.0", + "organizationId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", + "apiVersion": "v1" +} \ No newline at end of file diff --git a/apis/shopper-payments-oas-1.4.0/shopper-payments-oas-v1-public.yaml b/apis/shopper-payments-oas-1.4.0/shopper-payments-oas-v1-public.yaml new file mode 100644 index 00000000..7c1bfabc --- /dev/null +++ b/apis/shopper-payments-oas-1.4.0/shopper-payments-oas-v1-public.yaml @@ -0,0 +1,430 @@ +openapi: 3.0.3 +info: + x-api-type: Shopper + x-api-family: Checkout + title: Shopper Payments + version: 1.4.0 + description: |- + [Download API specification](https://developer.salesforce.com/static/commercecloud/commerce-api/shopper-payments/shopper-payments-oas-v1-public.yaml) + + # API Overview + + Use the Shopper Payments API to: + + - Retrieve payment configuration information for storefronts when Salesforce Payments is enabled. + + The API returns the available payment methods, merchant account details, and payment gateway configurations for a specific payment zone site assignment. + + The response includes: + + - Zone ID: The unique identifier for the Payments zone. + - Payment Method Set Accounts: List of configured payment processor accounts with API keys, vendor information (Stripe, Adyen, PayPal, etc.), and live/test mode indicators. + - Payment Methods: List of available payment methods with their associated accounts, payment method types, and supported payment modes. + + ## Authentication & Authorization + + The client requesting payment configuration must have access to the `/payment-configuration` resource. The Shopper Payments API requires a shopper access token from the Shopper Login and API Access Service (SLAS). + + For details on how to request a shopper access token from SLAS, see the guest user flows for [public clients](https://developer.salesforce.com/docs/commerce/commerce-api/guide/slas-public-client.html#guest-user) and [private clients](https://developer.salesforce.com/docs/commerce/commerce-api/guide/slas-private-client.html#guest-user) in the SLAS guides. + + You must include `sfcc.shopper-baskets-orders`, `sfcc.shopper-baskets-orders.rw`, or `sfcc.shopper-standard` in the client ID used to generate the SLAS token. For a full list of permissions, see the [Authorization Scopes Catalog.](https://developer.salesforce.com/docs/commerce/commerce-api/guide/auth-z-scope-catalog.html) + + ## Use Cases + + ### Retrieve Payment Configuration + + Retrieve payment configuration settings for Stripe, PayPal, and Adyen based on the payment methods enabled in the merchant's payment zone site. This includes API keys, vendor details, and live/test mode status. Specify a zone via `zoneId` or use `currency` and `countryCode` for automatic resolution. +servers: + - url: https://{shortCode}.api.commercecloud.salesforce.com/checkout/shopper-payments/v1 + variables: + shortCode: + default: shortCode +tags: + - name: Payment Configuration + description: Operations related to payment configuration +paths: + /organizations/{organizationId}/payment-configuration: + parameters: + - $ref: '#/components/parameters/organizationId' + - $ref: '#/components/parameters/siteId' + - $ref: '#/components/parameters/currency' + - $ref: '#/components/parameters/countryCode' + - $ref: '#/components/parameters/zoneId' + - $ref: '#/components/parameters/amount' + get: + description: |- + Retrieves the payment configuration for the organization. + + **Parameters:** + - `siteId`: Required. The site identifier for context-specific configuration + - `currency`: Required. Three-letter currency code (ISO 4217) for payment method configuration + - `countryCode`: Optional. Two-letter country code (ISO 3166-1 alpha-2) for country-specific payment configuration + - `amount`: Optional. Transaction amount for payment method configuration + - `zoneId`: Optional. Payment zone identifier to retrieve zone-specific configuration + + **Response Behavior:** + - Returns payment configuration data when available + - Returns null values for missing data (e.g., when account not found or payments zone not found) + operationId: getPaymentConfiguration + summary: Get payment configuration + security: + - ShopperToken: + - sfcc.shopper-baskets-orders + - sfcc.shopper-baskets-orders.rw + - sfcc.shopper-standard + responses: + '200': + description: Payment configuration details. + content: + application/json: + schema: + $ref: '#/components/schemas/PaymentConfiguration' + examples: + stripeConfiguration: + $ref: '#/components/examples/PaymentConfigurationGetForStripe' + stripeAndPaypalConfiguration: + $ref: '#/components/examples/PaymentConfigurationGetForStripeAndPaypal' + adyenConfiguration: + $ref: '#/components/examples/PaymentConfigurationGetForAdyen' + noDataFound: + $ref: '#/components/examples/PaymentConfigurationNoDataFound' + '400': + description: |- + Possible reasons: + - the site ID is required and must not be null. + - the specified currency is invalid (must be ISO 4217) or not + supported by the site. + - the provided country code is invalid (must be 2 uppercase + letters matching ISO 3166-1 alpha-2). + - the provided zone ID is invalid (must match pattern + [a-zA-Z0-9\-_]{1,100}). + - the provided amount is invalid (must be non-negative). + content: + application/problem+json: + schema: + $ref: '#/components/schemas/ErrorResponse' + examples: + BadRequest: + $ref: '#/components/examples/BadRequest' + InvalidPaymentConfigurationRequest: + $ref: '#/components/examples/InvalidPaymentConfigurationRequest' + tags: + - Payment Configuration +components: + securitySchemes: + ShopperToken: + type: oauth2 + description: "ShopperToken authentication follows the authorization code grant flow, as defined by the OAuth 2.1 standard. Depending on the type of OAuth client (public or private), this authorization flow has further requirements. \nFor a detailed description of the authorization flow, see the [SLAS overview](https://developer.salesforce.com/docs/commerce/commerce-api/references?meta=shopper-login:Summary).\nA shopper token allows you to access the Shopper API endpoints of both OCAPI and the B2C Commerce API. These endpoints can be used to build headless storefronts and other applications.\nThe `ShopperToken` security scheme is a parent of other security schemes, such as `ShopperTokenTsob`. A Shopper API endpoint can require a specific child scheme (`ShopperTokenTsob`, for example) that cannot be accessed with a regular shopper token.\n" + flows: + clientCredentials: + tokenUrl: https://{shortCode}.api.commercecloud.salesforce.com/shopper/auth/v1/organizations/{organizationId}/oauth2/token + scopes: + sfcc.shopper-baskets-orders: Scope granting read-access to shopper basket or orders endpoints + sfcc.shopper-baskets-orders.rw: Scope granting read and write access to shopper basket or orders endpoints + authorizationCode: + authorizationUrl: https://{short-code}.api.commercecloud.salesforce.com/shopper/auth/v1/organizations/{organizationId}/oauth2/authorize + tokenUrl: https://{short-code}.api.commercecloud.salesforce.com/shopper/auth/v1/organizations/{organizationId}/oauth2/token + scopes: + sfcc.shopper-baskets-orders: Scope granting read-access to shopper basket or orders endpoints + sfcc.shopper-baskets-orders.rw: Scope granting read and write access to shopper basket or orders endpoints + schemas: + OrganizationId: + description: An identifier for the organization the request is being made by + example: f_ecom_zzxy_prd + type: string + minLength: 1 + maxLength: 32 + SiteId: + minLength: 1 + maxLength: 32 + description: The identifier of the site that a request is being made in the context of. Attributes might have site specific values, and some objects may only be assigned to specific sites + example: RefArch + type: string + CurrencyCode: + description: A three letter uppercase currency code conforming to the [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) standard, or the string `N/A` indicating that a currency is not applicable. + pattern: ^([A-Z][A-Z][A-Z]|N/A)$ + example: USD + type: string + CountryCode: + pattern: ^[A-Z][A-Z]$ + description: A two letter uppercase country code conforming to the [ISO 3166-1](https://www.iso.org/iso-3166-country-codes.html) alpha-2 standard. + example: US + type: string + ZoneId: + type: string + example: Amer-Zone + description: The unique identifier for a Payments zone. + minLength: 1 + maxLength: 100 + nullable: true + Amount: + type: number + format: double + description: The transaction amount. + minimum: 0 + example: 100 + nullable: true + PaymentConfiguration: + type: object + properties: + zoneId: + type: string + example: Amer-Zone + description: The unique identifier for a Payments zone. + pattern: ^[a-zA-Z0-9\-_]{1,100}$ + minLength: 1 + maxLength: 100 + nullable: true + paymentMethodSetAccounts: + type: array + description: List of payment method set accounts + items: + type: object + properties: + accountId: + type: string + description: Account identifier + example: acct_1RegszI5I22eU0I3 + minLength: 1 + maxLength: 100 + config: + type: object + description: Account configuration + properties: + key: + type: string + description: API key for the payment processor + example: pk_test_JsbBx7imKb7n7Xtlb5MH5BNO00ttiURmPV + maxLength: 200 + bnCode: + type: string + description: Account BN code (optional, null if not a PayPal account) + example: Example_PPCP + maxLength: 100 + country: + type: string + description: The country associated with this payment account configuration + example: US + maxLength: 256 + paymentMethods: + type: object + nullable: true + description: Available payment methods from gateway (optional, null if not an Adyen account) + additionalProperties: true + additionalProperties: true + live: + type: boolean + description: Whether the account is in live mode + example: false + vendor: + type: string + description: Payment vendor name + example: Stripe + required: + - accountId + - live + - vendor + paymentMethods: + type: array + description: Configured payment methods + items: + type: object + properties: + accountId: + type: string + description: Associated account identifier + example: acct_1RegszI5I22eU0I3 + minLength: 1 + paymentMethodType: + type: string + description: Type of payment method + example: card + paymentModes: + type: array + description: Supported payment modes + items: + type: string + example: Multistep + example: + - Multistep + required: + - accountId + - paymentMethodType + - paymentModes + required: + - paymentMethodSetAccounts + - paymentMethods + ErrorResponse: + type: object + additionalProperties: true + properties: + title: + description: "A short, human-readable summary of the problem\ntype. It will not change from occurrence to occurrence of the \nproblem, except for purposes of localization\n" + type: string + maxLength: 256 + example: You do not have enough credit + type: + description: | + A URI reference [RFC3986] that identifies the + problem type. This specification encourages that, when + dereferenced, it provide human-readable documentation for the + problem type (e.g., using HTML [W3C.REC-html5-20141028]). When + this member is not present, its value is assumed to be + "about:blank". It accepts relative URIs; this means + that they must be resolved relative to the document's base URI, as + per [RFC3986], Section 5. + type: string + maxLength: 2048 + example: NotEnoughMoney + detail: + description: A human-readable explanation specific to this occurrence of the problem. + type: string + example: Your current balance is 30, but that costs 50 + instance: + description: | + A URI reference that identifies the specific + occurrence of the problem. It may or may not yield further + information if dereferenced. It accepts relative URIs; this means + that they must be resolved relative to the document's base URI, as + per [RFC3986], Section 5. + type: string + maxLength: 2048 + example: /account/12345/msgs/abc + required: + - title + - type + - detail + parameters: + organizationId: + description: An identifier for the organization the request is being made by + name: organizationId + in: path + required: true + example: f_ecom_zzxy_prd + schema: + $ref: '#/components/schemas/OrganizationId' + siteId: + description: The identifier of the site that a request is being made in the context of. Attributes might have site specific values, and some objects may only be assigned to specific sites. + name: siteId + in: query + required: true + examples: + SiteId: + value: RefArch + schema: + $ref: '#/components/schemas/SiteId' + currency: + description: A three letter uppercase currency code conforming to the [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) standard, or the string `N/A` indicating that a currency is not applicable. + name: currency + in: query + required: true + examples: + CurrencyCode: + value: USD + schema: + $ref: '#/components/schemas/CurrencyCode' + countryCode: + name: countryCode + in: query + description: The country code (ISO 3166-1 alpha-2) for country-specific payment configuration filtering + required: false + schema: + $ref: '#/components/schemas/CountryCode' + zoneId: + description: The zone identifier for the payment configuration. Optional, if specified will return zone specific payment configuration instead of resolving based on the currency and country. + name: zoneId + in: query + required: false + examples: + ZoneId: + value: Amer-Zone + schema: + $ref: '#/components/schemas/ZoneId' + amount: + name: amount + in: query + description: The transaction amount. Optional. Some gateways, such as Adyen, allow for payment methods to be qualified or disqualified based on the amount of the transaction. + required: false + schema: + $ref: '#/components/schemas/Amount' + examples: + PaymentConfigurationGetForStripe: + value: + zoneId: Amer-Zone + paymentMethodSetAccounts: + - accountId: acct_1RegszI5I22eU0I3 + config: + key: pk_test_JsbBx7imKb7n7Xtlb5MH5BNO00ttiURmPV + live: false + vendor: Stripe + paymentMethods: + - accountId: acct_1RegszI5I22eU0I3 + paymentMethodType: card + paymentModes: + - Multistep + PaymentConfigurationGetForStripeAndPaypal: + value: + zoneId: Amer-Zone + paymentMethodSetAccounts: + - accountId: acct_1RegszI5I22eU0I3 + config: + key: pk_test_JsbBx7imKb7n7Xtlb5MH5BNO00ttiURmPV + live: false + vendor: Stripe + - accountId: XK92PMVFNRBDG + config: + bnCode: SalesforceCommerceCloud_PPCP + key: AYzMrnD7y4Zc5m5QJZTQ4zPKbP8TMn0r7aStK_3hM9gnaykL-VwK5tGQj4g1y93V6UNvC5j_FZSSa6xpR + live: false + vendor: Paypal + paymentMethods: + - accountId: acct_1RegszI5I22eU0I3 + paymentMethodType: card + paymentModes: + - Multistep + - accountId: XK92PMVFNRBDG + paymentMethodType: paypal + paymentModes: + - Multistep + PaymentConfigurationGetForAdyen: + value: + zoneId: Amer-Zone + paymentMethodSetAccounts: + - accountId: TestAccount941ECOM + config: + country: US + key: test_JE2ML2CMKZHJRL3QWUW4YCE32A3SL3BH + paymentMethods: + paymentMethods: + - brands: + - amex + - cup + - diners + - discover + - mc + - visa + name: Cards + type: scheme + live: false + vendor: Adyen + paymentMethods: + - accountId: TestAccount941ECOM + paymentMethodType: card + paymentModes: + - Multistep + PaymentConfigurationNoDataFound: + value: + zoneId: null + paymentMethodSetAccounts: [] + paymentMethods: [] + BadRequest: + value: + type: https://api.commercecloud.salesforce.com/documentation/error/v1/errors/bad-request + title: Bad Request + detail: Decoding of the property with path '$.failedExample.[1].intProperty' failed because the expected type is 'Integer|Decimal' but the actual type was 'String'. + InvalidPaymentConfigurationRequest: + value: + type: https://api.commercecloud.salesforce.com/documentation/error/v1/errors/invalid-payment-configuration-request + title: Bad Request + detail: The payment configuration request field 'countryCode' is invalid. + invalidField: countryCode diff --git a/apis/shopper-products-oas-1.0.39/exchange.json b/apis/shopper-products-oas-1.3.0/exchange.json similarity index 93% rename from apis/shopper-products-oas-1.0.39/exchange.json rename to apis/shopper-products-oas-1.3.0/exchange.json index 159d88cc..aeb990d1 100644 --- a/apis/shopper-products-oas-1.0.39/exchange.json +++ b/apis/shopper-products-oas-1.3.0/exchange.json @@ -3,7 +3,7 @@ "name": "Shopper Products OAS", "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", "assetId": "shopper-products-oas", - "version": "1.0.39", + "version": "1.3.0", "classifier": "oas", "tags": [], "descriptorVersion": "1.0.0", diff --git a/apis/shopper-products-oas-1.0.39/shopper-products-oas-v1-public.yaml b/apis/shopper-products-oas-1.3.0/shopper-products-oas-v1-public.yaml similarity index 93% rename from apis/shopper-products-oas-1.0.39/shopper-products-oas-v1-public.yaml rename to apis/shopper-products-oas-1.3.0/shopper-products-oas-v1-public.yaml index 7a057d99..5160806e 100644 --- a/apis/shopper-products-oas-1.0.39/shopper-products-oas-v1-public.yaml +++ b/apis/shopper-products-oas-1.3.0/shopper-products-oas-v1-public.yaml @@ -3,7 +3,7 @@ info: x-api-type: Shopper x-api-family: Product title: Shopper Products - version: 1.0.39 + version: 1.3.0 description: |- [Download API specification](https://developer.salesforce.com/static/commercecloud/commerce-api/shopper-products/shopper-products-oas-v1-public.yaml) @@ -17,6 +17,8 @@ info: The client requesting the product information must have access to the Products resource. The Shopper Products API requires a shopper access token from the Shopper Login and API Access Service (SLAS). + You must include the relevant scopes in the client ID used to generate the SLAS token. For a full list of required permissions, see the [Authorization Scopes Catalog.](https://developer.salesforce.com/docs/commerce/commerce-api/guide/auth-z-scope-catalog.html) + For details on how to request a shopper access token from SLAS, see the guest user flows for [public clients](https://developer.salesforce.com/docs/commerce/commerce-api/guide/slas-public-client.html#guest-user) and [private clients](https://developer.salesforce.com/docs/commerce/commerce-api/guide/slas-private-client.html#guest-user) in the SLAS guides. ## Use Cases @@ -66,10 +68,6 @@ info: For details working with hooks, see [Extensibility with Hooks.](https://developer.salesforce.com/docs/commerce/commerce-api/guide/extensibility_via_hooks.html) - ### Test Description Changes - - uoweefhewihpfhweipfiphwefhipwehfiewpifhewifiphehipeipwhfhipewfhiihpefipew - ## Resources ### Product @@ -81,24 +79,6 @@ info: Categories and subcategories are the structure by which products are organized and grouped in a catalog and on a storefront. Categories can have relationships to other categories. Further, each category can provide context that is inherited by subcategories. For example, a category can have an assigned attribute. A product assigned to that category or any subcategory inherits the categories’s attribute value. Once the product is removed from the category, the attribute value is no longer inherited by the product. You can also use category linking for site hierarchical navigation. For example, inside the Clothing category you may have Men’s, and inside the Men’s category you may have Pants. Categories are not tags. - - ## Endpoints - - ### GET /products - - Returns product details for up to 24 products in one API request. You can use this API for use cases that require populating or hydrating multiple products at a time, such as populating the Product Listing Pages. - - The response data includes availability, promotions, images, and prices, along with the basic product information for the products requested. - - ### GET /products/{id} - - Returns product details about a single product. Use this API for use cases that require populating or hydrating one product at a time, such as the Product Detail Pages. - - The response data includes availability, promotions, options, images, prices, variations, bundled_products, set_products, recommendations, and the basic product information for the product requested. - - ### GET /categories - - Returns category details including the parent child relationships for one or more categories. The limit on depth for the parent-child relationship is 2. servers: - url: https://{shortCode}.api.commercecloud.salesforce.com/product/shopper-products/v1 variables: @@ -109,12 +89,13 @@ paths: parameters: - $ref: '#/components/parameters/organizationId' get: - description: Allows access to multiple product details with a single request. Only products that are online and assigned to a site catalog are returned. The maximum number of product IDs that you can request is 24. In addition to product details, the availability, product options, images, price, promotions, and variations for the valid products are included, as applicable. + description: Allows access to multiple product details with a single request. Only products that are online and assigned to a site catalog are returned. The maximum number of product IDs that you can request is 24. In addition to product details, the availability, images, price, bundled_products, set_products, recommendations, product options, variations, shipping_methods, and promotions for the products are included, as applicable. operationId: getProducts summary: Returns product details for multiple products. security: - ShopperToken: - sfcc.shopper-products + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/ids' - $ref: '#/components/parameters/inventoryIds' @@ -150,12 +131,13 @@ paths: - $ref: '#/components/parameters/organizationId' - $ref: '#/components/parameters/id' get: - description: Allows access to product details for a single product ID. Only products that are online and assigned to a site catalog are returned. In addition to product details, the availability, images, price, bundled_products, set_products, recommedations, product options, variations, and promotions for the products are included, as applicable. + description: Allows access to product details for a single product ID. Only products that are online and assigned to a site catalog are returned. In addition to product details, the availability, images, price, bundled_products, set_products, recommendations, product options, variations, shipping_methods, and promotions for the products are included, as applicable. operationId: getProduct summary: Returns product details for a single product. security: - ShopperToken: - sfcc.shopper-products + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/inventoryIds' - $ref: '#/components/parameters/expand_singleId' @@ -205,6 +187,7 @@ paths: security: - ShopperToken: - sfcc.shopper-categories + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/parameters-ids' - $ref: '#/components/parameters/levels' @@ -242,6 +225,7 @@ paths: security: - ShopperToken: - sfcc.shopper-categories + - sfcc.shopper-standard parameters: - $ref: '#/components/parameters/levels' - $ref: '#/components/parameters/locale' @@ -320,7 +304,7 @@ components: type: string Select: minLength: 1 - description: The property selector declaring which fields are included into the response payload. You can specify a single field name, a comma-separated list of names or work with wildcards. You can also specify array operations and filter expressions. The actual selector value must be enclosed within parentheses. + description: The property selector declaring which fields are included into the response payload. You can specify a single field name, a comma-separated list of names or work with wildcards. You can also specify array operations and filter expressions. The actual selector value must be enclosed within parentheses. For more information, please read the documentation about property selectors [here](https://developer.salesforce.com/docs/commerce/commerce-api/guide/scapi-property-selection.html). example: (name,id,variationAttributes.(**)) type: string pattern: ^[(].*[)]$ @@ -337,9 +321,8 @@ components: DefaultFallback: default: default description: A specialized value indicating the system default values for locales. + pattern: ^default$ example: default - enum: - - default type: string LocaleCode: description: A descriptor for a geographical region by both a language and country code. By combining these two, regional differences in a language can be addressed, such as with the request header parameter `Accept-Language` following [RFC 2616](https://tools.ietf.org/html/rfc2616) & [RFC 1766](https://tools.ietf.org/html/rfc1766). This can also just refer to a language code, also RFC 2616/1766 compliant, as a default if there is no specific match for a country. Finally, can also be used to define default behavior if there is no locale specified. @@ -347,24 +330,11 @@ components: - $ref: '#/components/schemas/LanguageCountry' - $ref: '#/components/schemas/LanguageCode' - $ref: '#/components/schemas/DefaultFallback' - ISOCurrency: - pattern: ^[A-Z][A-Z][A-Z]$ - description: A three letter uppercase currency code conforming to the [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) standard. - example: USD - type: string - NoValue: - default: N/A - description: A specialized value indicating the lack of definition of a currency, for example, if the value of the monetary value of the currency is an undefined number. - example: N/A - enum: - - N/A - type: string CurrencyCode: description: A three letter uppercase currency code conforming to the [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) standard, or the string `N/A` indicating that a currency is not applicable. + pattern: ^([A-Z][A-Z][A-Z]|N/A)$ example: USD - oneOf: - - $ref: '#/components/schemas/ISOCurrency' - - $ref: '#/components/schemas/NoValue' + type: string Product: description: Any product that is sold, shown alone, and does not have variations such as different sizes or colors. A product has no reliance on any other product for inheritance. *A product has a SKU and can have a product option, which has a different SKU*. properties: @@ -581,6 +551,13 @@ components: type: object additionalProperties: type: string + shippingMethods: + description: |- + The array of applicable shipping methods for this product. This array can be empty. + This property is only returned in context of the 'shipping_methods' expansion. + type: array + items: + $ref: '#/components/schemas/ShippingMethod' required: - id type: object @@ -1070,6 +1047,72 @@ components: - productId - variationValues type: object + ShippingPromotion: + description: Document representing a shipping promotion. + properties: + calloutMsg: + description: The localized callout message of the promotion. + example: $30 Fixed Shipping Amount Above 150 + type: string + promotionId: + description: The unique ID of the promotion. + example: $30FixedShippingAmountAbove150 + type: string + promotionName: + description: The localized promotion name. + example: $30 Fixed Shipping Amount Above 150 + type: string + type: object + additionalProperties: + title: Additional Property Support + description: |- + This type supports additional properties passed along with the defined properties of this API. + To indicate that the properties were defined and expected to be handled as additional properties, they are expected to be prefixed with a `c_`. + The type will reject any property that does not fit this pattern, only allowing additional properties beginning with the known prefix. + example: c_trackingId + ShippingMethod: + description: Document representing a shipping method. + additionalProperties: + title: Additional Property Support + description: |- + This type supports additional properties passed along with the defined properties of this API. + To indicate that the properties were defined and expected to be handled as additional properties, they are expected to be prefixed with a `c_`. + The type will reject any property that does not fit this pattern, only allowing additional properties beginning with the known prefix. + example: c_trackingId + properties: + description: + description: The localized description of the shipping method. + example: Order received within 7-10 business days + type: string + externalShippingMethod: + description: The external shipping method. + type: string + id: + maxLength: 256 + description: The shipping method ID. + example: '001' + type: string + name: + description: The localized name of the shipping method. + example: Ground + type: string + price: + format: double + description: |- + The shipping cost total, including shipment level costs, + product level fix, and surcharge costs. It is read only. + example: 15 + type: number + shippingPromotions: + description: |- + The array of active customer shipping promotions for this shipping + method. This array can be empty. + type: array + items: + $ref: '#/components/schemas/ShippingPromotion' + type: object + required: + - id ProductResult: description: Result document containing an array of products. properties: @@ -1139,13 +1182,6 @@ components: type: string description: The ID of the category. example: mens - Limit: - default: 10 - minimum: 1 - format: int32 - description: Maximum records to retrieve per request, not to exceed the maximum defined. A limit must be at least 1 so at least one record is returned (if any match the criteria). - type: integer - example: 10 Total: default: 0 minimum: 0 @@ -1161,9 +1197,10 @@ components: - total properties: limit: - maximum: 200 - allOf: - - $ref: '#/components/schemas/Limit' + format: int32 + description: Maximum records to retrieve per request. The limit with its constraints (minimum, maximum, default) is defined by the request parameter `limit` of the endpoint returning this schema. + type: integer + example: 10 total: $ref: '#/components/schemas/Total' Category: @@ -1266,45 +1303,65 @@ components: name: ids description: The IDs of the requested products (comma-separated, max 24 IDs). in: query + example: apple-ipod-shuffle,apple-ipod-nano + style: form + explode: false required: true schema: type: array items: allOf: - $ref: '#/components/schemas/ProductId' - - maxItems: 100 - example: apple-ipod-shuffle,apple-ipod-nano + maxItems: 100 + example: + - apple-ipod-shuffle + - apple-ipod-nano inventoryIds: description: The optional inventory list IDs, for which the availability should be shown (comma-separated, max 5 inventoryListIDs). name: inventoryIds in: query + example: Site1InventoryList,Site2InventoryList,Site3InventoryList,Site4InventoryList,Site5InventoryList + style: form + explode: false schema: type: array items: allOf: - $ref: '#/components/schemas/InventoryId' - - maxItems: 5 - example: Site1InventoryList,Site2InventoryList,Site3InventoryList,Site4InventoryList,Site5InventoryList + maxItems: 5 + example: + - Site1InventoryList + - Site2InventoryList + - Site3InventoryList + - Site4InventoryList + - Site5InventoryList expand_multiId: name: expand description: "All expand parameters except page_meta_tags are used for the request when no expand parameter is provided. \nThe value \"none\" may be used to turn off all expand options. \nThe page_meta_tags expand value is optional and available starting from B2C Commerce version 25.2." in: query + style: form + explode: false + example: prices,promotions schema: type: array example: - prices - promotions items: + type: string enum: - none - availability + - bundled_products - links - promotions - options - images - prices - variations + - set_products - recommendations + - shipping_methods - page_meta_tags example: promotions allImages: @@ -1332,7 +1389,6 @@ components: schema: $ref: '#/components/schemas/SiteId' select: - description: The property selector declaring which fields are included into the response payload. You can specify a single field name, a comma-separated list of names or work with wildcards. You can also specify array operations and filter expressions. The actual selector value must be enclosed within parentheses. name: select in: query examples: @@ -1371,12 +1427,16 @@ components: name: expand description: "All expand parameters except page_meta_tags are used for the request when no expand parameter is provided. \nThe value \"none\" may be used to turn off all expand options. \nThe page_meta_tags expand value is optional and available starting from B2C Commerce version 25.2." in: query + style: form + explode: false + example: prices,promotions schema: type: array example: - prices - promotions items: + type: string enum: - none - availability @@ -1389,6 +1449,7 @@ components: - variations - set_products - recommendations + - shipping_methods - page_meta_tags example: links parameters-ids: @@ -1396,13 +1457,18 @@ components: description: The comma separated list of category IDs (max 50). in: query required: true + example: electronics-digital-cameras,electronics-televisions + style: form + explode: false schema: type: array items: allOf: - $ref: '#/components/schemas/CategoryId' - - maxItems: 50 - example: electronics-digital-cameras,electronics-televisions + maxItems: 50 + example: + - electronics-digital-cameras + - electronics-televisions levels: name: levels description: Specifies how many levels of nested subcategories you want the server to return. The default value is 1. Valid values are 0, 1, or 2. Only online subcategories are returned. diff --git a/apis/shopper-promotions-oas-1.0.37/exchange.json b/apis/shopper-promotions-oas-1.2.0/exchange.json similarity index 93% rename from apis/shopper-promotions-oas-1.0.37/exchange.json rename to apis/shopper-promotions-oas-1.2.0/exchange.json index ded3324d..4039ed24 100644 --- a/apis/shopper-promotions-oas-1.0.37/exchange.json +++ b/apis/shopper-promotions-oas-1.2.0/exchange.json @@ -3,7 +3,7 @@ "name": "Shopper Promotions OAS", "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", "assetId": "shopper-promotions-oas", - "version": "1.0.37", + "version": "1.2.0", "classifier": "oas", "tags": [], "descriptorVersion": "1.0.0", diff --git a/apis/shopper-promotions-oas-1.0.37/shopper-promotions-oas-v1-public.yaml b/apis/shopper-promotions-oas-1.2.0/shopper-promotions-oas-v1-public.yaml similarity index 96% rename from apis/shopper-promotions-oas-1.0.37/shopper-promotions-oas-v1-public.yaml rename to apis/shopper-promotions-oas-1.2.0/shopper-promotions-oas-v1-public.yaml index 89bece49..44fbe3ae 100644 --- a/apis/shopper-promotions-oas-1.0.37/shopper-promotions-oas-v1-public.yaml +++ b/apis/shopper-promotions-oas-1.2.0/shopper-promotions-oas-v1-public.yaml @@ -1,11 +1,14 @@ openapi: 3.0.3 info: + x-api-type: Shopper + x-api-family: Pricing title: Shopper Promotions - version: 1.0.37 + version: 1.2.0 description: |- - # API Overview [Download API specification](https://developer.salesforce.com/static/commercecloud/commerce-api/shopper-promotions/shopper-promotions-oas-v1-public.yaml) + # API Overview + Retrieve information about active promotions within the context of a shopper and a site. You can use this API to retrieve promotions that you configured in the commerce platform by searching for specific promotion IDs or by searching for promotions associated with a campaign. Caching is provided for the Shopper Promotions API. For details, see [Server-Side Web-Tier Caching.](https://developer.salesforce.com/docs/commerce/commerce-api/guide/server-side-web-tier-caching.html) @@ -75,6 +78,7 @@ paths: security: - ShopperToken: - sfcc.shopper-promotions + - sfcc.shopper-standard /organizations/{organizationId}/promotions/campaigns/{campaignId}: get: summary: Return an array of enabled promotions matching the specified filter criteria. @@ -122,6 +126,7 @@ paths: security: - ShopperToken: - sfcc.shopper-promotions + - sfcc.shopper-standard components: securitySchemes: ShopperToken: @@ -163,9 +168,8 @@ components: DefaultFallback: default: default description: A specialized value indicating the system default values for locales. + pattern: ^default$ example: default - enum: - - default type: string LocaleCode: description: A descriptor for a geographical region by both a language and country code. By combining these two, regional differences in a language can be addressed, such as with the request header parameter `Accept-Language` following [RFC 2616](https://tools.ietf.org/html/rfc2616) & [RFC 1766](https://tools.ietf.org/html/rfc1766). This can also just refer to a language code, also RFC 2616/1766 compliant, as a default if there is no specific match for a country. Finally, can also be used to define default behavior if there is no locale specified. @@ -173,13 +177,6 @@ components: - $ref: '#/components/schemas/LanguageCountry' - $ref: '#/components/schemas/LanguageCode' - $ref: '#/components/schemas/DefaultFallback' - Limit: - default: 10 - minimum: 1 - format: int32 - description: Maximum records to retrieve per request, not to exceed the maximum defined. A limit must be at least 1 so at least one record is returned (if any match the criteria). - type: integer - example: 10 Total: default: 0 minimum: 0 @@ -195,9 +192,10 @@ components: - total properties: limit: - maximum: 200 - allOf: - - $ref: '#/components/schemas/Limit' + format: int32 + description: Maximum records to retrieve per request. The limit with its constraints (minimum, maximum, default) is defined by the request parameter `limit` of the endpoint returning this schema. + type: integer + example: 10 total: $ref: '#/components/schemas/Total' Promotion: @@ -318,9 +316,9 @@ components: - title - type - detail - ISOCurrency: - pattern: ^[A-Z][A-Z][A-Z]$ - description: A three letter uppercase currency code conforming to the [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) standard. + CurrencyCode: + description: A three letter uppercase currency code conforming to the [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) standard, or the string `N/A` indicating that a currency is not applicable. + pattern: ^([A-Z][A-Z][A-Z]|N/A)$ example: USD type: string parameters: @@ -391,7 +389,7 @@ components: description: The currency mnemonic specified for price. This parameter is effective only for product suggestions. required: false schema: - $ref: '#/components/schemas/ISOCurrency' + $ref: '#/components/schemas/CurrencyCode' examples: PromotionsResult: value: diff --git a/apis/shopper-search-oas-1.5.1/exchange.json b/apis/shopper-search-oas-1.8.0/exchange.json similarity index 93% rename from apis/shopper-search-oas-1.5.1/exchange.json rename to apis/shopper-search-oas-1.8.0/exchange.json index 2b81959e..60dccd9a 100644 --- a/apis/shopper-search-oas-1.5.1/exchange.json +++ b/apis/shopper-search-oas-1.8.0/exchange.json @@ -3,7 +3,7 @@ "name": "Shopper Search OAS", "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", "assetId": "shopper-search-oas", - "version": "1.5.1", + "version": "1.8.0", "classifier": "oas", "tags": [], "descriptorVersion": "1.0.0", diff --git a/apis/shopper-search-oas-1.5.1/shopper-search-oas-v1-public.yaml b/apis/shopper-search-oas-1.8.0/shopper-search-oas-v1-public.yaml similarity index 84% rename from apis/shopper-search-oas-1.5.1/shopper-search-oas-v1-public.yaml rename to apis/shopper-search-oas-1.8.0/shopper-search-oas-v1-public.yaml index 0758dc3e..d39941de 100644 --- a/apis/shopper-search-oas-1.5.1/shopper-search-oas-v1-public.yaml +++ b/apis/shopper-search-oas-1.8.0/shopper-search-oas-v1-public.yaml @@ -1,8 +1,10 @@ openapi: 3.0.3 info: + x-api-type: Shopper + x-api-family: Search title: Shopper Search - version: 1.5.1 - description: "[Download API specification](https://developer.salesforce.com/static/commercecloud/commerce-api/shopper-search/shopper-search-oas-v1-public.yaml)\n\n# API Overview\n\nUse the Shopper Search API for search functionality that lets shoppers search for products using keywords and refinement. The search results can be products or suggestions based on the endpoint you choose in the API.\n\nCaching is provided for the Shopper Search API. For details, see [Server-Side Web-Tier Caching.](https://developer.salesforce.com/docs/commerce/commerce-api/guide/server-side-web-tier-caching.html)\n\n## Authentication & Authorization\n\nThe client requesting the API must have access to the product search and search suggestion resources. \n\nThe Shopper Search API requires a JWT acquired via the Shopper Customers endpoint:\n\n```\nhttps://{shortCode}.api.commercecloud.salesforce.com/customer/shopper-customers/v1/organizations/{organizationId}/customers/actions/login\n```\n\n## Use Cases\n\n### Provide Search Suggestions\n\nUse the Shopper Search API to provide search suggestions as a shopper searches.\n\nFor example, a developer who is building a shopping app using the Salesforce Commerce API would like to provide product, brand, and category suggestions. When a shopper types in a search phrase that exceeds a definable minimum length and the GET Search Suggestion endpoint is requested, the platform delivers a set of suggestions with products (name, ID), brands (name), and categories (name, ID). Shoppers can reach their desired search results more quickly using the suggested completion and correction.\n\n### Provide Search Results\n\nUse the Shopper Search API to gather product results for a shoppers search query.\n\nFor example, a developer who is building a shopping app using the Salesforce Commerce API would like to implement a product search functionality. When a shopper enters a search phrase and the GET Product Search endpoint is requested, the platform performs a keyword search and a sorted search result is returned. The sorted search result can be refined according to given values (for example, a price range).\nThe product search result contains a definable number of product search hits. A product search hit describes a matching product with its ID and name. Furthermore, the search hit contains product images, prices, represented products, and variations. In addition to the search hits, the search results also deliver refinement and sorting options.\n\n### Retrieve Promotion Information\n\nNote: This only applies if `promotions` expand is provided in the query parameter.\n\nPromotions provide discounts to shoppers when they meet certain purchase requirements.\n\nPromotion information is described in detail in [Promotion Details](https://developer.salesforce.com/docs/commerce/commerce-api/guide/promotion-details.html), but the following list provides several key points:\n\n- Pricing discounts for basket and shipping promotions are NEVER returned by the 'getProduct' or 'getProducts' endpoint.\n- Promotional pricing is ONLY returned for products that are included with non-conditional promotions.\n- Callout messages are ALWAYS returned by the 'getProduct' and 'getProducts' endpoints.\n\nBy default, 'getProduct' and 'getProducts' return promotion information for a queried product. Promotion information includes both pricing and callout message information. However, the specific pricing and callout information that is fetched is determined by:\n\n- Promotion Type\n- Product Type\n- Product Purchase Requirements\n\nSome promotions can be displayed on a Product Data Page (PDP) or Product Listing page (PLP), while other promotions are displayed in the context of a basket, such as an order level promotion: \"add the product to your basket to view price information\". It is important to understand what is included in the response when designing a PDP or PLP on top of SCAPI to ensure your design aligns with implementable features.\n\nNote: When you search for a variant product, the Product Search API returns the master or main product as the primary search hit. When promotion data (productPromotion) is returned, it does not contain pricing information because the returned product is the main product. To retrieve pricing information, pass the query string `allVariationProperties=true` with the `promotions` expand parameter, which returns pricing data for variant products if the promotion is unconditional. The `allVariationProperties` flag specifies the variation properties to be included in the result.\n\n### Filter Products by Promotion Role\n\nYou can filter products by their role in a promotion using the `pmid` (promotion ID) and `pmpt` (promotion product type) refinement parameters together. This allows you to find specific types of products within a promotion:\n\n- **`pmid`**: Specifies the promotion ID to filter by\n- **`pmpt`**: Specifies the type of products to return within that promotion:\n - `all`: Returns all products related to the promotion (default behavior)\n - `qualifying`: Returns only products that qualify for the promotion but don't receive the discount/bonus\n - `discounted`: Returns only products that receive a discount in the promotion \n - `bonus`: Returns only products that are given as bonuses in the promotion\n\n**Example Usage:**\n```\nGET /organizations/{organizationId}/product-search?refine=pmid=summer-sale&refine=pmpt=discounted\n```\n\nThis would return only the products that receive discounts in the \"summer-sale\" promotion.\n\n**Note:** The `pmpt` parameter only has an effect when used with `pmid`. If `pmpt` is specified without `pmid`, it will be ignored and all products will be returned.\n\n#### Shopper Personalization\nThe SCAPI response can be personalized using the Shopper Context API or hooks. By setting specific values in the Shopper Context API, you can modify the response of the 'getProduct' or 'getProducts' endpoint based on the shopper's context. For instance, you can offer a 5% discount or free shipping to shoppers using mobile devices.\n\n#### JWA Caching\nThe response is cached in JWA, which means promotion data contained in the response is also cached based on the TTL (Time to Live) specified in the Business Manager [Feature Switches](https://help.salesforce.com/s/articleView?id=cc.b2c_feature_switches.htm&type=5) configuration.\nWhen the shopper context value is updated, a check is conducted to see if the updated shopper context affects the retrieval of product-promotion data. If it does, then the response is fetched from the source and cached in the JWA.\n\nFor details, see [Server-Side Web-Tier Caching.](https://developer.salesforce.com/docs/commerce/commerce-api/guide/server-side-web-tier-caching.html)\n\n\n### Use Hooks\n\nFor details working with hooks, see [Extensibility with Hooks.](https://developer.salesforce.com/docs/commerce/commerce-api/guide/extensibility_via_hooks.html)\n\n## Best Practices\n\nThese best practices refer to features that are generally available with B2C Commerce 24.3.\n\nFor better performance, when you call the GET Product Search endpoint, we recommend that you:\n\n- Use the `select` query parameter to filter the response of a specified field or set of fields, and remove default outputs that you don't need. For example, filter the response to return only the relevant product names, ids, variants, and product IDs of the variants.\n- Limit API requests to the GET Product Search endpoint instead of calling both the GET Product Search and GET Products endpoints to show information on a product listing page (PLP). Use these features to provide the additional product information needed to render product tiles:\n - **Allowable value:** `promotions` value in the `expand` query parameter\n - **Query parameters:** `perPricebook`, `allImages`, and `allVariationProperties`\n - **Responses:** `productPromotions`, `imageGroups`, `priceRanges`, `tieredPrices`, `variants`, and `variationGroups`\n- Pass in only the `expand` values and query parameters that you consider necessary to meet your PLP requirements. Requesting large amounts of information can increase the latency, especially if there's a lot of data to be returned (for example, many imageGroups and variants)." + version: 1.8.0 + description: "[Download API specification](https://developer.salesforce.com/static/commercecloud/commerce-api/shopper-search/shopper-search-oas-v1-public.yaml)\n\n# API Overview\n\nUse the Shopper Search API for search functionality that lets shoppers search for products using keywords and refinement. The search results can be products or suggestions based on the endpoint you choose in the API.\n\nCaching is provided for the Shopper Search API. For details, see [Server-Side Web-Tier Caching.](https://developer.salesforce.com/docs/commerce/commerce-api/guide/server-side-web-tier-caching.html)\n\n## Authentication & Authorization\n\nThe client requesting the API must have access to the product search and search suggestion resources. \n\nThe Shopper Search API requires a JWT acquired via the Shopper Customers endpoint:\n\n```\nhttps://{shortCode}.api.commercecloud.salesforce.com/customer/shopper-customers/v1/organizations/{organizationId}/customers/actions/login\n```\n\nYou must include the relevant scopes in the client ID used to generate the SLAS token. For a full list of permissions, see the [Authorization Scopes Catalog.](https://developer.salesforce.com/docs/commerce/commerce-api/guide/auth-z-scope-catalog.html)\n\n## Use Cases\n\n### Provide Search Suggestions\n\nUse the Shopper Search API to provide search suggestions as a shopper searches.\n\nFor example, a developer who is building a shopping app using the Salesforce Commerce API would like to provide product, brand, and category suggestions. When a shopper types in a search phrase that exceeds a definable minimum length and the GET Search Suggestion endpoint is requested, the platform delivers a set of suggestions with products (name, ID), brands (name), and categories (name, ID). Shoppers can reach their desired search results more quickly using the suggested completion and correction.\n\n### Provide Search Results\n\nUse the Shopper Search API to gather product results for a shoppers search query.\n\nFor example, a developer who is building a shopping app using the Salesforce Commerce API would like to implement a product search functionality. When a shopper enters a search phrase and the GET Product Search endpoint is requested, the platform performs a keyword search and a sorted search result is returned. The sorted search result can be refined according to given values (for example, a price range).\nThe product search result contains a definable number of product search hits. A product search hit describes a matching product with its ID and name. Furthermore, the search hit contains product images, prices, represented products, and variations. In addition to the search hits, the search results also deliver refinement and sorting options.\n\n### Retrieve Promotion Information\n\nNote: This only applies if `promotions` expand is provided in the query parameter.\n\nPromotions provide discounts to shoppers when they meet certain purchase requirements.\n\nPromotion information is described in detail in [Promotion Details](https://developer.salesforce.com/docs/commerce/commerce-api/guide/promotion-details.html), but the following list provides several key points:\n\n- Pricing discounts for basket and shipping promotions are NEVER returned by the 'getProduct' or 'getProducts' endpoint.\n- Promotional pricing is ONLY returned for products that are included with non-conditional promotions.\n- Callout messages are ALWAYS returned by the 'getProduct' and 'getProducts' endpoints.\n\nBy default, 'getProduct' and 'getProducts' return promotion information for a queried product. Promotion information includes both pricing and callout message information. However, the specific pricing and callout information that is fetched is determined by:\n\n- Promotion Type\n- Product Type\n- Product Purchase Requirements\n\nSome promotions can be displayed on a Product Data Page (PDP) or Product Listing page (PLP), while other promotions are displayed in the context of a basket, such as an order level promotion: \"add the product to your basket to view price information\". It is important to understand what is included in the response when designing a PDP or PLP on top of SCAPI to ensure your design aligns with implementable features.\n\nNote: When you search for a variant product, the Product Search API returns the master or main product as the primary search hit. When promotion data (productPromotion) is returned, it does not contain pricing information because the returned product is the main product. To retrieve pricing information, pass the query string `allVariationProperties=true` with the `promotions` expand parameter, which returns pricing data for variant products if the promotion is unconditional. The `allVariationProperties` flag specifies the variation properties to be included in the result.\n\n### Filter Products by Promotion Role\n\nYou can filter products by their role in a promotion using the `pmid` (promotion ID) and `pmpt` (promotion product type) refinement parameters together. This allows you to find specific types of products within a promotion:\n\n- `pmid`: Specifies the promotion ID to filter by\n- `pmpt`: Specifies the type of products to return within that promotion:\n - `all`: Returns all products related to the promotion (default behavior)\n - `qualifying`: Returns only products that qualify for the promotion but don't receive the discount/bonus\n - `discounted`: Returns only products that receive a discount in the promotion \n - `bonus`: Returns only products that are given as bonuses in the promotion\n\nExample Usage:\n```\nGET /organizations/{organizationId}/product-search?refine=pmid=summer-sale&refine=pmpt=discounted\n```\n\nThis would return only the products that receive discounts in the \"summer-sale\" promotion.\n\n**Note:** The `pmpt` parameter only has an effect when used with `pmid`. If `pmpt` is specified without `pmid`, it will be ignored and all products will be returned.\n\n### Shopper Personalization\nThe SCAPI response can be personalized using the Shopper Context API or hooks. By setting specific values in the Shopper Context API, you can modify the response of the 'getProduct' or 'getProducts' endpoint based on the shopper's context. For instance, you can offer a 5% discount or free shipping to shoppers using mobile devices.\n\n## JWA Caching\nThe response is cached in JWA, which means promotion data contained in the response is also cached based on the TTL (Time to Live) specified in the Business Manager [Feature Switches](https://help.salesforce.com/s/articleView?id=cc.b2c_feature_switches.htm&type=5) configuration.\nWhen the shopper context value is updated, a check is conducted to see if the updated shopper context affects the retrieval of product-promotion data. If it does, then the response is fetched from the source and cached in the JWA.\n\nFor details, see [Server-Side Web-Tier Caching.](https://developer.salesforce.com/docs/commerce/commerce-api/guide/server-side-web-tier-caching.html)\n\n## Use Hooks\n\nFor details working with hooks, see [Extensibility with Hooks.](https://developer.salesforce.com/docs/commerce/commerce-api/guide/extensibility_via_hooks.html)\n\n## Best Practices\n\nThese best practices refer to features that are generally available with B2C Commerce 24.3.\n\nFor better performance, when you call the GET Product Search endpoint, we recommend that you:\n\n- Use the `select` query parameter to filter the response of a specified field or set of fields, and remove default outputs that you don't need. For example, filter the response to return only the relevant product names, ids, variants, and product IDs of the variants.\n- Limit API requests to the GET Product Search endpoint instead of calling both the GET Product Search and GET Products endpoints to show information on a product listing page (PLP). Use these features to provide the additional product information needed to render product tiles:\n - **Allowable value:** `promotions` value in the `expand` query parameter\n - **Query parameters:** `perPricebook`, `allImages`, and `allVariationProperties`\n - **Responses:** `productPromotions`, `imageGroups`, `priceRanges`, `tieredPrices`, `variants`, and `variationGroups`\n- Pass in only the `expand` values and query parameters that you consider necessary to meet your PLP requirements. Requesting large amounts of information can increase the latency, especially if there's a lot of data to be returned (for example, many imageGroups and variants)." servers: - url: https://{shortCode}.api.commercecloud.salesforce.com/search/shopper-search/v1 variables: @@ -42,7 +44,7 @@ paths: required: false schema: type: integer - format: int64 + format: int32 default: 0 minimum: 0 description: Used to retrieve the results based on a particular resource offset. @@ -60,6 +62,8 @@ paths: $ref: '#/components/examples/ProductSearchWithPromotionFilterExample' ProductSearchResultWithCustomVariationPropertiesExample: $ref: '#/components/examples/ProductSearchResultWithCustomVariationPropertiesExample' + ProductSearchWithProcessedQueryExample: + $ref: '#/components/examples/ProductSearchWithProcessedQueryExample' '400': description: Bad Request. content: @@ -74,6 +78,7 @@ paths: security: - ShopperToken: - sfcc.shopper-product-search + - sfcc.shopper-standard /organizations/{organizationId}/search-suggestions: get: summary: "Provides keyword-based search suggestions for products, categories, and brands. Returns suggested items for each \nbased on the search phrase." @@ -117,6 +122,7 @@ paths: security: - ShopperToken: - sfcc.shopper-product-search + - sfcc.shopper-standard components: securitySchemes: ShopperToken: @@ -151,29 +157,11 @@ components: description: The identifier of the site that a request is being made in the context of. Attributes might have site specific values, and some objects may only be assigned to specific sites example: RefArch type: string - String256: - type: string - maxLength: 256 - description: "The String256 schema is a foundational schema designed for fields or attributes that are stored in a database field with a maximum capacity of 256 bytes. \nThis schema accommodates various character sets, with the following considerations:\n - ASCII Characters: Each ASCII character occupies 1 byte, allowing up to 256 characters.\n - Latin Characters: Many Latin characters require 2 bytes each, allowing up to 128 characters.\n - Asian Characters: Many Asian characters require 3 bytes each, allowing approximately 85 characters." - example: Max Mustermann - ISOCurrency: - pattern: ^[A-Z][A-Z][A-Z]$ - description: A three letter uppercase currency code conforming to the [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) standard. - example: USD - type: string - NoValue: - default: N/A - description: A specialized value indicating the lack of definition of a currency, for example, if the value of the monetary value of the currency is an undefined number. - example: N/A - enum: - - N/A - type: string CurrencyCode: description: A three letter uppercase currency code conforming to the [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) standard, or the string `N/A` indicating that a currency is not applicable. + pattern: ^([A-Z][A-Z][A-Z]|N/A)$ example: USD - oneOf: - - $ref: '#/components/schemas/ISOCurrency' - - $ref: '#/components/schemas/NoValue' + type: string LanguageCountry: pattern: ^[a-z][a-z]-[A-Z][A-Z]$ description: A concatenated version of the standard Language and Country codes, combined with a hyphen '`-`'. @@ -187,9 +175,8 @@ components: DefaultFallback: default: default description: A specialized value indicating the system default values for locales. + pattern: ^default$ example: default - enum: - - default type: string LocaleCode: description: A descriptor for a geographical region by both a language and country code. By combining these two, regional differences in a language can be addressed, such as with the request header parameter `Accept-Language` following [RFC 2616](https://tools.ietf.org/html/rfc2616) & [RFC 1766](https://tools.ietf.org/html/rfc1766). This can also just refer to a language code, also RFC 2616/1766 compliant, as a default if there is no specific match for a country. Finally, can also be used to define default behavior if there is no locale specified. @@ -197,13 +184,6 @@ components: - $ref: '#/components/schemas/LanguageCountry' - $ref: '#/components/schemas/LanguageCode' - $ref: '#/components/schemas/DefaultFallback' - Limit: - default: 10 - minimum: 1 - format: int32 - description: Maximum records to retrieve per request, not to exceed the maximum defined. A limit must be at least 1 so at least one record is returned (if any match the criteria). - type: integer - example: 10 Total: default: 0 minimum: 0 @@ -219,9 +199,10 @@ components: - total properties: limit: - maximum: 200 - allOf: - - $ref: '#/components/schemas/Limit' + format: int32 + description: Maximum records to retrieve per request. The limit with its constraints (minimum, maximum, default) is defined by the request parameter `limit` of the endpoint returning this schema. + type: integer + example: 10 total: $ref: '#/components/schemas/Total' Offset: @@ -243,29 +224,24 @@ components: - limit - offset - total - String4000: - type: string - maxLength: 4000 - description: "The String4000 schema is a foundational schema designed for fields or attributes that are stored in a database field with a maximum capacity of 4000 bytes. \nThis schema accommodates various character sets, with the following considerations:\n - ASCII Characters: Each ASCII character occupies 1 byte, allowing up to 4000 characters.\n - Latin Characters: Many Latin characters require 2 bytes each, allowing up to 2000 characters.\n - Asian Characters: Many Asian characters require 3 bytes each, allowing approximately 1333 characters." - example: This is a detailed description of an Excellent Product. It includes all the features, specifications, and benefits of the product. The Excellent Product is designed to provide exceptional performance and reliability. It is made from high-quality materials and has been rigorously tested to ensure it meets the highest standards. Whether you are using it for personal or professional purposes, the Excellent Product is the perfect choice. With its advanced technology and user-friendly design, it offers unparalleled convenience and efficiency. Order your Excellent Product today and experience the difference it can make. Image: properties: alt: - allOf: - - $ref: '#/components/schemas/String4000' + type: string + maxLength: 4000 example: The White Dress Shirt disBaseLink: - allOf: - - $ref: '#/components/schemas/String4000' + type: string + maxLength: 4000 example: https://edge.disstg.commercecloud.salesforce.com/dw/image/v2/ZZEU_006/on/demandware.static/-/Sites-apparel-catalog/default/dw9368b001/images/large/70284588_100_0.jpg link: minLength: 1 - allOf: - - $ref: '#/components/schemas/String4000' + type: string + maxLength: 4000 example: https://zzeu-006.sandbox.us01.dx.commercecloud.salesforce.com/on/demandware.static/-/Sites-apparel-catalog/default/dw9368b001/images/large/70284588_100_0.jpg title: - allOf: - - $ref: '#/components/schemas/String4000' + type: string + maxLength: 4000 example: The White Dress Shirt required: - link @@ -319,8 +295,8 @@ components: properties: description: description: The localized description of the variation value. - allOf: - - $ref: '#/components/schemas/String4000' + type: string + maxLength: 4000 example: Size 15R image: description: The first product image for the configured viewtype and this variation value. @@ -332,8 +308,8 @@ components: - $ref: '#/components/schemas/Image' name: description: The localized display name of the variation value. - allOf: - - $ref: '#/components/schemas/String4000' + type: string + maxLength: 4000 example: 15R orderable: description: A flag indicating whether at least one variant with this variation attribute value is available to sell. @@ -342,8 +318,8 @@ components: value: minLength: 1 description: The actual variation value. - allOf: - - $ref: '#/components/schemas/String4000' + type: string + maxLength: 4000 example: 15R required: - value @@ -354,13 +330,13 @@ components: id: minLength: 1 description: The ID of the variation attribute. - allOf: - - $ref: '#/components/schemas/String256' + type: string + maxLength: 256 example: size name: description: The localized display name of the variation attribute. - allOf: - - $ref: '#/components/schemas/String4000' + type: string + maxLength: 4000 example: size values: description: The sorted array of variation values. This array can be empty. @@ -389,8 +365,7 @@ components: example: hi-res type: string minLength: 1 - allOf: - - $ref: '#/components/schemas/String256' + maxLength: 256 required: - images - viewType @@ -411,8 +386,8 @@ components: pricebook: description: The active pricebook from which the min and the max prices are calculated. The pricebook is based on the site context of the request as defined in ECOM. example: usd-list-pricebook - allOf: - - $ref: '#/components/schemas/String256' + type: string + maxLength: 256 type: object ProductPromotion: description: Document representing a product promotion. @@ -421,8 +396,8 @@ components: description: The localized call-out message of the promotion. example: Fantastic promotion minLength: 1 - allOf: - - $ref: '#/components/schemas/String4000' + type: string + maxLength: 4000 promotionId: description: The unique ID of the promotion. example: summerSale @@ -451,8 +426,8 @@ components: pricebook: description: The active pricebook for which this price is defined example: usd-list-pricebook - allOf: - - $ref: '#/components/schemas/String256' + type: string + maxLength: 256 quantity: format: double description: Quantity tier for which the price is defined. @@ -486,8 +461,8 @@ components: description: The actual variation attribute ID - value pairs. type: object additionalProperties: - allOf: - - $ref: '#/components/schemas/String4000' + type: string + maxLength: 4000 example: Beige productPromotions: description: |- @@ -531,8 +506,8 @@ components: type: object minLength: 1 additionalProperties: - allOf: - - $ref: '#/components/schemas/String4000' + type: string + maxLength: 4000 example: Beige required: - orderable @@ -547,8 +522,8 @@ components: $ref: '#/components/schemas/CurrencyCode' hitType: description: The type information for the search hit. - allOf: - - $ref: '#/components/schemas/String256' + type: string + maxLength: 256 example: product image: description: The first image of the product hit for the configured viewtype. @@ -579,8 +554,8 @@ components: productName: description: The localized name of the product. example: Modern Dress Shirt - allOf: - - $ref: '#/components/schemas/String4000' + type: string + maxLength: 4000 productType: description: The type information for the product. allOf: @@ -647,20 +622,55 @@ components: id: description: The ID of the Page Meta Tag. example: title - allOf: - - $ref: '#/components/schemas/String256' + type: string + maxLength: 256 value: description: Locale-specific value of the Page Meta Tag, evaluated by resolving the rule set for the given Business Manager ID. example: Buy the Long Sleeve Covered Placket Blouse for USD 61.99. type: string type: object + query: + description: The query string that was searched for. + type: string + maxLength: 50 + example: dresses + AppliedProcessor: + description: The result of a processor execution. + type: object + properties: + processorName: + description: The name of the processor. + example: Attribute Aware Search + type: string + maxLength: 256 + result: + $ref: '#/components/schemas/query' + refinements: + description: The refinements that were applied to the query. + type: object + additionalProperties: + type: string + maxLength: 256 + example: Beige + ProcessedQuery: + description: The result of query processing. + type: object + properties: + query: + $ref: '#/components/schemas/query' + appliedProcessors: + description: The processors that were executed for the search query and their results. + type: array + maxItems: 5 + items: + $ref: '#/components/schemas/AppliedProcessor' ProductSearchRefinementValue: description: Document representing a product search refinement value. properties: description: description: The localized description of the refinement value. - allOf: - - $ref: '#/components/schemas/String4000' + type: string + maxLength: 4000 example: The Beige objects hitCount: format: int32 @@ -671,23 +681,22 @@ components: label: description: The localized label of the refinement value. minLength: 1 - allOf: - - $ref: '#/components/schemas/String4000' + type: string + maxLength: 4000 example: Beige presentationId: description: |- The optional presentation ID associated with the refinement value. The presentation ID can be used, for example, to associate an ID with an HTML widget. - allOf: - - $ref: '#/components/schemas/String256' + type: string + maxLength: 256 example: beige value: description: "The refinement value. In the case of an attribute refinement, this is the bucket, the attribute value, or a \nvalue range. In the case of a category refinement, this is the category ID. In the case of a price \nrefinement, this is the price range. Ranges are enclosed by parentheses and delimited by \"..\"; for example, \n\"(100..999)\" and \"(Aa..Fa)\" are valid ranges." type: string minLength: 1 - allOf: - - $ref: '#/components/schemas/String4000' + maxLength: 4000 example: Beige values: description: The array of hierarchical refinement values. This array can be empty. @@ -709,13 +718,13 @@ components: category refinement, the ID must be "cgid". In the case of a price refinement, the ID must be "price". example: refinementColor minLength: 1 - allOf: - - $ref: '#/components/schemas/String256' + type: string + maxLength: 256 label: description: The localized label of the refinement. example: Color - allOf: - - $ref: '#/components/schemas/String256' + type: string + maxLength: 256 values: description: The sorted array of refinement values. This array can be empty. type: array @@ -826,14 +835,14 @@ components: id: description: The ID of the sorting option. minLength: 1 - allOf: - - $ref: '#/components/schemas/String256' + maxLength: 256 + type: string example: best-matches label: description: The localized label of the sorting option. minLength: 1 - allOf: - - $ref: '#/components/schemas/String4000' + maxLength: 4000 + type: string example: Best Matches required: - id @@ -860,6 +869,10 @@ components: type: string maxLength: 50 example: dresses + processedQuery: + description: The result of query processing. + allOf: + - $ref: '#/components/schemas/ProcessedQuery' refinements: description: The sorted array of search refinements. This array can be empty. type: array @@ -875,13 +888,13 @@ components: description: A map of selected refinement attribute ID or value pairs. The sorting order is the same as in request URL. type: object additionalProperties: - allOf: - - $ref: '#/components/schemas/String4000' + type: string + maxLength: 4000 example: Beige selectedSortingOption: description: The ID of the applied sorting option. - allOf: - - $ref: '#/components/schemas/String4000' + type: string + maxLength: 4000 example: best-matches sortingOptions: description: The sorted array of search sorting options. This array can be empty. @@ -954,14 +967,14 @@ components: name: description: The localized name of the category. minLength: 1 - allOf: - - $ref: '#/components/schemas/String4000' + type: string + maxLength: 4000 example: Dresses parentCategoryName: description: The name of the parent category. minLength: 1 - allOf: - - $ref: '#/components/schemas/String4000' + type: string + maxLength: 4000 example: Clothing required: - id @@ -1007,8 +1020,8 @@ components: productName: description: The localized name of the product. minLength: 1 - allOf: - - $ref: '#/components/schemas/String4000' + type: string + maxLength: 4000 example: Playstation 3 Bundle required: - currency @@ -1143,8 +1156,8 @@ components: required: false schema: example: brand - allOf: - - $ref: '#/components/schemas/String256' + type: string + maxLength: 256 currency: description: A three letter uppercase currency code conforming to the [ISO 4217](https://www.iso.org/iso-4217-currency-codes.html) standard, or the string `N/A` indicating that a currency is not applicable. name: currency @@ -1219,8 +1232,7 @@ components: type: string example: c_batteryLife pattern: ^c_.* - allOf: - - $ref: '#/components/schemas/String256' + maxLength: 256 type: array maxItems: 5 qSearchSuggestion: @@ -1268,8 +1280,7 @@ components: type: string example: c_batteryLife pattern: ^c_.* - allOf: - - $ref: '#/components/schemas/String256' + maxLength: 256 type: array maxItems: 5 includeEinsteinSuggestedPhrases: @@ -1635,6 +1646,57 @@ components: label: Best Matches offset: 0 total: 1 + ProductSearchWithProcessedQueryExample: + summary: Product search result demonstrating processors being executed on the search query. + value: + limit: 1 + hits: + - hitType: master + productId: portable-media-player + productName: Portable Media Player + productType: + master: true + representedProduct: + id: media-player-purple-8gb + variants: + - productId: media-player-silver-8gb + variationValues: + color: Silver + memorySize: 8 GB + c_badges: + - Popular + c_mediaFormat: + - '0020' + - '0050' + c_musicStorage: 2,000 songs + - productId: media-player-purple-8gb + variationValues: + color: Purple + memorySize: 8 GB + c_badges: + - Best Seller + c_mediaFormat: + - '0010' + - '0020' + - '0030' + c_musicStorage: 2,000 songs + processedQuery: + appliedProcessors: + - processorName: Attribute Aware Search + refinements: + price: (..200) + result: media player purple + query: media player purple + query: media player purple under 200 + refinements: [] + searchPhraseSuggestions: + suggestedPhrases: [] + suggestedTerms: [] + sortingOptions: + - id: best-matches + label: Best Matches + offset: 0 + total: 1 MalformedSelectorGetProductsSearchForSelect: value: title: Malformed Selector diff --git a/apis/shopper-seo-oas-1.0.14/exchange.json b/apis/shopper-seo-oas-1.0.17/exchange.json similarity index 93% rename from apis/shopper-seo-oas-1.0.14/exchange.json rename to apis/shopper-seo-oas-1.0.17/exchange.json index 737fcf8f..a53699ca 100644 --- a/apis/shopper-seo-oas-1.0.14/exchange.json +++ b/apis/shopper-seo-oas-1.0.17/exchange.json @@ -3,7 +3,7 @@ "name": "Shopper Seo OAS", "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", "assetId": "shopper-seo-oas", - "version": "1.0.14", + "version": "1.0.17", "classifier": "oas", "tags": [], "descriptorVersion": "1.0.0", diff --git a/apis/shopper-seo-oas-1.0.14/shopper-seo-oas-v1-public.yaml b/apis/shopper-seo-oas-1.0.17/shopper-seo-oas-v1-public.yaml similarity index 96% rename from apis/shopper-seo-oas-1.0.14/shopper-seo-oas-v1-public.yaml rename to apis/shopper-seo-oas-1.0.17/shopper-seo-oas-v1-public.yaml index 29f29fdf..de95fe3f 100644 --- a/apis/shopper-seo-oas-1.0.14/shopper-seo-oas-v1-public.yaml +++ b/apis/shopper-seo-oas-1.0.17/shopper-seo-oas-v1-public.yaml @@ -1,7 +1,9 @@ openapi: 3.0.3 info: + x-api-type: Shopper + x-api-family: Site title: Shopper SEO - version: 1.0.14 + version: 1.0.17 description: |- [Download API specification](https://developer.salesforce.com/static/commercecloud/commerce-api/shopper-seo/shopper-seo-oas-v1-public.yaml) @@ -13,7 +15,9 @@ info: The Shopper SEO API requires a shopper access token from the [Shopper Login and API Access Service (SLAS).](https://developer.salesforce.com/docs/commerce/commerce-api/guide/authorization-for-shopper-apis.html) - You must include the relevant scope(s) in the client ID used to generate the SLAS token. For details, see [Authorization Scopes Catalog.](https://developer.salesforce.com/docs/commerce/commerce-api/guide/auth-z-scope-catalog.html) + You must include the relevant scope(s) in the client ID used to generate the SLAS token. For a full list of required permissions, see the [Authorization Scopes Catalog.](https://developer.salesforce.com/docs/commerce/commerce-api/guide/auth-z-scope-catalog.html) + + For details on how to request a shopper access token from SLAS, see the guest user flows for [public clients](https://developer.salesforce.com/docs/commerce/commerce-api/guide/slas-public-client.html) and [private clients](https://developer.salesforce.com/docs/commerce/commerce-api/guide/slas-private-client.html) in the SLAS guides. ## Use Cases @@ -125,9 +129,8 @@ components: DefaultFallback: default: default description: A specialized value indicating the system default values for locales. + pattern: ^default$ example: default - enum: - - default type: string LocaleCode: description: A descriptor for a geographical region by both a language and country code. By combining these two, regional differences in a language can be addressed, such as with the request header parameter `Accept-Language` following [RFC 2616](https://tools.ietf.org/html/rfc2616) & [RFC 1766](https://tools.ietf.org/html/rfc1766). This can also just refer to a language code, also RFC 2616/1766 compliant, as a default if there is no specific match for a country. Finally, can also be used to define default behavior if there is no locale specified. diff --git a/apis/shopper-stores-oas-1.0.18/exchange.json b/apis/shopper-stores-oas-1.2.0/exchange.json similarity index 93% rename from apis/shopper-stores-oas-1.0.18/exchange.json rename to apis/shopper-stores-oas-1.2.0/exchange.json index 44ff03fb..c1475ac5 100644 --- a/apis/shopper-stores-oas-1.0.18/exchange.json +++ b/apis/shopper-stores-oas-1.2.0/exchange.json @@ -3,7 +3,7 @@ "name": "Shopper Stores OAS", "groupId": "893f605e-10e2-423a-bdb4-f952f56eb6d8", "assetId": "shopper-stores-oas", - "version": "1.0.18", + "version": "1.2.0", "classifier": "oas", "tags": [], "descriptorVersion": "1.0.0", diff --git a/apis/shopper-stores-oas-1.0.18/shopper-stores-oas-v1-public.yaml b/apis/shopper-stores-oas-1.2.0/shopper-stores-oas-v1-public.yaml similarity index 92% rename from apis/shopper-stores-oas-1.0.18/shopper-stores-oas-v1-public.yaml rename to apis/shopper-stores-oas-1.2.0/shopper-stores-oas-v1-public.yaml index f64afdb4..b905c552 100644 --- a/apis/shopper-stores-oas-1.0.18/shopper-stores-oas-v1-public.yaml +++ b/apis/shopper-stores-oas-1.2.0/shopper-stores-oas-v1-public.yaml @@ -3,20 +3,39 @@ info: x-api-type: Shopper x-api-family: Store title: Shopper Stores - version: 1.0.18 + version: 1.2.0 description: |- [Download API specification](https://developer.salesforce.com/static/commercecloud/commerce-api/shopper-stores/shopper-stores-oas-v1-public.yaml) # API Overview - Provides access to stores via search or ID lookup. - + Use this API to access stores via search or ID lookup. ## Authentication & Authorization The Shopper Stores API requires a shopper access token from the [Shopper Login and API Access Service (SLAS).](https://developer.salesforce.com/docs/commerce/commerce-api/guide/authorization-for-shopper-apis.html) - You must include the relevant scope(s) in the client ID used to generate the SLAS token. For details, see [Authorization Scopes Catalog.](https://developer.salesforce.com/docs/commerce/commerce-api/guide/auth-z-scope-catalog.html) + You must include `sfcc.shopper-stores` and other relevant scope(s) in the client ID used to generate the SLAS token. For a full list of permissions, see [Authorization Scopes Catalog.](https://developer.salesforce.com/docs/commerce/commerce-api/guide/auth-z-scope-catalog.html) + + For details on how to request a shopper access token from SLAS, see the guest user flows for [public clients](https://developer.salesforce.com/docs/commerce/commerce-api/guide/slas-public-client.html) and [private clients](https://developer.salesforce.com/docs/commerce/commerce-api/guide/slas-private-client.html) in the SLAS guides. + + ## Use Cases + + ### Store Retrieval + + - Specific Lookup: Retrieve detailed information for one or more stores using unique IDs. + - Localization: Fetch store data tailored to specific languages and regional formats using locale. + + ### Location-Based Search + + - Proximity Search: Find stores within a specific radius (miles or kilometers) of a shopper. + - Coordinate Search: Locate stores using precise latitude and longitude pairs. + - Postal Code Search: Identify stores near a specific zip or postal code using automated geolocation mapping. + + ### Search Optimization + + - Threshold Filtering: Limit results to a maximum distance from the shopper's location. + - Pagination: Manage large result sets efficiently using limit and offset parameters. servers: - url: https://{shortCode}.api.commercecloud.salesforce.com/store/shopper-stores/v1 variables: @@ -54,6 +73,7 @@ paths: security: - ShopperToken: - sfcc.shopper-stores + - sfcc.shopper-standard /organizations/{organizationId}/store-search: get: summary: Retrieve a list of stores for the given site that are within a configured distance of a geolocation. @@ -90,7 +110,7 @@ paths: required: false schema: type: integer - format: int64 + format: int32 default: 0 minimum: 0 description: Used to retrieve the results based on a particular resource offset. @@ -116,6 +136,7 @@ paths: security: - ShopperToken: - sfcc.shopper-stores + - sfcc.shopper-standard components: securitySchemes: ShopperToken: @@ -157,9 +178,8 @@ components: DefaultFallback: default: default description: A specialized value indicating the system default values for locales. + pattern: ^default$ example: default - enum: - - default type: string LocaleCode: description: A descriptor for a geographical region by both a language and country code. By combining these two, regional differences in a language can be addressed, such as with the request header parameter `Accept-Language` following [RFC 2616](https://tools.ietf.org/html/rfc2616) & [RFC 1766](https://tools.ietf.org/html/rfc1766). This can also just refer to a language code, also RFC 2616/1766 compliant, as a default if there is no specific match for a country. Finally, can also be used to define default behavior if there is no locale specified. @@ -167,13 +187,6 @@ components: - $ref: '#/components/schemas/LanguageCountry' - $ref: '#/components/schemas/LanguageCode' - $ref: '#/components/schemas/DefaultFallback' - Limit: - default: 10 - minimum: 1 - format: int32 - description: Maximum records to retrieve per request, not to exceed the maximum defined. A limit must be at least 1 so at least one record is returned (if any match the criteria). - type: integer - example: 10 Total: default: 0 minimum: 0 @@ -189,9 +202,10 @@ components: - total properties: limit: - maximum: 200 - allOf: - - $ref: '#/components/schemas/Limit' + format: int32 + description: Maximum records to retrieve per request. The limit with its constraints (minimum, maximum, default) is defined by the request parameter `limit` of the endpoint returning this schema. + type: integer + example: 10 total: $ref: '#/components/schemas/Total' CountryCode: diff --git a/docs/assets/js/search.json b/docs/assets/js/search.json index cf5eadef..05e96515 100644 --- a/docs/assets/js/search.json +++ b/docs/assets/js/search.json @@ -1 +1 @@ -{"kinds":{"1":"Module","2":"Namespace","32":"Variable","64":"Function","128":"Class","256":"Interface","512":"Constructor","1024":"Property","2048":"Method","65536":"Type literal","2097152":"Object literal","4194304":"Type alias","16777216":"Reference"},"rows":[{"id":0,"kind":1,"name":"helpers","url":"modules/helpers.html","classes":"tsd-kind-module"},{"id":1,"kind":256,"name":"BaseUriParameters","url":"interfaces/helpers.baseuriparameters-1.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"helpers"},{"id":2,"kind":1024,"name":"shortCode","url":"interfaces/helpers.baseuriparameters-1.html#shortcode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"helpers.BaseUriParameters"},{"id":3,"kind":256,"name":"PathParameters","url":"interfaces/helpers.pathparameters-1.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"helpers"},{"id":4,"kind":256,"name":"QueryParameters","url":"interfaces/helpers.queryparameters-1.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"helpers"},{"id":5,"kind":4194304,"name":"Prettify","url":"modules/helpers.html#prettify","classes":"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter tsd-is-not-exported","parent":"helpers"},{"id":6,"kind":4194304,"name":"CompositeParameters","url":"modules/helpers.html#compositeparameters-1","classes":"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter","parent":"helpers"},{"id":7,"kind":4194304,"name":"RequireParametersUnlessAllAreOptional","url":"modules/helpers.html#requireparametersunlessallareoptional-1","classes":"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter","parent":"helpers"},{"id":8,"kind":4194304,"name":"LocaleCode","url":"modules/helpers.html#localecode-1","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"helpers"},{"id":9,"kind":65536,"name":"__type","url":"modules/helpers.html#localecode-1.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"helpers.LocaleCode"},{"id":10,"kind":4194304,"name":"UrlParameters","url":"modules/helpers.html#urlparameters-1","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"helpers"},{"id":11,"kind":4194304,"name":"CustomQueryParameters","url":"modules/helpers.html#customqueryparameters-1","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"helpers"},{"id":12,"kind":65536,"name":"__type","url":"modules/helpers.html#customqueryparameters-1.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"helpers.CustomQueryParameters"},{"id":13,"kind":4194304,"name":"CustomRequestBody","url":"modules/helpers.html#customrequestbody-1","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"helpers"},{"id":14,"kind":65536,"name":"__type","url":"modules/helpers.html#customrequestbody-1.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"helpers.CustomRequestBody"},{"id":15,"kind":1,"name":"clientConfig","url":"modules/clientconfig.html","classes":"tsd-kind-module"},{"id":16,"kind":256,"name":"ClientConfigInit","url":"interfaces/clientconfig.clientconfiginit.html","classes":"tsd-kind-interface tsd-parent-kind-module tsd-has-type-parameter","parent":"clientConfig"},{"id":17,"kind":1024,"name":"baseUri","url":"interfaces/clientconfig.clientconfiginit.html#baseuri","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"clientConfig.ClientConfigInit"},{"id":18,"kind":1024,"name":"proxy","url":"interfaces/clientconfig.clientconfiginit.html#proxy","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"clientConfig.ClientConfigInit"},{"id":19,"kind":1024,"name":"headers","url":"interfaces/clientconfig.clientconfiginit.html#headers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"clientConfig.ClientConfigInit"},{"id":20,"kind":1024,"name":"parameters","url":"interfaces/clientconfig.clientconfiginit.html#parameters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"clientConfig.ClientConfigInit"},{"id":21,"kind":1024,"name":"fetchOptions","url":"interfaces/clientconfig.clientconfiginit.html#fetchoptions","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"clientConfig.ClientConfigInit"},{"id":22,"kind":1024,"name":"transformRequest","url":"interfaces/clientconfig.clientconfiginit.html#transformrequest","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"clientConfig.ClientConfigInit"},{"id":23,"kind":1024,"name":"throwOnBadResponse","url":"interfaces/clientconfig.clientconfiginit.html#throwonbadresponse","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"clientConfig.ClientConfigInit"},{"id":24,"kind":128,"name":"ClientConfig","url":"classes/clientconfig.clientconfig-1.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"clientConfig"},{"id":25,"kind":1024,"name":"baseUri","url":"classes/clientconfig.clientconfig-1.html#baseuri","classes":"tsd-kind-property tsd-parent-kind-class","parent":"clientConfig.ClientConfig"},{"id":26,"kind":1024,"name":"proxy","url":"classes/clientconfig.clientconfig-1.html#proxy","classes":"tsd-kind-property tsd-parent-kind-class","parent":"clientConfig.ClientConfig"},{"id":27,"kind":1024,"name":"headers","url":"classes/clientconfig.clientconfig-1.html#headers","classes":"tsd-kind-property tsd-parent-kind-class","parent":"clientConfig.ClientConfig"},{"id":28,"kind":65536,"name":"__type","url":"classes/clientconfig.clientconfig-1.html#headers.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"clientConfig.ClientConfig.headers"},{"id":29,"kind":1024,"name":"parameters","url":"classes/clientconfig.clientconfig-1.html#parameters","classes":"tsd-kind-property tsd-parent-kind-class","parent":"clientConfig.ClientConfig"},{"id":30,"kind":1024,"name":"fetchOptions","url":"classes/clientconfig.clientconfig-1.html#fetchoptions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"clientConfig.ClientConfig"},{"id":31,"kind":1024,"name":"transformRequest","url":"classes/clientconfig.clientconfig-1.html#transformrequest","classes":"tsd-kind-property tsd-parent-kind-class","parent":"clientConfig.ClientConfig"},{"id":32,"kind":1024,"name":"throwOnBadResponse","url":"classes/clientconfig.clientconfig-1.html#throwonbadresponse","classes":"tsd-kind-property tsd-parent-kind-class","parent":"clientConfig.ClientConfig"},{"id":33,"kind":512,"name":"constructor","url":"classes/clientconfig.clientconfig-1.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"clientConfig.ClientConfig"},{"id":34,"kind":2097152,"name":"defaults","url":"classes/clientconfig.clientconfig-1.html#defaults","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-static","parent":"clientConfig.ClientConfig"},{"id":35,"kind":64,"name":"transformRequest","url":"classes/clientconfig.clientconfig-1.html#defaults.transformrequest-1","classes":"tsd-kind-function tsd-parent-kind-object-literal","parent":"clientConfig.ClientConfig.defaults"},{"id":36,"kind":4194304,"name":"BrowserRequestInit","url":"modules/clientconfig.html#browserrequestinit","classes":"tsd-kind-type-alias tsd-parent-kind-module tsd-is-not-exported","parent":"clientConfig"},{"id":37,"kind":4194304,"name":"FetchOptions","url":"modules/clientconfig.html#fetchoptions","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"clientConfig"},{"id":38,"kind":4194304,"name":"FetchFunction","url":"modules/clientconfig.html#fetchfunction","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"clientConfig"},{"id":39,"kind":65536,"name":"__type","url":"modules/clientconfig.html#fetchfunction.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"clientConfig.FetchFunction"},{"id":40,"kind":1,"name":"config","url":"modules/config.html","classes":"tsd-kind-module"},{"id":41,"kind":32,"name":"CUSTOM_API_DEFAULT_BASE_URI","url":"modules/config.html#custom_api_default_base_uri","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"config"},{"id":42,"kind":32,"name":"isBrowser","url":"modules/helpers.html#isbrowser-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"helpers"},{"id":43,"kind":32,"name":"isNode","url":"modules/helpers.html#isnode-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"helpers"},{"id":44,"kind":32,"name":"globalObject","url":"modules/helpers.html#globalobject-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"helpers"},{"id":45,"kind":32,"name":"hasFetchAvailable","url":"modules/helpers.html#hasfetchavailable-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"helpers"},{"id":46,"kind":32,"name":"fetch","url":"modules/helpers.html#fetch-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"helpers"},{"id":47,"kind":1,"name":"shopperLogin","url":"modules/shopperlogin.html","classes":"tsd-kind-module"},{"id":48,"kind":32,"name":"defaultBaseUri","url":"modules/shopperlogin.html#defaultbaseuri-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"shopperLogin"},{"id":49,"kind":1,"name":"templateUrl","url":"modules/templateurl.html","classes":"tsd-kind-module"},{"id":50,"kind":128,"name":"TemplateURL","url":"classes/templateurl.templateurl-1.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"templateUrl"},{"id":51,"kind":512,"name":"constructor","url":"classes/templateurl.templateurl-1.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"templateUrl.TemplateURL"},{"id":52,"kind":2048,"name":"replaceOrigin","url":"classes/templateurl.templateurl-1.html#replaceorigin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"templateUrl.TemplateURL"},{"id":53,"kind":2048,"name":"addQueryParams","url":"classes/templateurl.templateurl-1.html#addqueryparams","classes":"tsd-kind-method tsd-parent-kind-class","parent":"templateUrl.TemplateURL"},{"id":54,"kind":2048,"name":"renderTemplateUri","url":"classes/templateurl.templateurl-1.html#rendertemplateuri","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"templateUrl.TemplateURL"},{"id":55,"kind":1024,"name":"hash","url":"classes/templateurl.templateurl-1.html#hash","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"templateUrl.TemplateURL"},{"id":56,"kind":1024,"name":"host","url":"classes/templateurl.templateurl-1.html#host","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"templateUrl.TemplateURL"},{"id":57,"kind":1024,"name":"hostname","url":"classes/templateurl.templateurl-1.html#hostname","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"templateUrl.TemplateURL"},{"id":58,"kind":1024,"name":"href","url":"classes/templateurl.templateurl-1.html#href","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"templateUrl.TemplateURL"},{"id":59,"kind":2048,"name":"toString","url":"classes/templateurl.templateurl-1.html#tostring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"templateUrl.TemplateURL"},{"id":60,"kind":1024,"name":"origin","url":"classes/templateurl.templateurl-1.html#origin","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"templateUrl.TemplateURL"},{"id":61,"kind":1024,"name":"password","url":"classes/templateurl.templateurl-1.html#password","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"templateUrl.TemplateURL"},{"id":62,"kind":1024,"name":"pathname","url":"classes/templateurl.templateurl-1.html#pathname","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"templateUrl.TemplateURL"},{"id":63,"kind":1024,"name":"port","url":"classes/templateurl.templateurl-1.html#port","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"templateUrl.TemplateURL"},{"id":64,"kind":1024,"name":"protocol","url":"classes/templateurl.templateurl-1.html#protocol","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"templateUrl.TemplateURL"},{"id":65,"kind":1024,"name":"search","url":"classes/templateurl.templateurl-1.html#search","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"templateUrl.TemplateURL"},{"id":66,"kind":1024,"name":"searchParams","url":"classes/templateurl.templateurl-1.html#searchparams","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"templateUrl.TemplateURL"},{"id":67,"kind":1024,"name":"username","url":"classes/templateurl.templateurl-1.html#username","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"templateUrl.TemplateURL"},{"id":68,"kind":2048,"name":"toJSON","url":"classes/templateurl.templateurl-1.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"templateUrl.TemplateURL"},{"id":69,"kind":1024,"name":"URL","url":"classes/templateurl.templateurl-1.html#url","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"templateUrl.TemplateURL"},{"id":70,"kind":2048,"name":"createObjectURL","url":"classes/templateurl.templateurl-1.html#createobjecturl","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"templateUrl.TemplateURL"},{"id":71,"kind":2048,"name":"revokeObjectURL","url":"classes/templateurl.templateurl-1.html#revokeobjecturl","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"templateUrl.TemplateURL"},{"id":72,"kind":1,"name":"version","url":"modules/version.html","classes":"tsd-kind-module"},{"id":73,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/version.html#user_agent_header","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"version"},{"id":74,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/version.html#user_agent_value","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"version"},{"id":75,"kind":4194304,"name":"GrantType","url":"modules/shopperlogin.html#granttype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":76,"kind":4194304,"name":"Oauth2ErrorResponse","url":"modules/shopperlogin.html#oauth2errorresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":77,"kind":4194304,"name":"ResponseType","url":"modules/shopperlogin.html#responsetype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":78,"kind":4194304,"name":"TokenActionRequest","url":"modules/shopperlogin.html#tokenactionrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":79,"kind":4194304,"name":"TokenActionRequestTokenTypeHintEnum","url":"modules/shopperlogin.html#tokenactionrequesttokentypehintenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":80,"kind":4194304,"name":"TokenType","url":"modules/shopperlogin.html#tokentype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":81,"kind":4194304,"name":"TokenResponse","url":"modules/shopperlogin.html#tokenresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":82,"kind":16777216,"name":"GrantType","url":"modules/shopperlogin.html#granttype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":83,"kind":16777216,"name":"Oauth2ErrorResponse","url":"modules/shopperlogin.html#oauth2errorresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":84,"kind":16777216,"name":"ResponseType","url":"modules/shopperlogin.html#responsetype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":85,"kind":16777216,"name":"TokenActionRequest","url":"modules/shopperlogin.html#tokenactionrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":86,"kind":16777216,"name":"TokenActionRequestTokenTypeHintEnum","url":"modules/shopperlogin.html#tokenactionrequesttokentypehintenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":87,"kind":16777216,"name":"TokenResponse","url":"modules/shopperlogin.html#tokenresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":88,"kind":16777216,"name":"TokenType","url":"modules/shopperlogin.html#tokentype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":89,"kind":128,"name":"ShopperLogin","url":"classes/shopperlogin.shopperlogin-3.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"shopperLogin"},{"id":90,"kind":1024,"name":"clientConfig","url":"classes/shopperlogin.shopperlogin-3.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class","parent":"shopperLogin.ShopperLogin"},{"id":91,"kind":1024,"name":"defaultBaseUri","url":"classes/shopperlogin.shopperlogin-3.html#defaultbaseuri","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperLogin.ShopperLogin"},{"id":92,"kind":2097152,"name":"apiPaths","url":"classes/shopperlogin.shopperlogin-3.html#apipaths","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-static","parent":"shopperLogin.ShopperLogin"},{"id":93,"kind":32,"name":"authenticateCustomer","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.authenticatecustomer-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":94,"kind":32,"name":"authorizeCustomer","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.authorizecustomer-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":95,"kind":32,"name":"authorizePasswordlessCustomer","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.authorizepasswordlesscustomer-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":96,"kind":32,"name":"getAccessToken","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.getaccesstoken-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":97,"kind":32,"name":"getJwksUri","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.getjwksuri-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":98,"kind":32,"name":"getPasswordLessAccessToken","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.getpasswordlessaccesstoken-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":99,"kind":32,"name":"getPasswordResetToken","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.getpasswordresettoken-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":100,"kind":32,"name":"getSessionBridgeAccessToken","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.getsessionbridgeaccesstoken-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":101,"kind":32,"name":"getTrustedAgentAccessToken","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.gettrustedagentaccesstoken-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":102,"kind":32,"name":"getTrustedAgentAuthorizationToken","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.gettrustedagentauthorizationtoken-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":103,"kind":32,"name":"getTrustedSystemAccessToken","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.gettrustedsystemaccesstoken-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":104,"kind":32,"name":"getUserInfo","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.getuserinfo-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":105,"kind":32,"name":"getWellknownOpenidConfiguration","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.getwellknownopenidconfiguration-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":106,"kind":32,"name":"introspectToken","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.introspecttoken-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":107,"kind":32,"name":"logoutCustomer","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.logoutcustomer-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":108,"kind":32,"name":"resetPassword","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.resetpassword-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":109,"kind":32,"name":"revokeToken","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.revoketoken-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":110,"kind":512,"name":"constructor","url":"classes/shopperlogin.shopperlogin-3.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"shopperLogin.ShopperLogin"},{"id":111,"kind":1024,"name":"paramKeys","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperLogin.ShopperLogin"},{"id":112,"kind":65536,"name":"__type","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"shopperLogin.ShopperLogin.paramKeys"},{"id":113,"kind":32,"name":"authenticateCustomer","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.authenticatecustomer","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":114,"kind":32,"name":"authenticateCustomerRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.authenticatecustomerrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":115,"kind":32,"name":"authorizeCustomer","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.authorizecustomer","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":116,"kind":32,"name":"authorizeCustomerRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.authorizecustomerrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":117,"kind":32,"name":"authorizePasswordlessCustomer","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.authorizepasswordlesscustomer","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":118,"kind":32,"name":"authorizePasswordlessCustomerRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.authorizepasswordlesscustomerrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":119,"kind":32,"name":"getAccessToken","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.getaccesstoken","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":120,"kind":32,"name":"getAccessTokenRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.getaccesstokenrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":121,"kind":32,"name":"getJwksUri","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.getjwksuri","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":122,"kind":32,"name":"getJwksUriRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.getjwksurirequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":123,"kind":32,"name":"getPasswordLessAccessToken","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.getpasswordlessaccesstoken","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":124,"kind":32,"name":"getPasswordLessAccessTokenRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.getpasswordlessaccesstokenrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":125,"kind":32,"name":"getPasswordResetToken","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.getpasswordresettoken","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":126,"kind":32,"name":"getPasswordResetTokenRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.getpasswordresettokenrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":127,"kind":32,"name":"getSessionBridgeAccessToken","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.getsessionbridgeaccesstoken","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":128,"kind":32,"name":"getSessionBridgeAccessTokenRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.getsessionbridgeaccesstokenrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":129,"kind":32,"name":"getTrustedAgentAccessToken","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.gettrustedagentaccesstoken","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":130,"kind":32,"name":"getTrustedAgentAccessTokenRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.gettrustedagentaccesstokenrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":131,"kind":32,"name":"getTrustedAgentAuthorizationToken","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.gettrustedagentauthorizationtoken","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":132,"kind":32,"name":"getTrustedAgentAuthorizationTokenRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.gettrustedagentauthorizationtokenrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":133,"kind":32,"name":"getTrustedSystemAccessToken","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.gettrustedsystemaccesstoken","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":134,"kind":32,"name":"getTrustedSystemAccessTokenRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.gettrustedsystemaccesstokenrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":135,"kind":32,"name":"getUserInfo","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.getuserinfo","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":136,"kind":32,"name":"getUserInfoRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.getuserinforequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":137,"kind":32,"name":"getWellknownOpenidConfiguration","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.getwellknownopenidconfiguration","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":138,"kind":32,"name":"getWellknownOpenidConfigurationRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.getwellknownopenidconfigurationrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":139,"kind":32,"name":"introspectToken","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.introspecttoken","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":140,"kind":32,"name":"introspectTokenRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.introspecttokenrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":141,"kind":32,"name":"logoutCustomer","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.logoutcustomer","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":142,"kind":32,"name":"logoutCustomerRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.logoutcustomerrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":143,"kind":32,"name":"resetPassword","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.resetpassword","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":144,"kind":32,"name":"resetPasswordRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.resetpasswordrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":145,"kind":32,"name":"revokeToken","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.revoketoken","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":146,"kind":32,"name":"revokeTokenRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.revoketokenrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":147,"kind":2048,"name":"authenticateCustomer","url":"classes/shopperlogin.shopperlogin-3.html#authenticatecustomer-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":148,"kind":2048,"name":"authorizeCustomer","url":"classes/shopperlogin.shopperlogin-3.html#authorizecustomer-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":149,"kind":2048,"name":"authorizePasswordlessCustomer","url":"classes/shopperlogin.shopperlogin-3.html#authorizepasswordlesscustomer-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":150,"kind":2048,"name":"getAccessToken","url":"classes/shopperlogin.shopperlogin-3.html#getaccesstoken-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":151,"kind":2048,"name":"getJwksUri","url":"classes/shopperlogin.shopperlogin-3.html#getjwksuri-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":152,"kind":2048,"name":"getPasswordLessAccessToken","url":"classes/shopperlogin.shopperlogin-3.html#getpasswordlessaccesstoken-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":153,"kind":2048,"name":"getPasswordResetToken","url":"classes/shopperlogin.shopperlogin-3.html#getpasswordresettoken-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":154,"kind":2048,"name":"getSessionBridgeAccessToken","url":"classes/shopperlogin.shopperlogin-3.html#getsessionbridgeaccesstoken-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":155,"kind":2048,"name":"getTrustedAgentAccessToken","url":"classes/shopperlogin.shopperlogin-3.html#gettrustedagentaccesstoken-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":156,"kind":2048,"name":"getTrustedAgentAuthorizationToken","url":"classes/shopperlogin.shopperlogin-3.html#gettrustedagentauthorizationtoken-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":157,"kind":2048,"name":"getTrustedSystemAccessToken","url":"classes/shopperlogin.shopperlogin-3.html#gettrustedsystemaccesstoken-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":158,"kind":2048,"name":"getUserInfo","url":"classes/shopperlogin.shopperlogin-3.html#getuserinfo-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":159,"kind":2048,"name":"getWellknownOpenidConfiguration","url":"classes/shopperlogin.shopperlogin-3.html#getwellknownopenidconfiguration-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":160,"kind":2048,"name":"introspectToken","url":"classes/shopperlogin.shopperlogin-3.html#introspecttoken-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":161,"kind":2048,"name":"logoutCustomer","url":"classes/shopperlogin.shopperlogin-3.html#logoutcustomer-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":162,"kind":2048,"name":"resetPassword","url":"classes/shopperlogin.shopperlogin-3.html#resetpassword-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":163,"kind":2048,"name":"revokeToken","url":"classes/shopperlogin.shopperlogin-3.html#revoketoken-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":164,"kind":4194304,"name":"AuthorizeCustomerResponseTypeEnum","url":"modules/shopperlogin.html#authorizecustomerresponsetypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":165,"kind":4194304,"name":"AuthorizeCustomerScopeEnum","url":"modules/shopperlogin.html#authorizecustomerscopeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":166,"kind":4194304,"name":"AuthorizePasswordlessCustomerModeEnum","url":"modules/shopperlogin.html#authorizepasswordlesscustomermodeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":167,"kind":4194304,"name":"GetPasswordLessAccessTokenGrantTypeEnum","url":"modules/shopperlogin.html#getpasswordlessaccesstokengranttypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":168,"kind":4194304,"name":"GetPasswordResetTokenModeEnum","url":"modules/shopperlogin.html#getpasswordresettokenmodeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":169,"kind":4194304,"name":"GetSessionBridgeAccessTokenGrantTypeEnum","url":"modules/shopperlogin.html#getsessionbridgeaccesstokengranttypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":170,"kind":4194304,"name":"GetTrustedAgentAccessTokenGrantTypeEnum","url":"modules/shopperlogin.html#gettrustedagentaccesstokengranttypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":171,"kind":4194304,"name":"GetTrustedAgentAuthorizationTokenResponseTypeEnum","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenresponsetypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":172,"kind":4194304,"name":"GetTrustedSystemAccessTokenGrantTypeEnum","url":"modules/shopperlogin.html#gettrustedsystemaccesstokengranttypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":173,"kind":4194304,"name":"GetTrustedSystemAccessTokenHintEnum","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenhintenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":174,"kind":4194304,"name":"GetTrustedSystemAccessTokenIdpOriginEnum","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenidporiginenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":175,"kind":4194304,"name":"IntrospectTokenTokenTypeHintEnum","url":"modules/shopperlogin.html#introspecttokentokentypehintenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":176,"kind":4194304,"name":"LogoutCustomerHintEnum","url":"modules/shopperlogin.html#logoutcustomerhintenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":177,"kind":4194304,"name":"RevokeTokenTokenTypeHintEnum","url":"modules/shopperlogin.html#revoketokentokentypehintenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":178,"kind":4194304,"name":"authenticateCustomerQueryParameters","url":"modules/shopperlogin.html#authenticatecustomerqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":179,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#authenticatecustomerqueryparameters-2.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.authenticateCustomerQueryParameters"},{"id":180,"kind":4194304,"name":"authenticateCustomerPathParameters","url":"modules/shopperlogin.html#authenticatecustomerpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":181,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#authenticatecustomerpathparameters-2.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.authenticateCustomerPathParameters"},{"id":182,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#authenticatecustomerpathparameters-2.__type-1.organizationid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authenticateCustomerPathParameters.__type"},{"id":183,"kind":4194304,"name":"authenticateCustomerBodyType","url":"modules/shopperlogin.html#authenticatecustomerbodytype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":184,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#authenticatecustomerbodytype-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.authenticateCustomerBodyType"},{"id":185,"kind":32,"name":"client_id","url":"modules/shopperlogin.html#authenticatecustomerbodytype-2.__type.client_id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authenticateCustomerBodyType.__type"},{"id":186,"kind":32,"name":"response_type","url":"modules/shopperlogin.html#authenticatecustomerbodytype-2.__type.response_type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authenticateCustomerBodyType.__type"},{"id":187,"kind":32,"name":"redirect_uri","url":"modules/shopperlogin.html#authenticatecustomerbodytype-2.__type.redirect_uri","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authenticateCustomerBodyType.__type"},{"id":188,"kind":32,"name":"state","url":"modules/shopperlogin.html#authenticatecustomerbodytype-2.__type.state","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authenticateCustomerBodyType.__type"},{"id":189,"kind":32,"name":"scope","url":"modules/shopperlogin.html#authenticatecustomerbodytype-2.__type.scope","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authenticateCustomerBodyType.__type"},{"id":190,"kind":32,"name":"usid","url":"modules/shopperlogin.html#authenticatecustomerbodytype-2.__type.usid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authenticateCustomerBodyType.__type"},{"id":191,"kind":32,"name":"channel_id","url":"modules/shopperlogin.html#authenticatecustomerbodytype-2.__type.channel_id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authenticateCustomerBodyType.__type"},{"id":192,"kind":32,"name":"code_challenge","url":"modules/shopperlogin.html#authenticatecustomerbodytype-2.__type.code_challenge","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authenticateCustomerBodyType.__type"},{"id":193,"kind":4194304,"name":"authorizeCustomerQueryParameters","url":"modules/shopperlogin.html#authorizecustomerqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":194,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#authorizecustomerqueryparameters-2.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.authorizeCustomerQueryParameters"},{"id":195,"kind":32,"name":"redirect_uri","url":"modules/shopperlogin.html#authorizecustomerqueryparameters-2.__type-4.redirect_uri-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizeCustomerQueryParameters.__type"},{"id":196,"kind":32,"name":"response_type","url":"modules/shopperlogin.html#authorizecustomerqueryparameters-2.__type-4.response_type-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizeCustomerQueryParameters.__type"},{"id":197,"kind":32,"name":"client_id","url":"modules/shopperlogin.html#authorizecustomerqueryparameters-2.__type-4.client_id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizeCustomerQueryParameters.__type"},{"id":198,"kind":32,"name":"scope","url":"modules/shopperlogin.html#authorizecustomerqueryparameters-2.__type-4.scope-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizeCustomerQueryParameters.__type"},{"id":199,"kind":32,"name":"state","url":"modules/shopperlogin.html#authorizecustomerqueryparameters-2.__type-4.state-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizeCustomerQueryParameters.__type"},{"id":200,"kind":32,"name":"usid","url":"modules/shopperlogin.html#authorizecustomerqueryparameters-2.__type-4.usid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizeCustomerQueryParameters.__type"},{"id":201,"kind":32,"name":"hint","url":"modules/shopperlogin.html#authorizecustomerqueryparameters-2.__type-4.hint","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizeCustomerQueryParameters.__type"},{"id":202,"kind":32,"name":"channel_id","url":"modules/shopperlogin.html#authorizecustomerqueryparameters-2.__type-4.channel_id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizeCustomerQueryParameters.__type"},{"id":203,"kind":32,"name":"code_challenge","url":"modules/shopperlogin.html#authorizecustomerqueryparameters-2.__type-4.code_challenge-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizeCustomerQueryParameters.__type"},{"id":204,"kind":32,"name":"ui_locales","url":"modules/shopperlogin.html#authorizecustomerqueryparameters-2.__type-4.ui_locales","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizeCustomerQueryParameters.__type"},{"id":205,"kind":4194304,"name":"authorizeCustomerPathParameters","url":"modules/shopperlogin.html#authorizecustomerpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":206,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#authorizecustomerpathparameters-2.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.authorizeCustomerPathParameters"},{"id":207,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#authorizecustomerpathparameters-2.__type-3.organizationid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizeCustomerPathParameters.__type"},{"id":208,"kind":4194304,"name":"authorizePasswordlessCustomerQueryParameters","url":"modules/shopperlogin.html#authorizepasswordlesscustomerqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":209,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#authorizepasswordlesscustomerqueryparameters-2.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.authorizePasswordlessCustomerQueryParameters"},{"id":210,"kind":4194304,"name":"authorizePasswordlessCustomerPathParameters","url":"modules/shopperlogin.html#authorizepasswordlesscustomerpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":211,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#authorizepasswordlesscustomerpathparameters-2.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.authorizePasswordlessCustomerPathParameters"},{"id":212,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#authorizepasswordlesscustomerpathparameters-2.__type-6.organizationid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizePasswordlessCustomerPathParameters.__type"},{"id":213,"kind":4194304,"name":"authorizePasswordlessCustomerBodyType","url":"modules/shopperlogin.html#authorizepasswordlesscustomerbodytype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":214,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#authorizepasswordlesscustomerbodytype-2.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.authorizePasswordlessCustomerBodyType"},{"id":215,"kind":32,"name":"user_id","url":"modules/shopperlogin.html#authorizepasswordlesscustomerbodytype-2.__type-5.user_id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizePasswordlessCustomerBodyType.__type"},{"id":216,"kind":32,"name":"mode","url":"modules/shopperlogin.html#authorizepasswordlesscustomerbodytype-2.__type-5.mode","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizePasswordlessCustomerBodyType.__type"},{"id":217,"kind":32,"name":"locale","url":"modules/shopperlogin.html#authorizepasswordlesscustomerbodytype-2.__type-5.locale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizePasswordlessCustomerBodyType.__type"},{"id":218,"kind":32,"name":"usid","url":"modules/shopperlogin.html#authorizepasswordlesscustomerbodytype-2.__type-5.usid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizePasswordlessCustomerBodyType.__type"},{"id":219,"kind":32,"name":"channel_id","url":"modules/shopperlogin.html#authorizepasswordlesscustomerbodytype-2.__type-5.channel_id-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizePasswordlessCustomerBodyType.__type"},{"id":220,"kind":32,"name":"callback_uri","url":"modules/shopperlogin.html#authorizepasswordlesscustomerbodytype-2.__type-5.callback_uri","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizePasswordlessCustomerBodyType.__type"},{"id":221,"kind":4194304,"name":"getAccessTokenQueryParameters","url":"modules/shopperlogin.html#getaccesstokenqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":222,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getaccesstokenqueryparameters-2.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getAccessTokenQueryParameters"},{"id":223,"kind":4194304,"name":"getAccessTokenPathParameters","url":"modules/shopperlogin.html#getaccesstokenpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":224,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getaccesstokenpathparameters-2.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getAccessTokenPathParameters"},{"id":225,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#getaccesstokenpathparameters-2.__type-9.organizationid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getAccessTokenPathParameters.__type"},{"id":226,"kind":4194304,"name":"getAccessTokenBodyType","url":"modules/shopperlogin.html#getaccesstokenbodytype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":227,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getaccesstokenbodytype-2.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getAccessTokenBodyType"},{"id":228,"kind":32,"name":"refresh_token","url":"modules/shopperlogin.html#getaccesstokenbodytype-2.__type-8.refresh_token","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getAccessTokenBodyType.__type"},{"id":229,"kind":32,"name":"code","url":"modules/shopperlogin.html#getaccesstokenbodytype-2.__type-8.code","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getAccessTokenBodyType.__type"},{"id":230,"kind":32,"name":"usid","url":"modules/shopperlogin.html#getaccesstokenbodytype-2.__type-8.usid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getAccessTokenBodyType.__type"},{"id":231,"kind":32,"name":"grant_type","url":"modules/shopperlogin.html#getaccesstokenbodytype-2.__type-8.grant_type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getAccessTokenBodyType.__type"},{"id":232,"kind":32,"name":"redirect_uri","url":"modules/shopperlogin.html#getaccesstokenbodytype-2.__type-8.redirect_uri-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getAccessTokenBodyType.__type"},{"id":233,"kind":32,"name":"code_verifier","url":"modules/shopperlogin.html#getaccesstokenbodytype-2.__type-8.code_verifier","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getAccessTokenBodyType.__type"},{"id":234,"kind":32,"name":"client_id","url":"modules/shopperlogin.html#getaccesstokenbodytype-2.__type-8.client_id-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getAccessTokenBodyType.__type"},{"id":235,"kind":32,"name":"channel_id","url":"modules/shopperlogin.html#getaccesstokenbodytype-2.__type-8.channel_id-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getAccessTokenBodyType.__type"},{"id":236,"kind":32,"name":"dnt","url":"modules/shopperlogin.html#getaccesstokenbodytype-2.__type-8.dnt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getAccessTokenBodyType.__type"},{"id":237,"kind":4194304,"name":"getJwksUriQueryParameters","url":"modules/shopperlogin.html#getjwksuriqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":238,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getjwksuriqueryparameters-2.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getJwksUriQueryParameters"},{"id":239,"kind":4194304,"name":"getJwksUriPathParameters","url":"modules/shopperlogin.html#getjwksuripathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":240,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getjwksuripathparameters-2.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getJwksUriPathParameters"},{"id":241,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#getjwksuripathparameters-2.__type-11.organizationid-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getJwksUriPathParameters.__type"},{"id":242,"kind":4194304,"name":"getPasswordLessAccessTokenQueryParameters","url":"modules/shopperlogin.html#getpasswordlessaccesstokenqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":243,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getpasswordlessaccesstokenqueryparameters-2.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getPasswordLessAccessTokenQueryParameters"},{"id":244,"kind":4194304,"name":"getPasswordLessAccessTokenPathParameters","url":"modules/shopperlogin.html#getpasswordlessaccesstokenpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":245,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getpasswordlessaccesstokenpathparameters-2.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getPasswordLessAccessTokenPathParameters"},{"id":246,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#getpasswordlessaccesstokenpathparameters-2.__type-14.organizationid-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getPasswordLessAccessTokenPathParameters.__type"},{"id":247,"kind":4194304,"name":"getPasswordLessAccessTokenBodyType","url":"modules/shopperlogin.html#getpasswordlessaccesstokenbodytype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":248,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getpasswordlessaccesstokenbodytype-2.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getPasswordLessAccessTokenBodyType"},{"id":249,"kind":32,"name":"grant_type","url":"modules/shopperlogin.html#getpasswordlessaccesstokenbodytype-2.__type-13.grant_type-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getPasswordLessAccessTokenBodyType.__type"},{"id":250,"kind":32,"name":"hint","url":"modules/shopperlogin.html#getpasswordlessaccesstokenbodytype-2.__type-13.hint-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getPasswordLessAccessTokenBodyType.__type"},{"id":251,"kind":32,"name":"pwdless_login_token","url":"modules/shopperlogin.html#getpasswordlessaccesstokenbodytype-2.__type-13.pwdless_login_token","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getPasswordLessAccessTokenBodyType.__type"},{"id":252,"kind":32,"name":"client_id","url":"modules/shopperlogin.html#getpasswordlessaccesstokenbodytype-2.__type-13.client_id-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getPasswordLessAccessTokenBodyType.__type"},{"id":253,"kind":32,"name":"code_verifier","url":"modules/shopperlogin.html#getpasswordlessaccesstokenbodytype-2.__type-13.code_verifier-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getPasswordLessAccessTokenBodyType.__type"},{"id":254,"kind":32,"name":"login_id","url":"modules/shopperlogin.html#getpasswordlessaccesstokenbodytype-2.__type-13.login_id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getPasswordLessAccessTokenBodyType.__type"},{"id":255,"kind":4194304,"name":"getPasswordResetTokenQueryParameters","url":"modules/shopperlogin.html#getpasswordresettokenqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":256,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getpasswordresettokenqueryparameters-2.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getPasswordResetTokenQueryParameters"},{"id":257,"kind":4194304,"name":"getPasswordResetTokenPathParameters","url":"modules/shopperlogin.html#getpasswordresettokenpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":258,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getpasswordresettokenpathparameters-2.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getPasswordResetTokenPathParameters"},{"id":259,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#getpasswordresettokenpathparameters-2.__type-17.organizationid-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getPasswordResetTokenPathParameters.__type"},{"id":260,"kind":4194304,"name":"getPasswordResetTokenBodyType","url":"modules/shopperlogin.html#getpasswordresettokenbodytype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":261,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getpasswordresettokenbodytype-2.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getPasswordResetTokenBodyType"},{"id":262,"kind":32,"name":"user_id","url":"modules/shopperlogin.html#getpasswordresettokenbodytype-2.__type-16.user_id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getPasswordResetTokenBodyType.__type"},{"id":263,"kind":32,"name":"mode","url":"modules/shopperlogin.html#getpasswordresettokenbodytype-2.__type-16.mode-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getPasswordResetTokenBodyType.__type"},{"id":264,"kind":32,"name":"channel_id","url":"modules/shopperlogin.html#getpasswordresettokenbodytype-2.__type-16.channel_id-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getPasswordResetTokenBodyType.__type"},{"id":265,"kind":32,"name":"locale","url":"modules/shopperlogin.html#getpasswordresettokenbodytype-2.__type-16.locale-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getPasswordResetTokenBodyType.__type"},{"id":266,"kind":32,"name":"client_id","url":"modules/shopperlogin.html#getpasswordresettokenbodytype-2.__type-16.client_id-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getPasswordResetTokenBodyType.__type"},{"id":267,"kind":32,"name":"code_challenge","url":"modules/shopperlogin.html#getpasswordresettokenbodytype-2.__type-16.code_challenge-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getPasswordResetTokenBodyType.__type"},{"id":268,"kind":32,"name":"callback_uri","url":"modules/shopperlogin.html#getpasswordresettokenbodytype-2.__type-16.callback_uri-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getPasswordResetTokenBodyType.__type"},{"id":269,"kind":32,"name":"idp_name","url":"modules/shopperlogin.html#getpasswordresettokenbodytype-2.__type-16.idp_name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getPasswordResetTokenBodyType.__type"},{"id":270,"kind":32,"name":"hint","url":"modules/shopperlogin.html#getpasswordresettokenbodytype-2.__type-16.hint-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getPasswordResetTokenBodyType.__type"},{"id":271,"kind":4194304,"name":"getSessionBridgeAccessTokenQueryParameters","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":272,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenqueryparameters-2.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getSessionBridgeAccessTokenQueryParameters"},{"id":273,"kind":4194304,"name":"getSessionBridgeAccessTokenPathParameters","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":274,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenpathparameters-2.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getSessionBridgeAccessTokenPathParameters"},{"id":275,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenpathparameters-2.__type-20.organizationid-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getSessionBridgeAccessTokenPathParameters.__type"},{"id":276,"kind":4194304,"name":"getSessionBridgeAccessTokenBodyType","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenbodytype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":277,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenbodytype-2.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getSessionBridgeAccessTokenBodyType"},{"id":278,"kind":32,"name":"code","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenbodytype-2.__type-19.code-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getSessionBridgeAccessTokenBodyType.__type"},{"id":279,"kind":32,"name":"client_id","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenbodytype-2.__type-19.client_id-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getSessionBridgeAccessTokenBodyType.__type"},{"id":280,"kind":32,"name":"channel_id","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenbodytype-2.__type-19.channel_id-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getSessionBridgeAccessTokenBodyType.__type"},{"id":281,"kind":32,"name":"code_verifier","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenbodytype-2.__type-19.code_verifier-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getSessionBridgeAccessTokenBodyType.__type"},{"id":282,"kind":32,"name":"dwsid","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenbodytype-2.__type-19.dwsid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getSessionBridgeAccessTokenBodyType.__type"},{"id":283,"kind":32,"name":"grant_type","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenbodytype-2.__type-19.grant_type-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getSessionBridgeAccessTokenBodyType.__type"},{"id":284,"kind":32,"name":"login_id","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenbodytype-2.__type-19.login_id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getSessionBridgeAccessTokenBodyType.__type"},{"id":285,"kind":32,"name":"dwsgst","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenbodytype-2.__type-19.dwsgst","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getSessionBridgeAccessTokenBodyType.__type"},{"id":286,"kind":32,"name":"dwsrst","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenbodytype-2.__type-19.dwsrst","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getSessionBridgeAccessTokenBodyType.__type"},{"id":287,"kind":32,"name":"usid","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenbodytype-2.__type-19.usid-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getSessionBridgeAccessTokenBodyType.__type"},{"id":288,"kind":32,"name":"dnt","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenbodytype-2.__type-19.dnt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getSessionBridgeAccessTokenBodyType.__type"},{"id":289,"kind":4194304,"name":"getTrustedAgentAccessTokenQueryParameters","url":"modules/shopperlogin.html#gettrustedagentaccesstokenqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":290,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#gettrustedagentaccesstokenqueryparameters-2.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getTrustedAgentAccessTokenQueryParameters"},{"id":291,"kind":4194304,"name":"getTrustedAgentAccessTokenPathParameters","url":"modules/shopperlogin.html#gettrustedagentaccesstokenpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":292,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#gettrustedagentaccesstokenpathparameters-2.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getTrustedAgentAccessTokenPathParameters"},{"id":293,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#gettrustedagentaccesstokenpathparameters-2.__type-23.organizationid-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAccessTokenPathParameters.__type"},{"id":294,"kind":4194304,"name":"getTrustedAgentAccessTokenBodyType","url":"modules/shopperlogin.html#gettrustedagentaccesstokenbodytype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":295,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#gettrustedagentaccesstokenbodytype-2.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getTrustedAgentAccessTokenBodyType"},{"id":296,"kind":32,"name":"agent_id","url":"modules/shopperlogin.html#gettrustedagentaccesstokenbodytype-2.__type-22.agent_id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAccessTokenBodyType.__type"},{"id":297,"kind":32,"name":"client_id","url":"modules/shopperlogin.html#gettrustedagentaccesstokenbodytype-2.__type-22.client_id-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAccessTokenBodyType.__type"},{"id":298,"kind":32,"name":"channel_id","url":"modules/shopperlogin.html#gettrustedagentaccesstokenbodytype-2.__type-22.channel_id-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAccessTokenBodyType.__type"},{"id":299,"kind":32,"name":"code_verifier","url":"modules/shopperlogin.html#gettrustedagentaccesstokenbodytype-2.__type-22.code_verifier-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAccessTokenBodyType.__type"},{"id":300,"kind":32,"name":"grant_type","url":"modules/shopperlogin.html#gettrustedagentaccesstokenbodytype-2.__type-22.grant_type-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAccessTokenBodyType.__type"},{"id":301,"kind":32,"name":"login_id","url":"modules/shopperlogin.html#gettrustedagentaccesstokenbodytype-2.__type-22.login_id-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAccessTokenBodyType.__type"},{"id":302,"kind":32,"name":"idp_origin","url":"modules/shopperlogin.html#gettrustedagentaccesstokenbodytype-2.__type-22.idp_origin","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAccessTokenBodyType.__type"},{"id":303,"kind":32,"name":"usid","url":"modules/shopperlogin.html#gettrustedagentaccesstokenbodytype-2.__type-22.usid-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAccessTokenBodyType.__type"},{"id":304,"kind":32,"name":"dnt","url":"modules/shopperlogin.html#gettrustedagentaccesstokenbodytype-2.__type-22.dnt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAccessTokenBodyType.__type"},{"id":305,"kind":32,"name":"state","url":"modules/shopperlogin.html#gettrustedagentaccesstokenbodytype-2.__type-22.state-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAccessTokenBodyType.__type"},{"id":306,"kind":4194304,"name":"getTrustedAgentAuthorizationTokenQueryParameters","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":307,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenqueryparameters-2.__type-26","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getTrustedAgentAuthorizationTokenQueryParameters"},{"id":308,"kind":32,"name":"client_id","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenqueryparameters-2.__type-26.client_id-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAuthorizationTokenQueryParameters.__type"},{"id":309,"kind":32,"name":"channel_id","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenqueryparameters-2.__type-26.channel_id-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAuthorizationTokenQueryParameters.__type"},{"id":310,"kind":32,"name":"code_challenge","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenqueryparameters-2.__type-26.code_challenge-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAuthorizationTokenQueryParameters.__type"},{"id":311,"kind":32,"name":"login_id","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenqueryparameters-2.__type-26.login_id-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAuthorizationTokenQueryParameters.__type"},{"id":312,"kind":32,"name":"idp_origin","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenqueryparameters-2.__type-26.idp_origin-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAuthorizationTokenQueryParameters.__type"},{"id":313,"kind":32,"name":"redirect_uri","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenqueryparameters-2.__type-26.redirect_uri-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAuthorizationTokenQueryParameters.__type"},{"id":314,"kind":32,"name":"response_type","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenqueryparameters-2.__type-26.response_type-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAuthorizationTokenQueryParameters.__type"},{"id":315,"kind":4194304,"name":"getTrustedAgentAuthorizationTokenPathParameters","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":316,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenpathparameters-2.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getTrustedAgentAuthorizationTokenPathParameters"},{"id":317,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenpathparameters-2.__type-25.organizationid-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAuthorizationTokenPathParameters.__type"},{"id":318,"kind":4194304,"name":"getTrustedSystemAccessTokenQueryParameters","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":319,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenqueryparameters-2.__type-29","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getTrustedSystemAccessTokenQueryParameters"},{"id":320,"kind":4194304,"name":"getTrustedSystemAccessTokenPathParameters","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":321,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenpathparameters-2.__type-28","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getTrustedSystemAccessTokenPathParameters"},{"id":322,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenpathparameters-2.__type-28.organizationid-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedSystemAccessTokenPathParameters.__type"},{"id":323,"kind":4194304,"name":"getTrustedSystemAccessTokenBodyType","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenbodytype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":324,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenbodytype-2.__type-27","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getTrustedSystemAccessTokenBodyType"},{"id":325,"kind":32,"name":"usid","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenbodytype-2.__type-27.usid-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedSystemAccessTokenBodyType.__type"},{"id":326,"kind":32,"name":"grant_type","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenbodytype-2.__type-27.grant_type-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedSystemAccessTokenBodyType.__type"},{"id":327,"kind":32,"name":"hint","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenbodytype-2.__type-27.hint-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedSystemAccessTokenBodyType.__type"},{"id":328,"kind":32,"name":"login_id","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenbodytype-2.__type-27.login_id-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedSystemAccessTokenBodyType.__type"},{"id":329,"kind":32,"name":"idp_origin","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenbodytype-2.__type-27.idp_origin-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedSystemAccessTokenBodyType.__type"},{"id":330,"kind":32,"name":"client_id","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenbodytype-2.__type-27.client_id-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedSystemAccessTokenBodyType.__type"},{"id":331,"kind":32,"name":"channel_id","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenbodytype-2.__type-27.channel_id-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedSystemAccessTokenBodyType.__type"},{"id":332,"kind":32,"name":"email_id","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenbodytype-2.__type-27.email_id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedSystemAccessTokenBodyType.__type"},{"id":333,"kind":32,"name":"dnt","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenbodytype-2.__type-27.dnt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedSystemAccessTokenBodyType.__type"},{"id":334,"kind":4194304,"name":"getUserInfoQueryParameters","url":"modules/shopperlogin.html#getuserinfoqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":335,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getuserinfoqueryparameters-2.__type-31","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getUserInfoQueryParameters"},{"id":336,"kind":32,"name":"channel_id","url":"modules/shopperlogin.html#getuserinfoqueryparameters-2.__type-31.channel_id-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getUserInfoQueryParameters.__type"},{"id":337,"kind":4194304,"name":"getUserInfoPathParameters","url":"modules/shopperlogin.html#getuserinfopathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":338,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getuserinfopathparameters-2.__type-30","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getUserInfoPathParameters"},{"id":339,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#getuserinfopathparameters-2.__type-30.organizationid-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getUserInfoPathParameters.__type"},{"id":340,"kind":4194304,"name":"getWellknownOpenidConfigurationQueryParameters","url":"modules/shopperlogin.html#getwellknownopenidconfigurationqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":341,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getwellknownopenidconfigurationqueryparameters-2.__type-33","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getWellknownOpenidConfigurationQueryParameters"},{"id":342,"kind":4194304,"name":"getWellknownOpenidConfigurationPathParameters","url":"modules/shopperlogin.html#getwellknownopenidconfigurationpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":343,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getwellknownopenidconfigurationpathparameters-2.__type-32","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getWellknownOpenidConfigurationPathParameters"},{"id":344,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#getwellknownopenidconfigurationpathparameters-2.__type-32.organizationid-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getWellknownOpenidConfigurationPathParameters.__type"},{"id":345,"kind":4194304,"name":"introspectTokenQueryParameters","url":"modules/shopperlogin.html#introspecttokenqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":346,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#introspecttokenqueryparameters-2.__type-36","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.introspectTokenQueryParameters"},{"id":347,"kind":4194304,"name":"introspectTokenPathParameters","url":"modules/shopperlogin.html#introspecttokenpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":348,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#introspecttokenpathparameters-2.__type-35","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.introspectTokenPathParameters"},{"id":349,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#introspecttokenpathparameters-2.__type-35.organizationid-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.introspectTokenPathParameters.__type"},{"id":350,"kind":4194304,"name":"introspectTokenBodyType","url":"modules/shopperlogin.html#introspecttokenbodytype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":351,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#introspecttokenbodytype-2.__type-34","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.introspectTokenBodyType"},{"id":352,"kind":32,"name":"token","url":"modules/shopperlogin.html#introspecttokenbodytype-2.__type-34.token","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.introspectTokenBodyType.__type"},{"id":353,"kind":32,"name":"token_type_hint","url":"modules/shopperlogin.html#introspecttokenbodytype-2.__type-34.token_type_hint","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.introspectTokenBodyType.__type"},{"id":354,"kind":4194304,"name":"logoutCustomerQueryParameters","url":"modules/shopperlogin.html#logoutcustomerqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":355,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#logoutcustomerqueryparameters-2.__type-38","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.logoutCustomerQueryParameters"},{"id":356,"kind":32,"name":"client_id","url":"modules/shopperlogin.html#logoutcustomerqueryparameters-2.__type-38.client_id-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.logoutCustomerQueryParameters.__type"},{"id":357,"kind":32,"name":"refresh_token","url":"modules/shopperlogin.html#logoutcustomerqueryparameters-2.__type-38.refresh_token-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.logoutCustomerQueryParameters.__type"},{"id":358,"kind":32,"name":"channel_id","url":"modules/shopperlogin.html#logoutcustomerqueryparameters-2.__type-38.channel_id-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.logoutCustomerQueryParameters.__type"},{"id":359,"kind":32,"name":"hint","url":"modules/shopperlogin.html#logoutcustomerqueryparameters-2.__type-38.hint-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.logoutCustomerQueryParameters.__type"},{"id":360,"kind":4194304,"name":"logoutCustomerPathParameters","url":"modules/shopperlogin.html#logoutcustomerpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":361,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#logoutcustomerpathparameters-2.__type-37","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.logoutCustomerPathParameters"},{"id":362,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#logoutcustomerpathparameters-2.__type-37.organizationid-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.logoutCustomerPathParameters.__type"},{"id":363,"kind":4194304,"name":"resetPasswordQueryParameters","url":"modules/shopperlogin.html#resetpasswordqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":364,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#resetpasswordqueryparameters-2.__type-41","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.resetPasswordQueryParameters"},{"id":365,"kind":4194304,"name":"resetPasswordPathParameters","url":"modules/shopperlogin.html#resetpasswordpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":366,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#resetpasswordpathparameters-2.__type-40","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.resetPasswordPathParameters"},{"id":367,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#resetpasswordpathparameters-2.__type-40.organizationid-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.resetPasswordPathParameters.__type"},{"id":368,"kind":4194304,"name":"resetPasswordBodyType","url":"modules/shopperlogin.html#resetpasswordbodytype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":369,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#resetpasswordbodytype-2.__type-39","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.resetPasswordBodyType"},{"id":370,"kind":32,"name":"client_id","url":"modules/shopperlogin.html#resetpasswordbodytype-2.__type-39.client_id-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.resetPasswordBodyType.__type"},{"id":371,"kind":32,"name":"pwd_action_token","url":"modules/shopperlogin.html#resetpasswordbodytype-2.__type-39.pwd_action_token","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.resetPasswordBodyType.__type"},{"id":372,"kind":32,"name":"code_verifier","url":"modules/shopperlogin.html#resetpasswordbodytype-2.__type-39.code_verifier-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.resetPasswordBodyType.__type"},{"id":373,"kind":32,"name":"new_password","url":"modules/shopperlogin.html#resetpasswordbodytype-2.__type-39.new_password","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.resetPasswordBodyType.__type"},{"id":374,"kind":32,"name":"channel_id","url":"modules/shopperlogin.html#resetpasswordbodytype-2.__type-39.channel_id-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.resetPasswordBodyType.__type"},{"id":375,"kind":32,"name":"hint","url":"modules/shopperlogin.html#resetpasswordbodytype-2.__type-39.hint-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.resetPasswordBodyType.__type"},{"id":376,"kind":4194304,"name":"revokeTokenQueryParameters","url":"modules/shopperlogin.html#revoketokenqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":377,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#revoketokenqueryparameters-2.__type-44","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.revokeTokenQueryParameters"},{"id":378,"kind":4194304,"name":"revokeTokenPathParameters","url":"modules/shopperlogin.html#revoketokenpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":379,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#revoketokenpathparameters-2.__type-43","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.revokeTokenPathParameters"},{"id":380,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#revoketokenpathparameters-2.__type-43.organizationid-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.revokeTokenPathParameters.__type"},{"id":381,"kind":4194304,"name":"revokeTokenBodyType","url":"modules/shopperlogin.html#revoketokenbodytype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":382,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#revoketokenbodytype-2.__type-42","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.revokeTokenBodyType"},{"id":383,"kind":32,"name":"token","url":"modules/shopperlogin.html#revoketokenbodytype-2.__type-42.token-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.revokeTokenBodyType.__type"},{"id":384,"kind":32,"name":"token_type_hint","url":"modules/shopperlogin.html#revoketokenbodytype-2.__type-42.token_type_hint-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.revokeTokenBodyType.__type"},{"id":385,"kind":4194304,"name":"ShopperLoginPathParameters","url":"modules/shopperlogin.html#shopperloginpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":386,"kind":4194304,"name":"ShopperLoginQueryParameters","url":"modules/shopperlogin.html#shopperloginqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":387,"kind":4194304,"name":"ShopperLoginParameters","url":"modules/shopperlogin.html#shopperloginparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":388,"kind":16777216,"name":"AuthorizeCustomerResponseTypeEnum","url":"modules/shopperlogin.html#authorizecustomerresponsetypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":389,"kind":16777216,"name":"AuthorizeCustomerScopeEnum","url":"modules/shopperlogin.html#authorizecustomerscopeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":390,"kind":16777216,"name":"AuthorizePasswordlessCustomerModeEnum","url":"modules/shopperlogin.html#authorizepasswordlesscustomermodeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":391,"kind":16777216,"name":"GetPasswordLessAccessTokenGrantTypeEnum","url":"modules/shopperlogin.html#getpasswordlessaccesstokengranttypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":392,"kind":16777216,"name":"GetPasswordResetTokenModeEnum","url":"modules/shopperlogin.html#getpasswordresettokenmodeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":393,"kind":16777216,"name":"GetSessionBridgeAccessTokenGrantTypeEnum","url":"modules/shopperlogin.html#getsessionbridgeaccesstokengranttypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":394,"kind":16777216,"name":"GetTrustedAgentAccessTokenGrantTypeEnum","url":"modules/shopperlogin.html#gettrustedagentaccesstokengranttypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":395,"kind":16777216,"name":"GetTrustedAgentAuthorizationTokenResponseTypeEnum","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenresponsetypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":396,"kind":16777216,"name":"GetTrustedSystemAccessTokenGrantTypeEnum","url":"modules/shopperlogin.html#gettrustedsystemaccesstokengranttypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":397,"kind":16777216,"name":"GetTrustedSystemAccessTokenHintEnum","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenhintenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":398,"kind":16777216,"name":"GetTrustedSystemAccessTokenIdpOriginEnum","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenidporiginenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":399,"kind":16777216,"name":"IntrospectTokenTokenTypeHintEnum","url":"modules/shopperlogin.html#introspecttokentokentypehintenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":400,"kind":16777216,"name":"LogoutCustomerHintEnum","url":"modules/shopperlogin.html#logoutcustomerhintenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":401,"kind":16777216,"name":"RevokeTokenTokenTypeHintEnum","url":"modules/shopperlogin.html#revoketokentokentypehintenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":402,"kind":16777216,"name":"authenticateCustomerQueryParameters","url":"modules/shopperlogin.html#authenticatecustomerqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":403,"kind":16777216,"name":"authenticateCustomerPathParameters","url":"modules/shopperlogin.html#authenticatecustomerpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":404,"kind":16777216,"name":"authenticateCustomerBodyType","url":"modules/shopperlogin.html#authenticatecustomerbodytype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":405,"kind":16777216,"name":"authorizeCustomerQueryParameters","url":"modules/shopperlogin.html#authorizecustomerqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":406,"kind":16777216,"name":"authorizeCustomerPathParameters","url":"modules/shopperlogin.html#authorizecustomerpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":407,"kind":16777216,"name":"authorizePasswordlessCustomerQueryParameters","url":"modules/shopperlogin.html#authorizepasswordlesscustomerqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":408,"kind":16777216,"name":"authorizePasswordlessCustomerPathParameters","url":"modules/shopperlogin.html#authorizepasswordlesscustomerpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":409,"kind":16777216,"name":"authorizePasswordlessCustomerBodyType","url":"modules/shopperlogin.html#authorizepasswordlesscustomerbodytype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":410,"kind":16777216,"name":"getAccessTokenQueryParameters","url":"modules/shopperlogin.html#getaccesstokenqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":411,"kind":16777216,"name":"getAccessTokenPathParameters","url":"modules/shopperlogin.html#getaccesstokenpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":412,"kind":16777216,"name":"getAccessTokenBodyType","url":"modules/shopperlogin.html#getaccesstokenbodytype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":413,"kind":16777216,"name":"getJwksUriQueryParameters","url":"modules/shopperlogin.html#getjwksuriqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":414,"kind":16777216,"name":"getJwksUriPathParameters","url":"modules/shopperlogin.html#getjwksuripathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":415,"kind":16777216,"name":"getPasswordLessAccessTokenQueryParameters","url":"modules/shopperlogin.html#getpasswordlessaccesstokenqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":416,"kind":16777216,"name":"getPasswordLessAccessTokenPathParameters","url":"modules/shopperlogin.html#getpasswordlessaccesstokenpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":417,"kind":16777216,"name":"getPasswordLessAccessTokenBodyType","url":"modules/shopperlogin.html#getpasswordlessaccesstokenbodytype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":418,"kind":16777216,"name":"getPasswordResetTokenQueryParameters","url":"modules/shopperlogin.html#getpasswordresettokenqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":419,"kind":16777216,"name":"getPasswordResetTokenPathParameters","url":"modules/shopperlogin.html#getpasswordresettokenpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":420,"kind":16777216,"name":"getPasswordResetTokenBodyType","url":"modules/shopperlogin.html#getpasswordresettokenbodytype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":421,"kind":16777216,"name":"getSessionBridgeAccessTokenQueryParameters","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":422,"kind":16777216,"name":"getSessionBridgeAccessTokenPathParameters","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":423,"kind":16777216,"name":"getSessionBridgeAccessTokenBodyType","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenbodytype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":424,"kind":16777216,"name":"getTrustedAgentAccessTokenQueryParameters","url":"modules/shopperlogin.html#gettrustedagentaccesstokenqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":425,"kind":16777216,"name":"getTrustedAgentAccessTokenPathParameters","url":"modules/shopperlogin.html#gettrustedagentaccesstokenpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":426,"kind":16777216,"name":"getTrustedAgentAccessTokenBodyType","url":"modules/shopperlogin.html#gettrustedagentaccesstokenbodytype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":427,"kind":16777216,"name":"getTrustedAgentAuthorizationTokenQueryParameters","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":428,"kind":16777216,"name":"getTrustedAgentAuthorizationTokenPathParameters","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":429,"kind":16777216,"name":"getTrustedSystemAccessTokenQueryParameters","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":430,"kind":16777216,"name":"getTrustedSystemAccessTokenPathParameters","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":431,"kind":16777216,"name":"getTrustedSystemAccessTokenBodyType","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenbodytype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":432,"kind":16777216,"name":"getUserInfoQueryParameters","url":"modules/shopperlogin.html#getuserinfoqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":433,"kind":16777216,"name":"getUserInfoPathParameters","url":"modules/shopperlogin.html#getuserinfopathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":434,"kind":16777216,"name":"getWellknownOpenidConfigurationQueryParameters","url":"modules/shopperlogin.html#getwellknownopenidconfigurationqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":435,"kind":16777216,"name":"getWellknownOpenidConfigurationPathParameters","url":"modules/shopperlogin.html#getwellknownopenidconfigurationpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":436,"kind":16777216,"name":"introspectTokenQueryParameters","url":"modules/shopperlogin.html#introspecttokenqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":437,"kind":16777216,"name":"introspectTokenPathParameters","url":"modules/shopperlogin.html#introspecttokenpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":438,"kind":16777216,"name":"introspectTokenBodyType","url":"modules/shopperlogin.html#introspecttokenbodytype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":439,"kind":16777216,"name":"logoutCustomerQueryParameters","url":"modules/shopperlogin.html#logoutcustomerqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":440,"kind":16777216,"name":"logoutCustomerPathParameters","url":"modules/shopperlogin.html#logoutcustomerpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":441,"kind":16777216,"name":"resetPasswordQueryParameters","url":"modules/shopperlogin.html#resetpasswordqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":442,"kind":16777216,"name":"resetPasswordPathParameters","url":"modules/shopperlogin.html#resetpasswordpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":443,"kind":16777216,"name":"resetPasswordBodyType","url":"modules/shopperlogin.html#resetpasswordbodytype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":444,"kind":16777216,"name":"revokeTokenQueryParameters","url":"modules/shopperlogin.html#revoketokenqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":445,"kind":16777216,"name":"revokeTokenPathParameters","url":"modules/shopperlogin.html#revoketokenpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":446,"kind":16777216,"name":"revokeTokenBodyType","url":"modules/shopperlogin.html#revoketokenbodytype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":447,"kind":16777216,"name":"ShopperLoginPathParameters","url":"modules/shopperlogin.html#shopperloginpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":448,"kind":16777216,"name":"ShopperLoginQueryParameters","url":"modules/shopperlogin.html#shopperloginqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":449,"kind":16777216,"name":"ShopperLoginParameters","url":"modules/shopperlogin.html#shopperloginparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":450,"kind":16777216,"name":"ShopperLogin","url":"modules/shopperlogin.html#shopperlogin-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":451,"kind":1,"name":"responseError","url":"modules/responseerror.html","classes":"tsd-kind-module"},{"id":452,"kind":128,"name":"ResponseError","url":"classes/responseerror.responseerror-1.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"responseError"},{"id":453,"kind":512,"name":"constructor","url":"classes/responseerror.responseerror-1.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"responseError.ResponseError"},{"id":454,"kind":1024,"name":"response","url":"classes/responseerror.responseerror-1.html#response","classes":"tsd-kind-property tsd-parent-kind-class","parent":"responseError.ResponseError"},{"id":455,"kind":1024,"name":"name","url":"classes/responseerror.responseerror-1.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"responseError.ResponseError"},{"id":456,"kind":1024,"name":"message","url":"classes/responseerror.responseerror-1.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"responseError.ResponseError"},{"id":457,"kind":1024,"name":"stack","url":"classes/responseerror.responseerror-1.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"responseError.ResponseError"},{"id":458,"kind":1024,"name":"Error","url":"classes/responseerror.responseerror-1.html#error","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"responseError.ResponseError"},{"id":459,"kind":32,"name":"stringToBase64","url":"modules/helpers.html#stringtobase64-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"helpers"},{"id":460,"kind":64,"name":"getCodeAndUsidFromUrl","url":"modules/helpers.html#getcodeandusidfromurl-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":461,"kind":64,"name":"nanoid","url":"modules/helpers.html#nanoid","classes":"tsd-kind-function tsd-parent-kind-module tsd-is-not-exported","parent":"helpers"},{"id":462,"kind":64,"name":"createCodeVerifier","url":"modules/helpers.html#createcodeverifier-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":463,"kind":64,"name":"generateCodeChallenge","url":"modules/helpers.html#generatecodechallenge-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":464,"kind":64,"name":"authorize","url":"modules/helpers.html#authorize-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":465,"kind":64,"name":"authorizeIDP","url":"modules/helpers.html#authorizeidp-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":466,"kind":64,"name":"loginIDPUser","url":"modules/helpers.html#loginidpuser-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":467,"kind":64,"name":"loginGuestUserPrivate","url":"modules/helpers.html#loginguestuserprivate-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":468,"kind":64,"name":"loginGuestUser","url":"modules/helpers.html#loginguestuser-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":469,"kind":64,"name":"loginRegisteredUserB2C","url":"modules/helpers.html#loginregistereduserb2c-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":470,"kind":64,"name":"authorizePasswordless","url":"modules/helpers.html#authorizepasswordless-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":471,"kind":64,"name":"getPasswordLessAccessToken","url":"modules/helpers.html#getpasswordlessaccesstoken-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":472,"kind":64,"name":"refreshAccessToken","url":"modules/helpers.html#refreshaccesstoken-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":473,"kind":64,"name":"logout","url":"modules/helpers.html#logout-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":474,"kind":16777216,"name":"isBrowser","url":"modules/helpers.html#isbrowser","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":475,"kind":16777216,"name":"isNode","url":"modules/helpers.html#isnode","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":476,"kind":16777216,"name":"globalObject","url":"modules/helpers.html#globalobject","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":477,"kind":16777216,"name":"hasFetchAvailable","url":"modules/helpers.html#hasfetchavailable","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":478,"kind":16777216,"name":"fetch","url":"modules/helpers.html#fetch","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":479,"kind":16777216,"name":"authorize","url":"modules/helpers.html#authorize","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":480,"kind":16777216,"name":"authorizeIDP","url":"modules/helpers.html#authorizeidp","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":481,"kind":16777216,"name":"loginIDPUser","url":"modules/helpers.html#loginidpuser","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":482,"kind":16777216,"name":"loginGuestUserPrivate","url":"modules/helpers.html#loginguestuserprivate","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":483,"kind":16777216,"name":"loginGuestUser","url":"modules/helpers.html#loginguestuser","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":484,"kind":16777216,"name":"loginRegisteredUserB2C","url":"modules/helpers.html#loginregistereduserb2c","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":485,"kind":16777216,"name":"authorizePasswordless","url":"modules/helpers.html#authorizepasswordless","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":486,"kind":16777216,"name":"getPasswordLessAccessToken","url":"modules/helpers.html#getpasswordlessaccesstoken","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":487,"kind":16777216,"name":"refreshAccessToken","url":"modules/helpers.html#refreshaccesstoken","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":488,"kind":16777216,"name":"logout","url":"modules/helpers.html#logout","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":489,"kind":16777216,"name":"stringToBase64","url":"modules/helpers.html#stringtobase64","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":490,"kind":16777216,"name":"getCodeAndUsidFromUrl","url":"modules/helpers.html#getcodeandusidfromurl","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":491,"kind":16777216,"name":"createCodeVerifier","url":"modules/helpers.html#createcodeverifier","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":492,"kind":16777216,"name":"generateCodeChallenge","url":"modules/helpers.html#generatecodechallenge","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":493,"kind":16777216,"name":"CompositeParameters","url":"modules/helpers.html#compositeparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":494,"kind":16777216,"name":"RequireParametersUnlessAllAreOptional","url":"modules/helpers.html#requireparametersunlessallareoptional","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":495,"kind":16777216,"name":"BaseUriParameters","url":"modules/helpers.html#baseuriparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":496,"kind":16777216,"name":"LocaleCode","url":"modules/helpers.html#localecode","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":497,"kind":16777216,"name":"PathParameters","url":"modules/helpers.html#pathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":498,"kind":16777216,"name":"QueryParameters","url":"modules/helpers.html#queryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":499,"kind":16777216,"name":"UrlParameters","url":"modules/helpers.html#urlparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":500,"kind":16777216,"name":"CustomQueryParameters","url":"modules/helpers.html#customqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":501,"kind":16777216,"name":"CustomRequestBody","url":"modules/helpers.html#customrequestbody","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":502,"kind":16777216,"name":"CustomParams","url":"modules/helpers.html#customparams","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":503,"kind":16777216,"name":"callCustomEndpoint","url":"modules/helpers.html#callcustomendpoint","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":504,"kind":16777216,"name":"doFetch","url":"modules/helpers.html#dofetch","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":505,"kind":16777216,"name":"encodeSCAPISpecialCharacters","url":"modules/helpers.html#encodescapispecialcharacters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":506,"kind":64,"name":"doFetch","url":"modules/helpers.html#dofetch-1","classes":"tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter","parent":"helpers"},{"id":507,"kind":64,"name":"encodeSCAPISpecialCharacters","url":"modules/helpers.html#encodescapispecialcharacters-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":508,"kind":256,"name":"CustomParams","url":"interfaces/helpers.customparams-1.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"helpers"},{"id":509,"kind":1024,"name":"apiName","url":"interfaces/helpers.customparams-1.html#apiname","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"helpers.CustomParams"},{"id":510,"kind":1024,"name":"apiVersion","url":"interfaces/helpers.customparams-1.html#apiversion","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"helpers.CustomParams"},{"id":511,"kind":1024,"name":"endpointPath","url":"interfaces/helpers.customparams-1.html#endpointpath","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"helpers.CustomParams"},{"id":512,"kind":1024,"name":"organizationId","url":"interfaces/helpers.customparams-1.html#organizationid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"helpers.CustomParams"},{"id":513,"kind":1024,"name":"shortCode","url":"interfaces/helpers.customparams-1.html#shortcode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"helpers.CustomParams"},{"id":514,"kind":64,"name":"contentTypeHeaderExists","url":"modules/helpers.html#contenttypeheaderexists","classes":"tsd-kind-function tsd-parent-kind-module tsd-is-not-exported","parent":"helpers"},{"id":515,"kind":64,"name":"callCustomEndpoint","url":"modules/helpers.html#callcustomendpoint-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":516,"kind":1,"name":"shopperBaskets","url":"modules/shopperbaskets.html","classes":"tsd-kind-module"},{"id":517,"kind":32,"name":"defaultBaseUri","url":"modules/shopperbaskets.html#defaultbaseuri-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"shopperBaskets"},{"id":518,"kind":4194304,"name":"NoValue","url":"modules/shopperbaskets.html#novalue-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":519,"kind":4194304,"name":"CurrencyCode","url":"modules/shopperbaskets.html#currencycode-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":520,"kind":4194304,"name":"GiftCertificateItem","url":"modules/shopperbaskets.html#giftcertificateitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":521,"kind":4194304,"name":"Status","url":"modules/shopperbaskets.html#status-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":522,"kind":4194304,"name":"PaymentCard","url":"modules/shopperbaskets.html#paymentcard-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":523,"kind":4194304,"name":"OrderPaymentInstrument","url":"modules/shopperbaskets.html#orderpaymentinstrument-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":524,"kind":4194304,"name":"ProductDetailsLink","url":"modules/shopperbaskets.html#productdetailslink-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":525,"kind":4194304,"name":"BonusDiscountLineItem","url":"modules/shopperbaskets.html#bonusdiscountlineitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":526,"kind":4194304,"name":"Discount","url":"modules/shopperbaskets.html#discount-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":527,"kind":4194304,"name":"DiscountTypeEnum","url":"modules/shopperbaskets.html#discounttypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":528,"kind":4194304,"name":"PriceAdjustment","url":"modules/shopperbaskets.html#priceadjustment-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":529,"kind":4194304,"name":"ShippingItem","url":"modules/shopperbaskets.html#shippingitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":530,"kind":4194304,"name":"OrderAddress","url":"modules/shopperbaskets.html#orderaddress-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":531,"kind":4194304,"name":"ShippingPromotion","url":"modules/shopperbaskets.html#shippingpromotion-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":532,"kind":4194304,"name":"ShippingMethod","url":"modules/shopperbaskets.html#shippingmethod-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":533,"kind":4194304,"name":"Shipment","url":"modules/shopperbaskets.html#shipment-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":534,"kind":4194304,"name":"ShipmentShippingStatusEnum","url":"modules/shopperbaskets.html#shipmentshippingstatusenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":535,"kind":4194304,"name":"CouponItem","url":"modules/shopperbaskets.html#couponitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":536,"kind":4194304,"name":"CouponItemStatusCodeEnum","url":"modules/shopperbaskets.html#couponitemstatuscodeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":537,"kind":4194304,"name":"CustomerInfo","url":"modules/shopperbaskets.html#customerinfo-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":538,"kind":4194304,"name":"ProductListLink","url":"modules/shopperbaskets.html#productlistlink-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":539,"kind":4194304,"name":"ProductListLinkTypeEnum","url":"modules/shopperbaskets.html#productlistlinktypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":540,"kind":4194304,"name":"ProductListItemReference","url":"modules/shopperbaskets.html#productlistitemreference-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":541,"kind":4194304,"name":"ProductListItemReferenceTypeEnum","url":"modules/shopperbaskets.html#productlistitemreferencetypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":542,"kind":4194304,"name":"OptionItem","url":"modules/shopperbaskets.html#optionitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":543,"kind":4194304,"name":"ProductItem","url":"modules/shopperbaskets.html#productitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":544,"kind":4194304,"name":"Basket","url":"modules/shopperbaskets.html#basket-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":545,"kind":4194304,"name":"BasketChannelTypeEnum","url":"modules/shopperbaskets.html#basketchanneltypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":546,"kind":4194304,"name":"BasketTaxationEnum","url":"modules/shopperbaskets.html#baskettaxationenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":547,"kind":4194304,"name":"OrderPaymentCardRequest","url":"modules/shopperbaskets.html#orderpaymentcardrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":548,"kind":4194304,"name":"BasketPaymentInstrumentRequest","url":"modules/shopperbaskets.html#basketpaymentinstrumentrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":549,"kind":4194304,"name":"DefaultFallback","url":"modules/shopperbaskets.html#defaultfallback-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":550,"kind":4194304,"name":"DiscountRequest","url":"modules/shopperbaskets.html#discountrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":551,"kind":4194304,"name":"DiscountRequestTypeEnum","url":"modules/shopperbaskets.html#discountrequesttypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":552,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperbaskets.html#errorresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":553,"kind":4194304,"name":"LocaleCode","url":"modules/shopperbaskets.html#localecode-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":554,"kind":4194304,"name":"PaymentCardSpec","url":"modules/shopperbaskets.html#paymentcardspec-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":555,"kind":4194304,"name":"PaymentMethod","url":"modules/shopperbaskets.html#paymentmethod-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":556,"kind":4194304,"name":"PaymentMethodResult","url":"modules/shopperbaskets.html#paymentmethodresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":557,"kind":4194304,"name":"PriceAdjustmentRequest","url":"modules/shopperbaskets.html#priceadjustmentrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":558,"kind":4194304,"name":"PriceAdjustmentRequestLevelEnum","url":"modules/shopperbaskets.html#priceadjustmentrequestlevelenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":559,"kind":4194304,"name":"ShippingMethodResult","url":"modules/shopperbaskets.html#shippingmethodresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":560,"kind":4194304,"name":"TaxItem","url":"modules/shopperbaskets.html#taxitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":561,"kind":4194304,"name":"TaxItems","url":"modules/shopperbaskets.html#taxitems-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":562,"kind":4194304,"name":"Taxes","url":"modules/shopperbaskets.html#taxes-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":563,"kind":16777216,"name":"Basket","url":"modules/shopperbaskets.html#basket","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":564,"kind":16777216,"name":"BasketChannelTypeEnum","url":"modules/shopperbaskets.html#basketchanneltypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":565,"kind":16777216,"name":"BasketTaxationEnum","url":"modules/shopperbaskets.html#baskettaxationenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":566,"kind":16777216,"name":"BasketPaymentInstrumentRequest","url":"modules/shopperbaskets.html#basketpaymentinstrumentrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":567,"kind":16777216,"name":"BonusDiscountLineItem","url":"modules/shopperbaskets.html#bonusdiscountlineitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":568,"kind":16777216,"name":"CouponItem","url":"modules/shopperbaskets.html#couponitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":569,"kind":16777216,"name":"CouponItemStatusCodeEnum","url":"modules/shopperbaskets.html#couponitemstatuscodeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":570,"kind":16777216,"name":"CurrencyCode","url":"modules/shopperbaskets.html#currencycode","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":571,"kind":16777216,"name":"CustomerInfo","url":"modules/shopperbaskets.html#customerinfo","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":572,"kind":16777216,"name":"DefaultFallback","url":"modules/shopperbaskets.html#defaultfallback","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":573,"kind":16777216,"name":"Discount","url":"modules/shopperbaskets.html#discount","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":574,"kind":16777216,"name":"DiscountTypeEnum","url":"modules/shopperbaskets.html#discounttypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":575,"kind":16777216,"name":"DiscountRequest","url":"modules/shopperbaskets.html#discountrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":576,"kind":16777216,"name":"DiscountRequestTypeEnum","url":"modules/shopperbaskets.html#discountrequesttypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":577,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperbaskets.html#errorresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":578,"kind":16777216,"name":"GiftCertificateItem","url":"modules/shopperbaskets.html#giftcertificateitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":579,"kind":16777216,"name":"LocaleCode","url":"modules/shopperbaskets.html#localecode","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":580,"kind":16777216,"name":"NoValue","url":"modules/shopperbaskets.html#novalue","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":581,"kind":16777216,"name":"OptionItem","url":"modules/shopperbaskets.html#optionitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":582,"kind":16777216,"name":"OrderAddress","url":"modules/shopperbaskets.html#orderaddress","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":583,"kind":16777216,"name":"OrderPaymentCardRequest","url":"modules/shopperbaskets.html#orderpaymentcardrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":584,"kind":16777216,"name":"OrderPaymentInstrument","url":"modules/shopperbaskets.html#orderpaymentinstrument","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":585,"kind":16777216,"name":"PaymentCard","url":"modules/shopperbaskets.html#paymentcard","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":586,"kind":16777216,"name":"PaymentCardSpec","url":"modules/shopperbaskets.html#paymentcardspec","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":587,"kind":16777216,"name":"PaymentMethod","url":"modules/shopperbaskets.html#paymentmethod","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":588,"kind":16777216,"name":"PaymentMethodResult","url":"modules/shopperbaskets.html#paymentmethodresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":589,"kind":16777216,"name":"PriceAdjustment","url":"modules/shopperbaskets.html#priceadjustment","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":590,"kind":16777216,"name":"PriceAdjustmentRequest","url":"modules/shopperbaskets.html#priceadjustmentrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":591,"kind":16777216,"name":"PriceAdjustmentRequestLevelEnum","url":"modules/shopperbaskets.html#priceadjustmentrequestlevelenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":592,"kind":16777216,"name":"ProductDetailsLink","url":"modules/shopperbaskets.html#productdetailslink","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":593,"kind":16777216,"name":"ProductItem","url":"modules/shopperbaskets.html#productitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":594,"kind":16777216,"name":"ProductListItemReference","url":"modules/shopperbaskets.html#productlistitemreference","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":595,"kind":16777216,"name":"ProductListItemReferenceTypeEnum","url":"modules/shopperbaskets.html#productlistitemreferencetypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":596,"kind":16777216,"name":"ProductListLink","url":"modules/shopperbaskets.html#productlistlink","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":597,"kind":16777216,"name":"ProductListLinkTypeEnum","url":"modules/shopperbaskets.html#productlistlinktypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":598,"kind":16777216,"name":"Shipment","url":"modules/shopperbaskets.html#shipment","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":599,"kind":16777216,"name":"ShipmentShippingStatusEnum","url":"modules/shopperbaskets.html#shipmentshippingstatusenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":600,"kind":16777216,"name":"ShippingItem","url":"modules/shopperbaskets.html#shippingitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":601,"kind":16777216,"name":"ShippingMethod","url":"modules/shopperbaskets.html#shippingmethod","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":602,"kind":16777216,"name":"ShippingMethodResult","url":"modules/shopperbaskets.html#shippingmethodresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":603,"kind":16777216,"name":"ShippingPromotion","url":"modules/shopperbaskets.html#shippingpromotion","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":604,"kind":16777216,"name":"Status","url":"modules/shopperbaskets.html#status","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":605,"kind":16777216,"name":"TaxItem","url":"modules/shopperbaskets.html#taxitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":606,"kind":16777216,"name":"TaxItems","url":"modules/shopperbaskets.html#taxitems","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":607,"kind":16777216,"name":"Taxes","url":"modules/shopperbaskets.html#taxes","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":608,"kind":128,"name":"ShopperBaskets","url":"classes/shopperbaskets.shopperbaskets-3.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"shopperBaskets"},{"id":609,"kind":1024,"name":"clientConfig","url":"classes/shopperbaskets.shopperbaskets-3.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class","parent":"shopperBaskets.ShopperBaskets"},{"id":610,"kind":1024,"name":"defaultBaseUri","url":"classes/shopperbaskets.shopperbaskets-3.html#defaultbaseuri","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperBaskets.ShopperBaskets"},{"id":611,"kind":2097152,"name":"apiPaths","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-static","parent":"shopperBaskets.ShopperBaskets"},{"id":612,"kind":32,"name":"addCouponToBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.addcoupontobasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":613,"kind":32,"name":"addGiftCertificateItemToBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.addgiftcertificateitemtobasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":614,"kind":32,"name":"addItemToBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.additemtobasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":615,"kind":32,"name":"addPaymentInstrumentToBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.addpaymentinstrumenttobasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":616,"kind":32,"name":"addPriceAdjustmentToBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.addpriceadjustmenttobasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":617,"kind":32,"name":"addPriceBooksToBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.addpricebookstobasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":618,"kind":32,"name":"addTaxesForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.addtaxesforbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":619,"kind":32,"name":"addTaxesForBasketItem","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.addtaxesforbasketitem-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":620,"kind":32,"name":"createBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.createbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":621,"kind":32,"name":"createShipmentForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.createshipmentforbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":622,"kind":32,"name":"deleteBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.deletebasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":623,"kind":32,"name":"getBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.getbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":624,"kind":32,"name":"getPaymentMethodsForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.getpaymentmethodsforbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":625,"kind":32,"name":"getPriceBooksForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.getpricebooksforbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":626,"kind":32,"name":"getShippingMethodsForShipment","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.getshippingmethodsforshipment-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":627,"kind":32,"name":"getTaxesFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.gettaxesfrombasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":628,"kind":32,"name":"mergeBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.mergebasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":629,"kind":32,"name":"removeCouponFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.removecouponfrombasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":630,"kind":32,"name":"removeGiftCertificateItemFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.removegiftcertificateitemfrombasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":631,"kind":32,"name":"removeItemFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.removeitemfrombasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":632,"kind":32,"name":"removePaymentInstrumentFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.removepaymentinstrumentfrombasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":633,"kind":32,"name":"removePriceAdjustmentFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.removepriceadjustmentfrombasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":634,"kind":32,"name":"removeShipmentFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.removeshipmentfrombasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":635,"kind":32,"name":"transferBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.transferbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":636,"kind":32,"name":"updateAsAgentBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.updateasagentbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":637,"kind":32,"name":"updateAsStorefrontBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.updateasstorefrontbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":638,"kind":32,"name":"updateBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.updatebasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":639,"kind":32,"name":"updateBillingAddressForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.updatebillingaddressforbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":640,"kind":32,"name":"updateCustomerForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.updatecustomerforbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":641,"kind":32,"name":"updateGiftCertificateItemInBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.updategiftcertificateiteminbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":642,"kind":32,"name":"updateItemInBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.updateiteminbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":643,"kind":32,"name":"updateItemsInBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.updateitemsinbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":644,"kind":32,"name":"updatePaymentInstrumentInBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.updatepaymentinstrumentinbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":645,"kind":32,"name":"updatePriceAdjustmentInBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.updatepriceadjustmentinbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":646,"kind":32,"name":"updateShipmentForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.updateshipmentforbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":647,"kind":32,"name":"updateShippingAddressForShipment","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.updateshippingaddressforshipment-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":648,"kind":32,"name":"updateShippingMethodForShipment","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.updateshippingmethodforshipment-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":649,"kind":512,"name":"constructor","url":"classes/shopperbaskets.shopperbaskets-3.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"shopperBaskets.ShopperBaskets"},{"id":650,"kind":1024,"name":"paramKeys","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperBaskets.ShopperBaskets"},{"id":651,"kind":65536,"name":"__type","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"shopperBaskets.ShopperBaskets.paramKeys"},{"id":652,"kind":32,"name":"addCouponToBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.addcoupontobasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":653,"kind":32,"name":"addCouponToBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.addcoupontobasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":654,"kind":32,"name":"addGiftCertificateItemToBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.addgiftcertificateitemtobasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":655,"kind":32,"name":"addGiftCertificateItemToBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.addgiftcertificateitemtobasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":656,"kind":32,"name":"addItemToBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.additemtobasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":657,"kind":32,"name":"addItemToBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.additemtobasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":658,"kind":32,"name":"addPaymentInstrumentToBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.addpaymentinstrumenttobasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":659,"kind":32,"name":"addPaymentInstrumentToBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.addpaymentinstrumenttobasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":660,"kind":32,"name":"addPriceAdjustmentToBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.addpriceadjustmenttobasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":661,"kind":32,"name":"addPriceAdjustmentToBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.addpriceadjustmenttobasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":662,"kind":32,"name":"addPriceBooksToBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.addpricebookstobasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":663,"kind":32,"name":"addPriceBooksToBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.addpricebookstobasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":664,"kind":32,"name":"addTaxesForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.addtaxesforbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":665,"kind":32,"name":"addTaxesForBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.addtaxesforbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":666,"kind":32,"name":"addTaxesForBasketItem","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.addtaxesforbasketitem","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":667,"kind":32,"name":"addTaxesForBasketItemRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.addtaxesforbasketitemrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":668,"kind":32,"name":"createBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.createbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":669,"kind":32,"name":"createBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.createbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":670,"kind":32,"name":"createShipmentForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.createshipmentforbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":671,"kind":32,"name":"createShipmentForBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.createshipmentforbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":672,"kind":32,"name":"deleteBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.deletebasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":673,"kind":32,"name":"deleteBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.deletebasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":674,"kind":32,"name":"getBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.getbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":675,"kind":32,"name":"getBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.getbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":676,"kind":32,"name":"getPaymentMethodsForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.getpaymentmethodsforbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":677,"kind":32,"name":"getPaymentMethodsForBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.getpaymentmethodsforbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":678,"kind":32,"name":"getPriceBooksForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.getpricebooksforbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":679,"kind":32,"name":"getPriceBooksForBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.getpricebooksforbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":680,"kind":32,"name":"getShippingMethodsForShipment","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.getshippingmethodsforshipment","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":681,"kind":32,"name":"getShippingMethodsForShipmentRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.getshippingmethodsforshipmentrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":682,"kind":32,"name":"getTaxesFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.gettaxesfrombasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":683,"kind":32,"name":"getTaxesFromBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.gettaxesfrombasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":684,"kind":32,"name":"mergeBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.mergebasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":685,"kind":32,"name":"mergeBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.mergebasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":686,"kind":32,"name":"removeCouponFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.removecouponfrombasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":687,"kind":32,"name":"removeCouponFromBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.removecouponfrombasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":688,"kind":32,"name":"removeGiftCertificateItemFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.removegiftcertificateitemfrombasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":689,"kind":32,"name":"removeGiftCertificateItemFromBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.removegiftcertificateitemfrombasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":690,"kind":32,"name":"removeItemFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.removeitemfrombasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":691,"kind":32,"name":"removeItemFromBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.removeitemfrombasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":692,"kind":32,"name":"removePaymentInstrumentFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.removepaymentinstrumentfrombasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":693,"kind":32,"name":"removePaymentInstrumentFromBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.removepaymentinstrumentfrombasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":694,"kind":32,"name":"removePriceAdjustmentFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.removepriceadjustmentfrombasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":695,"kind":32,"name":"removePriceAdjustmentFromBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.removepriceadjustmentfrombasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":696,"kind":32,"name":"removeShipmentFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.removeshipmentfrombasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":697,"kind":32,"name":"removeShipmentFromBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.removeshipmentfrombasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":698,"kind":32,"name":"transferBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.transferbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":699,"kind":32,"name":"transferBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.transferbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":700,"kind":32,"name":"updateAsAgentBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updateasagentbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":701,"kind":32,"name":"updateAsAgentBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updateasagentbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":702,"kind":32,"name":"updateAsStorefrontBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updateasstorefrontbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":703,"kind":32,"name":"updateAsStorefrontBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updateasstorefrontbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":704,"kind":32,"name":"updateBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updatebasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":705,"kind":32,"name":"updateBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updatebasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":706,"kind":32,"name":"updateBillingAddressForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updatebillingaddressforbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":707,"kind":32,"name":"updateBillingAddressForBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updatebillingaddressforbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":708,"kind":32,"name":"updateCustomerForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updatecustomerforbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":709,"kind":32,"name":"updateCustomerForBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updatecustomerforbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":710,"kind":32,"name":"updateGiftCertificateItemInBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updategiftcertificateiteminbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":711,"kind":32,"name":"updateGiftCertificateItemInBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updategiftcertificateiteminbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":712,"kind":32,"name":"updateItemInBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updateiteminbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":713,"kind":32,"name":"updateItemInBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updateiteminbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":714,"kind":32,"name":"updateItemsInBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updateitemsinbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":715,"kind":32,"name":"updateItemsInBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updateitemsinbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":716,"kind":32,"name":"updatePaymentInstrumentInBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updatepaymentinstrumentinbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":717,"kind":32,"name":"updatePaymentInstrumentInBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updatepaymentinstrumentinbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":718,"kind":32,"name":"updatePriceAdjustmentInBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updatepriceadjustmentinbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":719,"kind":32,"name":"updatePriceAdjustmentInBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updatepriceadjustmentinbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":720,"kind":32,"name":"updateShipmentForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updateshipmentforbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":721,"kind":32,"name":"updateShipmentForBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updateshipmentforbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":722,"kind":32,"name":"updateShippingAddressForShipment","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updateshippingaddressforshipment","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":723,"kind":32,"name":"updateShippingAddressForShipmentRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updateshippingaddressforshipmentrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":724,"kind":32,"name":"updateShippingMethodForShipment","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updateshippingmethodforshipment","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":725,"kind":32,"name":"updateShippingMethodForShipmentRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updateshippingmethodforshipmentrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":726,"kind":2048,"name":"addCouponToBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#addcoupontobasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":727,"kind":2048,"name":"addGiftCertificateItemToBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#addgiftcertificateitemtobasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":728,"kind":2048,"name":"addItemToBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#additemtobasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":729,"kind":2048,"name":"addPaymentInstrumentToBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#addpaymentinstrumenttobasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":730,"kind":2048,"name":"addPriceAdjustmentToBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#addpriceadjustmenttobasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":731,"kind":2048,"name":"addPriceBooksToBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#addpricebookstobasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":732,"kind":2048,"name":"addTaxesForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#addtaxesforbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":733,"kind":2048,"name":"addTaxesForBasketItem","url":"classes/shopperbaskets.shopperbaskets-3.html#addtaxesforbasketitem-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":734,"kind":2048,"name":"createBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#createbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":735,"kind":2048,"name":"createShipmentForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#createshipmentforbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":736,"kind":2048,"name":"deleteBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#deletebasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":737,"kind":2048,"name":"getBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#getbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":738,"kind":2048,"name":"getPaymentMethodsForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#getpaymentmethodsforbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":739,"kind":2048,"name":"getPriceBooksForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#getpricebooksforbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":740,"kind":2048,"name":"getShippingMethodsForShipment","url":"classes/shopperbaskets.shopperbaskets-3.html#getshippingmethodsforshipment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":741,"kind":2048,"name":"getTaxesFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#gettaxesfrombasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":742,"kind":2048,"name":"mergeBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#mergebasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":743,"kind":2048,"name":"removeCouponFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#removecouponfrombasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":744,"kind":2048,"name":"removeGiftCertificateItemFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#removegiftcertificateitemfrombasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":745,"kind":2048,"name":"removeItemFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#removeitemfrombasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":746,"kind":2048,"name":"removePaymentInstrumentFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#removepaymentinstrumentfrombasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":747,"kind":2048,"name":"removePriceAdjustmentFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#removepriceadjustmentfrombasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":748,"kind":2048,"name":"removeShipmentFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#removeshipmentfrombasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":749,"kind":2048,"name":"transferBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#transferbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":750,"kind":2048,"name":"updateAsAgentBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#updateasagentbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":751,"kind":2048,"name":"updateAsStorefrontBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#updateasstorefrontbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":752,"kind":2048,"name":"updateBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#updatebasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":753,"kind":2048,"name":"updateBillingAddressForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#updatebillingaddressforbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":754,"kind":2048,"name":"updateCustomerForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#updatecustomerforbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":755,"kind":2048,"name":"updateGiftCertificateItemInBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#updategiftcertificateiteminbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":756,"kind":2048,"name":"updateItemInBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#updateiteminbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":757,"kind":2048,"name":"updateItemsInBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#updateitemsinbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":758,"kind":2048,"name":"updatePaymentInstrumentInBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#updatepaymentinstrumentinbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":759,"kind":2048,"name":"updatePriceAdjustmentInBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#updatepriceadjustmentinbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":760,"kind":2048,"name":"updateShipmentForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#updateshipmentforbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":761,"kind":2048,"name":"updateShippingAddressForShipment","url":"classes/shopperbaskets.shopperbaskets-3.html#updateshippingaddressforshipment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":762,"kind":2048,"name":"updateShippingMethodForShipment","url":"classes/shopperbaskets.shopperbaskets-3.html#updateshippingmethodforshipment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":763,"kind":4194304,"name":"CreateBasketTaxModeEnum","url":"modules/shopperbaskets.html#createbaskettaxmodeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":764,"kind":4194304,"name":"MergeBasketProductItemMergeModeEnum","url":"modules/shopperbaskets.html#mergebasketproductitemmergemodeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":765,"kind":4194304,"name":"addCouponToBasketQueryParameters","url":"modules/shopperbaskets.html#addcoupontobasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":766,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#addcoupontobasketqueryparameters-2.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.addCouponToBasketQueryParameters"},{"id":767,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#addcoupontobasketqueryparameters-2.__type-1.siteid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addCouponToBasketQueryParameters.__type"},{"id":768,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#addcoupontobasketqueryparameters-2.__type-1.locale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addCouponToBasketQueryParameters.__type"},{"id":769,"kind":4194304,"name":"addCouponToBasketPathParameters","url":"modules/shopperbaskets.html#addcoupontobasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":770,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#addcoupontobasketpathparameters-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.addCouponToBasketPathParameters"},{"id":771,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#addcoupontobasketpathparameters-2.__type.organizationid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addCouponToBasketPathParameters.__type"},{"id":772,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#addcoupontobasketpathparameters-2.__type.basketid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addCouponToBasketPathParameters.__type"},{"id":773,"kind":4194304,"name":"addGiftCertificateItemToBasketQueryParameters","url":"modules/shopperbaskets.html#addgiftcertificateitemtobasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":774,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#addgiftcertificateitemtobasketqueryparameters-2.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.addGiftCertificateItemToBasketQueryParameters"},{"id":775,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#addgiftcertificateitemtobasketqueryparameters-2.__type-3.siteid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addGiftCertificateItemToBasketQueryParameters.__type"},{"id":776,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#addgiftcertificateitemtobasketqueryparameters-2.__type-3.locale-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addGiftCertificateItemToBasketQueryParameters.__type"},{"id":777,"kind":4194304,"name":"addGiftCertificateItemToBasketPathParameters","url":"modules/shopperbaskets.html#addgiftcertificateitemtobasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":778,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#addgiftcertificateitemtobasketpathparameters-2.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.addGiftCertificateItemToBasketPathParameters"},{"id":779,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#addgiftcertificateitemtobasketpathparameters-2.__type-2.organizationid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addGiftCertificateItemToBasketPathParameters.__type"},{"id":780,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#addgiftcertificateitemtobasketpathparameters-2.__type-2.basketid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addGiftCertificateItemToBasketPathParameters.__type"},{"id":781,"kind":4194304,"name":"addItemToBasketQueryParameters","url":"modules/shopperbaskets.html#additemtobasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":782,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#additemtobasketqueryparameters-2.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.addItemToBasketQueryParameters"},{"id":783,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#additemtobasketqueryparameters-2.__type-5.siteid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addItemToBasketQueryParameters.__type"},{"id":784,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#additemtobasketqueryparameters-2.__type-5.locale-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addItemToBasketQueryParameters.__type"},{"id":785,"kind":4194304,"name":"addItemToBasketPathParameters","url":"modules/shopperbaskets.html#additemtobasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":786,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#additemtobasketpathparameters-2.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.addItemToBasketPathParameters"},{"id":787,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#additemtobasketpathparameters-2.__type-4.organizationid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addItemToBasketPathParameters.__type"},{"id":788,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#additemtobasketpathparameters-2.__type-4.basketid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addItemToBasketPathParameters.__type"},{"id":789,"kind":4194304,"name":"addPaymentInstrumentToBasketQueryParameters","url":"modules/shopperbaskets.html#addpaymentinstrumenttobasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":790,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#addpaymentinstrumenttobasketqueryparameters-2.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.addPaymentInstrumentToBasketQueryParameters"},{"id":791,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#addpaymentinstrumenttobasketqueryparameters-2.__type-7.siteid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addPaymentInstrumentToBasketQueryParameters.__type"},{"id":792,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#addpaymentinstrumenttobasketqueryparameters-2.__type-7.locale-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addPaymentInstrumentToBasketQueryParameters.__type"},{"id":793,"kind":4194304,"name":"addPaymentInstrumentToBasketPathParameters","url":"modules/shopperbaskets.html#addpaymentinstrumenttobasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":794,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#addpaymentinstrumenttobasketpathparameters-2.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.addPaymentInstrumentToBasketPathParameters"},{"id":795,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#addpaymentinstrumenttobasketpathparameters-2.__type-6.organizationid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addPaymentInstrumentToBasketPathParameters.__type"},{"id":796,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#addpaymentinstrumenttobasketpathparameters-2.__type-6.basketid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addPaymentInstrumentToBasketPathParameters.__type"},{"id":797,"kind":4194304,"name":"addPriceAdjustmentToBasketQueryParameters","url":"modules/shopperbaskets.html#addpriceadjustmenttobasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":798,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#addpriceadjustmenttobasketqueryparameters-2.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.addPriceAdjustmentToBasketQueryParameters"},{"id":799,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#addpriceadjustmenttobasketqueryparameters-2.__type-9.siteid-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addPriceAdjustmentToBasketQueryParameters.__type"},{"id":800,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#addpriceadjustmenttobasketqueryparameters-2.__type-9.locale-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addPriceAdjustmentToBasketQueryParameters.__type"},{"id":801,"kind":4194304,"name":"addPriceAdjustmentToBasketPathParameters","url":"modules/shopperbaskets.html#addpriceadjustmenttobasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":802,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#addpriceadjustmenttobasketpathparameters-2.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.addPriceAdjustmentToBasketPathParameters"},{"id":803,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#addpriceadjustmenttobasketpathparameters-2.__type-8.organizationid-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addPriceAdjustmentToBasketPathParameters.__type"},{"id":804,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#addpriceadjustmenttobasketpathparameters-2.__type-8.basketid-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addPriceAdjustmentToBasketPathParameters.__type"},{"id":805,"kind":4194304,"name":"addPriceBooksToBasketQueryParameters","url":"modules/shopperbaskets.html#addpricebookstobasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":806,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#addpricebookstobasketqueryparameters-2.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.addPriceBooksToBasketQueryParameters"},{"id":807,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#addpricebookstobasketqueryparameters-2.__type-11.siteid-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addPriceBooksToBasketQueryParameters.__type"},{"id":808,"kind":4194304,"name":"addPriceBooksToBasketPathParameters","url":"modules/shopperbaskets.html#addpricebookstobasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":809,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#addpricebookstobasketpathparameters-2.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.addPriceBooksToBasketPathParameters"},{"id":810,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#addpricebookstobasketpathparameters-2.__type-10.organizationid-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addPriceBooksToBasketPathParameters.__type"},{"id":811,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#addpricebookstobasketpathparameters-2.__type-10.basketid-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addPriceBooksToBasketPathParameters.__type"},{"id":812,"kind":4194304,"name":"addTaxesForBasketQueryParameters","url":"modules/shopperbaskets.html#addtaxesforbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":813,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#addtaxesforbasketqueryparameters-2.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.addTaxesForBasketQueryParameters"},{"id":814,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#addtaxesforbasketqueryparameters-2.__type-15.siteid-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addTaxesForBasketQueryParameters.__type"},{"id":815,"kind":4194304,"name":"addTaxesForBasketPathParameters","url":"modules/shopperbaskets.html#addtaxesforbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":816,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#addtaxesforbasketpathparameters-2.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.addTaxesForBasketPathParameters"},{"id":817,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#addtaxesforbasketpathparameters-2.__type-14.organizationid-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addTaxesForBasketPathParameters.__type"},{"id":818,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#addtaxesforbasketpathparameters-2.__type-14.basketid-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addTaxesForBasketPathParameters.__type"},{"id":819,"kind":4194304,"name":"addTaxesForBasketItemQueryParameters","url":"modules/shopperbaskets.html#addtaxesforbasketitemqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":820,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#addtaxesforbasketitemqueryparameters-2.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.addTaxesForBasketItemQueryParameters"},{"id":821,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#addtaxesforbasketitemqueryparameters-2.__type-13.siteid-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addTaxesForBasketItemQueryParameters.__type"},{"id":822,"kind":4194304,"name":"addTaxesForBasketItemPathParameters","url":"modules/shopperbaskets.html#addtaxesforbasketitempathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":823,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#addtaxesforbasketitempathparameters-2.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.addTaxesForBasketItemPathParameters"},{"id":824,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#addtaxesforbasketitempathparameters-2.__type-12.organizationid-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addTaxesForBasketItemPathParameters.__type"},{"id":825,"kind":32,"name":"itemId","url":"modules/shopperbaskets.html#addtaxesforbasketitempathparameters-2.__type-12.itemid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addTaxesForBasketItemPathParameters.__type"},{"id":826,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#addtaxesforbasketitempathparameters-2.__type-12.basketid-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addTaxesForBasketItemPathParameters.__type"},{"id":827,"kind":4194304,"name":"createBasketQueryParameters","url":"modules/shopperbaskets.html#createbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":828,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#createbasketqueryparameters-2.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.createBasketQueryParameters"},{"id":829,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#createbasketqueryparameters-2.__type-17.siteid-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.createBasketQueryParameters.__type"},{"id":830,"kind":32,"name":"taxMode","url":"modules/shopperbaskets.html#createbasketqueryparameters-2.__type-17.taxmode","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.createBasketQueryParameters.__type"},{"id":831,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#createbasketqueryparameters-2.__type-17.locale-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.createBasketQueryParameters.__type"},{"id":832,"kind":4194304,"name":"createBasketPathParameters","url":"modules/shopperbaskets.html#createbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":833,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#createbasketpathparameters-2.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.createBasketPathParameters"},{"id":834,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#createbasketpathparameters-2.__type-16.organizationid-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.createBasketPathParameters.__type"},{"id":835,"kind":4194304,"name":"createShipmentForBasketQueryParameters","url":"modules/shopperbaskets.html#createshipmentforbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":836,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#createshipmentforbasketqueryparameters-2.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.createShipmentForBasketQueryParameters"},{"id":837,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#createshipmentforbasketqueryparameters-2.__type-19.siteid-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.createShipmentForBasketQueryParameters.__type"},{"id":838,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#createshipmentforbasketqueryparameters-2.__type-19.locale-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.createShipmentForBasketQueryParameters.__type"},{"id":839,"kind":4194304,"name":"createShipmentForBasketPathParameters","url":"modules/shopperbaskets.html#createshipmentforbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":840,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#createshipmentforbasketpathparameters-2.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.createShipmentForBasketPathParameters"},{"id":841,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#createshipmentforbasketpathparameters-2.__type-18.organizationid-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.createShipmentForBasketPathParameters.__type"},{"id":842,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#createshipmentforbasketpathparameters-2.__type-18.basketid-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.createShipmentForBasketPathParameters.__type"},{"id":843,"kind":4194304,"name":"deleteBasketQueryParameters","url":"modules/shopperbaskets.html#deletebasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":844,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#deletebasketqueryparameters-2.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.deleteBasketQueryParameters"},{"id":845,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#deletebasketqueryparameters-2.__type-21.siteid-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.deleteBasketQueryParameters.__type"},{"id":846,"kind":4194304,"name":"deleteBasketPathParameters","url":"modules/shopperbaskets.html#deletebasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":847,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#deletebasketpathparameters-2.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.deleteBasketPathParameters"},{"id":848,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#deletebasketpathparameters-2.__type-20.organizationid-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.deleteBasketPathParameters.__type"},{"id":849,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#deletebasketpathparameters-2.__type-20.basketid-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.deleteBasketPathParameters.__type"},{"id":850,"kind":4194304,"name":"getBasketQueryParameters","url":"modules/shopperbaskets.html#getbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":851,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#getbasketqueryparameters-2.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.getBasketQueryParameters"},{"id":852,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#getbasketqueryparameters-2.__type-23.siteid-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getBasketQueryParameters.__type"},{"id":853,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#getbasketqueryparameters-2.__type-23.locale-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getBasketQueryParameters.__type"},{"id":854,"kind":4194304,"name":"getBasketPathParameters","url":"modules/shopperbaskets.html#getbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":855,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#getbasketpathparameters-2.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.getBasketPathParameters"},{"id":856,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#getbasketpathparameters-2.__type-22.organizationid-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getBasketPathParameters.__type"},{"id":857,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#getbasketpathparameters-2.__type-22.basketid-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getBasketPathParameters.__type"},{"id":858,"kind":4194304,"name":"getPaymentMethodsForBasketQueryParameters","url":"modules/shopperbaskets.html#getpaymentmethodsforbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":859,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#getpaymentmethodsforbasketqueryparameters-2.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.getPaymentMethodsForBasketQueryParameters"},{"id":860,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#getpaymentmethodsforbasketqueryparameters-2.__type-25.siteid-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getPaymentMethodsForBasketQueryParameters.__type"},{"id":861,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#getpaymentmethodsforbasketqueryparameters-2.__type-25.locale-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getPaymentMethodsForBasketQueryParameters.__type"},{"id":862,"kind":4194304,"name":"getPaymentMethodsForBasketPathParameters","url":"modules/shopperbaskets.html#getpaymentmethodsforbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":863,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#getpaymentmethodsforbasketpathparameters-2.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.getPaymentMethodsForBasketPathParameters"},{"id":864,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#getpaymentmethodsforbasketpathparameters-2.__type-24.organizationid-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getPaymentMethodsForBasketPathParameters.__type"},{"id":865,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#getpaymentmethodsforbasketpathparameters-2.__type-24.basketid-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getPaymentMethodsForBasketPathParameters.__type"},{"id":866,"kind":4194304,"name":"getPriceBooksForBasketQueryParameters","url":"modules/shopperbaskets.html#getpricebooksforbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":867,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#getpricebooksforbasketqueryparameters-2.__type-27","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.getPriceBooksForBasketQueryParameters"},{"id":868,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#getpricebooksforbasketqueryparameters-2.__type-27.siteid-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getPriceBooksForBasketQueryParameters.__type"},{"id":869,"kind":4194304,"name":"getPriceBooksForBasketPathParameters","url":"modules/shopperbaskets.html#getpricebooksforbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":870,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#getpricebooksforbasketpathparameters-2.__type-26","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.getPriceBooksForBasketPathParameters"},{"id":871,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#getpricebooksforbasketpathparameters-2.__type-26.organizationid-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getPriceBooksForBasketPathParameters.__type"},{"id":872,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#getpricebooksforbasketpathparameters-2.__type-26.basketid-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getPriceBooksForBasketPathParameters.__type"},{"id":873,"kind":4194304,"name":"getShippingMethodsForShipmentQueryParameters","url":"modules/shopperbaskets.html#getshippingmethodsforshipmentqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":874,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#getshippingmethodsforshipmentqueryparameters-2.__type-29","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.getShippingMethodsForShipmentQueryParameters"},{"id":875,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#getshippingmethodsforshipmentqueryparameters-2.__type-29.siteid-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getShippingMethodsForShipmentQueryParameters.__type"},{"id":876,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#getshippingmethodsforshipmentqueryparameters-2.__type-29.locale-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getShippingMethodsForShipmentQueryParameters.__type"},{"id":877,"kind":4194304,"name":"getShippingMethodsForShipmentPathParameters","url":"modules/shopperbaskets.html#getshippingmethodsforshipmentpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":878,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#getshippingmethodsforshipmentpathparameters-2.__type-28","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.getShippingMethodsForShipmentPathParameters"},{"id":879,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#getshippingmethodsforshipmentpathparameters-2.__type-28.organizationid-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getShippingMethodsForShipmentPathParameters.__type"},{"id":880,"kind":32,"name":"shipmentId","url":"modules/shopperbaskets.html#getshippingmethodsforshipmentpathparameters-2.__type-28.shipmentid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getShippingMethodsForShipmentPathParameters.__type"},{"id":881,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#getshippingmethodsforshipmentpathparameters-2.__type-28.basketid-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getShippingMethodsForShipmentPathParameters.__type"},{"id":882,"kind":4194304,"name":"getTaxesFromBasketQueryParameters","url":"modules/shopperbaskets.html#gettaxesfrombasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":883,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#gettaxesfrombasketqueryparameters-2.__type-31","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.getTaxesFromBasketQueryParameters"},{"id":884,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#gettaxesfrombasketqueryparameters-2.__type-31.siteid-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getTaxesFromBasketQueryParameters.__type"},{"id":885,"kind":4194304,"name":"getTaxesFromBasketPathParameters","url":"modules/shopperbaskets.html#gettaxesfrombasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":886,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#gettaxesfrombasketpathparameters-2.__type-30","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.getTaxesFromBasketPathParameters"},{"id":887,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#gettaxesfrombasketpathparameters-2.__type-30.organizationid-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getTaxesFromBasketPathParameters.__type"},{"id":888,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#gettaxesfrombasketpathparameters-2.__type-30.basketid-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getTaxesFromBasketPathParameters.__type"},{"id":889,"kind":4194304,"name":"mergeBasketQueryParameters","url":"modules/shopperbaskets.html#mergebasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":890,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#mergebasketqueryparameters-2.__type-33","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.mergeBasketQueryParameters"},{"id":891,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#mergebasketqueryparameters-2.__type-33.siteid-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.mergeBasketQueryParameters.__type"},{"id":892,"kind":32,"name":"createDestinationBasket","url":"modules/shopperbaskets.html#mergebasketqueryparameters-2.__type-33.createdestinationbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.mergeBasketQueryParameters.__type"},{"id":893,"kind":32,"name":"productItemMergeMode","url":"modules/shopperbaskets.html#mergebasketqueryparameters-2.__type-33.productitemmergemode","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.mergeBasketQueryParameters.__type"},{"id":894,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#mergebasketqueryparameters-2.__type-33.locale-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.mergeBasketQueryParameters.__type"},{"id":895,"kind":4194304,"name":"mergeBasketPathParameters","url":"modules/shopperbaskets.html#mergebasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":896,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#mergebasketpathparameters-2.__type-32","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.mergeBasketPathParameters"},{"id":897,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#mergebasketpathparameters-2.__type-32.organizationid-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.mergeBasketPathParameters.__type"},{"id":898,"kind":4194304,"name":"removeCouponFromBasketQueryParameters","url":"modules/shopperbaskets.html#removecouponfrombasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":899,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#removecouponfrombasketqueryparameters-2.__type-35","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.removeCouponFromBasketQueryParameters"},{"id":900,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#removecouponfrombasketqueryparameters-2.__type-35.siteid-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeCouponFromBasketQueryParameters.__type"},{"id":901,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#removecouponfrombasketqueryparameters-2.__type-35.locale-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeCouponFromBasketQueryParameters.__type"},{"id":902,"kind":4194304,"name":"removeCouponFromBasketPathParameters","url":"modules/shopperbaskets.html#removecouponfrombasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":903,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#removecouponfrombasketpathparameters-2.__type-34","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.removeCouponFromBasketPathParameters"},{"id":904,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#removecouponfrombasketpathparameters-2.__type-34.organizationid-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeCouponFromBasketPathParameters.__type"},{"id":905,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#removecouponfrombasketpathparameters-2.__type-34.basketid-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeCouponFromBasketPathParameters.__type"},{"id":906,"kind":32,"name":"couponItemId","url":"modules/shopperbaskets.html#removecouponfrombasketpathparameters-2.__type-34.couponitemid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeCouponFromBasketPathParameters.__type"},{"id":907,"kind":4194304,"name":"removeGiftCertificateItemFromBasketQueryParameters","url":"modules/shopperbaskets.html#removegiftcertificateitemfrombasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":908,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#removegiftcertificateitemfrombasketqueryparameters-2.__type-37","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.removeGiftCertificateItemFromBasketQueryParameters"},{"id":909,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#removegiftcertificateitemfrombasketqueryparameters-2.__type-37.siteid-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeGiftCertificateItemFromBasketQueryParameters.__type"},{"id":910,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#removegiftcertificateitemfrombasketqueryparameters-2.__type-37.locale-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeGiftCertificateItemFromBasketQueryParameters.__type"},{"id":911,"kind":4194304,"name":"removeGiftCertificateItemFromBasketPathParameters","url":"modules/shopperbaskets.html#removegiftcertificateitemfrombasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":912,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#removegiftcertificateitemfrombasketpathparameters-2.__type-36","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.removeGiftCertificateItemFromBasketPathParameters"},{"id":913,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#removegiftcertificateitemfrombasketpathparameters-2.__type-36.organizationid-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeGiftCertificateItemFromBasketPathParameters.__type"},{"id":914,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#removegiftcertificateitemfrombasketpathparameters-2.__type-36.basketid-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeGiftCertificateItemFromBasketPathParameters.__type"},{"id":915,"kind":32,"name":"giftCertificateItemId","url":"modules/shopperbaskets.html#removegiftcertificateitemfrombasketpathparameters-2.__type-36.giftcertificateitemid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeGiftCertificateItemFromBasketPathParameters.__type"},{"id":916,"kind":4194304,"name":"removeItemFromBasketQueryParameters","url":"modules/shopperbaskets.html#removeitemfrombasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":917,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#removeitemfrombasketqueryparameters-2.__type-39","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.removeItemFromBasketQueryParameters"},{"id":918,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#removeitemfrombasketqueryparameters-2.__type-39.siteid-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeItemFromBasketQueryParameters.__type"},{"id":919,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#removeitemfrombasketqueryparameters-2.__type-39.locale-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeItemFromBasketQueryParameters.__type"},{"id":920,"kind":4194304,"name":"removeItemFromBasketPathParameters","url":"modules/shopperbaskets.html#removeitemfrombasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":921,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#removeitemfrombasketpathparameters-2.__type-38","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.removeItemFromBasketPathParameters"},{"id":922,"kind":32,"name":"itemId","url":"modules/shopperbaskets.html#removeitemfrombasketpathparameters-2.__type-38.itemid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeItemFromBasketPathParameters.__type"},{"id":923,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#removeitemfrombasketpathparameters-2.__type-38.organizationid-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeItemFromBasketPathParameters.__type"},{"id":924,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#removeitemfrombasketpathparameters-2.__type-38.basketid-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeItemFromBasketPathParameters.__type"},{"id":925,"kind":4194304,"name":"removePaymentInstrumentFromBasketQueryParameters","url":"modules/shopperbaskets.html#removepaymentinstrumentfrombasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":926,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#removepaymentinstrumentfrombasketqueryparameters-2.__type-41","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.removePaymentInstrumentFromBasketQueryParameters"},{"id":927,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#removepaymentinstrumentfrombasketqueryparameters-2.__type-41.siteid-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removePaymentInstrumentFromBasketQueryParameters.__type"},{"id":928,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#removepaymentinstrumentfrombasketqueryparameters-2.__type-41.locale-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removePaymentInstrumentFromBasketQueryParameters.__type"},{"id":929,"kind":4194304,"name":"removePaymentInstrumentFromBasketPathParameters","url":"modules/shopperbaskets.html#removepaymentinstrumentfrombasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":930,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#removepaymentinstrumentfrombasketpathparameters-2.__type-40","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.removePaymentInstrumentFromBasketPathParameters"},{"id":931,"kind":32,"name":"paymentInstrumentId","url":"modules/shopperbaskets.html#removepaymentinstrumentfrombasketpathparameters-2.__type-40.paymentinstrumentid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removePaymentInstrumentFromBasketPathParameters.__type"},{"id":932,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#removepaymentinstrumentfrombasketpathparameters-2.__type-40.organizationid-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removePaymentInstrumentFromBasketPathParameters.__type"},{"id":933,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#removepaymentinstrumentfrombasketpathparameters-2.__type-40.basketid-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removePaymentInstrumentFromBasketPathParameters.__type"},{"id":934,"kind":4194304,"name":"removePriceAdjustmentFromBasketQueryParameters","url":"modules/shopperbaskets.html#removepriceadjustmentfrombasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":935,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#removepriceadjustmentfrombasketqueryparameters-2.__type-43","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.removePriceAdjustmentFromBasketQueryParameters"},{"id":936,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#removepriceadjustmentfrombasketqueryparameters-2.__type-43.siteid-21","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removePriceAdjustmentFromBasketQueryParameters.__type"},{"id":937,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#removepriceadjustmentfrombasketqueryparameters-2.__type-43.locale-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removePriceAdjustmentFromBasketQueryParameters.__type"},{"id":938,"kind":4194304,"name":"removePriceAdjustmentFromBasketPathParameters","url":"modules/shopperbaskets.html#removepriceadjustmentfrombasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":939,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#removepriceadjustmentfrombasketpathparameters-2.__type-42","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.removePriceAdjustmentFromBasketPathParameters"},{"id":940,"kind":32,"name":"priceAdjustmentId","url":"modules/shopperbaskets.html#removepriceadjustmentfrombasketpathparameters-2.__type-42.priceadjustmentid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removePriceAdjustmentFromBasketPathParameters.__type"},{"id":941,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#removepriceadjustmentfrombasketpathparameters-2.__type-42.organizationid-21","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removePriceAdjustmentFromBasketPathParameters.__type"},{"id":942,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#removepriceadjustmentfrombasketpathparameters-2.__type-42.basketid-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removePriceAdjustmentFromBasketPathParameters.__type"},{"id":943,"kind":4194304,"name":"removeShipmentFromBasketQueryParameters","url":"modules/shopperbaskets.html#removeshipmentfrombasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":944,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#removeshipmentfrombasketqueryparameters-2.__type-45","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.removeShipmentFromBasketQueryParameters"},{"id":945,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#removeshipmentfrombasketqueryparameters-2.__type-45.siteid-22","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeShipmentFromBasketQueryParameters.__type"},{"id":946,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#removeshipmentfrombasketqueryparameters-2.__type-45.locale-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeShipmentFromBasketQueryParameters.__type"},{"id":947,"kind":4194304,"name":"removeShipmentFromBasketPathParameters","url":"modules/shopperbaskets.html#removeshipmentfrombasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":948,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#removeshipmentfrombasketpathparameters-2.__type-44","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.removeShipmentFromBasketPathParameters"},{"id":949,"kind":32,"name":"shipmentId","url":"modules/shopperbaskets.html#removeshipmentfrombasketpathparameters-2.__type-44.shipmentid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeShipmentFromBasketPathParameters.__type"},{"id":950,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#removeshipmentfrombasketpathparameters-2.__type-44.organizationid-22","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeShipmentFromBasketPathParameters.__type"},{"id":951,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#removeshipmentfrombasketpathparameters-2.__type-44.basketid-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeShipmentFromBasketPathParameters.__type"},{"id":952,"kind":4194304,"name":"transferBasketQueryParameters","url":"modules/shopperbaskets.html#transferbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":953,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#transferbasketqueryparameters-2.__type-47","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.transferBasketQueryParameters"},{"id":954,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#transferbasketqueryparameters-2.__type-47.siteid-23","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.transferBasketQueryParameters.__type"},{"id":955,"kind":32,"name":"overrideExisting","url":"modules/shopperbaskets.html#transferbasketqueryparameters-2.__type-47.overrideexisting","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.transferBasketQueryParameters.__type"},{"id":956,"kind":32,"name":"merge","url":"modules/shopperbaskets.html#transferbasketqueryparameters-2.__type-47.merge","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.transferBasketQueryParameters.__type"},{"id":957,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#transferbasketqueryparameters-2.__type-47.locale-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.transferBasketQueryParameters.__type"},{"id":958,"kind":4194304,"name":"transferBasketPathParameters","url":"modules/shopperbaskets.html#transferbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":959,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#transferbasketpathparameters-2.__type-46","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.transferBasketPathParameters"},{"id":960,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#transferbasketpathparameters-2.__type-46.organizationid-23","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.transferBasketPathParameters.__type"},{"id":961,"kind":4194304,"name":"updateAsAgentBasketQueryParameters","url":"modules/shopperbaskets.html#updateasagentbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":962,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updateasagentbasketqueryparameters-2.__type-49","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateAsAgentBasketQueryParameters"},{"id":963,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#updateasagentbasketqueryparameters-2.__type-49.siteid-24","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateAsAgentBasketQueryParameters.__type"},{"id":964,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#updateasagentbasketqueryparameters-2.__type-49.locale-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateAsAgentBasketQueryParameters.__type"},{"id":965,"kind":4194304,"name":"updateAsAgentBasketPathParameters","url":"modules/shopperbaskets.html#updateasagentbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":966,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updateasagentbasketpathparameters-2.__type-48","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateAsAgentBasketPathParameters"},{"id":967,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#updateasagentbasketpathparameters-2.__type-48.organizationid-24","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateAsAgentBasketPathParameters.__type"},{"id":968,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#updateasagentbasketpathparameters-2.__type-48.basketid-21","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateAsAgentBasketPathParameters.__type"},{"id":969,"kind":4194304,"name":"updateAsStorefrontBasketQueryParameters","url":"modules/shopperbaskets.html#updateasstorefrontbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":970,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updateasstorefrontbasketqueryparameters-2.__type-51","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateAsStorefrontBasketQueryParameters"},{"id":971,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#updateasstorefrontbasketqueryparameters-2.__type-51.siteid-25","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateAsStorefrontBasketQueryParameters.__type"},{"id":972,"kind":32,"name":"exchange","url":"modules/shopperbaskets.html#updateasstorefrontbasketqueryparameters-2.__type-51.exchange","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateAsStorefrontBasketQueryParameters.__type"},{"id":973,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#updateasstorefrontbasketqueryparameters-2.__type-51.locale-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateAsStorefrontBasketQueryParameters.__type"},{"id":974,"kind":4194304,"name":"updateAsStorefrontBasketPathParameters","url":"modules/shopperbaskets.html#updateasstorefrontbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":975,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updateasstorefrontbasketpathparameters-2.__type-50","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateAsStorefrontBasketPathParameters"},{"id":976,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#updateasstorefrontbasketpathparameters-2.__type-50.organizationid-25","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateAsStorefrontBasketPathParameters.__type"},{"id":977,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#updateasstorefrontbasketpathparameters-2.__type-50.basketid-22","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateAsStorefrontBasketPathParameters.__type"},{"id":978,"kind":4194304,"name":"updateBasketQueryParameters","url":"modules/shopperbaskets.html#updatebasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":979,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updatebasketqueryparameters-2.__type-53","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateBasketQueryParameters"},{"id":980,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#updatebasketqueryparameters-2.__type-53.siteid-26","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateBasketQueryParameters.__type"},{"id":981,"kind":32,"name":"removeExternalTax","url":"modules/shopperbaskets.html#updatebasketqueryparameters-2.__type-53.removeexternaltax","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateBasketQueryParameters.__type"},{"id":982,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#updatebasketqueryparameters-2.__type-53.locale-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateBasketQueryParameters.__type"},{"id":983,"kind":4194304,"name":"updateBasketPathParameters","url":"modules/shopperbaskets.html#updatebasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":984,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updatebasketpathparameters-2.__type-52","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateBasketPathParameters"},{"id":985,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#updatebasketpathparameters-2.__type-52.organizationid-26","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateBasketPathParameters.__type"},{"id":986,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#updatebasketpathparameters-2.__type-52.basketid-23","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateBasketPathParameters.__type"},{"id":987,"kind":4194304,"name":"updateBillingAddressForBasketQueryParameters","url":"modules/shopperbaskets.html#updatebillingaddressforbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":988,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updatebillingaddressforbasketqueryparameters-2.__type-55","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateBillingAddressForBasketQueryParameters"},{"id":989,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#updatebillingaddressforbasketqueryparameters-2.__type-55.siteid-27","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateBillingAddressForBasketQueryParameters.__type"},{"id":990,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#updatebillingaddressforbasketqueryparameters-2.__type-55.locale-21","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateBillingAddressForBasketQueryParameters.__type"},{"id":991,"kind":32,"name":"useAsShipping","url":"modules/shopperbaskets.html#updatebillingaddressforbasketqueryparameters-2.__type-55.useasshipping","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateBillingAddressForBasketQueryParameters.__type"},{"id":992,"kind":32,"name":"removeExternalTax","url":"modules/shopperbaskets.html#updatebillingaddressforbasketqueryparameters-2.__type-55.removeexternaltax-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateBillingAddressForBasketQueryParameters.__type"},{"id":993,"kind":4194304,"name":"updateBillingAddressForBasketPathParameters","url":"modules/shopperbaskets.html#updatebillingaddressforbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":994,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updatebillingaddressforbasketpathparameters-2.__type-54","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateBillingAddressForBasketPathParameters"},{"id":995,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#updatebillingaddressforbasketpathparameters-2.__type-54.organizationid-27","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateBillingAddressForBasketPathParameters.__type"},{"id":996,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#updatebillingaddressforbasketpathparameters-2.__type-54.basketid-24","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateBillingAddressForBasketPathParameters.__type"},{"id":997,"kind":4194304,"name":"updateCustomerForBasketQueryParameters","url":"modules/shopperbaskets.html#updatecustomerforbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":998,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updatecustomerforbasketqueryparameters-2.__type-57","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateCustomerForBasketQueryParameters"},{"id":999,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#updatecustomerforbasketqueryparameters-2.__type-57.siteid-28","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateCustomerForBasketQueryParameters.__type"},{"id":1000,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#updatecustomerforbasketqueryparameters-2.__type-57.locale-22","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateCustomerForBasketQueryParameters.__type"},{"id":1001,"kind":4194304,"name":"updateCustomerForBasketPathParameters","url":"modules/shopperbaskets.html#updatecustomerforbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1002,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updatecustomerforbasketpathparameters-2.__type-56","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateCustomerForBasketPathParameters"},{"id":1003,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#updatecustomerforbasketpathparameters-2.__type-56.organizationid-28","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateCustomerForBasketPathParameters.__type"},{"id":1004,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#updatecustomerforbasketpathparameters-2.__type-56.basketid-25","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateCustomerForBasketPathParameters.__type"},{"id":1005,"kind":4194304,"name":"updateGiftCertificateItemInBasketQueryParameters","url":"modules/shopperbaskets.html#updategiftcertificateiteminbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1006,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updategiftcertificateiteminbasketqueryparameters-2.__type-59","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateGiftCertificateItemInBasketQueryParameters"},{"id":1007,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#updategiftcertificateiteminbasketqueryparameters-2.__type-59.siteid-29","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateGiftCertificateItemInBasketQueryParameters.__type"},{"id":1008,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#updategiftcertificateiteminbasketqueryparameters-2.__type-59.locale-23","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateGiftCertificateItemInBasketQueryParameters.__type"},{"id":1009,"kind":4194304,"name":"updateGiftCertificateItemInBasketPathParameters","url":"modules/shopperbaskets.html#updategiftcertificateiteminbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1010,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updategiftcertificateiteminbasketpathparameters-2.__type-58","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateGiftCertificateItemInBasketPathParameters"},{"id":1011,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#updategiftcertificateiteminbasketpathparameters-2.__type-58.organizationid-29","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateGiftCertificateItemInBasketPathParameters.__type"},{"id":1012,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#updategiftcertificateiteminbasketpathparameters-2.__type-58.basketid-26","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateGiftCertificateItemInBasketPathParameters.__type"},{"id":1013,"kind":32,"name":"giftCertificateItemId","url":"modules/shopperbaskets.html#updategiftcertificateiteminbasketpathparameters-2.__type-58.giftcertificateitemid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateGiftCertificateItemInBasketPathParameters.__type"},{"id":1014,"kind":4194304,"name":"updateItemInBasketQueryParameters","url":"modules/shopperbaskets.html#updateiteminbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1015,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updateiteminbasketqueryparameters-2.__type-61","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateItemInBasketQueryParameters"},{"id":1016,"kind":32,"name":"removeExternalTax","url":"modules/shopperbaskets.html#updateiteminbasketqueryparameters-2.__type-61.removeexternaltax-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateItemInBasketQueryParameters.__type"},{"id":1017,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#updateiteminbasketqueryparameters-2.__type-61.siteid-30","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateItemInBasketQueryParameters.__type"},{"id":1018,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#updateiteminbasketqueryparameters-2.__type-61.locale-24","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateItemInBasketQueryParameters.__type"},{"id":1019,"kind":4194304,"name":"updateItemInBasketPathParameters","url":"modules/shopperbaskets.html#updateiteminbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1020,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updateiteminbasketpathparameters-2.__type-60","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateItemInBasketPathParameters"},{"id":1021,"kind":32,"name":"itemId","url":"modules/shopperbaskets.html#updateiteminbasketpathparameters-2.__type-60.itemid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateItemInBasketPathParameters.__type"},{"id":1022,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#updateiteminbasketpathparameters-2.__type-60.organizationid-30","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateItemInBasketPathParameters.__type"},{"id":1023,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#updateiteminbasketpathparameters-2.__type-60.basketid-27","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateItemInBasketPathParameters.__type"},{"id":1024,"kind":4194304,"name":"updateItemsInBasketQueryParameters","url":"modules/shopperbaskets.html#updateitemsinbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1025,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updateitemsinbasketqueryparameters-2.__type-63","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateItemsInBasketQueryParameters"},{"id":1026,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#updateitemsinbasketqueryparameters-2.__type-63.siteid-31","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateItemsInBasketQueryParameters.__type"},{"id":1027,"kind":32,"name":"removeExternalTax","url":"modules/shopperbaskets.html#updateitemsinbasketqueryparameters-2.__type-63.removeexternaltax-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateItemsInBasketQueryParameters.__type"},{"id":1028,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#updateitemsinbasketqueryparameters-2.__type-63.locale-25","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateItemsInBasketQueryParameters.__type"},{"id":1029,"kind":4194304,"name":"updateItemsInBasketPathParameters","url":"modules/shopperbaskets.html#updateitemsinbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1030,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updateitemsinbasketpathparameters-2.__type-62","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateItemsInBasketPathParameters"},{"id":1031,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#updateitemsinbasketpathparameters-2.__type-62.organizationid-31","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateItemsInBasketPathParameters.__type"},{"id":1032,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#updateitemsinbasketpathparameters-2.__type-62.basketid-28","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateItemsInBasketPathParameters.__type"},{"id":1033,"kind":4194304,"name":"updatePaymentInstrumentInBasketQueryParameters","url":"modules/shopperbaskets.html#updatepaymentinstrumentinbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1034,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updatepaymentinstrumentinbasketqueryparameters-2.__type-65","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updatePaymentInstrumentInBasketQueryParameters"},{"id":1035,"kind":32,"name":"removeExternalTax","url":"modules/shopperbaskets.html#updatepaymentinstrumentinbasketqueryparameters-2.__type-65.removeexternaltax-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updatePaymentInstrumentInBasketQueryParameters.__type"},{"id":1036,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#updatepaymentinstrumentinbasketqueryparameters-2.__type-65.siteid-32","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updatePaymentInstrumentInBasketQueryParameters.__type"},{"id":1037,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#updatepaymentinstrumentinbasketqueryparameters-2.__type-65.locale-26","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updatePaymentInstrumentInBasketQueryParameters.__type"},{"id":1038,"kind":4194304,"name":"updatePaymentInstrumentInBasketPathParameters","url":"modules/shopperbaskets.html#updatepaymentinstrumentinbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1039,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updatepaymentinstrumentinbasketpathparameters-2.__type-64","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updatePaymentInstrumentInBasketPathParameters"},{"id":1040,"kind":32,"name":"paymentInstrumentId","url":"modules/shopperbaskets.html#updatepaymentinstrumentinbasketpathparameters-2.__type-64.paymentinstrumentid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updatePaymentInstrumentInBasketPathParameters.__type"},{"id":1041,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#updatepaymentinstrumentinbasketpathparameters-2.__type-64.organizationid-32","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updatePaymentInstrumentInBasketPathParameters.__type"},{"id":1042,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#updatepaymentinstrumentinbasketpathparameters-2.__type-64.basketid-29","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updatePaymentInstrumentInBasketPathParameters.__type"},{"id":1043,"kind":4194304,"name":"updatePriceAdjustmentInBasketQueryParameters","url":"modules/shopperbaskets.html#updatepriceadjustmentinbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1044,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updatepriceadjustmentinbasketqueryparameters-2.__type-67","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updatePriceAdjustmentInBasketQueryParameters"},{"id":1045,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#updatepriceadjustmentinbasketqueryparameters-2.__type-67.siteid-33","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updatePriceAdjustmentInBasketQueryParameters.__type"},{"id":1046,"kind":4194304,"name":"updatePriceAdjustmentInBasketPathParameters","url":"modules/shopperbaskets.html#updatepriceadjustmentinbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1047,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updatepriceadjustmentinbasketpathparameters-2.__type-66","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updatePriceAdjustmentInBasketPathParameters"},{"id":1048,"kind":32,"name":"priceAdjustmentId","url":"modules/shopperbaskets.html#updatepriceadjustmentinbasketpathparameters-2.__type-66.priceadjustmentid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updatePriceAdjustmentInBasketPathParameters.__type"},{"id":1049,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#updatepriceadjustmentinbasketpathparameters-2.__type-66.organizationid-33","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updatePriceAdjustmentInBasketPathParameters.__type"},{"id":1050,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#updatepriceadjustmentinbasketpathparameters-2.__type-66.basketid-30","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updatePriceAdjustmentInBasketPathParameters.__type"},{"id":1051,"kind":4194304,"name":"updateShipmentForBasketQueryParameters","url":"modules/shopperbaskets.html#updateshipmentforbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1052,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updateshipmentforbasketqueryparameters-2.__type-69","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateShipmentForBasketQueryParameters"},{"id":1053,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#updateshipmentforbasketqueryparameters-2.__type-69.siteid-34","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateShipmentForBasketQueryParameters.__type"},{"id":1054,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#updateshipmentforbasketqueryparameters-2.__type-69.locale-27","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateShipmentForBasketQueryParameters.__type"},{"id":1055,"kind":4194304,"name":"updateShipmentForBasketPathParameters","url":"modules/shopperbaskets.html#updateshipmentforbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1056,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updateshipmentforbasketpathparameters-2.__type-68","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateShipmentForBasketPathParameters"},{"id":1057,"kind":32,"name":"shipmentId","url":"modules/shopperbaskets.html#updateshipmentforbasketpathparameters-2.__type-68.shipmentid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateShipmentForBasketPathParameters.__type"},{"id":1058,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#updateshipmentforbasketpathparameters-2.__type-68.organizationid-34","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateShipmentForBasketPathParameters.__type"},{"id":1059,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#updateshipmentforbasketpathparameters-2.__type-68.basketid-31","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateShipmentForBasketPathParameters.__type"},{"id":1060,"kind":4194304,"name":"updateShippingAddressForShipmentQueryParameters","url":"modules/shopperbaskets.html#updateshippingaddressforshipmentqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1061,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updateshippingaddressforshipmentqueryparameters-2.__type-71","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateShippingAddressForShipmentQueryParameters"},{"id":1062,"kind":32,"name":"useAsBilling","url":"modules/shopperbaskets.html#updateshippingaddressforshipmentqueryparameters-2.__type-71.useasbilling","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateShippingAddressForShipmentQueryParameters.__type"},{"id":1063,"kind":32,"name":"removeExternalTax","url":"modules/shopperbaskets.html#updateshippingaddressforshipmentqueryparameters-2.__type-71.removeexternaltax-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateShippingAddressForShipmentQueryParameters.__type"},{"id":1064,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#updateshippingaddressforshipmentqueryparameters-2.__type-71.siteid-35","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateShippingAddressForShipmentQueryParameters.__type"},{"id":1065,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#updateshippingaddressforshipmentqueryparameters-2.__type-71.locale-28","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateShippingAddressForShipmentQueryParameters.__type"},{"id":1066,"kind":4194304,"name":"updateShippingAddressForShipmentPathParameters","url":"modules/shopperbaskets.html#updateshippingaddressforshipmentpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1067,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updateshippingaddressforshipmentpathparameters-2.__type-70","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateShippingAddressForShipmentPathParameters"},{"id":1068,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#updateshippingaddressforshipmentpathparameters-2.__type-70.organizationid-35","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateShippingAddressForShipmentPathParameters.__type"},{"id":1069,"kind":32,"name":"shipmentId","url":"modules/shopperbaskets.html#updateshippingaddressforshipmentpathparameters-2.__type-70.shipmentid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateShippingAddressForShipmentPathParameters.__type"},{"id":1070,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#updateshippingaddressforshipmentpathparameters-2.__type-70.basketid-32","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateShippingAddressForShipmentPathParameters.__type"},{"id":1071,"kind":4194304,"name":"updateShippingMethodForShipmentQueryParameters","url":"modules/shopperbaskets.html#updateshippingmethodforshipmentqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1072,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updateshippingmethodforshipmentqueryparameters-2.__type-73","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateShippingMethodForShipmentQueryParameters"},{"id":1073,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#updateshippingmethodforshipmentqueryparameters-2.__type-73.siteid-36","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateShippingMethodForShipmentQueryParameters.__type"},{"id":1074,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#updateshippingmethodforshipmentqueryparameters-2.__type-73.locale-29","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateShippingMethodForShipmentQueryParameters.__type"},{"id":1075,"kind":4194304,"name":"updateShippingMethodForShipmentPathParameters","url":"modules/shopperbaskets.html#updateshippingmethodforshipmentpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1076,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updateshippingmethodforshipmentpathparameters-2.__type-72","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateShippingMethodForShipmentPathParameters"},{"id":1077,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#updateshippingmethodforshipmentpathparameters-2.__type-72.organizationid-36","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateShippingMethodForShipmentPathParameters.__type"},{"id":1078,"kind":32,"name":"shipmentId","url":"modules/shopperbaskets.html#updateshippingmethodforshipmentpathparameters-2.__type-72.shipmentid-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateShippingMethodForShipmentPathParameters.__type"},{"id":1079,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#updateshippingmethodforshipmentpathparameters-2.__type-72.basketid-33","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateShippingMethodForShipmentPathParameters.__type"},{"id":1080,"kind":4194304,"name":"ShopperBasketsPathParameters","url":"modules/shopperbaskets.html#shopperbasketspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1081,"kind":4194304,"name":"ShopperBasketsQueryParameters","url":"modules/shopperbaskets.html#shopperbasketsqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1082,"kind":4194304,"name":"ShopperBasketsParameters","url":"modules/shopperbaskets.html#shopperbasketsparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1083,"kind":16777216,"name":"CreateBasketTaxModeEnum","url":"modules/shopperbaskets.html#createbaskettaxmodeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1084,"kind":16777216,"name":"MergeBasketProductItemMergeModeEnum","url":"modules/shopperbaskets.html#mergebasketproductitemmergemodeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1085,"kind":16777216,"name":"addCouponToBasketQueryParameters","url":"modules/shopperbaskets.html#addcoupontobasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1086,"kind":16777216,"name":"addCouponToBasketPathParameters","url":"modules/shopperbaskets.html#addcoupontobasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1087,"kind":16777216,"name":"addGiftCertificateItemToBasketQueryParameters","url":"modules/shopperbaskets.html#addgiftcertificateitemtobasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1088,"kind":16777216,"name":"addGiftCertificateItemToBasketPathParameters","url":"modules/shopperbaskets.html#addgiftcertificateitemtobasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1089,"kind":16777216,"name":"addItemToBasketQueryParameters","url":"modules/shopperbaskets.html#additemtobasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1090,"kind":16777216,"name":"addItemToBasketPathParameters","url":"modules/shopperbaskets.html#additemtobasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1091,"kind":16777216,"name":"addPaymentInstrumentToBasketQueryParameters","url":"modules/shopperbaskets.html#addpaymentinstrumenttobasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1092,"kind":16777216,"name":"addPaymentInstrumentToBasketPathParameters","url":"modules/shopperbaskets.html#addpaymentinstrumenttobasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1093,"kind":16777216,"name":"addPriceAdjustmentToBasketQueryParameters","url":"modules/shopperbaskets.html#addpriceadjustmenttobasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1094,"kind":16777216,"name":"addPriceAdjustmentToBasketPathParameters","url":"modules/shopperbaskets.html#addpriceadjustmenttobasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1095,"kind":16777216,"name":"addPriceBooksToBasketQueryParameters","url":"modules/shopperbaskets.html#addpricebookstobasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1096,"kind":16777216,"name":"addPriceBooksToBasketPathParameters","url":"modules/shopperbaskets.html#addpricebookstobasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1097,"kind":16777216,"name":"addTaxesForBasketQueryParameters","url":"modules/shopperbaskets.html#addtaxesforbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1098,"kind":16777216,"name":"addTaxesForBasketPathParameters","url":"modules/shopperbaskets.html#addtaxesforbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1099,"kind":16777216,"name":"addTaxesForBasketItemQueryParameters","url":"modules/shopperbaskets.html#addtaxesforbasketitemqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1100,"kind":16777216,"name":"addTaxesForBasketItemPathParameters","url":"modules/shopperbaskets.html#addtaxesforbasketitempathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1101,"kind":16777216,"name":"createBasketQueryParameters","url":"modules/shopperbaskets.html#createbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1102,"kind":16777216,"name":"createBasketPathParameters","url":"modules/shopperbaskets.html#createbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1103,"kind":16777216,"name":"createShipmentForBasketQueryParameters","url":"modules/shopperbaskets.html#createshipmentforbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1104,"kind":16777216,"name":"createShipmentForBasketPathParameters","url":"modules/shopperbaskets.html#createshipmentforbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1105,"kind":16777216,"name":"deleteBasketQueryParameters","url":"modules/shopperbaskets.html#deletebasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1106,"kind":16777216,"name":"deleteBasketPathParameters","url":"modules/shopperbaskets.html#deletebasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1107,"kind":16777216,"name":"getBasketQueryParameters","url":"modules/shopperbaskets.html#getbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1108,"kind":16777216,"name":"getBasketPathParameters","url":"modules/shopperbaskets.html#getbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1109,"kind":16777216,"name":"getPaymentMethodsForBasketQueryParameters","url":"modules/shopperbaskets.html#getpaymentmethodsforbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1110,"kind":16777216,"name":"getPaymentMethodsForBasketPathParameters","url":"modules/shopperbaskets.html#getpaymentmethodsforbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1111,"kind":16777216,"name":"getPriceBooksForBasketQueryParameters","url":"modules/shopperbaskets.html#getpricebooksforbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1112,"kind":16777216,"name":"getPriceBooksForBasketPathParameters","url":"modules/shopperbaskets.html#getpricebooksforbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1113,"kind":16777216,"name":"getShippingMethodsForShipmentQueryParameters","url":"modules/shopperbaskets.html#getshippingmethodsforshipmentqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1114,"kind":16777216,"name":"getShippingMethodsForShipmentPathParameters","url":"modules/shopperbaskets.html#getshippingmethodsforshipmentpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1115,"kind":16777216,"name":"getTaxesFromBasketQueryParameters","url":"modules/shopperbaskets.html#gettaxesfrombasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1116,"kind":16777216,"name":"getTaxesFromBasketPathParameters","url":"modules/shopperbaskets.html#gettaxesfrombasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1117,"kind":16777216,"name":"mergeBasketQueryParameters","url":"modules/shopperbaskets.html#mergebasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1118,"kind":16777216,"name":"mergeBasketPathParameters","url":"modules/shopperbaskets.html#mergebasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1119,"kind":16777216,"name":"removeCouponFromBasketQueryParameters","url":"modules/shopperbaskets.html#removecouponfrombasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1120,"kind":16777216,"name":"removeCouponFromBasketPathParameters","url":"modules/shopperbaskets.html#removecouponfrombasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1121,"kind":16777216,"name":"removeGiftCertificateItemFromBasketQueryParameters","url":"modules/shopperbaskets.html#removegiftcertificateitemfrombasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1122,"kind":16777216,"name":"removeGiftCertificateItemFromBasketPathParameters","url":"modules/shopperbaskets.html#removegiftcertificateitemfrombasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1123,"kind":16777216,"name":"removeItemFromBasketQueryParameters","url":"modules/shopperbaskets.html#removeitemfrombasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1124,"kind":16777216,"name":"removeItemFromBasketPathParameters","url":"modules/shopperbaskets.html#removeitemfrombasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1125,"kind":16777216,"name":"removePaymentInstrumentFromBasketQueryParameters","url":"modules/shopperbaskets.html#removepaymentinstrumentfrombasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1126,"kind":16777216,"name":"removePaymentInstrumentFromBasketPathParameters","url":"modules/shopperbaskets.html#removepaymentinstrumentfrombasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1127,"kind":16777216,"name":"removePriceAdjustmentFromBasketQueryParameters","url":"modules/shopperbaskets.html#removepriceadjustmentfrombasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1128,"kind":16777216,"name":"removePriceAdjustmentFromBasketPathParameters","url":"modules/shopperbaskets.html#removepriceadjustmentfrombasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1129,"kind":16777216,"name":"removeShipmentFromBasketQueryParameters","url":"modules/shopperbaskets.html#removeshipmentfrombasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1130,"kind":16777216,"name":"removeShipmentFromBasketPathParameters","url":"modules/shopperbaskets.html#removeshipmentfrombasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1131,"kind":16777216,"name":"transferBasketQueryParameters","url":"modules/shopperbaskets.html#transferbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1132,"kind":16777216,"name":"transferBasketPathParameters","url":"modules/shopperbaskets.html#transferbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1133,"kind":16777216,"name":"updateAsAgentBasketQueryParameters","url":"modules/shopperbaskets.html#updateasagentbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1134,"kind":16777216,"name":"updateAsAgentBasketPathParameters","url":"modules/shopperbaskets.html#updateasagentbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1135,"kind":16777216,"name":"updateAsStorefrontBasketQueryParameters","url":"modules/shopperbaskets.html#updateasstorefrontbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1136,"kind":16777216,"name":"updateAsStorefrontBasketPathParameters","url":"modules/shopperbaskets.html#updateasstorefrontbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1137,"kind":16777216,"name":"updateBasketQueryParameters","url":"modules/shopperbaskets.html#updatebasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1138,"kind":16777216,"name":"updateBasketPathParameters","url":"modules/shopperbaskets.html#updatebasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1139,"kind":16777216,"name":"updateBillingAddressForBasketQueryParameters","url":"modules/shopperbaskets.html#updatebillingaddressforbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1140,"kind":16777216,"name":"updateBillingAddressForBasketPathParameters","url":"modules/shopperbaskets.html#updatebillingaddressforbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1141,"kind":16777216,"name":"updateCustomerForBasketQueryParameters","url":"modules/shopperbaskets.html#updatecustomerforbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1142,"kind":16777216,"name":"updateCustomerForBasketPathParameters","url":"modules/shopperbaskets.html#updatecustomerforbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1143,"kind":16777216,"name":"updateGiftCertificateItemInBasketQueryParameters","url":"modules/shopperbaskets.html#updategiftcertificateiteminbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1144,"kind":16777216,"name":"updateGiftCertificateItemInBasketPathParameters","url":"modules/shopperbaskets.html#updategiftcertificateiteminbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1145,"kind":16777216,"name":"updateItemInBasketQueryParameters","url":"modules/shopperbaskets.html#updateiteminbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1146,"kind":16777216,"name":"updateItemInBasketPathParameters","url":"modules/shopperbaskets.html#updateiteminbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1147,"kind":16777216,"name":"updateItemsInBasketQueryParameters","url":"modules/shopperbaskets.html#updateitemsinbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1148,"kind":16777216,"name":"updateItemsInBasketPathParameters","url":"modules/shopperbaskets.html#updateitemsinbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1149,"kind":16777216,"name":"updatePaymentInstrumentInBasketQueryParameters","url":"modules/shopperbaskets.html#updatepaymentinstrumentinbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1150,"kind":16777216,"name":"updatePaymentInstrumentInBasketPathParameters","url":"modules/shopperbaskets.html#updatepaymentinstrumentinbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1151,"kind":16777216,"name":"updatePriceAdjustmentInBasketQueryParameters","url":"modules/shopperbaskets.html#updatepriceadjustmentinbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1152,"kind":16777216,"name":"updatePriceAdjustmentInBasketPathParameters","url":"modules/shopperbaskets.html#updatepriceadjustmentinbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1153,"kind":16777216,"name":"updateShipmentForBasketQueryParameters","url":"modules/shopperbaskets.html#updateshipmentforbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1154,"kind":16777216,"name":"updateShipmentForBasketPathParameters","url":"modules/shopperbaskets.html#updateshipmentforbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1155,"kind":16777216,"name":"updateShippingAddressForShipmentQueryParameters","url":"modules/shopperbaskets.html#updateshippingaddressforshipmentqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1156,"kind":16777216,"name":"updateShippingAddressForShipmentPathParameters","url":"modules/shopperbaskets.html#updateshippingaddressforshipmentpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1157,"kind":16777216,"name":"updateShippingMethodForShipmentQueryParameters","url":"modules/shopperbaskets.html#updateshippingmethodforshipmentqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1158,"kind":16777216,"name":"updateShippingMethodForShipmentPathParameters","url":"modules/shopperbaskets.html#updateshippingmethodforshipmentpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1159,"kind":16777216,"name":"ShopperBasketsPathParameters","url":"modules/shopperbaskets.html#shopperbasketspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1160,"kind":16777216,"name":"ShopperBasketsQueryParameters","url":"modules/shopperbaskets.html#shopperbasketsqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1161,"kind":16777216,"name":"ShopperBasketsParameters","url":"modules/shopperbaskets.html#shopperbasketsparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1162,"kind":16777216,"name":"ShopperBaskets","url":"modules/shopperbaskets.html#shopperbaskets-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1163,"kind":16777216,"name":"defaultBaseUri","url":"modules/shopperbaskets.html#defaultbaseuri","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1164,"kind":16777216,"name":"CreateBasketTaxModeEnum","url":"modules/shopperbaskets.html#createbaskettaxmodeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1165,"kind":16777216,"name":"MergeBasketProductItemMergeModeEnum","url":"modules/shopperbaskets.html#mergebasketproductitemmergemodeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1166,"kind":16777216,"name":"addCouponToBasketQueryParameters","url":"modules/shopperbaskets.html#addcoupontobasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1167,"kind":16777216,"name":"addCouponToBasketPathParameters","url":"modules/shopperbaskets.html#addcoupontobasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1168,"kind":16777216,"name":"addGiftCertificateItemToBasketQueryParameters","url":"modules/shopperbaskets.html#addgiftcertificateitemtobasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1169,"kind":16777216,"name":"addGiftCertificateItemToBasketPathParameters","url":"modules/shopperbaskets.html#addgiftcertificateitemtobasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1170,"kind":16777216,"name":"addItemToBasketQueryParameters","url":"modules/shopperbaskets.html#additemtobasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1171,"kind":16777216,"name":"addItemToBasketPathParameters","url":"modules/shopperbaskets.html#additemtobasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1172,"kind":16777216,"name":"addPaymentInstrumentToBasketQueryParameters","url":"modules/shopperbaskets.html#addpaymentinstrumenttobasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1173,"kind":16777216,"name":"addPaymentInstrumentToBasketPathParameters","url":"modules/shopperbaskets.html#addpaymentinstrumenttobasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1174,"kind":16777216,"name":"addPriceAdjustmentToBasketQueryParameters","url":"modules/shopperbaskets.html#addpriceadjustmenttobasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1175,"kind":16777216,"name":"addPriceAdjustmentToBasketPathParameters","url":"modules/shopperbaskets.html#addpriceadjustmenttobasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1176,"kind":16777216,"name":"addPriceBooksToBasketQueryParameters","url":"modules/shopperbaskets.html#addpricebookstobasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1177,"kind":16777216,"name":"addPriceBooksToBasketPathParameters","url":"modules/shopperbaskets.html#addpricebookstobasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1178,"kind":16777216,"name":"addTaxesForBasketQueryParameters","url":"modules/shopperbaskets.html#addtaxesforbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1179,"kind":16777216,"name":"addTaxesForBasketPathParameters","url":"modules/shopperbaskets.html#addtaxesforbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1180,"kind":16777216,"name":"addTaxesForBasketItemQueryParameters","url":"modules/shopperbaskets.html#addtaxesforbasketitemqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1181,"kind":16777216,"name":"addTaxesForBasketItemPathParameters","url":"modules/shopperbaskets.html#addtaxesforbasketitempathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1182,"kind":16777216,"name":"createBasketQueryParameters","url":"modules/shopperbaskets.html#createbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1183,"kind":16777216,"name":"createBasketPathParameters","url":"modules/shopperbaskets.html#createbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1184,"kind":16777216,"name":"createShipmentForBasketQueryParameters","url":"modules/shopperbaskets.html#createshipmentforbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1185,"kind":16777216,"name":"createShipmentForBasketPathParameters","url":"modules/shopperbaskets.html#createshipmentforbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1186,"kind":16777216,"name":"deleteBasketQueryParameters","url":"modules/shopperbaskets.html#deletebasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1187,"kind":16777216,"name":"deleteBasketPathParameters","url":"modules/shopperbaskets.html#deletebasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1188,"kind":16777216,"name":"getBasketQueryParameters","url":"modules/shopperbaskets.html#getbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1189,"kind":16777216,"name":"getBasketPathParameters","url":"modules/shopperbaskets.html#getbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1190,"kind":16777216,"name":"getPaymentMethodsForBasketQueryParameters","url":"modules/shopperbaskets.html#getpaymentmethodsforbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1191,"kind":16777216,"name":"getPaymentMethodsForBasketPathParameters","url":"modules/shopperbaskets.html#getpaymentmethodsforbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1192,"kind":16777216,"name":"getPriceBooksForBasketQueryParameters","url":"modules/shopperbaskets.html#getpricebooksforbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1193,"kind":16777216,"name":"getPriceBooksForBasketPathParameters","url":"modules/shopperbaskets.html#getpricebooksforbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1194,"kind":16777216,"name":"getShippingMethodsForShipmentQueryParameters","url":"modules/shopperbaskets.html#getshippingmethodsforshipmentqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1195,"kind":16777216,"name":"getShippingMethodsForShipmentPathParameters","url":"modules/shopperbaskets.html#getshippingmethodsforshipmentpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1196,"kind":16777216,"name":"getTaxesFromBasketQueryParameters","url":"modules/shopperbaskets.html#gettaxesfrombasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1197,"kind":16777216,"name":"getTaxesFromBasketPathParameters","url":"modules/shopperbaskets.html#gettaxesfrombasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1198,"kind":16777216,"name":"mergeBasketQueryParameters","url":"modules/shopperbaskets.html#mergebasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1199,"kind":16777216,"name":"mergeBasketPathParameters","url":"modules/shopperbaskets.html#mergebasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1200,"kind":16777216,"name":"removeCouponFromBasketQueryParameters","url":"modules/shopperbaskets.html#removecouponfrombasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1201,"kind":16777216,"name":"removeCouponFromBasketPathParameters","url":"modules/shopperbaskets.html#removecouponfrombasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1202,"kind":16777216,"name":"removeGiftCertificateItemFromBasketQueryParameters","url":"modules/shopperbaskets.html#removegiftcertificateitemfrombasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1203,"kind":16777216,"name":"removeGiftCertificateItemFromBasketPathParameters","url":"modules/shopperbaskets.html#removegiftcertificateitemfrombasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1204,"kind":16777216,"name":"removeItemFromBasketQueryParameters","url":"modules/shopperbaskets.html#removeitemfrombasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1205,"kind":16777216,"name":"removeItemFromBasketPathParameters","url":"modules/shopperbaskets.html#removeitemfrombasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1206,"kind":16777216,"name":"removePaymentInstrumentFromBasketQueryParameters","url":"modules/shopperbaskets.html#removepaymentinstrumentfrombasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1207,"kind":16777216,"name":"removePaymentInstrumentFromBasketPathParameters","url":"modules/shopperbaskets.html#removepaymentinstrumentfrombasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1208,"kind":16777216,"name":"removePriceAdjustmentFromBasketQueryParameters","url":"modules/shopperbaskets.html#removepriceadjustmentfrombasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1209,"kind":16777216,"name":"removePriceAdjustmentFromBasketPathParameters","url":"modules/shopperbaskets.html#removepriceadjustmentfrombasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1210,"kind":16777216,"name":"removeShipmentFromBasketQueryParameters","url":"modules/shopperbaskets.html#removeshipmentfrombasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1211,"kind":16777216,"name":"removeShipmentFromBasketPathParameters","url":"modules/shopperbaskets.html#removeshipmentfrombasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1212,"kind":16777216,"name":"transferBasketQueryParameters","url":"modules/shopperbaskets.html#transferbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1213,"kind":16777216,"name":"transferBasketPathParameters","url":"modules/shopperbaskets.html#transferbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1214,"kind":16777216,"name":"updateAsAgentBasketQueryParameters","url":"modules/shopperbaskets.html#updateasagentbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1215,"kind":16777216,"name":"updateAsAgentBasketPathParameters","url":"modules/shopperbaskets.html#updateasagentbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1216,"kind":16777216,"name":"updateAsStorefrontBasketQueryParameters","url":"modules/shopperbaskets.html#updateasstorefrontbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1217,"kind":16777216,"name":"updateAsStorefrontBasketPathParameters","url":"modules/shopperbaskets.html#updateasstorefrontbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1218,"kind":16777216,"name":"updateBasketQueryParameters","url":"modules/shopperbaskets.html#updatebasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1219,"kind":16777216,"name":"updateBasketPathParameters","url":"modules/shopperbaskets.html#updatebasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1220,"kind":16777216,"name":"updateBillingAddressForBasketQueryParameters","url":"modules/shopperbaskets.html#updatebillingaddressforbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1221,"kind":16777216,"name":"updateBillingAddressForBasketPathParameters","url":"modules/shopperbaskets.html#updatebillingaddressforbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1222,"kind":16777216,"name":"updateCustomerForBasketQueryParameters","url":"modules/shopperbaskets.html#updatecustomerforbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1223,"kind":16777216,"name":"updateCustomerForBasketPathParameters","url":"modules/shopperbaskets.html#updatecustomerforbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1224,"kind":16777216,"name":"updateGiftCertificateItemInBasketQueryParameters","url":"modules/shopperbaskets.html#updategiftcertificateiteminbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1225,"kind":16777216,"name":"updateGiftCertificateItemInBasketPathParameters","url":"modules/shopperbaskets.html#updategiftcertificateiteminbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1226,"kind":16777216,"name":"updateItemInBasketQueryParameters","url":"modules/shopperbaskets.html#updateiteminbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1227,"kind":16777216,"name":"updateItemInBasketPathParameters","url":"modules/shopperbaskets.html#updateiteminbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1228,"kind":16777216,"name":"updateItemsInBasketQueryParameters","url":"modules/shopperbaskets.html#updateitemsinbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1229,"kind":16777216,"name":"updateItemsInBasketPathParameters","url":"modules/shopperbaskets.html#updateitemsinbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1230,"kind":16777216,"name":"updatePaymentInstrumentInBasketQueryParameters","url":"modules/shopperbaskets.html#updatepaymentinstrumentinbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1231,"kind":16777216,"name":"updatePaymentInstrumentInBasketPathParameters","url":"modules/shopperbaskets.html#updatepaymentinstrumentinbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1232,"kind":16777216,"name":"updatePriceAdjustmentInBasketQueryParameters","url":"modules/shopperbaskets.html#updatepriceadjustmentinbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1233,"kind":16777216,"name":"updatePriceAdjustmentInBasketPathParameters","url":"modules/shopperbaskets.html#updatepriceadjustmentinbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1234,"kind":16777216,"name":"updateShipmentForBasketQueryParameters","url":"modules/shopperbaskets.html#updateshipmentforbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1235,"kind":16777216,"name":"updateShipmentForBasketPathParameters","url":"modules/shopperbaskets.html#updateshipmentforbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1236,"kind":16777216,"name":"updateShippingAddressForShipmentQueryParameters","url":"modules/shopperbaskets.html#updateshippingaddressforshipmentqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1237,"kind":16777216,"name":"updateShippingAddressForShipmentPathParameters","url":"modules/shopperbaskets.html#updateshippingaddressforshipmentpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1238,"kind":16777216,"name":"updateShippingMethodForShipmentQueryParameters","url":"modules/shopperbaskets.html#updateshippingmethodforshipmentqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1239,"kind":16777216,"name":"updateShippingMethodForShipmentPathParameters","url":"modules/shopperbaskets.html#updateshippingmethodforshipmentpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1240,"kind":16777216,"name":"ShopperBasketsPathParameters","url":"modules/shopperbaskets.html#shopperbasketspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1241,"kind":16777216,"name":"ShopperBasketsQueryParameters","url":"modules/shopperbaskets.html#shopperbasketsqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1242,"kind":16777216,"name":"ShopperBasketsParameters","url":"modules/shopperbaskets.html#shopperbasketsparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1243,"kind":16777216,"name":"ShopperBaskets","url":"modules/shopperbaskets.html#shopperbaskets-2","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1244,"kind":16777216,"name":"Basket","url":"modules/shopperbaskets.html#basket-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1245,"kind":16777216,"name":"BasketChannelTypeEnum","url":"modules/shopperbaskets.html#basketchanneltypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1246,"kind":16777216,"name":"BasketTaxationEnum","url":"modules/shopperbaskets.html#baskettaxationenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1247,"kind":16777216,"name":"BasketPaymentInstrumentRequest","url":"modules/shopperbaskets.html#basketpaymentinstrumentrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1248,"kind":16777216,"name":"BonusDiscountLineItem","url":"modules/shopperbaskets.html#bonusdiscountlineitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1249,"kind":16777216,"name":"CouponItem","url":"modules/shopperbaskets.html#couponitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1250,"kind":16777216,"name":"CouponItemStatusCodeEnum","url":"modules/shopperbaskets.html#couponitemstatuscodeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1251,"kind":16777216,"name":"CurrencyCode","url":"modules/shopperbaskets.html#currencycode-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1252,"kind":16777216,"name":"CustomerInfo","url":"modules/shopperbaskets.html#customerinfo-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1253,"kind":16777216,"name":"DefaultFallback","url":"modules/shopperbaskets.html#defaultfallback-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1254,"kind":16777216,"name":"Discount","url":"modules/shopperbaskets.html#discount-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1255,"kind":16777216,"name":"DiscountTypeEnum","url":"modules/shopperbaskets.html#discounttypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1256,"kind":16777216,"name":"DiscountRequest","url":"modules/shopperbaskets.html#discountrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1257,"kind":16777216,"name":"DiscountRequestTypeEnum","url":"modules/shopperbaskets.html#discountrequesttypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1258,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperbaskets.html#errorresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1259,"kind":16777216,"name":"GiftCertificateItem","url":"modules/shopperbaskets.html#giftcertificateitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1260,"kind":16777216,"name":"LocaleCode","url":"modules/shopperbaskets.html#localecode-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1261,"kind":16777216,"name":"NoValue","url":"modules/shopperbaskets.html#novalue-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1262,"kind":16777216,"name":"OptionItem","url":"modules/shopperbaskets.html#optionitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1263,"kind":16777216,"name":"OrderAddress","url":"modules/shopperbaskets.html#orderaddress-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1264,"kind":16777216,"name":"OrderPaymentCardRequest","url":"modules/shopperbaskets.html#orderpaymentcardrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1265,"kind":16777216,"name":"OrderPaymentInstrument","url":"modules/shopperbaskets.html#orderpaymentinstrument-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1266,"kind":16777216,"name":"PaymentCard","url":"modules/shopperbaskets.html#paymentcard-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1267,"kind":16777216,"name":"PaymentCardSpec","url":"modules/shopperbaskets.html#paymentcardspec-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1268,"kind":16777216,"name":"PaymentMethod","url":"modules/shopperbaskets.html#paymentmethod-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1269,"kind":16777216,"name":"PaymentMethodResult","url":"modules/shopperbaskets.html#paymentmethodresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1270,"kind":16777216,"name":"PriceAdjustment","url":"modules/shopperbaskets.html#priceadjustment-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1271,"kind":16777216,"name":"PriceAdjustmentRequest","url":"modules/shopperbaskets.html#priceadjustmentrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1272,"kind":16777216,"name":"PriceAdjustmentRequestLevelEnum","url":"modules/shopperbaskets.html#priceadjustmentrequestlevelenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1273,"kind":16777216,"name":"ProductDetailsLink","url":"modules/shopperbaskets.html#productdetailslink-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1274,"kind":16777216,"name":"ProductItem","url":"modules/shopperbaskets.html#productitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1275,"kind":16777216,"name":"ProductListItemReference","url":"modules/shopperbaskets.html#productlistitemreference-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1276,"kind":16777216,"name":"ProductListItemReferenceTypeEnum","url":"modules/shopperbaskets.html#productlistitemreferencetypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1277,"kind":16777216,"name":"ProductListLink","url":"modules/shopperbaskets.html#productlistlink-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1278,"kind":16777216,"name":"ProductListLinkTypeEnum","url":"modules/shopperbaskets.html#productlistlinktypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1279,"kind":16777216,"name":"Shipment","url":"modules/shopperbaskets.html#shipment-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1280,"kind":16777216,"name":"ShipmentShippingStatusEnum","url":"modules/shopperbaskets.html#shipmentshippingstatusenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1281,"kind":16777216,"name":"ShippingItem","url":"modules/shopperbaskets.html#shippingitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1282,"kind":16777216,"name":"ShippingMethod","url":"modules/shopperbaskets.html#shippingmethod-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1283,"kind":16777216,"name":"ShippingMethodResult","url":"modules/shopperbaskets.html#shippingmethodresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1284,"kind":16777216,"name":"ShippingPromotion","url":"modules/shopperbaskets.html#shippingpromotion-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1285,"kind":16777216,"name":"Status","url":"modules/shopperbaskets.html#status-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1286,"kind":16777216,"name":"TaxItem","url":"modules/shopperbaskets.html#taxitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1287,"kind":16777216,"name":"TaxItems","url":"modules/shopperbaskets.html#taxitems-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1288,"kind":16777216,"name":"Taxes","url":"modules/shopperbaskets.html#taxes-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1289,"kind":2,"name":"ShopperBasketsTypes","url":"modules/shopperbaskets.shopperbasketstypes.html","classes":"tsd-kind-namespace tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1290,"kind":4194304,"name":"ShopperBasketsPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#shopperbasketspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1291,"kind":4194304,"name":"ShopperBasketsQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#shopperbasketsqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1292,"kind":4194304,"name":"addCouponToBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#addcoupontobasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1293,"kind":4194304,"name":"addCouponToBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#addcoupontobasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1294,"kind":4194304,"name":"addGiftCertificateItemToBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#addgiftcertificateitemtobasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1295,"kind":4194304,"name":"addGiftCertificateItemToBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#addgiftcertificateitemtobasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1296,"kind":4194304,"name":"addItemToBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#additemtobasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1297,"kind":4194304,"name":"addItemToBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#additemtobasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1298,"kind":4194304,"name":"addPaymentInstrumentToBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#addpaymentinstrumenttobasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1299,"kind":4194304,"name":"addPaymentInstrumentToBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#addpaymentinstrumenttobasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1300,"kind":4194304,"name":"addPriceAdjustmentToBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#addpriceadjustmenttobasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1301,"kind":4194304,"name":"addPriceAdjustmentToBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#addpriceadjustmenttobasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1302,"kind":4194304,"name":"addPriceBooksToBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#addpricebookstobasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1303,"kind":4194304,"name":"addPriceBooksToBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#addpricebookstobasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1304,"kind":4194304,"name":"addTaxesForBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#addtaxesforbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1305,"kind":4194304,"name":"addTaxesForBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#addtaxesforbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1306,"kind":4194304,"name":"addTaxesForBasketItemQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#addtaxesforbasketitemqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1307,"kind":4194304,"name":"addTaxesForBasketItemPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#addtaxesforbasketitempathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1308,"kind":4194304,"name":"CreateBasketTaxModeEnum","url":"modules/shopperbaskets.shopperbasketstypes.html#createbaskettaxmodeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1309,"kind":4194304,"name":"createBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#createbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1310,"kind":4194304,"name":"createBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#createbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1311,"kind":4194304,"name":"createShipmentForBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#createshipmentforbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1312,"kind":4194304,"name":"createShipmentForBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#createshipmentforbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1313,"kind":4194304,"name":"deleteBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#deletebasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1314,"kind":4194304,"name":"deleteBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#deletebasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1315,"kind":4194304,"name":"getBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#getbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1316,"kind":4194304,"name":"getBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#getbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1317,"kind":4194304,"name":"getPaymentMethodsForBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#getpaymentmethodsforbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1318,"kind":4194304,"name":"getPaymentMethodsForBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#getpaymentmethodsforbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1319,"kind":4194304,"name":"getPriceBooksForBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#getpricebooksforbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1320,"kind":4194304,"name":"getPriceBooksForBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#getpricebooksforbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1321,"kind":4194304,"name":"getShippingMethodsForShipmentQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#getshippingmethodsforshipmentqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1322,"kind":4194304,"name":"getShippingMethodsForShipmentPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#getshippingmethodsforshipmentpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1323,"kind":4194304,"name":"getTaxesFromBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#gettaxesfrombasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1324,"kind":4194304,"name":"getTaxesFromBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#gettaxesfrombasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1325,"kind":4194304,"name":"MergeBasketProductItemMergeModeEnum","url":"modules/shopperbaskets.shopperbasketstypes.html#mergebasketproductitemmergemodeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1326,"kind":4194304,"name":"mergeBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#mergebasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1327,"kind":4194304,"name":"mergeBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#mergebasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1328,"kind":4194304,"name":"removeCouponFromBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#removecouponfrombasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1329,"kind":4194304,"name":"removeCouponFromBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#removecouponfrombasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1330,"kind":4194304,"name":"removeGiftCertificateItemFromBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#removegiftcertificateitemfrombasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1331,"kind":4194304,"name":"removeGiftCertificateItemFromBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#removegiftcertificateitemfrombasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1332,"kind":4194304,"name":"removeItemFromBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#removeitemfrombasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1333,"kind":4194304,"name":"removeItemFromBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#removeitemfrombasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1334,"kind":4194304,"name":"removePaymentInstrumentFromBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#removepaymentinstrumentfrombasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1335,"kind":4194304,"name":"removePaymentInstrumentFromBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#removepaymentinstrumentfrombasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1336,"kind":4194304,"name":"removePriceAdjustmentFromBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#removepriceadjustmentfrombasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1337,"kind":4194304,"name":"removePriceAdjustmentFromBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#removepriceadjustmentfrombasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1338,"kind":4194304,"name":"removeShipmentFromBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#removeshipmentfrombasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1339,"kind":4194304,"name":"removeShipmentFromBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#removeshipmentfrombasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1340,"kind":4194304,"name":"transferBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#transferbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1341,"kind":4194304,"name":"transferBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#transferbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1342,"kind":4194304,"name":"updateAsAgentBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updateasagentbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1343,"kind":4194304,"name":"updateAsAgentBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updateasagentbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1344,"kind":4194304,"name":"updateAsStorefrontBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updateasstorefrontbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1345,"kind":4194304,"name":"updateAsStorefrontBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updateasstorefrontbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1346,"kind":4194304,"name":"updateBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updatebasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1347,"kind":4194304,"name":"updateBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updatebasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1348,"kind":4194304,"name":"updateBillingAddressForBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updatebillingaddressforbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1349,"kind":4194304,"name":"updateBillingAddressForBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updatebillingaddressforbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1350,"kind":4194304,"name":"updateCustomerForBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updatecustomerforbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1351,"kind":4194304,"name":"updateCustomerForBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updatecustomerforbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1352,"kind":4194304,"name":"updateGiftCertificateItemInBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updategiftcertificateiteminbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1353,"kind":4194304,"name":"updateGiftCertificateItemInBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updategiftcertificateiteminbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1354,"kind":4194304,"name":"updateItemInBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updateiteminbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1355,"kind":4194304,"name":"updateItemInBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updateiteminbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1356,"kind":4194304,"name":"updateItemsInBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updateitemsinbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1357,"kind":4194304,"name":"updateItemsInBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updateitemsinbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1358,"kind":4194304,"name":"updatePaymentInstrumentInBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updatepaymentinstrumentinbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1359,"kind":4194304,"name":"updatePaymentInstrumentInBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updatepaymentinstrumentinbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1360,"kind":4194304,"name":"updatePriceAdjustmentInBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updatepriceadjustmentinbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1361,"kind":4194304,"name":"updatePriceAdjustmentInBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updatepriceadjustmentinbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1362,"kind":4194304,"name":"updateShipmentForBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updateshipmentforbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1363,"kind":4194304,"name":"updateShipmentForBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updateshipmentforbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1364,"kind":4194304,"name":"updateShippingAddressForShipmentQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updateshippingaddressforshipmentqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1365,"kind":4194304,"name":"updateShippingAddressForShipmentPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updateshippingaddressforshipmentpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1366,"kind":4194304,"name":"updateShippingMethodForShipmentQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updateshippingmethodforshipmentqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1367,"kind":4194304,"name":"updateShippingMethodForShipmentPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updateshippingmethodforshipmentpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1368,"kind":4194304,"name":"Basket","url":"modules/shopperbaskets.shopperbasketstypes.html#basket","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1369,"kind":4194304,"name":"BasketChannelTypeEnum","url":"modules/shopperbaskets.shopperbasketstypes.html#basketchanneltypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1370,"kind":4194304,"name":"BasketTaxationEnum","url":"modules/shopperbaskets.shopperbasketstypes.html#baskettaxationenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1371,"kind":4194304,"name":"BasketPaymentInstrumentRequest","url":"modules/shopperbaskets.shopperbasketstypes.html#basketpaymentinstrumentrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1372,"kind":4194304,"name":"BonusDiscountLineItem","url":"modules/shopperbaskets.shopperbasketstypes.html#bonusdiscountlineitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1373,"kind":4194304,"name":"CouponItem","url":"modules/shopperbaskets.shopperbasketstypes.html#couponitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1374,"kind":4194304,"name":"CouponItemStatusCodeEnum","url":"modules/shopperbaskets.shopperbasketstypes.html#couponitemstatuscodeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1375,"kind":4194304,"name":"CurrencyCode","url":"modules/shopperbaskets.shopperbasketstypes.html#currencycode","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1376,"kind":4194304,"name":"CustomerInfo","url":"modules/shopperbaskets.shopperbasketstypes.html#customerinfo","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1377,"kind":4194304,"name":"DefaultFallback","url":"modules/shopperbaskets.shopperbasketstypes.html#defaultfallback","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1378,"kind":4194304,"name":"Discount","url":"modules/shopperbaskets.shopperbasketstypes.html#discount","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1379,"kind":4194304,"name":"DiscountTypeEnum","url":"modules/shopperbaskets.shopperbasketstypes.html#discounttypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1380,"kind":4194304,"name":"DiscountRequest","url":"modules/shopperbaskets.shopperbasketstypes.html#discountrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1381,"kind":4194304,"name":"DiscountRequestTypeEnum","url":"modules/shopperbaskets.shopperbasketstypes.html#discountrequesttypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1382,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperbaskets.shopperbasketstypes.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1383,"kind":4194304,"name":"GiftCertificateItem","url":"modules/shopperbaskets.shopperbasketstypes.html#giftcertificateitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1384,"kind":4194304,"name":"LocaleCode","url":"modules/shopperbaskets.shopperbasketstypes.html#localecode","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1385,"kind":4194304,"name":"NoValue","url":"modules/shopperbaskets.shopperbasketstypes.html#novalue","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1386,"kind":4194304,"name":"OptionItem","url":"modules/shopperbaskets.shopperbasketstypes.html#optionitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1387,"kind":4194304,"name":"OrderAddress","url":"modules/shopperbaskets.shopperbasketstypes.html#orderaddress","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1388,"kind":4194304,"name":"OrderPaymentCardRequest","url":"modules/shopperbaskets.shopperbasketstypes.html#orderpaymentcardrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1389,"kind":4194304,"name":"OrderPaymentInstrument","url":"modules/shopperbaskets.shopperbasketstypes.html#orderpaymentinstrument","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1390,"kind":4194304,"name":"PaymentCard","url":"modules/shopperbaskets.shopperbasketstypes.html#paymentcard","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1391,"kind":4194304,"name":"PaymentCardSpec","url":"modules/shopperbaskets.shopperbasketstypes.html#paymentcardspec","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1392,"kind":4194304,"name":"PaymentMethod","url":"modules/shopperbaskets.shopperbasketstypes.html#paymentmethod","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1393,"kind":4194304,"name":"PaymentMethodResult","url":"modules/shopperbaskets.shopperbasketstypes.html#paymentmethodresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1394,"kind":4194304,"name":"PriceAdjustment","url":"modules/shopperbaskets.shopperbasketstypes.html#priceadjustment","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1395,"kind":4194304,"name":"PriceAdjustmentRequest","url":"modules/shopperbaskets.shopperbasketstypes.html#priceadjustmentrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1396,"kind":4194304,"name":"PriceAdjustmentRequestLevelEnum","url":"modules/shopperbaskets.shopperbasketstypes.html#priceadjustmentrequestlevelenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1397,"kind":4194304,"name":"ProductDetailsLink","url":"modules/shopperbaskets.shopperbasketstypes.html#productdetailslink","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1398,"kind":4194304,"name":"ProductItem","url":"modules/shopperbaskets.shopperbasketstypes.html#productitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1399,"kind":4194304,"name":"ProductListItemReference","url":"modules/shopperbaskets.shopperbasketstypes.html#productlistitemreference","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1400,"kind":4194304,"name":"ProductListItemReferenceTypeEnum","url":"modules/shopperbaskets.shopperbasketstypes.html#productlistitemreferencetypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1401,"kind":4194304,"name":"ProductListLink","url":"modules/shopperbaskets.shopperbasketstypes.html#productlistlink","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1402,"kind":4194304,"name":"ProductListLinkTypeEnum","url":"modules/shopperbaskets.shopperbasketstypes.html#productlistlinktypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1403,"kind":4194304,"name":"Shipment","url":"modules/shopperbaskets.shopperbasketstypes.html#shipment","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1404,"kind":4194304,"name":"ShipmentShippingStatusEnum","url":"modules/shopperbaskets.shopperbasketstypes.html#shipmentshippingstatusenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1405,"kind":4194304,"name":"ShippingItem","url":"modules/shopperbaskets.shopperbasketstypes.html#shippingitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1406,"kind":4194304,"name":"ShippingMethod","url":"modules/shopperbaskets.shopperbasketstypes.html#shippingmethod","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1407,"kind":4194304,"name":"ShippingMethodResult","url":"modules/shopperbaskets.shopperbasketstypes.html#shippingmethodresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1408,"kind":4194304,"name":"ShippingPromotion","url":"modules/shopperbaskets.shopperbasketstypes.html#shippingpromotion","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1409,"kind":4194304,"name":"Status","url":"modules/shopperbaskets.shopperbasketstypes.html#status","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1410,"kind":4194304,"name":"TaxItem","url":"modules/shopperbaskets.shopperbasketstypes.html#taxitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1411,"kind":4194304,"name":"TaxItems","url":"modules/shopperbaskets.shopperbasketstypes.html#taxitems","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1412,"kind":4194304,"name":"Taxes","url":"modules/shopperbaskets.shopperbasketstypes.html#taxes","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1413,"kind":1,"name":"shopperBasketsv2","url":"modules/shopperbasketsv2.html","classes":"tsd-kind-module"},{"id":1414,"kind":32,"name":"defaultBaseUri","url":"modules/shopperbasketsv2.html#defaultbaseuri-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1415,"kind":4194304,"name":"NoValue","url":"modules/shopperbasketsv2.html#novalue-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1416,"kind":4194304,"name":"CurrencyCode","url":"modules/shopperbasketsv2.html#currencycode-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1417,"kind":4194304,"name":"GiftCertificateItem","url":"modules/shopperbasketsv2.html#giftcertificateitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1418,"kind":4194304,"name":"Status","url":"modules/shopperbasketsv2.html#status-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1419,"kind":4194304,"name":"PaymentCard","url":"modules/shopperbasketsv2.html#paymentcard-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1420,"kind":4194304,"name":"OrderPaymentInstrument","url":"modules/shopperbasketsv2.html#orderpaymentinstrument-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1421,"kind":4194304,"name":"ProductDetailsLink","url":"modules/shopperbasketsv2.html#productdetailslink-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1422,"kind":4194304,"name":"BonusDiscountLineItem","url":"modules/shopperbasketsv2.html#bonusdiscountlineitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1423,"kind":4194304,"name":"Discount","url":"modules/shopperbasketsv2.html#discount-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1424,"kind":4194304,"name":"DiscountTypeEnum","url":"modules/shopperbasketsv2.html#discounttypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1425,"kind":4194304,"name":"PriceAdjustment","url":"modules/shopperbasketsv2.html#priceadjustment-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1426,"kind":4194304,"name":"ShippingItem","url":"modules/shopperbasketsv2.html#shippingitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1427,"kind":4194304,"name":"OrderAddress","url":"modules/shopperbasketsv2.html#orderaddress-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1428,"kind":4194304,"name":"ShippingPromotion","url":"modules/shopperbasketsv2.html#shippingpromotion-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1429,"kind":4194304,"name":"ShippingMethod","url":"modules/shopperbasketsv2.html#shippingmethod-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1430,"kind":4194304,"name":"Shipment","url":"modules/shopperbasketsv2.html#shipment-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1431,"kind":4194304,"name":"ShipmentShippingStatusEnum","url":"modules/shopperbasketsv2.html#shipmentshippingstatusenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1432,"kind":4194304,"name":"CouponItem","url":"modules/shopperbasketsv2.html#couponitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1433,"kind":4194304,"name":"CouponItemStatusCodeEnum","url":"modules/shopperbasketsv2.html#couponitemstatuscodeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1434,"kind":4194304,"name":"CustomerInfo","url":"modules/shopperbasketsv2.html#customerinfo-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1435,"kind":4194304,"name":"GroupedTaxItem","url":"modules/shopperbasketsv2.html#groupedtaxitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1436,"kind":4194304,"name":"ProductListLink","url":"modules/shopperbasketsv2.html#productlistlink-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1437,"kind":4194304,"name":"ProductListLinkTypeEnum","url":"modules/shopperbasketsv2.html#productlistlinktypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1438,"kind":4194304,"name":"ProductListItemReference","url":"modules/shopperbasketsv2.html#productlistitemreference-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1439,"kind":4194304,"name":"ProductListItemReferenceTypeEnum","url":"modules/shopperbasketsv2.html#productlistitemreferencetypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1440,"kind":4194304,"name":"OptionItem","url":"modules/shopperbasketsv2.html#optionitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1441,"kind":4194304,"name":"ProductItem","url":"modules/shopperbasketsv2.html#productitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1442,"kind":4194304,"name":"Basket","url":"modules/shopperbasketsv2.html#basket-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1443,"kind":4194304,"name":"BasketChannelTypeEnum","url":"modules/shopperbasketsv2.html#basketchanneltypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1444,"kind":4194304,"name":"BasketTaxationEnum","url":"modules/shopperbasketsv2.html#baskettaxationenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1445,"kind":4194304,"name":"OrderPaymentCardRequest","url":"modules/shopperbasketsv2.html#orderpaymentcardrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1446,"kind":4194304,"name":"BasketPaymentInstrumentRequest","url":"modules/shopperbasketsv2.html#basketpaymentinstrumentrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1447,"kind":4194304,"name":"DefaultFallback","url":"modules/shopperbasketsv2.html#defaultfallback-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1448,"kind":4194304,"name":"DiscountRequest","url":"modules/shopperbasketsv2.html#discountrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1449,"kind":4194304,"name":"DiscountRequestTypeEnum","url":"modules/shopperbasketsv2.html#discountrequesttypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1450,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperbasketsv2.html#errorresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1451,"kind":4194304,"name":"LocaleCode","url":"modules/shopperbasketsv2.html#localecode-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1452,"kind":4194304,"name":"PaymentCardSpec","url":"modules/shopperbasketsv2.html#paymentcardspec-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1453,"kind":4194304,"name":"PaymentMethod","url":"modules/shopperbasketsv2.html#paymentmethod-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1454,"kind":4194304,"name":"PaymentMethodResult","url":"modules/shopperbasketsv2.html#paymentmethodresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1455,"kind":4194304,"name":"PriceAdjustmentRequest","url":"modules/shopperbasketsv2.html#priceadjustmentrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1456,"kind":4194304,"name":"PriceAdjustmentRequestLevelEnum","url":"modules/shopperbasketsv2.html#priceadjustmentrequestlevelenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1457,"kind":4194304,"name":"ShippingMethodResult","url":"modules/shopperbasketsv2.html#shippingmethodresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1458,"kind":4194304,"name":"TaxItem","url":"modules/shopperbasketsv2.html#taxitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1459,"kind":4194304,"name":"TaxItems","url":"modules/shopperbasketsv2.html#taxitems-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1460,"kind":4194304,"name":"Taxes","url":"modules/shopperbasketsv2.html#taxes-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1461,"kind":16777216,"name":"Basket","url":"modules/shopperbasketsv2.html#basket","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1462,"kind":16777216,"name":"BasketChannelTypeEnum","url":"modules/shopperbasketsv2.html#basketchanneltypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1463,"kind":16777216,"name":"BasketTaxationEnum","url":"modules/shopperbasketsv2.html#baskettaxationenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1464,"kind":16777216,"name":"BasketPaymentInstrumentRequest","url":"modules/shopperbasketsv2.html#basketpaymentinstrumentrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1465,"kind":16777216,"name":"BonusDiscountLineItem","url":"modules/shopperbasketsv2.html#bonusdiscountlineitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1466,"kind":16777216,"name":"CouponItem","url":"modules/shopperbasketsv2.html#couponitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1467,"kind":16777216,"name":"CouponItemStatusCodeEnum","url":"modules/shopperbasketsv2.html#couponitemstatuscodeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1468,"kind":16777216,"name":"CurrencyCode","url":"modules/shopperbasketsv2.html#currencycode","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1469,"kind":16777216,"name":"CustomerInfo","url":"modules/shopperbasketsv2.html#customerinfo","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1470,"kind":16777216,"name":"DefaultFallback","url":"modules/shopperbasketsv2.html#defaultfallback","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1471,"kind":16777216,"name":"Discount","url":"modules/shopperbasketsv2.html#discount","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1472,"kind":16777216,"name":"DiscountTypeEnum","url":"modules/shopperbasketsv2.html#discounttypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1473,"kind":16777216,"name":"DiscountRequest","url":"modules/shopperbasketsv2.html#discountrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1474,"kind":16777216,"name":"DiscountRequestTypeEnum","url":"modules/shopperbasketsv2.html#discountrequesttypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1475,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperbasketsv2.html#errorresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1476,"kind":16777216,"name":"GiftCertificateItem","url":"modules/shopperbasketsv2.html#giftcertificateitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1477,"kind":16777216,"name":"GroupedTaxItem","url":"modules/shopperbasketsv2.html#groupedtaxitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1478,"kind":16777216,"name":"LocaleCode","url":"modules/shopperbasketsv2.html#localecode","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1479,"kind":16777216,"name":"NoValue","url":"modules/shopperbasketsv2.html#novalue","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1480,"kind":16777216,"name":"OptionItem","url":"modules/shopperbasketsv2.html#optionitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1481,"kind":16777216,"name":"OrderAddress","url":"modules/shopperbasketsv2.html#orderaddress","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1482,"kind":16777216,"name":"OrderPaymentCardRequest","url":"modules/shopperbasketsv2.html#orderpaymentcardrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1483,"kind":16777216,"name":"OrderPaymentInstrument","url":"modules/shopperbasketsv2.html#orderpaymentinstrument","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1484,"kind":16777216,"name":"PaymentCard","url":"modules/shopperbasketsv2.html#paymentcard","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1485,"kind":16777216,"name":"PaymentCardSpec","url":"modules/shopperbasketsv2.html#paymentcardspec","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1486,"kind":16777216,"name":"PaymentMethod","url":"modules/shopperbasketsv2.html#paymentmethod","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1487,"kind":16777216,"name":"PaymentMethodResult","url":"modules/shopperbasketsv2.html#paymentmethodresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1488,"kind":16777216,"name":"PriceAdjustment","url":"modules/shopperbasketsv2.html#priceadjustment","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1489,"kind":16777216,"name":"PriceAdjustmentRequest","url":"modules/shopperbasketsv2.html#priceadjustmentrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1490,"kind":16777216,"name":"PriceAdjustmentRequestLevelEnum","url":"modules/shopperbasketsv2.html#priceadjustmentrequestlevelenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1491,"kind":16777216,"name":"ProductDetailsLink","url":"modules/shopperbasketsv2.html#productdetailslink","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1492,"kind":16777216,"name":"ProductItem","url":"modules/shopperbasketsv2.html#productitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1493,"kind":16777216,"name":"ProductListItemReference","url":"modules/shopperbasketsv2.html#productlistitemreference","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1494,"kind":16777216,"name":"ProductListItemReferenceTypeEnum","url":"modules/shopperbasketsv2.html#productlistitemreferencetypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1495,"kind":16777216,"name":"ProductListLink","url":"modules/shopperbasketsv2.html#productlistlink","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1496,"kind":16777216,"name":"ProductListLinkTypeEnum","url":"modules/shopperbasketsv2.html#productlistlinktypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1497,"kind":16777216,"name":"Shipment","url":"modules/shopperbasketsv2.html#shipment","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1498,"kind":16777216,"name":"ShipmentShippingStatusEnum","url":"modules/shopperbasketsv2.html#shipmentshippingstatusenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1499,"kind":16777216,"name":"ShippingItem","url":"modules/shopperbasketsv2.html#shippingitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1500,"kind":16777216,"name":"ShippingMethod","url":"modules/shopperbasketsv2.html#shippingmethod","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1501,"kind":16777216,"name":"ShippingMethodResult","url":"modules/shopperbasketsv2.html#shippingmethodresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1502,"kind":16777216,"name":"ShippingPromotion","url":"modules/shopperbasketsv2.html#shippingpromotion","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1503,"kind":16777216,"name":"Status","url":"modules/shopperbasketsv2.html#status","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1504,"kind":16777216,"name":"TaxItem","url":"modules/shopperbasketsv2.html#taxitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1505,"kind":16777216,"name":"TaxItems","url":"modules/shopperbasketsv2.html#taxitems","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1506,"kind":16777216,"name":"Taxes","url":"modules/shopperbasketsv2.html#taxes","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1507,"kind":128,"name":"ShopperBasketsV2","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"shopperBasketsv2"},{"id":1508,"kind":1024,"name":"clientConfig","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1509,"kind":1024,"name":"defaultBaseUri","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#defaultbaseuri","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1510,"kind":2097152,"name":"apiPaths","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-static","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1511,"kind":32,"name":"addCouponToBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.addcoupontobasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1512,"kind":32,"name":"addGiftCertificateItemToBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.addgiftcertificateitemtobasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1513,"kind":32,"name":"addItemToBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.additemtobasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1514,"kind":32,"name":"addPaymentInstrumentToBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.addpaymentinstrumenttobasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1515,"kind":32,"name":"addPriceAdjustmentToBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.addpriceadjustmenttobasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1516,"kind":32,"name":"addPriceBooksToBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.addpricebookstobasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1517,"kind":32,"name":"addTaxesForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.addtaxesforbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1518,"kind":32,"name":"addTaxesForBasketItem","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.addtaxesforbasketitem-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1519,"kind":32,"name":"createBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.createbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1520,"kind":32,"name":"createShipmentForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.createshipmentforbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1521,"kind":32,"name":"deleteBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.deletebasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1522,"kind":32,"name":"getBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.getbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1523,"kind":32,"name":"getPaymentMethodsForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.getpaymentmethodsforbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1524,"kind":32,"name":"getPriceBooksForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.getpricebooksforbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1525,"kind":32,"name":"getShippingMethodsForShipment","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.getshippingmethodsforshipment-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1526,"kind":32,"name":"getTaxesFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.gettaxesfrombasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1527,"kind":32,"name":"mergeBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.mergebasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1528,"kind":32,"name":"removeCouponFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.removecouponfrombasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1529,"kind":32,"name":"removeGiftCertificateItemFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.removegiftcertificateitemfrombasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1530,"kind":32,"name":"removeItemFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.removeitemfrombasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1531,"kind":32,"name":"removePaymentInstrumentFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.removepaymentinstrumentfrombasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1532,"kind":32,"name":"removePriceAdjustmentFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.removepriceadjustmentfrombasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1533,"kind":32,"name":"removeShipmentFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.removeshipmentfrombasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1534,"kind":32,"name":"transferBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.transferbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1535,"kind":32,"name":"updateAsAgentBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.updateasagentbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1536,"kind":32,"name":"updateAsStorefrontBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.updateasstorefrontbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1537,"kind":32,"name":"updateBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.updatebasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1538,"kind":32,"name":"updateBillingAddressForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.updatebillingaddressforbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1539,"kind":32,"name":"updateCustomerForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.updatecustomerforbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1540,"kind":32,"name":"updateGiftCertificateItemInBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.updategiftcertificateiteminbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1541,"kind":32,"name":"updateItemInBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.updateiteminbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1542,"kind":32,"name":"updateItemsInBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.updateitemsinbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1543,"kind":32,"name":"updatePaymentInstrumentInBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.updatepaymentinstrumentinbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1544,"kind":32,"name":"updatePriceAdjustmentInBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.updatepriceadjustmentinbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1545,"kind":32,"name":"updateShipmentForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.updateshipmentforbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1546,"kind":32,"name":"updateShippingAddressForShipment","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.updateshippingaddressforshipment-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1547,"kind":32,"name":"updateShippingMethodForShipment","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.updateshippingmethodforshipment-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1548,"kind":512,"name":"constructor","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1549,"kind":1024,"name":"paramKeys","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1550,"kind":65536,"name":"__type","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys"},{"id":1551,"kind":32,"name":"addCouponToBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.addcoupontobasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1552,"kind":32,"name":"addCouponToBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.addcoupontobasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1553,"kind":32,"name":"addGiftCertificateItemToBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.addgiftcertificateitemtobasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1554,"kind":32,"name":"addGiftCertificateItemToBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.addgiftcertificateitemtobasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1555,"kind":32,"name":"addItemToBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.additemtobasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1556,"kind":32,"name":"addItemToBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.additemtobasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1557,"kind":32,"name":"addPaymentInstrumentToBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.addpaymentinstrumenttobasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1558,"kind":32,"name":"addPaymentInstrumentToBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.addpaymentinstrumenttobasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1559,"kind":32,"name":"addPriceAdjustmentToBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.addpriceadjustmenttobasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1560,"kind":32,"name":"addPriceAdjustmentToBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.addpriceadjustmenttobasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1561,"kind":32,"name":"addPriceBooksToBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.addpricebookstobasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1562,"kind":32,"name":"addPriceBooksToBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.addpricebookstobasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1563,"kind":32,"name":"addTaxesForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.addtaxesforbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1564,"kind":32,"name":"addTaxesForBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.addtaxesforbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1565,"kind":32,"name":"addTaxesForBasketItem","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.addtaxesforbasketitem","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1566,"kind":32,"name":"addTaxesForBasketItemRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.addtaxesforbasketitemrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1567,"kind":32,"name":"createBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.createbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1568,"kind":32,"name":"createBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.createbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1569,"kind":32,"name":"createShipmentForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.createshipmentforbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1570,"kind":32,"name":"createShipmentForBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.createshipmentforbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1571,"kind":32,"name":"deleteBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.deletebasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1572,"kind":32,"name":"deleteBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.deletebasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1573,"kind":32,"name":"getBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.getbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1574,"kind":32,"name":"getBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.getbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1575,"kind":32,"name":"getPaymentMethodsForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.getpaymentmethodsforbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1576,"kind":32,"name":"getPaymentMethodsForBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.getpaymentmethodsforbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1577,"kind":32,"name":"getPriceBooksForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.getpricebooksforbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1578,"kind":32,"name":"getPriceBooksForBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.getpricebooksforbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1579,"kind":32,"name":"getShippingMethodsForShipment","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.getshippingmethodsforshipment","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1580,"kind":32,"name":"getShippingMethodsForShipmentRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.getshippingmethodsforshipmentrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1581,"kind":32,"name":"getTaxesFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.gettaxesfrombasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1582,"kind":32,"name":"getTaxesFromBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.gettaxesfrombasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1583,"kind":32,"name":"mergeBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.mergebasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1584,"kind":32,"name":"mergeBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.mergebasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1585,"kind":32,"name":"removeCouponFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.removecouponfrombasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1586,"kind":32,"name":"removeCouponFromBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.removecouponfrombasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1587,"kind":32,"name":"removeGiftCertificateItemFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.removegiftcertificateitemfrombasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1588,"kind":32,"name":"removeGiftCertificateItemFromBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.removegiftcertificateitemfrombasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1589,"kind":32,"name":"removeItemFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.removeitemfrombasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1590,"kind":32,"name":"removeItemFromBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.removeitemfrombasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1591,"kind":32,"name":"removePaymentInstrumentFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.removepaymentinstrumentfrombasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1592,"kind":32,"name":"removePaymentInstrumentFromBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.removepaymentinstrumentfrombasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1593,"kind":32,"name":"removePriceAdjustmentFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.removepriceadjustmentfrombasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1594,"kind":32,"name":"removePriceAdjustmentFromBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.removepriceadjustmentfrombasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1595,"kind":32,"name":"removeShipmentFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.removeshipmentfrombasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1596,"kind":32,"name":"removeShipmentFromBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.removeshipmentfrombasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1597,"kind":32,"name":"transferBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.transferbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1598,"kind":32,"name":"transferBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.transferbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1599,"kind":32,"name":"updateAsAgentBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updateasagentbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1600,"kind":32,"name":"updateAsAgentBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updateasagentbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1601,"kind":32,"name":"updateAsStorefrontBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updateasstorefrontbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1602,"kind":32,"name":"updateAsStorefrontBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updateasstorefrontbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1603,"kind":32,"name":"updateBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updatebasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1604,"kind":32,"name":"updateBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updatebasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1605,"kind":32,"name":"updateBillingAddressForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updatebillingaddressforbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1606,"kind":32,"name":"updateBillingAddressForBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updatebillingaddressforbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1607,"kind":32,"name":"updateCustomerForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updatecustomerforbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1608,"kind":32,"name":"updateCustomerForBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updatecustomerforbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1609,"kind":32,"name":"updateGiftCertificateItemInBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updategiftcertificateiteminbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1610,"kind":32,"name":"updateGiftCertificateItemInBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updategiftcertificateiteminbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1611,"kind":32,"name":"updateItemInBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updateiteminbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1612,"kind":32,"name":"updateItemInBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updateiteminbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1613,"kind":32,"name":"updateItemsInBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updateitemsinbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1614,"kind":32,"name":"updateItemsInBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updateitemsinbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1615,"kind":32,"name":"updatePaymentInstrumentInBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updatepaymentinstrumentinbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1616,"kind":32,"name":"updatePaymentInstrumentInBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updatepaymentinstrumentinbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1617,"kind":32,"name":"updatePriceAdjustmentInBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updatepriceadjustmentinbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1618,"kind":32,"name":"updatePriceAdjustmentInBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updatepriceadjustmentinbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1619,"kind":32,"name":"updateShipmentForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updateshipmentforbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1620,"kind":32,"name":"updateShipmentForBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updateshipmentforbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1621,"kind":32,"name":"updateShippingAddressForShipment","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updateshippingaddressforshipment","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1622,"kind":32,"name":"updateShippingAddressForShipmentRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updateshippingaddressforshipmentrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1623,"kind":32,"name":"updateShippingMethodForShipment","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updateshippingmethodforshipment","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1624,"kind":32,"name":"updateShippingMethodForShipmentRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updateshippingmethodforshipmentrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1625,"kind":2048,"name":"addCouponToBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#addcoupontobasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1626,"kind":2048,"name":"addGiftCertificateItemToBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#addgiftcertificateitemtobasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1627,"kind":2048,"name":"addItemToBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#additemtobasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1628,"kind":2048,"name":"addPaymentInstrumentToBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#addpaymentinstrumenttobasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1629,"kind":2048,"name":"addPriceAdjustmentToBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#addpriceadjustmenttobasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1630,"kind":2048,"name":"addPriceBooksToBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#addpricebookstobasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1631,"kind":2048,"name":"addTaxesForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#addtaxesforbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1632,"kind":2048,"name":"addTaxesForBasketItem","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#addtaxesforbasketitem-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1633,"kind":2048,"name":"createBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#createbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1634,"kind":2048,"name":"createShipmentForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#createshipmentforbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1635,"kind":2048,"name":"deleteBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#deletebasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1636,"kind":2048,"name":"getBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#getbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1637,"kind":2048,"name":"getPaymentMethodsForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#getpaymentmethodsforbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1638,"kind":2048,"name":"getPriceBooksForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#getpricebooksforbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1639,"kind":2048,"name":"getShippingMethodsForShipment","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#getshippingmethodsforshipment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1640,"kind":2048,"name":"getTaxesFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#gettaxesfrombasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1641,"kind":2048,"name":"mergeBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#mergebasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1642,"kind":2048,"name":"removeCouponFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#removecouponfrombasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1643,"kind":2048,"name":"removeGiftCertificateItemFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#removegiftcertificateitemfrombasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1644,"kind":2048,"name":"removeItemFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#removeitemfrombasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1645,"kind":2048,"name":"removePaymentInstrumentFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#removepaymentinstrumentfrombasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1646,"kind":2048,"name":"removePriceAdjustmentFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#removepriceadjustmentfrombasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1647,"kind":2048,"name":"removeShipmentFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#removeshipmentfrombasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1648,"kind":2048,"name":"transferBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#transferbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1649,"kind":2048,"name":"updateAsAgentBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#updateasagentbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1650,"kind":2048,"name":"updateAsStorefrontBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#updateasstorefrontbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1651,"kind":2048,"name":"updateBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#updatebasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1652,"kind":2048,"name":"updateBillingAddressForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#updatebillingaddressforbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1653,"kind":2048,"name":"updateCustomerForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#updatecustomerforbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1654,"kind":2048,"name":"updateGiftCertificateItemInBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#updategiftcertificateiteminbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1655,"kind":2048,"name":"updateItemInBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#updateiteminbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1656,"kind":2048,"name":"updateItemsInBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#updateitemsinbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1657,"kind":2048,"name":"updatePaymentInstrumentInBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#updatepaymentinstrumentinbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1658,"kind":2048,"name":"updatePriceAdjustmentInBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#updatepriceadjustmentinbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1659,"kind":2048,"name":"updateShipmentForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#updateshipmentforbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1660,"kind":2048,"name":"updateShippingAddressForShipment","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#updateshippingaddressforshipment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1661,"kind":2048,"name":"updateShippingMethodForShipment","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#updateshippingmethodforshipment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1662,"kind":4194304,"name":"CreateBasketTaxModeEnum","url":"modules/shopperbasketsv2.html#createbaskettaxmodeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1663,"kind":4194304,"name":"MergeBasketProductItemMergeModeEnum","url":"modules/shopperbasketsv2.html#mergebasketproductitemmergemodeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1664,"kind":4194304,"name":"addCouponToBasketQueryParameters","url":"modules/shopperbasketsv2.html#addcoupontobasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1665,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#addcoupontobasketqueryparameters-2.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.addCouponToBasketQueryParameters"},{"id":1666,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#addcoupontobasketqueryparameters-2.__type-1.siteid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addCouponToBasketQueryParameters.__type"},{"id":1667,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#addcoupontobasketqueryparameters-2.__type-1.locale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addCouponToBasketQueryParameters.__type"},{"id":1668,"kind":4194304,"name":"addCouponToBasketPathParameters","url":"modules/shopperbasketsv2.html#addcoupontobasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1669,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#addcoupontobasketpathparameters-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.addCouponToBasketPathParameters"},{"id":1670,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#addcoupontobasketpathparameters-2.__type.organizationid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addCouponToBasketPathParameters.__type"},{"id":1671,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#addcoupontobasketpathparameters-2.__type.basketid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addCouponToBasketPathParameters.__type"},{"id":1672,"kind":4194304,"name":"addGiftCertificateItemToBasketQueryParameters","url":"modules/shopperbasketsv2.html#addgiftcertificateitemtobasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1673,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#addgiftcertificateitemtobasketqueryparameters-2.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.addGiftCertificateItemToBasketQueryParameters"},{"id":1674,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#addgiftcertificateitemtobasketqueryparameters-2.__type-3.siteid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addGiftCertificateItemToBasketQueryParameters.__type"},{"id":1675,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#addgiftcertificateitemtobasketqueryparameters-2.__type-3.locale-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addGiftCertificateItemToBasketQueryParameters.__type"},{"id":1676,"kind":4194304,"name":"addGiftCertificateItemToBasketPathParameters","url":"modules/shopperbasketsv2.html#addgiftcertificateitemtobasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1677,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#addgiftcertificateitemtobasketpathparameters-2.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.addGiftCertificateItemToBasketPathParameters"},{"id":1678,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#addgiftcertificateitemtobasketpathparameters-2.__type-2.organizationid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addGiftCertificateItemToBasketPathParameters.__type"},{"id":1679,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#addgiftcertificateitemtobasketpathparameters-2.__type-2.basketid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addGiftCertificateItemToBasketPathParameters.__type"},{"id":1680,"kind":4194304,"name":"addItemToBasketQueryParameters","url":"modules/shopperbasketsv2.html#additemtobasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1681,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#additemtobasketqueryparameters-2.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.addItemToBasketQueryParameters"},{"id":1682,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#additemtobasketqueryparameters-2.__type-5.siteid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addItemToBasketQueryParameters.__type"},{"id":1683,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#additemtobasketqueryparameters-2.__type-5.locale-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addItemToBasketQueryParameters.__type"},{"id":1684,"kind":4194304,"name":"addItemToBasketPathParameters","url":"modules/shopperbasketsv2.html#additemtobasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1685,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#additemtobasketpathparameters-2.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.addItemToBasketPathParameters"},{"id":1686,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#additemtobasketpathparameters-2.__type-4.organizationid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addItemToBasketPathParameters.__type"},{"id":1687,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#additemtobasketpathparameters-2.__type-4.basketid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addItemToBasketPathParameters.__type"},{"id":1688,"kind":4194304,"name":"addPaymentInstrumentToBasketQueryParameters","url":"modules/shopperbasketsv2.html#addpaymentinstrumenttobasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1689,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#addpaymentinstrumenttobasketqueryparameters-2.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.addPaymentInstrumentToBasketQueryParameters"},{"id":1690,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#addpaymentinstrumenttobasketqueryparameters-2.__type-7.siteid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addPaymentInstrumentToBasketQueryParameters.__type"},{"id":1691,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#addpaymentinstrumenttobasketqueryparameters-2.__type-7.locale-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addPaymentInstrumentToBasketQueryParameters.__type"},{"id":1692,"kind":4194304,"name":"addPaymentInstrumentToBasketPathParameters","url":"modules/shopperbasketsv2.html#addpaymentinstrumenttobasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1693,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#addpaymentinstrumenttobasketpathparameters-2.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.addPaymentInstrumentToBasketPathParameters"},{"id":1694,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#addpaymentinstrumenttobasketpathparameters-2.__type-6.organizationid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addPaymentInstrumentToBasketPathParameters.__type"},{"id":1695,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#addpaymentinstrumenttobasketpathparameters-2.__type-6.basketid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addPaymentInstrumentToBasketPathParameters.__type"},{"id":1696,"kind":4194304,"name":"addPriceAdjustmentToBasketQueryParameters","url":"modules/shopperbasketsv2.html#addpriceadjustmenttobasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1697,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#addpriceadjustmenttobasketqueryparameters-2.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.addPriceAdjustmentToBasketQueryParameters"},{"id":1698,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#addpriceadjustmenttobasketqueryparameters-2.__type-9.siteid-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addPriceAdjustmentToBasketQueryParameters.__type"},{"id":1699,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#addpriceadjustmenttobasketqueryparameters-2.__type-9.locale-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addPriceAdjustmentToBasketQueryParameters.__type"},{"id":1700,"kind":4194304,"name":"addPriceAdjustmentToBasketPathParameters","url":"modules/shopperbasketsv2.html#addpriceadjustmenttobasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1701,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#addpriceadjustmenttobasketpathparameters-2.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.addPriceAdjustmentToBasketPathParameters"},{"id":1702,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#addpriceadjustmenttobasketpathparameters-2.__type-8.organizationid-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addPriceAdjustmentToBasketPathParameters.__type"},{"id":1703,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#addpriceadjustmenttobasketpathparameters-2.__type-8.basketid-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addPriceAdjustmentToBasketPathParameters.__type"},{"id":1704,"kind":4194304,"name":"addPriceBooksToBasketQueryParameters","url":"modules/shopperbasketsv2.html#addpricebookstobasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1705,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#addpricebookstobasketqueryparameters-2.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.addPriceBooksToBasketQueryParameters"},{"id":1706,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#addpricebookstobasketqueryparameters-2.__type-11.siteid-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addPriceBooksToBasketQueryParameters.__type"},{"id":1707,"kind":4194304,"name":"addPriceBooksToBasketPathParameters","url":"modules/shopperbasketsv2.html#addpricebookstobasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1708,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#addpricebookstobasketpathparameters-2.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.addPriceBooksToBasketPathParameters"},{"id":1709,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#addpricebookstobasketpathparameters-2.__type-10.organizationid-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addPriceBooksToBasketPathParameters.__type"},{"id":1710,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#addpricebookstobasketpathparameters-2.__type-10.basketid-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addPriceBooksToBasketPathParameters.__type"},{"id":1711,"kind":4194304,"name":"addTaxesForBasketQueryParameters","url":"modules/shopperbasketsv2.html#addtaxesforbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1712,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#addtaxesforbasketqueryparameters-2.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.addTaxesForBasketQueryParameters"},{"id":1713,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#addtaxesforbasketqueryparameters-2.__type-15.siteid-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addTaxesForBasketQueryParameters.__type"},{"id":1714,"kind":4194304,"name":"addTaxesForBasketPathParameters","url":"modules/shopperbasketsv2.html#addtaxesforbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1715,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#addtaxesforbasketpathparameters-2.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.addTaxesForBasketPathParameters"},{"id":1716,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#addtaxesforbasketpathparameters-2.__type-14.organizationid-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addTaxesForBasketPathParameters.__type"},{"id":1717,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#addtaxesforbasketpathparameters-2.__type-14.basketid-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addTaxesForBasketPathParameters.__type"},{"id":1718,"kind":4194304,"name":"addTaxesForBasketItemQueryParameters","url":"modules/shopperbasketsv2.html#addtaxesforbasketitemqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1719,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#addtaxesforbasketitemqueryparameters-2.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.addTaxesForBasketItemQueryParameters"},{"id":1720,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#addtaxesforbasketitemqueryparameters-2.__type-13.siteid-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addTaxesForBasketItemQueryParameters.__type"},{"id":1721,"kind":4194304,"name":"addTaxesForBasketItemPathParameters","url":"modules/shopperbasketsv2.html#addtaxesforbasketitempathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1722,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#addtaxesforbasketitempathparameters-2.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.addTaxesForBasketItemPathParameters"},{"id":1723,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#addtaxesforbasketitempathparameters-2.__type-12.organizationid-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addTaxesForBasketItemPathParameters.__type"},{"id":1724,"kind":32,"name":"itemId","url":"modules/shopperbasketsv2.html#addtaxesforbasketitempathparameters-2.__type-12.itemid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addTaxesForBasketItemPathParameters.__type"},{"id":1725,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#addtaxesforbasketitempathparameters-2.__type-12.basketid-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addTaxesForBasketItemPathParameters.__type"},{"id":1726,"kind":4194304,"name":"createBasketQueryParameters","url":"modules/shopperbasketsv2.html#createbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1727,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#createbasketqueryparameters-2.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.createBasketQueryParameters"},{"id":1728,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#createbasketqueryparameters-2.__type-17.siteid-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.createBasketQueryParameters.__type"},{"id":1729,"kind":32,"name":"taxMode","url":"modules/shopperbasketsv2.html#createbasketqueryparameters-2.__type-17.taxmode","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.createBasketQueryParameters.__type"},{"id":1730,"kind":32,"name":"temporary","url":"modules/shopperbasketsv2.html#createbasketqueryparameters-2.__type-17.temporary","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.createBasketQueryParameters.__type"},{"id":1731,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#createbasketqueryparameters-2.__type-17.locale-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.createBasketQueryParameters.__type"},{"id":1732,"kind":4194304,"name":"createBasketPathParameters","url":"modules/shopperbasketsv2.html#createbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1733,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#createbasketpathparameters-2.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.createBasketPathParameters"},{"id":1734,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#createbasketpathparameters-2.__type-16.organizationid-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.createBasketPathParameters.__type"},{"id":1735,"kind":4194304,"name":"createShipmentForBasketQueryParameters","url":"modules/shopperbasketsv2.html#createshipmentforbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1736,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#createshipmentforbasketqueryparameters-2.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.createShipmentForBasketQueryParameters"},{"id":1737,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#createshipmentforbasketqueryparameters-2.__type-19.siteid-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.createShipmentForBasketQueryParameters.__type"},{"id":1738,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#createshipmentforbasketqueryparameters-2.__type-19.locale-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.createShipmentForBasketQueryParameters.__type"},{"id":1739,"kind":4194304,"name":"createShipmentForBasketPathParameters","url":"modules/shopperbasketsv2.html#createshipmentforbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1740,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#createshipmentforbasketpathparameters-2.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.createShipmentForBasketPathParameters"},{"id":1741,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#createshipmentforbasketpathparameters-2.__type-18.organizationid-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.createShipmentForBasketPathParameters.__type"},{"id":1742,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#createshipmentforbasketpathparameters-2.__type-18.basketid-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.createShipmentForBasketPathParameters.__type"},{"id":1743,"kind":4194304,"name":"deleteBasketQueryParameters","url":"modules/shopperbasketsv2.html#deletebasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1744,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#deletebasketqueryparameters-2.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.deleteBasketQueryParameters"},{"id":1745,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#deletebasketqueryparameters-2.__type-21.siteid-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.deleteBasketQueryParameters.__type"},{"id":1746,"kind":4194304,"name":"deleteBasketPathParameters","url":"modules/shopperbasketsv2.html#deletebasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1747,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#deletebasketpathparameters-2.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.deleteBasketPathParameters"},{"id":1748,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#deletebasketpathparameters-2.__type-20.organizationid-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.deleteBasketPathParameters.__type"},{"id":1749,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#deletebasketpathparameters-2.__type-20.basketid-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.deleteBasketPathParameters.__type"},{"id":1750,"kind":4194304,"name":"getBasketQueryParameters","url":"modules/shopperbasketsv2.html#getbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1751,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#getbasketqueryparameters-2.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.getBasketQueryParameters"},{"id":1752,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#getbasketqueryparameters-2.__type-23.siteid-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getBasketQueryParameters.__type"},{"id":1753,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#getbasketqueryparameters-2.__type-23.locale-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getBasketQueryParameters.__type"},{"id":1754,"kind":4194304,"name":"getBasketPathParameters","url":"modules/shopperbasketsv2.html#getbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1755,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#getbasketpathparameters-2.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.getBasketPathParameters"},{"id":1756,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#getbasketpathparameters-2.__type-22.organizationid-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getBasketPathParameters.__type"},{"id":1757,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#getbasketpathparameters-2.__type-22.basketid-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getBasketPathParameters.__type"},{"id":1758,"kind":4194304,"name":"getPaymentMethodsForBasketQueryParameters","url":"modules/shopperbasketsv2.html#getpaymentmethodsforbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1759,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#getpaymentmethodsforbasketqueryparameters-2.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.getPaymentMethodsForBasketQueryParameters"},{"id":1760,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#getpaymentmethodsforbasketqueryparameters-2.__type-25.siteid-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getPaymentMethodsForBasketQueryParameters.__type"},{"id":1761,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#getpaymentmethodsforbasketqueryparameters-2.__type-25.locale-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getPaymentMethodsForBasketQueryParameters.__type"},{"id":1762,"kind":4194304,"name":"getPaymentMethodsForBasketPathParameters","url":"modules/shopperbasketsv2.html#getpaymentmethodsforbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1763,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#getpaymentmethodsforbasketpathparameters-2.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.getPaymentMethodsForBasketPathParameters"},{"id":1764,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#getpaymentmethodsforbasketpathparameters-2.__type-24.organizationid-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getPaymentMethodsForBasketPathParameters.__type"},{"id":1765,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#getpaymentmethodsforbasketpathparameters-2.__type-24.basketid-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getPaymentMethodsForBasketPathParameters.__type"},{"id":1766,"kind":4194304,"name":"getPriceBooksForBasketQueryParameters","url":"modules/shopperbasketsv2.html#getpricebooksforbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1767,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#getpricebooksforbasketqueryparameters-2.__type-27","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.getPriceBooksForBasketQueryParameters"},{"id":1768,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#getpricebooksforbasketqueryparameters-2.__type-27.siteid-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getPriceBooksForBasketQueryParameters.__type"},{"id":1769,"kind":4194304,"name":"getPriceBooksForBasketPathParameters","url":"modules/shopperbasketsv2.html#getpricebooksforbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1770,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#getpricebooksforbasketpathparameters-2.__type-26","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.getPriceBooksForBasketPathParameters"},{"id":1771,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#getpricebooksforbasketpathparameters-2.__type-26.organizationid-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getPriceBooksForBasketPathParameters.__type"},{"id":1772,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#getpricebooksforbasketpathparameters-2.__type-26.basketid-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getPriceBooksForBasketPathParameters.__type"},{"id":1773,"kind":4194304,"name":"getShippingMethodsForShipmentQueryParameters","url":"modules/shopperbasketsv2.html#getshippingmethodsforshipmentqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1774,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#getshippingmethodsforshipmentqueryparameters-2.__type-29","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.getShippingMethodsForShipmentQueryParameters"},{"id":1775,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#getshippingmethodsforshipmentqueryparameters-2.__type-29.siteid-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getShippingMethodsForShipmentQueryParameters.__type"},{"id":1776,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#getshippingmethodsforshipmentqueryparameters-2.__type-29.locale-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getShippingMethodsForShipmentQueryParameters.__type"},{"id":1777,"kind":4194304,"name":"getShippingMethodsForShipmentPathParameters","url":"modules/shopperbasketsv2.html#getshippingmethodsforshipmentpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1778,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#getshippingmethodsforshipmentpathparameters-2.__type-28","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.getShippingMethodsForShipmentPathParameters"},{"id":1779,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#getshippingmethodsforshipmentpathparameters-2.__type-28.organizationid-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getShippingMethodsForShipmentPathParameters.__type"},{"id":1780,"kind":32,"name":"shipmentId","url":"modules/shopperbasketsv2.html#getshippingmethodsforshipmentpathparameters-2.__type-28.shipmentid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getShippingMethodsForShipmentPathParameters.__type"},{"id":1781,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#getshippingmethodsforshipmentpathparameters-2.__type-28.basketid-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getShippingMethodsForShipmentPathParameters.__type"},{"id":1782,"kind":4194304,"name":"getTaxesFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#gettaxesfrombasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1783,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#gettaxesfrombasketqueryparameters-2.__type-31","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.getTaxesFromBasketQueryParameters"},{"id":1784,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#gettaxesfrombasketqueryparameters-2.__type-31.siteid-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getTaxesFromBasketQueryParameters.__type"},{"id":1785,"kind":4194304,"name":"getTaxesFromBasketPathParameters","url":"modules/shopperbasketsv2.html#gettaxesfrombasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1786,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#gettaxesfrombasketpathparameters-2.__type-30","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.getTaxesFromBasketPathParameters"},{"id":1787,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#gettaxesfrombasketpathparameters-2.__type-30.organizationid-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getTaxesFromBasketPathParameters.__type"},{"id":1788,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#gettaxesfrombasketpathparameters-2.__type-30.basketid-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getTaxesFromBasketPathParameters.__type"},{"id":1789,"kind":4194304,"name":"mergeBasketQueryParameters","url":"modules/shopperbasketsv2.html#mergebasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1790,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#mergebasketqueryparameters-2.__type-33","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.mergeBasketQueryParameters"},{"id":1791,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#mergebasketqueryparameters-2.__type-33.siteid-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.mergeBasketQueryParameters.__type"},{"id":1792,"kind":32,"name":"createDestinationBasket","url":"modules/shopperbasketsv2.html#mergebasketqueryparameters-2.__type-33.createdestinationbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.mergeBasketQueryParameters.__type"},{"id":1793,"kind":32,"name":"productItemMergeMode","url":"modules/shopperbasketsv2.html#mergebasketqueryparameters-2.__type-33.productitemmergemode","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.mergeBasketQueryParameters.__type"},{"id":1794,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#mergebasketqueryparameters-2.__type-33.locale-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.mergeBasketQueryParameters.__type"},{"id":1795,"kind":4194304,"name":"mergeBasketPathParameters","url":"modules/shopperbasketsv2.html#mergebasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1796,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#mergebasketpathparameters-2.__type-32","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.mergeBasketPathParameters"},{"id":1797,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#mergebasketpathparameters-2.__type-32.organizationid-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.mergeBasketPathParameters.__type"},{"id":1798,"kind":4194304,"name":"removeCouponFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#removecouponfrombasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1799,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#removecouponfrombasketqueryparameters-2.__type-35","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.removeCouponFromBasketQueryParameters"},{"id":1800,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#removecouponfrombasketqueryparameters-2.__type-35.siteid-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeCouponFromBasketQueryParameters.__type"},{"id":1801,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#removecouponfrombasketqueryparameters-2.__type-35.locale-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeCouponFromBasketQueryParameters.__type"},{"id":1802,"kind":4194304,"name":"removeCouponFromBasketPathParameters","url":"modules/shopperbasketsv2.html#removecouponfrombasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1803,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#removecouponfrombasketpathparameters-2.__type-34","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.removeCouponFromBasketPathParameters"},{"id":1804,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#removecouponfrombasketpathparameters-2.__type-34.organizationid-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeCouponFromBasketPathParameters.__type"},{"id":1805,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#removecouponfrombasketpathparameters-2.__type-34.basketid-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeCouponFromBasketPathParameters.__type"},{"id":1806,"kind":32,"name":"couponItemId","url":"modules/shopperbasketsv2.html#removecouponfrombasketpathparameters-2.__type-34.couponitemid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeCouponFromBasketPathParameters.__type"},{"id":1807,"kind":4194304,"name":"removeGiftCertificateItemFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#removegiftcertificateitemfrombasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1808,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#removegiftcertificateitemfrombasketqueryparameters-2.__type-37","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.removeGiftCertificateItemFromBasketQueryParameters"},{"id":1809,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#removegiftcertificateitemfrombasketqueryparameters-2.__type-37.siteid-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeGiftCertificateItemFromBasketQueryParameters.__type"},{"id":1810,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#removegiftcertificateitemfrombasketqueryparameters-2.__type-37.locale-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeGiftCertificateItemFromBasketQueryParameters.__type"},{"id":1811,"kind":4194304,"name":"removeGiftCertificateItemFromBasketPathParameters","url":"modules/shopperbasketsv2.html#removegiftcertificateitemfrombasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1812,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#removegiftcertificateitemfrombasketpathparameters-2.__type-36","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.removeGiftCertificateItemFromBasketPathParameters"},{"id":1813,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#removegiftcertificateitemfrombasketpathparameters-2.__type-36.organizationid-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeGiftCertificateItemFromBasketPathParameters.__type"},{"id":1814,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#removegiftcertificateitemfrombasketpathparameters-2.__type-36.basketid-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeGiftCertificateItemFromBasketPathParameters.__type"},{"id":1815,"kind":32,"name":"giftCertificateItemId","url":"modules/shopperbasketsv2.html#removegiftcertificateitemfrombasketpathparameters-2.__type-36.giftcertificateitemid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeGiftCertificateItemFromBasketPathParameters.__type"},{"id":1816,"kind":4194304,"name":"removeItemFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#removeitemfrombasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1817,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#removeitemfrombasketqueryparameters-2.__type-39","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.removeItemFromBasketQueryParameters"},{"id":1818,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#removeitemfrombasketqueryparameters-2.__type-39.siteid-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeItemFromBasketQueryParameters.__type"},{"id":1819,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#removeitemfrombasketqueryparameters-2.__type-39.locale-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeItemFromBasketQueryParameters.__type"},{"id":1820,"kind":4194304,"name":"removeItemFromBasketPathParameters","url":"modules/shopperbasketsv2.html#removeitemfrombasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1821,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#removeitemfrombasketpathparameters-2.__type-38","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.removeItemFromBasketPathParameters"},{"id":1822,"kind":32,"name":"itemId","url":"modules/shopperbasketsv2.html#removeitemfrombasketpathparameters-2.__type-38.itemid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeItemFromBasketPathParameters.__type"},{"id":1823,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#removeitemfrombasketpathparameters-2.__type-38.organizationid-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeItemFromBasketPathParameters.__type"},{"id":1824,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#removeitemfrombasketpathparameters-2.__type-38.basketid-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeItemFromBasketPathParameters.__type"},{"id":1825,"kind":4194304,"name":"removePaymentInstrumentFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#removepaymentinstrumentfrombasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1826,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#removepaymentinstrumentfrombasketqueryparameters-2.__type-41","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.removePaymentInstrumentFromBasketQueryParameters"},{"id":1827,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#removepaymentinstrumentfrombasketqueryparameters-2.__type-41.siteid-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removePaymentInstrumentFromBasketQueryParameters.__type"},{"id":1828,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#removepaymentinstrumentfrombasketqueryparameters-2.__type-41.locale-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removePaymentInstrumentFromBasketQueryParameters.__type"},{"id":1829,"kind":4194304,"name":"removePaymentInstrumentFromBasketPathParameters","url":"modules/shopperbasketsv2.html#removepaymentinstrumentfrombasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1830,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#removepaymentinstrumentfrombasketpathparameters-2.__type-40","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.removePaymentInstrumentFromBasketPathParameters"},{"id":1831,"kind":32,"name":"paymentInstrumentId","url":"modules/shopperbasketsv2.html#removepaymentinstrumentfrombasketpathparameters-2.__type-40.paymentinstrumentid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removePaymentInstrumentFromBasketPathParameters.__type"},{"id":1832,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#removepaymentinstrumentfrombasketpathparameters-2.__type-40.organizationid-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removePaymentInstrumentFromBasketPathParameters.__type"},{"id":1833,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#removepaymentinstrumentfrombasketpathparameters-2.__type-40.basketid-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removePaymentInstrumentFromBasketPathParameters.__type"},{"id":1834,"kind":4194304,"name":"removePriceAdjustmentFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#removepriceadjustmentfrombasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1835,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#removepriceadjustmentfrombasketqueryparameters-2.__type-43","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.removePriceAdjustmentFromBasketQueryParameters"},{"id":1836,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#removepriceadjustmentfrombasketqueryparameters-2.__type-43.siteid-21","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removePriceAdjustmentFromBasketQueryParameters.__type"},{"id":1837,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#removepriceadjustmentfrombasketqueryparameters-2.__type-43.locale-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removePriceAdjustmentFromBasketQueryParameters.__type"},{"id":1838,"kind":4194304,"name":"removePriceAdjustmentFromBasketPathParameters","url":"modules/shopperbasketsv2.html#removepriceadjustmentfrombasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1839,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#removepriceadjustmentfrombasketpathparameters-2.__type-42","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.removePriceAdjustmentFromBasketPathParameters"},{"id":1840,"kind":32,"name":"priceAdjustmentId","url":"modules/shopperbasketsv2.html#removepriceadjustmentfrombasketpathparameters-2.__type-42.priceadjustmentid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removePriceAdjustmentFromBasketPathParameters.__type"},{"id":1841,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#removepriceadjustmentfrombasketpathparameters-2.__type-42.organizationid-21","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removePriceAdjustmentFromBasketPathParameters.__type"},{"id":1842,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#removepriceadjustmentfrombasketpathparameters-2.__type-42.basketid-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removePriceAdjustmentFromBasketPathParameters.__type"},{"id":1843,"kind":4194304,"name":"removeShipmentFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#removeshipmentfrombasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1844,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#removeshipmentfrombasketqueryparameters-2.__type-45","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.removeShipmentFromBasketQueryParameters"},{"id":1845,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#removeshipmentfrombasketqueryparameters-2.__type-45.siteid-22","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeShipmentFromBasketQueryParameters.__type"},{"id":1846,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#removeshipmentfrombasketqueryparameters-2.__type-45.locale-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeShipmentFromBasketQueryParameters.__type"},{"id":1847,"kind":4194304,"name":"removeShipmentFromBasketPathParameters","url":"modules/shopperbasketsv2.html#removeshipmentfrombasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1848,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#removeshipmentfrombasketpathparameters-2.__type-44","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.removeShipmentFromBasketPathParameters"},{"id":1849,"kind":32,"name":"shipmentId","url":"modules/shopperbasketsv2.html#removeshipmentfrombasketpathparameters-2.__type-44.shipmentid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeShipmentFromBasketPathParameters.__type"},{"id":1850,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#removeshipmentfrombasketpathparameters-2.__type-44.organizationid-22","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeShipmentFromBasketPathParameters.__type"},{"id":1851,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#removeshipmentfrombasketpathparameters-2.__type-44.basketid-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeShipmentFromBasketPathParameters.__type"},{"id":1852,"kind":4194304,"name":"transferBasketQueryParameters","url":"modules/shopperbasketsv2.html#transferbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1853,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#transferbasketqueryparameters-2.__type-47","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.transferBasketQueryParameters"},{"id":1854,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#transferbasketqueryparameters-2.__type-47.siteid-23","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.transferBasketQueryParameters.__type"},{"id":1855,"kind":32,"name":"overrideExisting","url":"modules/shopperbasketsv2.html#transferbasketqueryparameters-2.__type-47.overrideexisting","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.transferBasketQueryParameters.__type"},{"id":1856,"kind":32,"name":"merge","url":"modules/shopperbasketsv2.html#transferbasketqueryparameters-2.__type-47.merge","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.transferBasketQueryParameters.__type"},{"id":1857,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#transferbasketqueryparameters-2.__type-47.locale-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.transferBasketQueryParameters.__type"},{"id":1858,"kind":4194304,"name":"transferBasketPathParameters","url":"modules/shopperbasketsv2.html#transferbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1859,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#transferbasketpathparameters-2.__type-46","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.transferBasketPathParameters"},{"id":1860,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#transferbasketpathparameters-2.__type-46.organizationid-23","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.transferBasketPathParameters.__type"},{"id":1861,"kind":4194304,"name":"updateAsAgentBasketQueryParameters","url":"modules/shopperbasketsv2.html#updateasagentbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1862,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updateasagentbasketqueryparameters-2.__type-49","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateAsAgentBasketQueryParameters"},{"id":1863,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#updateasagentbasketqueryparameters-2.__type-49.siteid-24","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateAsAgentBasketQueryParameters.__type"},{"id":1864,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#updateasagentbasketqueryparameters-2.__type-49.locale-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateAsAgentBasketQueryParameters.__type"},{"id":1865,"kind":4194304,"name":"updateAsAgentBasketPathParameters","url":"modules/shopperbasketsv2.html#updateasagentbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1866,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updateasagentbasketpathparameters-2.__type-48","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateAsAgentBasketPathParameters"},{"id":1867,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#updateasagentbasketpathparameters-2.__type-48.organizationid-24","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateAsAgentBasketPathParameters.__type"},{"id":1868,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#updateasagentbasketpathparameters-2.__type-48.basketid-21","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateAsAgentBasketPathParameters.__type"},{"id":1869,"kind":4194304,"name":"updateAsStorefrontBasketQueryParameters","url":"modules/shopperbasketsv2.html#updateasstorefrontbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1870,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updateasstorefrontbasketqueryparameters-2.__type-51","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateAsStorefrontBasketQueryParameters"},{"id":1871,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#updateasstorefrontbasketqueryparameters-2.__type-51.siteid-25","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateAsStorefrontBasketQueryParameters.__type"},{"id":1872,"kind":32,"name":"exchange","url":"modules/shopperbasketsv2.html#updateasstorefrontbasketqueryparameters-2.__type-51.exchange","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateAsStorefrontBasketQueryParameters.__type"},{"id":1873,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#updateasstorefrontbasketqueryparameters-2.__type-51.locale-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateAsStorefrontBasketQueryParameters.__type"},{"id":1874,"kind":4194304,"name":"updateAsStorefrontBasketPathParameters","url":"modules/shopperbasketsv2.html#updateasstorefrontbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1875,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updateasstorefrontbasketpathparameters-2.__type-50","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateAsStorefrontBasketPathParameters"},{"id":1876,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#updateasstorefrontbasketpathparameters-2.__type-50.organizationid-25","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateAsStorefrontBasketPathParameters.__type"},{"id":1877,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#updateasstorefrontbasketpathparameters-2.__type-50.basketid-22","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateAsStorefrontBasketPathParameters.__type"},{"id":1878,"kind":4194304,"name":"updateBasketQueryParameters","url":"modules/shopperbasketsv2.html#updatebasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1879,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updatebasketqueryparameters-2.__type-53","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateBasketQueryParameters"},{"id":1880,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#updatebasketqueryparameters-2.__type-53.siteid-26","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateBasketQueryParameters.__type"},{"id":1881,"kind":32,"name":"removeExternalTax","url":"modules/shopperbasketsv2.html#updatebasketqueryparameters-2.__type-53.removeexternaltax","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateBasketQueryParameters.__type"},{"id":1882,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#updatebasketqueryparameters-2.__type-53.locale-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateBasketQueryParameters.__type"},{"id":1883,"kind":4194304,"name":"updateBasketPathParameters","url":"modules/shopperbasketsv2.html#updatebasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1884,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updatebasketpathparameters-2.__type-52","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateBasketPathParameters"},{"id":1885,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#updatebasketpathparameters-2.__type-52.organizationid-26","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateBasketPathParameters.__type"},{"id":1886,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#updatebasketpathparameters-2.__type-52.basketid-23","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateBasketPathParameters.__type"},{"id":1887,"kind":4194304,"name":"updateBillingAddressForBasketQueryParameters","url":"modules/shopperbasketsv2.html#updatebillingaddressforbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1888,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updatebillingaddressforbasketqueryparameters-2.__type-55","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateBillingAddressForBasketQueryParameters"},{"id":1889,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#updatebillingaddressforbasketqueryparameters-2.__type-55.siteid-27","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateBillingAddressForBasketQueryParameters.__type"},{"id":1890,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#updatebillingaddressforbasketqueryparameters-2.__type-55.locale-21","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateBillingAddressForBasketQueryParameters.__type"},{"id":1891,"kind":32,"name":"useAsShipping","url":"modules/shopperbasketsv2.html#updatebillingaddressforbasketqueryparameters-2.__type-55.useasshipping","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateBillingAddressForBasketQueryParameters.__type"},{"id":1892,"kind":32,"name":"removeExternalTax","url":"modules/shopperbasketsv2.html#updatebillingaddressforbasketqueryparameters-2.__type-55.removeexternaltax-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateBillingAddressForBasketQueryParameters.__type"},{"id":1893,"kind":4194304,"name":"updateBillingAddressForBasketPathParameters","url":"modules/shopperbasketsv2.html#updatebillingaddressforbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1894,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updatebillingaddressforbasketpathparameters-2.__type-54","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateBillingAddressForBasketPathParameters"},{"id":1895,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#updatebillingaddressforbasketpathparameters-2.__type-54.organizationid-27","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateBillingAddressForBasketPathParameters.__type"},{"id":1896,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#updatebillingaddressforbasketpathparameters-2.__type-54.basketid-24","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateBillingAddressForBasketPathParameters.__type"},{"id":1897,"kind":4194304,"name":"updateCustomerForBasketQueryParameters","url":"modules/shopperbasketsv2.html#updatecustomerforbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1898,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updatecustomerforbasketqueryparameters-2.__type-57","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateCustomerForBasketQueryParameters"},{"id":1899,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#updatecustomerforbasketqueryparameters-2.__type-57.siteid-28","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateCustomerForBasketQueryParameters.__type"},{"id":1900,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#updatecustomerforbasketqueryparameters-2.__type-57.locale-22","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateCustomerForBasketQueryParameters.__type"},{"id":1901,"kind":4194304,"name":"updateCustomerForBasketPathParameters","url":"modules/shopperbasketsv2.html#updatecustomerforbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1902,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updatecustomerforbasketpathparameters-2.__type-56","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateCustomerForBasketPathParameters"},{"id":1903,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#updatecustomerforbasketpathparameters-2.__type-56.organizationid-28","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateCustomerForBasketPathParameters.__type"},{"id":1904,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#updatecustomerforbasketpathparameters-2.__type-56.basketid-25","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateCustomerForBasketPathParameters.__type"},{"id":1905,"kind":4194304,"name":"updateGiftCertificateItemInBasketQueryParameters","url":"modules/shopperbasketsv2.html#updategiftcertificateiteminbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1906,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updategiftcertificateiteminbasketqueryparameters-2.__type-59","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateGiftCertificateItemInBasketQueryParameters"},{"id":1907,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#updategiftcertificateiteminbasketqueryparameters-2.__type-59.siteid-29","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateGiftCertificateItemInBasketQueryParameters.__type"},{"id":1908,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#updategiftcertificateiteminbasketqueryparameters-2.__type-59.locale-23","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateGiftCertificateItemInBasketQueryParameters.__type"},{"id":1909,"kind":4194304,"name":"updateGiftCertificateItemInBasketPathParameters","url":"modules/shopperbasketsv2.html#updategiftcertificateiteminbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1910,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updategiftcertificateiteminbasketpathparameters-2.__type-58","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateGiftCertificateItemInBasketPathParameters"},{"id":1911,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#updategiftcertificateiteminbasketpathparameters-2.__type-58.organizationid-29","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateGiftCertificateItemInBasketPathParameters.__type"},{"id":1912,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#updategiftcertificateiteminbasketpathparameters-2.__type-58.basketid-26","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateGiftCertificateItemInBasketPathParameters.__type"},{"id":1913,"kind":32,"name":"giftCertificateItemId","url":"modules/shopperbasketsv2.html#updategiftcertificateiteminbasketpathparameters-2.__type-58.giftcertificateitemid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateGiftCertificateItemInBasketPathParameters.__type"},{"id":1914,"kind":4194304,"name":"updateItemInBasketQueryParameters","url":"modules/shopperbasketsv2.html#updateiteminbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1915,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updateiteminbasketqueryparameters-2.__type-61","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateItemInBasketQueryParameters"},{"id":1916,"kind":32,"name":"removeExternalTax","url":"modules/shopperbasketsv2.html#updateiteminbasketqueryparameters-2.__type-61.removeexternaltax-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateItemInBasketQueryParameters.__type"},{"id":1917,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#updateiteminbasketqueryparameters-2.__type-61.siteid-30","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateItemInBasketQueryParameters.__type"},{"id":1918,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#updateiteminbasketqueryparameters-2.__type-61.locale-24","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateItemInBasketQueryParameters.__type"},{"id":1919,"kind":4194304,"name":"updateItemInBasketPathParameters","url":"modules/shopperbasketsv2.html#updateiteminbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1920,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updateiteminbasketpathparameters-2.__type-60","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateItemInBasketPathParameters"},{"id":1921,"kind":32,"name":"itemId","url":"modules/shopperbasketsv2.html#updateiteminbasketpathparameters-2.__type-60.itemid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateItemInBasketPathParameters.__type"},{"id":1922,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#updateiteminbasketpathparameters-2.__type-60.organizationid-30","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateItemInBasketPathParameters.__type"},{"id":1923,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#updateiteminbasketpathparameters-2.__type-60.basketid-27","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateItemInBasketPathParameters.__type"},{"id":1924,"kind":4194304,"name":"updateItemsInBasketQueryParameters","url":"modules/shopperbasketsv2.html#updateitemsinbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1925,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updateitemsinbasketqueryparameters-2.__type-63","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateItemsInBasketQueryParameters"},{"id":1926,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#updateitemsinbasketqueryparameters-2.__type-63.siteid-31","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateItemsInBasketQueryParameters.__type"},{"id":1927,"kind":32,"name":"removeExternalTax","url":"modules/shopperbasketsv2.html#updateitemsinbasketqueryparameters-2.__type-63.removeexternaltax-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateItemsInBasketQueryParameters.__type"},{"id":1928,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#updateitemsinbasketqueryparameters-2.__type-63.locale-25","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateItemsInBasketQueryParameters.__type"},{"id":1929,"kind":4194304,"name":"updateItemsInBasketPathParameters","url":"modules/shopperbasketsv2.html#updateitemsinbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1930,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updateitemsinbasketpathparameters-2.__type-62","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateItemsInBasketPathParameters"},{"id":1931,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#updateitemsinbasketpathparameters-2.__type-62.organizationid-31","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateItemsInBasketPathParameters.__type"},{"id":1932,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#updateitemsinbasketpathparameters-2.__type-62.basketid-28","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateItemsInBasketPathParameters.__type"},{"id":1933,"kind":4194304,"name":"updatePaymentInstrumentInBasketQueryParameters","url":"modules/shopperbasketsv2.html#updatepaymentinstrumentinbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1934,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updatepaymentinstrumentinbasketqueryparameters-2.__type-65","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updatePaymentInstrumentInBasketQueryParameters"},{"id":1935,"kind":32,"name":"removeExternalTax","url":"modules/shopperbasketsv2.html#updatepaymentinstrumentinbasketqueryparameters-2.__type-65.removeexternaltax-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updatePaymentInstrumentInBasketQueryParameters.__type"},{"id":1936,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#updatepaymentinstrumentinbasketqueryparameters-2.__type-65.siteid-32","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updatePaymentInstrumentInBasketQueryParameters.__type"},{"id":1937,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#updatepaymentinstrumentinbasketqueryparameters-2.__type-65.locale-26","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updatePaymentInstrumentInBasketQueryParameters.__type"},{"id":1938,"kind":4194304,"name":"updatePaymentInstrumentInBasketPathParameters","url":"modules/shopperbasketsv2.html#updatepaymentinstrumentinbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1939,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updatepaymentinstrumentinbasketpathparameters-2.__type-64","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updatePaymentInstrumentInBasketPathParameters"},{"id":1940,"kind":32,"name":"paymentInstrumentId","url":"modules/shopperbasketsv2.html#updatepaymentinstrumentinbasketpathparameters-2.__type-64.paymentinstrumentid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updatePaymentInstrumentInBasketPathParameters.__type"},{"id":1941,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#updatepaymentinstrumentinbasketpathparameters-2.__type-64.organizationid-32","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updatePaymentInstrumentInBasketPathParameters.__type"},{"id":1942,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#updatepaymentinstrumentinbasketpathparameters-2.__type-64.basketid-29","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updatePaymentInstrumentInBasketPathParameters.__type"},{"id":1943,"kind":4194304,"name":"updatePriceAdjustmentInBasketQueryParameters","url":"modules/shopperbasketsv2.html#updatepriceadjustmentinbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1944,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updatepriceadjustmentinbasketqueryparameters-2.__type-67","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updatePriceAdjustmentInBasketQueryParameters"},{"id":1945,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#updatepriceadjustmentinbasketqueryparameters-2.__type-67.siteid-33","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updatePriceAdjustmentInBasketQueryParameters.__type"},{"id":1946,"kind":4194304,"name":"updatePriceAdjustmentInBasketPathParameters","url":"modules/shopperbasketsv2.html#updatepriceadjustmentinbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1947,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updatepriceadjustmentinbasketpathparameters-2.__type-66","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updatePriceAdjustmentInBasketPathParameters"},{"id":1948,"kind":32,"name":"priceAdjustmentId","url":"modules/shopperbasketsv2.html#updatepriceadjustmentinbasketpathparameters-2.__type-66.priceadjustmentid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updatePriceAdjustmentInBasketPathParameters.__type"},{"id":1949,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#updatepriceadjustmentinbasketpathparameters-2.__type-66.organizationid-33","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updatePriceAdjustmentInBasketPathParameters.__type"},{"id":1950,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#updatepriceadjustmentinbasketpathparameters-2.__type-66.basketid-30","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updatePriceAdjustmentInBasketPathParameters.__type"},{"id":1951,"kind":4194304,"name":"updateShipmentForBasketQueryParameters","url":"modules/shopperbasketsv2.html#updateshipmentforbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1952,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updateshipmentforbasketqueryparameters-2.__type-69","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateShipmentForBasketQueryParameters"},{"id":1953,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#updateshipmentforbasketqueryparameters-2.__type-69.siteid-34","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateShipmentForBasketQueryParameters.__type"},{"id":1954,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#updateshipmentforbasketqueryparameters-2.__type-69.locale-27","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateShipmentForBasketQueryParameters.__type"},{"id":1955,"kind":4194304,"name":"updateShipmentForBasketPathParameters","url":"modules/shopperbasketsv2.html#updateshipmentforbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1956,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updateshipmentforbasketpathparameters-2.__type-68","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateShipmentForBasketPathParameters"},{"id":1957,"kind":32,"name":"shipmentId","url":"modules/shopperbasketsv2.html#updateshipmentforbasketpathparameters-2.__type-68.shipmentid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateShipmentForBasketPathParameters.__type"},{"id":1958,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#updateshipmentforbasketpathparameters-2.__type-68.organizationid-34","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateShipmentForBasketPathParameters.__type"},{"id":1959,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#updateshipmentforbasketpathparameters-2.__type-68.basketid-31","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateShipmentForBasketPathParameters.__type"},{"id":1960,"kind":4194304,"name":"updateShippingAddressForShipmentQueryParameters","url":"modules/shopperbasketsv2.html#updateshippingaddressforshipmentqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1961,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updateshippingaddressforshipmentqueryparameters-2.__type-71","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateShippingAddressForShipmentQueryParameters"},{"id":1962,"kind":32,"name":"useAsBilling","url":"modules/shopperbasketsv2.html#updateshippingaddressforshipmentqueryparameters-2.__type-71.useasbilling","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateShippingAddressForShipmentQueryParameters.__type"},{"id":1963,"kind":32,"name":"removeExternalTax","url":"modules/shopperbasketsv2.html#updateshippingaddressforshipmentqueryparameters-2.__type-71.removeexternaltax-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateShippingAddressForShipmentQueryParameters.__type"},{"id":1964,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#updateshippingaddressforshipmentqueryparameters-2.__type-71.siteid-35","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateShippingAddressForShipmentQueryParameters.__type"},{"id":1965,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#updateshippingaddressforshipmentqueryparameters-2.__type-71.locale-28","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateShippingAddressForShipmentQueryParameters.__type"},{"id":1966,"kind":4194304,"name":"updateShippingAddressForShipmentPathParameters","url":"modules/shopperbasketsv2.html#updateshippingaddressforshipmentpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1967,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updateshippingaddressforshipmentpathparameters-2.__type-70","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateShippingAddressForShipmentPathParameters"},{"id":1968,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#updateshippingaddressforshipmentpathparameters-2.__type-70.organizationid-35","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateShippingAddressForShipmentPathParameters.__type"},{"id":1969,"kind":32,"name":"shipmentId","url":"modules/shopperbasketsv2.html#updateshippingaddressforshipmentpathparameters-2.__type-70.shipmentid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateShippingAddressForShipmentPathParameters.__type"},{"id":1970,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#updateshippingaddressforshipmentpathparameters-2.__type-70.basketid-32","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateShippingAddressForShipmentPathParameters.__type"},{"id":1971,"kind":4194304,"name":"updateShippingMethodForShipmentQueryParameters","url":"modules/shopperbasketsv2.html#updateshippingmethodforshipmentqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1972,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updateshippingmethodforshipmentqueryparameters-2.__type-73","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateShippingMethodForShipmentQueryParameters"},{"id":1973,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#updateshippingmethodforshipmentqueryparameters-2.__type-73.siteid-36","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateShippingMethodForShipmentQueryParameters.__type"},{"id":1974,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#updateshippingmethodforshipmentqueryparameters-2.__type-73.locale-29","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateShippingMethodForShipmentQueryParameters.__type"},{"id":1975,"kind":4194304,"name":"updateShippingMethodForShipmentPathParameters","url":"modules/shopperbasketsv2.html#updateshippingmethodforshipmentpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1976,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updateshippingmethodforshipmentpathparameters-2.__type-72","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateShippingMethodForShipmentPathParameters"},{"id":1977,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#updateshippingmethodforshipmentpathparameters-2.__type-72.organizationid-36","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateShippingMethodForShipmentPathParameters.__type"},{"id":1978,"kind":32,"name":"shipmentId","url":"modules/shopperbasketsv2.html#updateshippingmethodforshipmentpathparameters-2.__type-72.shipmentid-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateShippingMethodForShipmentPathParameters.__type"},{"id":1979,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#updateshippingmethodforshipmentpathparameters-2.__type-72.basketid-33","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateShippingMethodForShipmentPathParameters.__type"},{"id":1980,"kind":4194304,"name":"ShopperBasketsPathParameters","url":"modules/shopperbasketsv2.html#shopperbasketspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1981,"kind":4194304,"name":"ShopperBasketsQueryParameters","url":"modules/shopperbasketsv2.html#shopperbasketsqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1982,"kind":4194304,"name":"ShopperBasketsParameters","url":"modules/shopperbasketsv2.html#shopperbasketsparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1983,"kind":16777216,"name":"CreateBasketTaxModeEnum","url":"modules/shopperbasketsv2.html#createbaskettaxmodeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1984,"kind":16777216,"name":"MergeBasketProductItemMergeModeEnum","url":"modules/shopperbasketsv2.html#mergebasketproductitemmergemodeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1985,"kind":16777216,"name":"addCouponToBasketQueryParameters","url":"modules/shopperbasketsv2.html#addcoupontobasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1986,"kind":16777216,"name":"addCouponToBasketPathParameters","url":"modules/shopperbasketsv2.html#addcoupontobasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1987,"kind":16777216,"name":"addGiftCertificateItemToBasketQueryParameters","url":"modules/shopperbasketsv2.html#addgiftcertificateitemtobasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1988,"kind":16777216,"name":"addGiftCertificateItemToBasketPathParameters","url":"modules/shopperbasketsv2.html#addgiftcertificateitemtobasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1989,"kind":16777216,"name":"addItemToBasketQueryParameters","url":"modules/shopperbasketsv2.html#additemtobasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1990,"kind":16777216,"name":"addItemToBasketPathParameters","url":"modules/shopperbasketsv2.html#additemtobasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1991,"kind":16777216,"name":"addPaymentInstrumentToBasketQueryParameters","url":"modules/shopperbasketsv2.html#addpaymentinstrumenttobasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1992,"kind":16777216,"name":"addPaymentInstrumentToBasketPathParameters","url":"modules/shopperbasketsv2.html#addpaymentinstrumenttobasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1993,"kind":16777216,"name":"addPriceAdjustmentToBasketQueryParameters","url":"modules/shopperbasketsv2.html#addpriceadjustmenttobasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1994,"kind":16777216,"name":"addPriceAdjustmentToBasketPathParameters","url":"modules/shopperbasketsv2.html#addpriceadjustmenttobasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1995,"kind":16777216,"name":"addPriceBooksToBasketQueryParameters","url":"modules/shopperbasketsv2.html#addpricebookstobasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1996,"kind":16777216,"name":"addPriceBooksToBasketPathParameters","url":"modules/shopperbasketsv2.html#addpricebookstobasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1997,"kind":16777216,"name":"addTaxesForBasketQueryParameters","url":"modules/shopperbasketsv2.html#addtaxesforbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1998,"kind":16777216,"name":"addTaxesForBasketPathParameters","url":"modules/shopperbasketsv2.html#addtaxesforbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1999,"kind":16777216,"name":"addTaxesForBasketItemQueryParameters","url":"modules/shopperbasketsv2.html#addtaxesforbasketitemqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2000,"kind":16777216,"name":"addTaxesForBasketItemPathParameters","url":"modules/shopperbasketsv2.html#addtaxesforbasketitempathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2001,"kind":16777216,"name":"createBasketQueryParameters","url":"modules/shopperbasketsv2.html#createbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2002,"kind":16777216,"name":"createBasketPathParameters","url":"modules/shopperbasketsv2.html#createbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2003,"kind":16777216,"name":"createShipmentForBasketQueryParameters","url":"modules/shopperbasketsv2.html#createshipmentforbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2004,"kind":16777216,"name":"createShipmentForBasketPathParameters","url":"modules/shopperbasketsv2.html#createshipmentforbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2005,"kind":16777216,"name":"deleteBasketQueryParameters","url":"modules/shopperbasketsv2.html#deletebasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2006,"kind":16777216,"name":"deleteBasketPathParameters","url":"modules/shopperbasketsv2.html#deletebasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2007,"kind":16777216,"name":"getBasketQueryParameters","url":"modules/shopperbasketsv2.html#getbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2008,"kind":16777216,"name":"getBasketPathParameters","url":"modules/shopperbasketsv2.html#getbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2009,"kind":16777216,"name":"getPaymentMethodsForBasketQueryParameters","url":"modules/shopperbasketsv2.html#getpaymentmethodsforbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2010,"kind":16777216,"name":"getPaymentMethodsForBasketPathParameters","url":"modules/shopperbasketsv2.html#getpaymentmethodsforbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2011,"kind":16777216,"name":"getPriceBooksForBasketQueryParameters","url":"modules/shopperbasketsv2.html#getpricebooksforbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2012,"kind":16777216,"name":"getPriceBooksForBasketPathParameters","url":"modules/shopperbasketsv2.html#getpricebooksforbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2013,"kind":16777216,"name":"getShippingMethodsForShipmentQueryParameters","url":"modules/shopperbasketsv2.html#getshippingmethodsforshipmentqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2014,"kind":16777216,"name":"getShippingMethodsForShipmentPathParameters","url":"modules/shopperbasketsv2.html#getshippingmethodsforshipmentpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2015,"kind":16777216,"name":"getTaxesFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#gettaxesfrombasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2016,"kind":16777216,"name":"getTaxesFromBasketPathParameters","url":"modules/shopperbasketsv2.html#gettaxesfrombasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2017,"kind":16777216,"name":"mergeBasketQueryParameters","url":"modules/shopperbasketsv2.html#mergebasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2018,"kind":16777216,"name":"mergeBasketPathParameters","url":"modules/shopperbasketsv2.html#mergebasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2019,"kind":16777216,"name":"removeCouponFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#removecouponfrombasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2020,"kind":16777216,"name":"removeCouponFromBasketPathParameters","url":"modules/shopperbasketsv2.html#removecouponfrombasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2021,"kind":16777216,"name":"removeGiftCertificateItemFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#removegiftcertificateitemfrombasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2022,"kind":16777216,"name":"removeGiftCertificateItemFromBasketPathParameters","url":"modules/shopperbasketsv2.html#removegiftcertificateitemfrombasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2023,"kind":16777216,"name":"removeItemFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#removeitemfrombasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2024,"kind":16777216,"name":"removeItemFromBasketPathParameters","url":"modules/shopperbasketsv2.html#removeitemfrombasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2025,"kind":16777216,"name":"removePaymentInstrumentFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#removepaymentinstrumentfrombasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2026,"kind":16777216,"name":"removePaymentInstrumentFromBasketPathParameters","url":"modules/shopperbasketsv2.html#removepaymentinstrumentfrombasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2027,"kind":16777216,"name":"removePriceAdjustmentFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#removepriceadjustmentfrombasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2028,"kind":16777216,"name":"removePriceAdjustmentFromBasketPathParameters","url":"modules/shopperbasketsv2.html#removepriceadjustmentfrombasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2029,"kind":16777216,"name":"removeShipmentFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#removeshipmentfrombasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2030,"kind":16777216,"name":"removeShipmentFromBasketPathParameters","url":"modules/shopperbasketsv2.html#removeshipmentfrombasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2031,"kind":16777216,"name":"transferBasketQueryParameters","url":"modules/shopperbasketsv2.html#transferbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2032,"kind":16777216,"name":"transferBasketPathParameters","url":"modules/shopperbasketsv2.html#transferbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2033,"kind":16777216,"name":"updateAsAgentBasketQueryParameters","url":"modules/shopperbasketsv2.html#updateasagentbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2034,"kind":16777216,"name":"updateAsAgentBasketPathParameters","url":"modules/shopperbasketsv2.html#updateasagentbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2035,"kind":16777216,"name":"updateAsStorefrontBasketQueryParameters","url":"modules/shopperbasketsv2.html#updateasstorefrontbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2036,"kind":16777216,"name":"updateAsStorefrontBasketPathParameters","url":"modules/shopperbasketsv2.html#updateasstorefrontbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2037,"kind":16777216,"name":"updateBasketQueryParameters","url":"modules/shopperbasketsv2.html#updatebasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2038,"kind":16777216,"name":"updateBasketPathParameters","url":"modules/shopperbasketsv2.html#updatebasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2039,"kind":16777216,"name":"updateBillingAddressForBasketQueryParameters","url":"modules/shopperbasketsv2.html#updatebillingaddressforbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2040,"kind":16777216,"name":"updateBillingAddressForBasketPathParameters","url":"modules/shopperbasketsv2.html#updatebillingaddressforbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2041,"kind":16777216,"name":"updateCustomerForBasketQueryParameters","url":"modules/shopperbasketsv2.html#updatecustomerforbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2042,"kind":16777216,"name":"updateCustomerForBasketPathParameters","url":"modules/shopperbasketsv2.html#updatecustomerforbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2043,"kind":16777216,"name":"updateGiftCertificateItemInBasketQueryParameters","url":"modules/shopperbasketsv2.html#updategiftcertificateiteminbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2044,"kind":16777216,"name":"updateGiftCertificateItemInBasketPathParameters","url":"modules/shopperbasketsv2.html#updategiftcertificateiteminbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2045,"kind":16777216,"name":"updateItemInBasketQueryParameters","url":"modules/shopperbasketsv2.html#updateiteminbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2046,"kind":16777216,"name":"updateItemInBasketPathParameters","url":"modules/shopperbasketsv2.html#updateiteminbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2047,"kind":16777216,"name":"updateItemsInBasketQueryParameters","url":"modules/shopperbasketsv2.html#updateitemsinbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2048,"kind":16777216,"name":"updateItemsInBasketPathParameters","url":"modules/shopperbasketsv2.html#updateitemsinbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2049,"kind":16777216,"name":"updatePaymentInstrumentInBasketQueryParameters","url":"modules/shopperbasketsv2.html#updatepaymentinstrumentinbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2050,"kind":16777216,"name":"updatePaymentInstrumentInBasketPathParameters","url":"modules/shopperbasketsv2.html#updatepaymentinstrumentinbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2051,"kind":16777216,"name":"updatePriceAdjustmentInBasketQueryParameters","url":"modules/shopperbasketsv2.html#updatepriceadjustmentinbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2052,"kind":16777216,"name":"updatePriceAdjustmentInBasketPathParameters","url":"modules/shopperbasketsv2.html#updatepriceadjustmentinbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2053,"kind":16777216,"name":"updateShipmentForBasketQueryParameters","url":"modules/shopperbasketsv2.html#updateshipmentforbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2054,"kind":16777216,"name":"updateShipmentForBasketPathParameters","url":"modules/shopperbasketsv2.html#updateshipmentforbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2055,"kind":16777216,"name":"updateShippingAddressForShipmentQueryParameters","url":"modules/shopperbasketsv2.html#updateshippingaddressforshipmentqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2056,"kind":16777216,"name":"updateShippingAddressForShipmentPathParameters","url":"modules/shopperbasketsv2.html#updateshippingaddressforshipmentpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2057,"kind":16777216,"name":"updateShippingMethodForShipmentQueryParameters","url":"modules/shopperbasketsv2.html#updateshippingmethodforshipmentqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2058,"kind":16777216,"name":"updateShippingMethodForShipmentPathParameters","url":"modules/shopperbasketsv2.html#updateshippingmethodforshipmentpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2059,"kind":16777216,"name":"ShopperBasketsPathParameters","url":"modules/shopperbasketsv2.html#shopperbasketspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2060,"kind":16777216,"name":"ShopperBasketsQueryParameters","url":"modules/shopperbasketsv2.html#shopperbasketsqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2061,"kind":16777216,"name":"ShopperBasketsParameters","url":"modules/shopperbasketsv2.html#shopperbasketsparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2062,"kind":16777216,"name":"ShopperBasketsV2","url":"modules/shopperbasketsv2.html#shopperbasketsv2-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2063,"kind":16777216,"name":"defaultBaseUri","url":"modules/shopperbasketsv2.html#defaultbaseuri","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2064,"kind":16777216,"name":"CreateBasketTaxModeEnum","url":"modules/shopperbasketsv2.html#createbaskettaxmodeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2065,"kind":16777216,"name":"MergeBasketProductItemMergeModeEnum","url":"modules/shopperbasketsv2.html#mergebasketproductitemmergemodeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2066,"kind":16777216,"name":"addCouponToBasketQueryParameters","url":"modules/shopperbasketsv2.html#addcoupontobasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2067,"kind":16777216,"name":"addCouponToBasketPathParameters","url":"modules/shopperbasketsv2.html#addcoupontobasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2068,"kind":16777216,"name":"addGiftCertificateItemToBasketQueryParameters","url":"modules/shopperbasketsv2.html#addgiftcertificateitemtobasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2069,"kind":16777216,"name":"addGiftCertificateItemToBasketPathParameters","url":"modules/shopperbasketsv2.html#addgiftcertificateitemtobasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2070,"kind":16777216,"name":"addItemToBasketQueryParameters","url":"modules/shopperbasketsv2.html#additemtobasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2071,"kind":16777216,"name":"addItemToBasketPathParameters","url":"modules/shopperbasketsv2.html#additemtobasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2072,"kind":16777216,"name":"addPaymentInstrumentToBasketQueryParameters","url":"modules/shopperbasketsv2.html#addpaymentinstrumenttobasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2073,"kind":16777216,"name":"addPaymentInstrumentToBasketPathParameters","url":"modules/shopperbasketsv2.html#addpaymentinstrumenttobasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2074,"kind":16777216,"name":"addPriceAdjustmentToBasketQueryParameters","url":"modules/shopperbasketsv2.html#addpriceadjustmenttobasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2075,"kind":16777216,"name":"addPriceAdjustmentToBasketPathParameters","url":"modules/shopperbasketsv2.html#addpriceadjustmenttobasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2076,"kind":16777216,"name":"addPriceBooksToBasketQueryParameters","url":"modules/shopperbasketsv2.html#addpricebookstobasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2077,"kind":16777216,"name":"addPriceBooksToBasketPathParameters","url":"modules/shopperbasketsv2.html#addpricebookstobasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2078,"kind":16777216,"name":"addTaxesForBasketQueryParameters","url":"modules/shopperbasketsv2.html#addtaxesforbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2079,"kind":16777216,"name":"addTaxesForBasketPathParameters","url":"modules/shopperbasketsv2.html#addtaxesforbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2080,"kind":16777216,"name":"addTaxesForBasketItemQueryParameters","url":"modules/shopperbasketsv2.html#addtaxesforbasketitemqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2081,"kind":16777216,"name":"addTaxesForBasketItemPathParameters","url":"modules/shopperbasketsv2.html#addtaxesforbasketitempathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2082,"kind":16777216,"name":"createBasketQueryParameters","url":"modules/shopperbasketsv2.html#createbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2083,"kind":16777216,"name":"createBasketPathParameters","url":"modules/shopperbasketsv2.html#createbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2084,"kind":16777216,"name":"createShipmentForBasketQueryParameters","url":"modules/shopperbasketsv2.html#createshipmentforbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2085,"kind":16777216,"name":"createShipmentForBasketPathParameters","url":"modules/shopperbasketsv2.html#createshipmentforbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2086,"kind":16777216,"name":"deleteBasketQueryParameters","url":"modules/shopperbasketsv2.html#deletebasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2087,"kind":16777216,"name":"deleteBasketPathParameters","url":"modules/shopperbasketsv2.html#deletebasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2088,"kind":16777216,"name":"getBasketQueryParameters","url":"modules/shopperbasketsv2.html#getbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2089,"kind":16777216,"name":"getBasketPathParameters","url":"modules/shopperbasketsv2.html#getbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2090,"kind":16777216,"name":"getPaymentMethodsForBasketQueryParameters","url":"modules/shopperbasketsv2.html#getpaymentmethodsforbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2091,"kind":16777216,"name":"getPaymentMethodsForBasketPathParameters","url":"modules/shopperbasketsv2.html#getpaymentmethodsforbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2092,"kind":16777216,"name":"getPriceBooksForBasketQueryParameters","url":"modules/shopperbasketsv2.html#getpricebooksforbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2093,"kind":16777216,"name":"getPriceBooksForBasketPathParameters","url":"modules/shopperbasketsv2.html#getpricebooksforbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2094,"kind":16777216,"name":"getShippingMethodsForShipmentQueryParameters","url":"modules/shopperbasketsv2.html#getshippingmethodsforshipmentqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2095,"kind":16777216,"name":"getShippingMethodsForShipmentPathParameters","url":"modules/shopperbasketsv2.html#getshippingmethodsforshipmentpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2096,"kind":16777216,"name":"getTaxesFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#gettaxesfrombasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2097,"kind":16777216,"name":"getTaxesFromBasketPathParameters","url":"modules/shopperbasketsv2.html#gettaxesfrombasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2098,"kind":16777216,"name":"mergeBasketQueryParameters","url":"modules/shopperbasketsv2.html#mergebasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2099,"kind":16777216,"name":"mergeBasketPathParameters","url":"modules/shopperbasketsv2.html#mergebasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2100,"kind":16777216,"name":"removeCouponFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#removecouponfrombasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2101,"kind":16777216,"name":"removeCouponFromBasketPathParameters","url":"modules/shopperbasketsv2.html#removecouponfrombasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2102,"kind":16777216,"name":"removeGiftCertificateItemFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#removegiftcertificateitemfrombasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2103,"kind":16777216,"name":"removeGiftCertificateItemFromBasketPathParameters","url":"modules/shopperbasketsv2.html#removegiftcertificateitemfrombasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2104,"kind":16777216,"name":"removeItemFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#removeitemfrombasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2105,"kind":16777216,"name":"removeItemFromBasketPathParameters","url":"modules/shopperbasketsv2.html#removeitemfrombasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2106,"kind":16777216,"name":"removePaymentInstrumentFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#removepaymentinstrumentfrombasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2107,"kind":16777216,"name":"removePaymentInstrumentFromBasketPathParameters","url":"modules/shopperbasketsv2.html#removepaymentinstrumentfrombasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2108,"kind":16777216,"name":"removePriceAdjustmentFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#removepriceadjustmentfrombasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2109,"kind":16777216,"name":"removePriceAdjustmentFromBasketPathParameters","url":"modules/shopperbasketsv2.html#removepriceadjustmentfrombasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2110,"kind":16777216,"name":"removeShipmentFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#removeshipmentfrombasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2111,"kind":16777216,"name":"removeShipmentFromBasketPathParameters","url":"modules/shopperbasketsv2.html#removeshipmentfrombasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2112,"kind":16777216,"name":"transferBasketQueryParameters","url":"modules/shopperbasketsv2.html#transferbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2113,"kind":16777216,"name":"transferBasketPathParameters","url":"modules/shopperbasketsv2.html#transferbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2114,"kind":16777216,"name":"updateAsAgentBasketQueryParameters","url":"modules/shopperbasketsv2.html#updateasagentbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2115,"kind":16777216,"name":"updateAsAgentBasketPathParameters","url":"modules/shopperbasketsv2.html#updateasagentbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2116,"kind":16777216,"name":"updateAsStorefrontBasketQueryParameters","url":"modules/shopperbasketsv2.html#updateasstorefrontbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2117,"kind":16777216,"name":"updateAsStorefrontBasketPathParameters","url":"modules/shopperbasketsv2.html#updateasstorefrontbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2118,"kind":16777216,"name":"updateBasketQueryParameters","url":"modules/shopperbasketsv2.html#updatebasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2119,"kind":16777216,"name":"updateBasketPathParameters","url":"modules/shopperbasketsv2.html#updatebasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2120,"kind":16777216,"name":"updateBillingAddressForBasketQueryParameters","url":"modules/shopperbasketsv2.html#updatebillingaddressforbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2121,"kind":16777216,"name":"updateBillingAddressForBasketPathParameters","url":"modules/shopperbasketsv2.html#updatebillingaddressforbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2122,"kind":16777216,"name":"updateCustomerForBasketQueryParameters","url":"modules/shopperbasketsv2.html#updatecustomerforbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2123,"kind":16777216,"name":"updateCustomerForBasketPathParameters","url":"modules/shopperbasketsv2.html#updatecustomerforbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2124,"kind":16777216,"name":"updateGiftCertificateItemInBasketQueryParameters","url":"modules/shopperbasketsv2.html#updategiftcertificateiteminbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2125,"kind":16777216,"name":"updateGiftCertificateItemInBasketPathParameters","url":"modules/shopperbasketsv2.html#updategiftcertificateiteminbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2126,"kind":16777216,"name":"updateItemInBasketQueryParameters","url":"modules/shopperbasketsv2.html#updateiteminbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2127,"kind":16777216,"name":"updateItemInBasketPathParameters","url":"modules/shopperbasketsv2.html#updateiteminbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2128,"kind":16777216,"name":"updateItemsInBasketQueryParameters","url":"modules/shopperbasketsv2.html#updateitemsinbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2129,"kind":16777216,"name":"updateItemsInBasketPathParameters","url":"modules/shopperbasketsv2.html#updateitemsinbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2130,"kind":16777216,"name":"updatePaymentInstrumentInBasketQueryParameters","url":"modules/shopperbasketsv2.html#updatepaymentinstrumentinbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2131,"kind":16777216,"name":"updatePaymentInstrumentInBasketPathParameters","url":"modules/shopperbasketsv2.html#updatepaymentinstrumentinbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2132,"kind":16777216,"name":"updatePriceAdjustmentInBasketQueryParameters","url":"modules/shopperbasketsv2.html#updatepriceadjustmentinbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2133,"kind":16777216,"name":"updatePriceAdjustmentInBasketPathParameters","url":"modules/shopperbasketsv2.html#updatepriceadjustmentinbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2134,"kind":16777216,"name":"updateShipmentForBasketQueryParameters","url":"modules/shopperbasketsv2.html#updateshipmentforbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2135,"kind":16777216,"name":"updateShipmentForBasketPathParameters","url":"modules/shopperbasketsv2.html#updateshipmentforbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2136,"kind":16777216,"name":"updateShippingAddressForShipmentQueryParameters","url":"modules/shopperbasketsv2.html#updateshippingaddressforshipmentqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2137,"kind":16777216,"name":"updateShippingAddressForShipmentPathParameters","url":"modules/shopperbasketsv2.html#updateshippingaddressforshipmentpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2138,"kind":16777216,"name":"updateShippingMethodForShipmentQueryParameters","url":"modules/shopperbasketsv2.html#updateshippingmethodforshipmentqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2139,"kind":16777216,"name":"updateShippingMethodForShipmentPathParameters","url":"modules/shopperbasketsv2.html#updateshippingmethodforshipmentpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2140,"kind":16777216,"name":"ShopperBasketsPathParameters","url":"modules/shopperbasketsv2.html#shopperbasketspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2141,"kind":16777216,"name":"ShopperBasketsQueryParameters","url":"modules/shopperbasketsv2.html#shopperbasketsqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2142,"kind":16777216,"name":"ShopperBasketsParameters","url":"modules/shopperbasketsv2.html#shopperbasketsparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2143,"kind":16777216,"name":"ShopperBasketsV2","url":"modules/shopperbasketsv2.html#shopperbasketsv2-2","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2144,"kind":16777216,"name":"Basket","url":"modules/shopperbasketsv2.html#basket-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2145,"kind":16777216,"name":"BasketChannelTypeEnum","url":"modules/shopperbasketsv2.html#basketchanneltypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2146,"kind":16777216,"name":"BasketTaxationEnum","url":"modules/shopperbasketsv2.html#baskettaxationenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2147,"kind":16777216,"name":"BasketPaymentInstrumentRequest","url":"modules/shopperbasketsv2.html#basketpaymentinstrumentrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2148,"kind":16777216,"name":"BonusDiscountLineItem","url":"modules/shopperbasketsv2.html#bonusdiscountlineitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2149,"kind":16777216,"name":"CouponItem","url":"modules/shopperbasketsv2.html#couponitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2150,"kind":16777216,"name":"CouponItemStatusCodeEnum","url":"modules/shopperbasketsv2.html#couponitemstatuscodeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2151,"kind":16777216,"name":"CurrencyCode","url":"modules/shopperbasketsv2.html#currencycode-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2152,"kind":16777216,"name":"CustomerInfo","url":"modules/shopperbasketsv2.html#customerinfo-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2153,"kind":16777216,"name":"DefaultFallback","url":"modules/shopperbasketsv2.html#defaultfallback-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2154,"kind":16777216,"name":"Discount","url":"modules/shopperbasketsv2.html#discount-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2155,"kind":16777216,"name":"DiscountTypeEnum","url":"modules/shopperbasketsv2.html#discounttypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2156,"kind":16777216,"name":"DiscountRequest","url":"modules/shopperbasketsv2.html#discountrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2157,"kind":16777216,"name":"DiscountRequestTypeEnum","url":"modules/shopperbasketsv2.html#discountrequesttypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2158,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperbasketsv2.html#errorresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2159,"kind":16777216,"name":"GiftCertificateItem","url":"modules/shopperbasketsv2.html#giftcertificateitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2160,"kind":16777216,"name":"GroupedTaxItem","url":"modules/shopperbasketsv2.html#groupedtaxitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2161,"kind":16777216,"name":"LocaleCode","url":"modules/shopperbasketsv2.html#localecode-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2162,"kind":16777216,"name":"NoValue","url":"modules/shopperbasketsv2.html#novalue-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2163,"kind":16777216,"name":"OptionItem","url":"modules/shopperbasketsv2.html#optionitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2164,"kind":16777216,"name":"OrderAddress","url":"modules/shopperbasketsv2.html#orderaddress-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2165,"kind":16777216,"name":"OrderPaymentCardRequest","url":"modules/shopperbasketsv2.html#orderpaymentcardrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2166,"kind":16777216,"name":"OrderPaymentInstrument","url":"modules/shopperbasketsv2.html#orderpaymentinstrument-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2167,"kind":16777216,"name":"PaymentCard","url":"modules/shopperbasketsv2.html#paymentcard-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2168,"kind":16777216,"name":"PaymentCardSpec","url":"modules/shopperbasketsv2.html#paymentcardspec-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2169,"kind":16777216,"name":"PaymentMethod","url":"modules/shopperbasketsv2.html#paymentmethod-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2170,"kind":16777216,"name":"PaymentMethodResult","url":"modules/shopperbasketsv2.html#paymentmethodresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2171,"kind":16777216,"name":"PriceAdjustment","url":"modules/shopperbasketsv2.html#priceadjustment-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2172,"kind":16777216,"name":"PriceAdjustmentRequest","url":"modules/shopperbasketsv2.html#priceadjustmentrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2173,"kind":16777216,"name":"PriceAdjustmentRequestLevelEnum","url":"modules/shopperbasketsv2.html#priceadjustmentrequestlevelenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2174,"kind":16777216,"name":"ProductDetailsLink","url":"modules/shopperbasketsv2.html#productdetailslink-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2175,"kind":16777216,"name":"ProductItem","url":"modules/shopperbasketsv2.html#productitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2176,"kind":16777216,"name":"ProductListItemReference","url":"modules/shopperbasketsv2.html#productlistitemreference-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2177,"kind":16777216,"name":"ProductListItemReferenceTypeEnum","url":"modules/shopperbasketsv2.html#productlistitemreferencetypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2178,"kind":16777216,"name":"ProductListLink","url":"modules/shopperbasketsv2.html#productlistlink-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2179,"kind":16777216,"name":"ProductListLinkTypeEnum","url":"modules/shopperbasketsv2.html#productlistlinktypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2180,"kind":16777216,"name":"Shipment","url":"modules/shopperbasketsv2.html#shipment-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2181,"kind":16777216,"name":"ShipmentShippingStatusEnum","url":"modules/shopperbasketsv2.html#shipmentshippingstatusenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2182,"kind":16777216,"name":"ShippingItem","url":"modules/shopperbasketsv2.html#shippingitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2183,"kind":16777216,"name":"ShippingMethod","url":"modules/shopperbasketsv2.html#shippingmethod-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2184,"kind":16777216,"name":"ShippingMethodResult","url":"modules/shopperbasketsv2.html#shippingmethodresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2185,"kind":16777216,"name":"ShippingPromotion","url":"modules/shopperbasketsv2.html#shippingpromotion-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2186,"kind":16777216,"name":"Status","url":"modules/shopperbasketsv2.html#status-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2187,"kind":16777216,"name":"TaxItem","url":"modules/shopperbasketsv2.html#taxitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2188,"kind":16777216,"name":"TaxItems","url":"modules/shopperbasketsv2.html#taxitems-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2189,"kind":16777216,"name":"Taxes","url":"modules/shopperbasketsv2.html#taxes-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2190,"kind":2,"name":"ShopperBasketsV2Types","url":"modules/shopperbasketsv2.shopperbasketsv2types.html","classes":"tsd-kind-namespace tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2191,"kind":4194304,"name":"ShopperBasketsPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#shopperbasketspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2192,"kind":4194304,"name":"ShopperBasketsQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#shopperbasketsqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2193,"kind":4194304,"name":"addCouponToBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#addcoupontobasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2194,"kind":4194304,"name":"addCouponToBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#addcoupontobasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2195,"kind":4194304,"name":"addGiftCertificateItemToBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#addgiftcertificateitemtobasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2196,"kind":4194304,"name":"addGiftCertificateItemToBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#addgiftcertificateitemtobasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2197,"kind":4194304,"name":"addItemToBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#additemtobasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2198,"kind":4194304,"name":"addItemToBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#additemtobasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2199,"kind":4194304,"name":"addPaymentInstrumentToBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#addpaymentinstrumenttobasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2200,"kind":4194304,"name":"addPaymentInstrumentToBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#addpaymentinstrumenttobasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2201,"kind":4194304,"name":"addPriceAdjustmentToBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#addpriceadjustmenttobasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2202,"kind":4194304,"name":"addPriceAdjustmentToBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#addpriceadjustmenttobasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2203,"kind":4194304,"name":"addPriceBooksToBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#addpricebookstobasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2204,"kind":4194304,"name":"addPriceBooksToBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#addpricebookstobasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2205,"kind":4194304,"name":"addTaxesForBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#addtaxesforbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2206,"kind":4194304,"name":"addTaxesForBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#addtaxesforbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2207,"kind":4194304,"name":"addTaxesForBasketItemQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#addtaxesforbasketitemqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2208,"kind":4194304,"name":"addTaxesForBasketItemPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#addtaxesforbasketitempathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2209,"kind":4194304,"name":"CreateBasketTaxModeEnum","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#createbaskettaxmodeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2210,"kind":4194304,"name":"createBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#createbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2211,"kind":4194304,"name":"createBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#createbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2212,"kind":4194304,"name":"createShipmentForBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#createshipmentforbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2213,"kind":4194304,"name":"createShipmentForBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#createshipmentforbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2214,"kind":4194304,"name":"deleteBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#deletebasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2215,"kind":4194304,"name":"deleteBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#deletebasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2216,"kind":4194304,"name":"getBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#getbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2217,"kind":4194304,"name":"getBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#getbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2218,"kind":4194304,"name":"getPaymentMethodsForBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#getpaymentmethodsforbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2219,"kind":4194304,"name":"getPaymentMethodsForBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#getpaymentmethodsforbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2220,"kind":4194304,"name":"getPriceBooksForBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#getpricebooksforbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2221,"kind":4194304,"name":"getPriceBooksForBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#getpricebooksforbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2222,"kind":4194304,"name":"getShippingMethodsForShipmentQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#getshippingmethodsforshipmentqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2223,"kind":4194304,"name":"getShippingMethodsForShipmentPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#getshippingmethodsforshipmentpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2224,"kind":4194304,"name":"getTaxesFromBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#gettaxesfrombasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2225,"kind":4194304,"name":"getTaxesFromBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#gettaxesfrombasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2226,"kind":4194304,"name":"MergeBasketProductItemMergeModeEnum","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#mergebasketproductitemmergemodeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2227,"kind":4194304,"name":"mergeBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#mergebasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2228,"kind":4194304,"name":"mergeBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#mergebasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2229,"kind":4194304,"name":"removeCouponFromBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#removecouponfrombasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2230,"kind":4194304,"name":"removeCouponFromBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#removecouponfrombasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2231,"kind":4194304,"name":"removeGiftCertificateItemFromBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#removegiftcertificateitemfrombasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2232,"kind":4194304,"name":"removeGiftCertificateItemFromBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#removegiftcertificateitemfrombasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2233,"kind":4194304,"name":"removeItemFromBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#removeitemfrombasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2234,"kind":4194304,"name":"removeItemFromBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#removeitemfrombasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2235,"kind":4194304,"name":"removePaymentInstrumentFromBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#removepaymentinstrumentfrombasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2236,"kind":4194304,"name":"removePaymentInstrumentFromBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#removepaymentinstrumentfrombasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2237,"kind":4194304,"name":"removePriceAdjustmentFromBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#removepriceadjustmentfrombasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2238,"kind":4194304,"name":"removePriceAdjustmentFromBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#removepriceadjustmentfrombasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2239,"kind":4194304,"name":"removeShipmentFromBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#removeshipmentfrombasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2240,"kind":4194304,"name":"removeShipmentFromBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#removeshipmentfrombasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2241,"kind":4194304,"name":"transferBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#transferbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2242,"kind":4194304,"name":"transferBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#transferbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2243,"kind":4194304,"name":"updateAsAgentBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updateasagentbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2244,"kind":4194304,"name":"updateAsAgentBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updateasagentbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2245,"kind":4194304,"name":"updateAsStorefrontBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updateasstorefrontbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2246,"kind":4194304,"name":"updateAsStorefrontBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updateasstorefrontbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2247,"kind":4194304,"name":"updateBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updatebasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2248,"kind":4194304,"name":"updateBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updatebasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2249,"kind":4194304,"name":"updateBillingAddressForBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updatebillingaddressforbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2250,"kind":4194304,"name":"updateBillingAddressForBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updatebillingaddressforbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2251,"kind":4194304,"name":"updateCustomerForBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updatecustomerforbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2252,"kind":4194304,"name":"updateCustomerForBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updatecustomerforbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2253,"kind":4194304,"name":"updateGiftCertificateItemInBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updategiftcertificateiteminbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2254,"kind":4194304,"name":"updateGiftCertificateItemInBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updategiftcertificateiteminbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2255,"kind":4194304,"name":"updateItemInBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updateiteminbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2256,"kind":4194304,"name":"updateItemInBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updateiteminbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2257,"kind":4194304,"name":"updateItemsInBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updateitemsinbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2258,"kind":4194304,"name":"updateItemsInBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updateitemsinbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2259,"kind":4194304,"name":"updatePaymentInstrumentInBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updatepaymentinstrumentinbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2260,"kind":4194304,"name":"updatePaymentInstrumentInBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updatepaymentinstrumentinbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2261,"kind":4194304,"name":"updatePriceAdjustmentInBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updatepriceadjustmentinbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2262,"kind":4194304,"name":"updatePriceAdjustmentInBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updatepriceadjustmentinbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2263,"kind":4194304,"name":"updateShipmentForBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updateshipmentforbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2264,"kind":4194304,"name":"updateShipmentForBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updateshipmentforbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2265,"kind":4194304,"name":"updateShippingAddressForShipmentQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updateshippingaddressforshipmentqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2266,"kind":4194304,"name":"updateShippingAddressForShipmentPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updateshippingaddressforshipmentpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2267,"kind":4194304,"name":"updateShippingMethodForShipmentQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updateshippingmethodforshipmentqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2268,"kind":4194304,"name":"updateShippingMethodForShipmentPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updateshippingmethodforshipmentpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2269,"kind":4194304,"name":"Basket","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#basket","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2270,"kind":4194304,"name":"BasketChannelTypeEnum","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#basketchanneltypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2271,"kind":4194304,"name":"BasketTaxationEnum","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#baskettaxationenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2272,"kind":4194304,"name":"BasketPaymentInstrumentRequest","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#basketpaymentinstrumentrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2273,"kind":4194304,"name":"BonusDiscountLineItem","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#bonusdiscountlineitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2274,"kind":4194304,"name":"CouponItem","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#couponitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2275,"kind":4194304,"name":"CouponItemStatusCodeEnum","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#couponitemstatuscodeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2276,"kind":4194304,"name":"CurrencyCode","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#currencycode","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2277,"kind":4194304,"name":"CustomerInfo","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#customerinfo","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2278,"kind":4194304,"name":"DefaultFallback","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#defaultfallback","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2279,"kind":4194304,"name":"Discount","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#discount","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2280,"kind":4194304,"name":"DiscountTypeEnum","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#discounttypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2281,"kind":4194304,"name":"DiscountRequest","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#discountrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2282,"kind":4194304,"name":"DiscountRequestTypeEnum","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#discountrequesttypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2283,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2284,"kind":4194304,"name":"GiftCertificateItem","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#giftcertificateitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2285,"kind":4194304,"name":"GroupedTaxItem","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#groupedtaxitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2286,"kind":4194304,"name":"LocaleCode","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#localecode","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2287,"kind":4194304,"name":"NoValue","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#novalue","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2288,"kind":4194304,"name":"OptionItem","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#optionitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2289,"kind":4194304,"name":"OrderAddress","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#orderaddress","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2290,"kind":4194304,"name":"OrderPaymentCardRequest","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#orderpaymentcardrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2291,"kind":4194304,"name":"OrderPaymentInstrument","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#orderpaymentinstrument","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2292,"kind":4194304,"name":"PaymentCard","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#paymentcard","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2293,"kind":4194304,"name":"PaymentCardSpec","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#paymentcardspec","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2294,"kind":4194304,"name":"PaymentMethod","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#paymentmethod","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2295,"kind":4194304,"name":"PaymentMethodResult","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#paymentmethodresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2296,"kind":4194304,"name":"PriceAdjustment","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#priceadjustment","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2297,"kind":4194304,"name":"PriceAdjustmentRequest","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#priceadjustmentrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2298,"kind":4194304,"name":"PriceAdjustmentRequestLevelEnum","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#priceadjustmentrequestlevelenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2299,"kind":4194304,"name":"ProductDetailsLink","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#productdetailslink","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2300,"kind":4194304,"name":"ProductItem","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#productitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2301,"kind":4194304,"name":"ProductListItemReference","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#productlistitemreference","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2302,"kind":4194304,"name":"ProductListItemReferenceTypeEnum","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#productlistitemreferencetypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2303,"kind":4194304,"name":"ProductListLink","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#productlistlink","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2304,"kind":4194304,"name":"ProductListLinkTypeEnum","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#productlistlinktypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2305,"kind":4194304,"name":"Shipment","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#shipment","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2306,"kind":4194304,"name":"ShipmentShippingStatusEnum","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#shipmentshippingstatusenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2307,"kind":4194304,"name":"ShippingItem","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#shippingitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2308,"kind":4194304,"name":"ShippingMethod","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#shippingmethod","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2309,"kind":4194304,"name":"ShippingMethodResult","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#shippingmethodresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2310,"kind":4194304,"name":"ShippingPromotion","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#shippingpromotion","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2311,"kind":4194304,"name":"Status","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#status","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2312,"kind":4194304,"name":"TaxItem","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#taxitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2313,"kind":4194304,"name":"TaxItems","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#taxitems","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2314,"kind":4194304,"name":"Taxes","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#taxes","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2315,"kind":1,"name":"shopperConfigurations","url":"modules/shopperconfigurations.html","classes":"tsd-kind-module"},{"id":2316,"kind":32,"name":"defaultBaseUri","url":"modules/shopperconfigurations.html#defaultbaseuri-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2317,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperconfigurations.html#errorresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2318,"kind":4194304,"name":"ModelConfiguration","url":"modules/shopperconfigurations.html#modelconfiguration-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2319,"kind":4194304,"name":"SiteConfiguration","url":"modules/shopperconfigurations.html#siteconfiguration-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2320,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperconfigurations.html#errorresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2321,"kind":16777216,"name":"ModelConfiguration","url":"modules/shopperconfigurations.html#modelconfiguration","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2322,"kind":16777216,"name":"SiteConfiguration","url":"modules/shopperconfigurations.html#siteconfiguration","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2323,"kind":128,"name":"ShopperConfigurations","url":"classes/shopperconfigurations.shopperconfigurations-3.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"shopperConfigurations"},{"id":2324,"kind":1024,"name":"clientConfig","url":"classes/shopperconfigurations.shopperconfigurations-3.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class","parent":"shopperConfigurations.ShopperConfigurations"},{"id":2325,"kind":1024,"name":"defaultBaseUri","url":"classes/shopperconfigurations.shopperconfigurations-3.html#defaultbaseuri","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperConfigurations.ShopperConfigurations"},{"id":2326,"kind":2097152,"name":"apiPaths","url":"classes/shopperconfigurations.shopperconfigurations-3.html#apipaths","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-static","parent":"shopperConfigurations.ShopperConfigurations"},{"id":2327,"kind":32,"name":"getConfigurations","url":"classes/shopperconfigurations.shopperconfigurations-3.html#apipaths.getconfigurations-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperConfigurations.ShopperConfigurations.apiPaths"},{"id":2328,"kind":512,"name":"constructor","url":"classes/shopperconfigurations.shopperconfigurations-3.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"shopperConfigurations.ShopperConfigurations"},{"id":2329,"kind":1024,"name":"paramKeys","url":"classes/shopperconfigurations.shopperconfigurations-3.html#paramkeys","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperConfigurations.ShopperConfigurations"},{"id":2330,"kind":65536,"name":"__type","url":"classes/shopperconfigurations.shopperconfigurations-3.html#paramkeys.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"shopperConfigurations.ShopperConfigurations.paramKeys"},{"id":2331,"kind":32,"name":"getConfigurations","url":"classes/shopperconfigurations.shopperconfigurations-3.html#paramkeys.__type.getconfigurations","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperConfigurations.ShopperConfigurations.paramKeys.__type"},{"id":2332,"kind":32,"name":"getConfigurationsRequired","url":"classes/shopperconfigurations.shopperconfigurations-3.html#paramkeys.__type.getconfigurationsrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperConfigurations.ShopperConfigurations.paramKeys.__type"},{"id":2333,"kind":2048,"name":"getConfigurations","url":"classes/shopperconfigurations.shopperconfigurations-3.html#getconfigurations-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperConfigurations.ShopperConfigurations"},{"id":2334,"kind":4194304,"name":"getConfigurationsQueryParameters","url":"modules/shopperconfigurations.html#getconfigurationsqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2335,"kind":65536,"name":"__type","url":"modules/shopperconfigurations.html#getconfigurationsqueryparameters-2.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperConfigurations.getConfigurationsQueryParameters"},{"id":2336,"kind":32,"name":"siteId","url":"modules/shopperconfigurations.html#getconfigurationsqueryparameters-2.__type-1.siteid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperConfigurations.getConfigurationsQueryParameters.__type"},{"id":2337,"kind":4194304,"name":"getConfigurationsPathParameters","url":"modules/shopperconfigurations.html#getconfigurationspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2338,"kind":65536,"name":"__type","url":"modules/shopperconfigurations.html#getconfigurationspathparameters-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperConfigurations.getConfigurationsPathParameters"},{"id":2339,"kind":32,"name":"organizationId","url":"modules/shopperconfigurations.html#getconfigurationspathparameters-2.__type.organizationid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperConfigurations.getConfigurationsPathParameters.__type"},{"id":2340,"kind":4194304,"name":"ShopperConfigurationsPathParameters","url":"modules/shopperconfigurations.html#shopperconfigurationspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2341,"kind":4194304,"name":"ShopperConfigurationsQueryParameters","url":"modules/shopperconfigurations.html#shopperconfigurationsqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2342,"kind":4194304,"name":"ShopperConfigurationsParameters","url":"modules/shopperconfigurations.html#shopperconfigurationsparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2343,"kind":16777216,"name":"getConfigurationsQueryParameters","url":"modules/shopperconfigurations.html#getconfigurationsqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2344,"kind":16777216,"name":"getConfigurationsPathParameters","url":"modules/shopperconfigurations.html#getconfigurationspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2345,"kind":16777216,"name":"ShopperConfigurationsPathParameters","url":"modules/shopperconfigurations.html#shopperconfigurationspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2346,"kind":16777216,"name":"ShopperConfigurationsQueryParameters","url":"modules/shopperconfigurations.html#shopperconfigurationsqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2347,"kind":16777216,"name":"ShopperConfigurationsParameters","url":"modules/shopperconfigurations.html#shopperconfigurationsparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2348,"kind":16777216,"name":"ShopperConfigurations","url":"modules/shopperconfigurations.html#shopperconfigurations-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2349,"kind":16777216,"name":"defaultBaseUri","url":"modules/shopperconfigurations.html#defaultbaseuri","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2350,"kind":16777216,"name":"getConfigurationsQueryParameters","url":"modules/shopperconfigurations.html#getconfigurationsqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2351,"kind":16777216,"name":"getConfigurationsPathParameters","url":"modules/shopperconfigurations.html#getconfigurationspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2352,"kind":16777216,"name":"ShopperConfigurationsPathParameters","url":"modules/shopperconfigurations.html#shopperconfigurationspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2353,"kind":16777216,"name":"ShopperConfigurationsQueryParameters","url":"modules/shopperconfigurations.html#shopperconfigurationsqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2354,"kind":16777216,"name":"ShopperConfigurationsParameters","url":"modules/shopperconfigurations.html#shopperconfigurationsparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2355,"kind":16777216,"name":"ShopperConfigurations","url":"modules/shopperconfigurations.html#shopperconfigurations-2","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2356,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperconfigurations.html#errorresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2357,"kind":16777216,"name":"ModelConfiguration","url":"modules/shopperconfigurations.html#modelconfiguration-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2358,"kind":16777216,"name":"SiteConfiguration","url":"modules/shopperconfigurations.html#siteconfiguration-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2359,"kind":2,"name":"ShopperConfigurationsTypes","url":"modules/shopperconfigurations.shopperconfigurationstypes.html","classes":"tsd-kind-namespace tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2360,"kind":4194304,"name":"ShopperConfigurationsPathParameters","url":"modules/shopperconfigurations.shopperconfigurationstypes.html#shopperconfigurationspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConfigurations.ShopperConfigurationsTypes"},{"id":2361,"kind":4194304,"name":"ShopperConfigurationsQueryParameters","url":"modules/shopperconfigurations.shopperconfigurationstypes.html#shopperconfigurationsqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConfigurations.ShopperConfigurationsTypes"},{"id":2362,"kind":4194304,"name":"getConfigurationsQueryParameters","url":"modules/shopperconfigurations.shopperconfigurationstypes.html#getconfigurationsqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConfigurations.ShopperConfigurationsTypes"},{"id":2363,"kind":4194304,"name":"getConfigurationsPathParameters","url":"modules/shopperconfigurations.shopperconfigurationstypes.html#getconfigurationspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConfigurations.ShopperConfigurationsTypes"},{"id":2364,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperconfigurations.shopperconfigurationstypes.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConfigurations.ShopperConfigurationsTypes"},{"id":2365,"kind":4194304,"name":"ModelConfiguration","url":"modules/shopperconfigurations.shopperconfigurationstypes.html#modelconfiguration","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConfigurations.ShopperConfigurationsTypes"},{"id":2366,"kind":4194304,"name":"SiteConfiguration","url":"modules/shopperconfigurations.shopperconfigurationstypes.html#siteconfiguration","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConfigurations.ShopperConfigurationsTypes"},{"id":2367,"kind":1,"name":"shopperConsents","url":"modules/shopperconsents.html","classes":"tsd-kind-module"},{"id":2368,"kind":32,"name":"defaultBaseUri","url":"modules/shopperconsents.html#defaultbaseuri-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"shopperConsents"},{"id":2369,"kind":4194304,"name":"ConsentStatus","url":"modules/shopperconsents.html#consentstatus-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2370,"kind":4194304,"name":"SubscriptionChannel","url":"modules/shopperconsents.html#subscriptionchannel-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2371,"kind":4194304,"name":"ConsentSubscription","url":"modules/shopperconsents.html#consentsubscription-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2372,"kind":4194304,"name":"ConsentSubscriptionRequest","url":"modules/shopperconsents.html#consentsubscriptionrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2373,"kind":4194304,"name":"ConsentSubscriptionResponse","url":"modules/shopperconsents.html#consentsubscriptionresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2374,"kind":4194304,"name":"DefaultFallback","url":"modules/shopperconsents.html#defaultfallback-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2375,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperconsents.html#errorresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2376,"kind":4194304,"name":"LocaleCode","url":"modules/shopperconsents.html#localecode-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2377,"kind":16777216,"name":"ConsentStatus","url":"modules/shopperconsents.html#consentstatus","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2378,"kind":16777216,"name":"ConsentSubscription","url":"modules/shopperconsents.html#consentsubscription","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2379,"kind":16777216,"name":"ConsentSubscriptionRequest","url":"modules/shopperconsents.html#consentsubscriptionrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2380,"kind":16777216,"name":"ConsentSubscriptionResponse","url":"modules/shopperconsents.html#consentsubscriptionresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2381,"kind":16777216,"name":"DefaultFallback","url":"modules/shopperconsents.html#defaultfallback","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2382,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperconsents.html#errorresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2383,"kind":16777216,"name":"LocaleCode","url":"modules/shopperconsents.html#localecode","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2384,"kind":16777216,"name":"SubscriptionChannel","url":"modules/shopperconsents.html#subscriptionchannel","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2385,"kind":128,"name":"ShopperConsents","url":"classes/shopperconsents.shopperconsents-3.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"shopperConsents"},{"id":2386,"kind":1024,"name":"clientConfig","url":"classes/shopperconsents.shopperconsents-3.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class","parent":"shopperConsents.ShopperConsents"},{"id":2387,"kind":1024,"name":"defaultBaseUri","url":"classes/shopperconsents.shopperconsents-3.html#defaultbaseuri","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperConsents.ShopperConsents"},{"id":2388,"kind":2097152,"name":"apiPaths","url":"classes/shopperconsents.shopperconsents-3.html#apipaths","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-static","parent":"shopperConsents.ShopperConsents"},{"id":2389,"kind":32,"name":"getSubscriptions","url":"classes/shopperconsents.shopperconsents-3.html#apipaths.getsubscriptions-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperConsents.ShopperConsents.apiPaths"},{"id":2390,"kind":32,"name":"updateSubscription","url":"classes/shopperconsents.shopperconsents-3.html#apipaths.updatesubscription-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperConsents.ShopperConsents.apiPaths"},{"id":2391,"kind":512,"name":"constructor","url":"classes/shopperconsents.shopperconsents-3.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"shopperConsents.ShopperConsents"},{"id":2392,"kind":1024,"name":"paramKeys","url":"classes/shopperconsents.shopperconsents-3.html#paramkeys","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperConsents.ShopperConsents"},{"id":2393,"kind":65536,"name":"__type","url":"classes/shopperconsents.shopperconsents-3.html#paramkeys.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"shopperConsents.ShopperConsents.paramKeys"},{"id":2394,"kind":32,"name":"getSubscriptions","url":"classes/shopperconsents.shopperconsents-3.html#paramkeys.__type.getsubscriptions","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperConsents.ShopperConsents.paramKeys.__type"},{"id":2395,"kind":32,"name":"getSubscriptionsRequired","url":"classes/shopperconsents.shopperconsents-3.html#paramkeys.__type.getsubscriptionsrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperConsents.ShopperConsents.paramKeys.__type"},{"id":2396,"kind":32,"name":"updateSubscription","url":"classes/shopperconsents.shopperconsents-3.html#paramkeys.__type.updatesubscription","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperConsents.ShopperConsents.paramKeys.__type"},{"id":2397,"kind":32,"name":"updateSubscriptionRequired","url":"classes/shopperconsents.shopperconsents-3.html#paramkeys.__type.updatesubscriptionrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperConsents.ShopperConsents.paramKeys.__type"},{"id":2398,"kind":2048,"name":"getSubscriptions","url":"classes/shopperconsents.shopperconsents-3.html#getsubscriptions-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperConsents.ShopperConsents"},{"id":2399,"kind":2048,"name":"updateSubscription","url":"classes/shopperconsents.shopperconsents-3.html#updatesubscription-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperConsents.ShopperConsents"},{"id":2400,"kind":4194304,"name":"getSubscriptionsQueryParameters","url":"modules/shopperconsents.html#getsubscriptionsqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2401,"kind":65536,"name":"__type","url":"modules/shopperconsents.html#getsubscriptionsqueryparameters-2.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperConsents.getSubscriptionsQueryParameters"},{"id":2402,"kind":32,"name":"siteId","url":"modules/shopperconsents.html#getsubscriptionsqueryparameters-2.__type-1.siteid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperConsents.getSubscriptionsQueryParameters.__type"},{"id":2403,"kind":32,"name":"locale","url":"modules/shopperconsents.html#getsubscriptionsqueryparameters-2.__type-1.locale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperConsents.getSubscriptionsQueryParameters.__type"},{"id":2404,"kind":32,"name":"tags","url":"modules/shopperconsents.html#getsubscriptionsqueryparameters-2.__type-1.tags","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperConsents.getSubscriptionsQueryParameters.__type"},{"id":2405,"kind":4194304,"name":"getSubscriptionsPathParameters","url":"modules/shopperconsents.html#getsubscriptionspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2406,"kind":65536,"name":"__type","url":"modules/shopperconsents.html#getsubscriptionspathparameters-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperConsents.getSubscriptionsPathParameters"},{"id":2407,"kind":32,"name":"organizationId","url":"modules/shopperconsents.html#getsubscriptionspathparameters-2.__type.organizationid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperConsents.getSubscriptionsPathParameters.__type"},{"id":2408,"kind":4194304,"name":"updateSubscriptionQueryParameters","url":"modules/shopperconsents.html#updatesubscriptionqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2409,"kind":65536,"name":"__type","url":"modules/shopperconsents.html#updatesubscriptionqueryparameters-2.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperConsents.updateSubscriptionQueryParameters"},{"id":2410,"kind":32,"name":"siteId","url":"modules/shopperconsents.html#updatesubscriptionqueryparameters-2.__type-3.siteid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperConsents.updateSubscriptionQueryParameters.__type"},{"id":2411,"kind":32,"name":"locale","url":"modules/shopperconsents.html#updatesubscriptionqueryparameters-2.__type-3.locale-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperConsents.updateSubscriptionQueryParameters.__type"},{"id":2412,"kind":4194304,"name":"updateSubscriptionPathParameters","url":"modules/shopperconsents.html#updatesubscriptionpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2413,"kind":65536,"name":"__type","url":"modules/shopperconsents.html#updatesubscriptionpathparameters-2.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperConsents.updateSubscriptionPathParameters"},{"id":2414,"kind":32,"name":"organizationId","url":"modules/shopperconsents.html#updatesubscriptionpathparameters-2.__type-2.organizationid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperConsents.updateSubscriptionPathParameters.__type"},{"id":2415,"kind":4194304,"name":"ShopperConsentsPathParameters","url":"modules/shopperconsents.html#shopperconsentspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2416,"kind":4194304,"name":"ShopperConsentsQueryParameters","url":"modules/shopperconsents.html#shopperconsentsqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2417,"kind":4194304,"name":"ShopperConsentsParameters","url":"modules/shopperconsents.html#shopperconsentsparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2418,"kind":16777216,"name":"getSubscriptionsQueryParameters","url":"modules/shopperconsents.html#getsubscriptionsqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2419,"kind":16777216,"name":"getSubscriptionsPathParameters","url":"modules/shopperconsents.html#getsubscriptionspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2420,"kind":16777216,"name":"updateSubscriptionQueryParameters","url":"modules/shopperconsents.html#updatesubscriptionqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2421,"kind":16777216,"name":"updateSubscriptionPathParameters","url":"modules/shopperconsents.html#updatesubscriptionpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2422,"kind":16777216,"name":"ShopperConsentsPathParameters","url":"modules/shopperconsents.html#shopperconsentspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2423,"kind":16777216,"name":"ShopperConsentsQueryParameters","url":"modules/shopperconsents.html#shopperconsentsqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2424,"kind":16777216,"name":"ShopperConsentsParameters","url":"modules/shopperconsents.html#shopperconsentsparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2425,"kind":16777216,"name":"ShopperConsents","url":"modules/shopperconsents.html#shopperconsents-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2426,"kind":16777216,"name":"defaultBaseUri","url":"modules/shopperconsents.html#defaultbaseuri","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2427,"kind":16777216,"name":"getSubscriptionsQueryParameters","url":"modules/shopperconsents.html#getsubscriptionsqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2428,"kind":16777216,"name":"getSubscriptionsPathParameters","url":"modules/shopperconsents.html#getsubscriptionspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2429,"kind":16777216,"name":"updateSubscriptionQueryParameters","url":"modules/shopperconsents.html#updatesubscriptionqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2430,"kind":16777216,"name":"updateSubscriptionPathParameters","url":"modules/shopperconsents.html#updatesubscriptionpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2431,"kind":16777216,"name":"ShopperConsentsPathParameters","url":"modules/shopperconsents.html#shopperconsentspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2432,"kind":16777216,"name":"ShopperConsentsQueryParameters","url":"modules/shopperconsents.html#shopperconsentsqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2433,"kind":16777216,"name":"ShopperConsentsParameters","url":"modules/shopperconsents.html#shopperconsentsparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2434,"kind":16777216,"name":"ShopperConsents","url":"modules/shopperconsents.html#shopperconsents-2","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2435,"kind":16777216,"name":"ConsentStatus","url":"modules/shopperconsents.html#consentstatus-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2436,"kind":16777216,"name":"ConsentSubscription","url":"modules/shopperconsents.html#consentsubscription-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2437,"kind":16777216,"name":"ConsentSubscriptionRequest","url":"modules/shopperconsents.html#consentsubscriptionrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2438,"kind":16777216,"name":"ConsentSubscriptionResponse","url":"modules/shopperconsents.html#consentsubscriptionresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2439,"kind":16777216,"name":"DefaultFallback","url":"modules/shopperconsents.html#defaultfallback-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2440,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperconsents.html#errorresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2441,"kind":16777216,"name":"LocaleCode","url":"modules/shopperconsents.html#localecode-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2442,"kind":16777216,"name":"SubscriptionChannel","url":"modules/shopperconsents.html#subscriptionchannel-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2443,"kind":2,"name":"ShopperConsentsTypes","url":"modules/shopperconsents.shopperconsentstypes.html","classes":"tsd-kind-namespace tsd-parent-kind-module","parent":"shopperConsents"},{"id":2444,"kind":4194304,"name":"ShopperConsentsPathParameters","url":"modules/shopperconsents.shopperconsentstypes.html#shopperconsentspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2445,"kind":4194304,"name":"ShopperConsentsQueryParameters","url":"modules/shopperconsents.shopperconsentstypes.html#shopperconsentsqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2446,"kind":4194304,"name":"getSubscriptionsQueryParameters","url":"modules/shopperconsents.shopperconsentstypes.html#getsubscriptionsqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2447,"kind":4194304,"name":"getSubscriptionsPathParameters","url":"modules/shopperconsents.shopperconsentstypes.html#getsubscriptionspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2448,"kind":4194304,"name":"updateSubscriptionQueryParameters","url":"modules/shopperconsents.shopperconsentstypes.html#updatesubscriptionqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2449,"kind":4194304,"name":"updateSubscriptionPathParameters","url":"modules/shopperconsents.shopperconsentstypes.html#updatesubscriptionpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2450,"kind":4194304,"name":"ConsentStatus","url":"modules/shopperconsents.shopperconsentstypes.html#consentstatus","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2451,"kind":4194304,"name":"ConsentSubscription","url":"modules/shopperconsents.shopperconsentstypes.html#consentsubscription","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2452,"kind":4194304,"name":"ConsentSubscriptionRequest","url":"modules/shopperconsents.shopperconsentstypes.html#consentsubscriptionrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2453,"kind":4194304,"name":"ConsentSubscriptionResponse","url":"modules/shopperconsents.shopperconsentstypes.html#consentsubscriptionresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2454,"kind":4194304,"name":"DefaultFallback","url":"modules/shopperconsents.shopperconsentstypes.html#defaultfallback","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2455,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperconsents.shopperconsentstypes.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2456,"kind":4194304,"name":"LocaleCode","url":"modules/shopperconsents.shopperconsentstypes.html#localecode","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2457,"kind":4194304,"name":"SubscriptionChannel","url":"modules/shopperconsents.shopperconsentstypes.html#subscriptionchannel","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2458,"kind":1,"name":"shopperContext","url":"modules/shoppercontext.html","classes":"tsd-kind-module"},{"id":2459,"kind":32,"name":"defaultBaseUri","url":"modules/shoppercontext.html#defaultbaseuri-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"shopperContext"},{"id":2460,"kind":4194304,"name":"ErrorResponse","url":"modules/shoppercontext.html#errorresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperContext"},{"id":2461,"kind":4194304,"name":"ShopperContextGeoLocation","url":"modules/shoppercontext.html#shoppercontextgeolocation-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperContext"},{"id":2462,"kind":4194304,"name":"ShopperContext","url":"modules/shoppercontext.html#shoppercontext-3","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperContext"},{"id":2463,"kind":16777216,"name":"ErrorResponse","url":"modules/shoppercontext.html#errorresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2464,"kind":16777216,"name":"ShopperContext","url":"modules/shoppercontext.html#shoppercontext-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2465,"kind":16777216,"name":"ShopperContextGeoLocation","url":"modules/shoppercontext.html#shoppercontextgeolocation","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2466,"kind":128,"name":"ShopperContexts","url":"classes/shoppercontext.shoppercontexts-2.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"shopperContext"},{"id":2467,"kind":1024,"name":"clientConfig","url":"classes/shoppercontext.shoppercontexts-2.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class","parent":"shopperContext.ShopperContexts"},{"id":2468,"kind":1024,"name":"defaultBaseUri","url":"classes/shoppercontext.shoppercontexts-2.html#defaultbaseuri","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperContext.ShopperContexts"},{"id":2469,"kind":2097152,"name":"apiPaths","url":"classes/shoppercontext.shoppercontexts-2.html#apipaths","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-static","parent":"shopperContext.ShopperContexts"},{"id":2470,"kind":32,"name":"createShopperContext","url":"classes/shoppercontext.shoppercontexts-2.html#apipaths.createshoppercontext-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperContext.ShopperContexts.apiPaths"},{"id":2471,"kind":32,"name":"deleteShopperContext","url":"classes/shoppercontext.shoppercontexts-2.html#apipaths.deleteshoppercontext-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperContext.ShopperContexts.apiPaths"},{"id":2472,"kind":32,"name":"getShopperContext","url":"classes/shoppercontext.shoppercontexts-2.html#apipaths.getshoppercontext-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperContext.ShopperContexts.apiPaths"},{"id":2473,"kind":32,"name":"updateShopperContext","url":"classes/shoppercontext.shoppercontexts-2.html#apipaths.updateshoppercontext-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperContext.ShopperContexts.apiPaths"},{"id":2474,"kind":512,"name":"constructor","url":"classes/shoppercontext.shoppercontexts-2.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"shopperContext.ShopperContexts"},{"id":2475,"kind":1024,"name":"paramKeys","url":"classes/shoppercontext.shoppercontexts-2.html#paramkeys","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperContext.ShopperContexts"},{"id":2476,"kind":65536,"name":"__type","url":"classes/shoppercontext.shoppercontexts-2.html#paramkeys.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"shopperContext.ShopperContexts.paramKeys"},{"id":2477,"kind":32,"name":"createShopperContext","url":"classes/shoppercontext.shoppercontexts-2.html#paramkeys.__type.createshoppercontext","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.ShopperContexts.paramKeys.__type"},{"id":2478,"kind":32,"name":"createShopperContextRequired","url":"classes/shoppercontext.shoppercontexts-2.html#paramkeys.__type.createshoppercontextrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.ShopperContexts.paramKeys.__type"},{"id":2479,"kind":32,"name":"deleteShopperContext","url":"classes/shoppercontext.shoppercontexts-2.html#paramkeys.__type.deleteshoppercontext","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.ShopperContexts.paramKeys.__type"},{"id":2480,"kind":32,"name":"deleteShopperContextRequired","url":"classes/shoppercontext.shoppercontexts-2.html#paramkeys.__type.deleteshoppercontextrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.ShopperContexts.paramKeys.__type"},{"id":2481,"kind":32,"name":"getShopperContext","url":"classes/shoppercontext.shoppercontexts-2.html#paramkeys.__type.getshoppercontext","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.ShopperContexts.paramKeys.__type"},{"id":2482,"kind":32,"name":"getShopperContextRequired","url":"classes/shoppercontext.shoppercontexts-2.html#paramkeys.__type.getshoppercontextrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.ShopperContexts.paramKeys.__type"},{"id":2483,"kind":32,"name":"updateShopperContext","url":"classes/shoppercontext.shoppercontexts-2.html#paramkeys.__type.updateshoppercontext","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.ShopperContexts.paramKeys.__type"},{"id":2484,"kind":32,"name":"updateShopperContextRequired","url":"classes/shoppercontext.shoppercontexts-2.html#paramkeys.__type.updateshoppercontextrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.ShopperContexts.paramKeys.__type"},{"id":2485,"kind":2048,"name":"createShopperContext","url":"classes/shoppercontext.shoppercontexts-2.html#createshoppercontext-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperContext.ShopperContexts"},{"id":2486,"kind":2048,"name":"deleteShopperContext","url":"classes/shoppercontext.shoppercontexts-2.html#deleteshoppercontext-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperContext.ShopperContexts"},{"id":2487,"kind":2048,"name":"getShopperContext","url":"classes/shoppercontext.shoppercontexts-2.html#getshoppercontext-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperContext.ShopperContexts"},{"id":2488,"kind":2048,"name":"updateShopperContext","url":"classes/shoppercontext.shoppercontexts-2.html#updateshoppercontext-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperContext.ShopperContexts"},{"id":2489,"kind":4194304,"name":"createShopperContextQueryParameters","url":"modules/shoppercontext.html#createshoppercontextqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperContext"},{"id":2490,"kind":65536,"name":"__type","url":"modules/shoppercontext.html#createshoppercontextqueryparameters-2.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperContext.createShopperContextQueryParameters"},{"id":2491,"kind":32,"name":"siteId","url":"modules/shoppercontext.html#createshoppercontextqueryparameters-2.__type-1.siteid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.createShopperContextQueryParameters.__type"},{"id":2492,"kind":32,"name":"evaluateContextWithClientIp","url":"modules/shoppercontext.html#createshoppercontextqueryparameters-2.__type-1.evaluatecontextwithclientip","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.createShopperContextQueryParameters.__type"},{"id":2493,"kind":4194304,"name":"createShopperContextPathParameters","url":"modules/shoppercontext.html#createshoppercontextpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperContext"},{"id":2494,"kind":65536,"name":"__type","url":"modules/shoppercontext.html#createshoppercontextpathparameters-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperContext.createShopperContextPathParameters"},{"id":2495,"kind":32,"name":"usid","url":"modules/shoppercontext.html#createshoppercontextpathparameters-2.__type.usid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.createShopperContextPathParameters.__type"},{"id":2496,"kind":32,"name":"organizationId","url":"modules/shoppercontext.html#createshoppercontextpathparameters-2.__type.organizationid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.createShopperContextPathParameters.__type"},{"id":2497,"kind":4194304,"name":"deleteShopperContextQueryParameters","url":"modules/shoppercontext.html#deleteshoppercontextqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperContext"},{"id":2498,"kind":65536,"name":"__type","url":"modules/shoppercontext.html#deleteshoppercontextqueryparameters-2.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperContext.deleteShopperContextQueryParameters"},{"id":2499,"kind":32,"name":"siteId","url":"modules/shoppercontext.html#deleteshoppercontextqueryparameters-2.__type-3.siteid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.deleteShopperContextQueryParameters.__type"},{"id":2500,"kind":4194304,"name":"deleteShopperContextPathParameters","url":"modules/shoppercontext.html#deleteshoppercontextpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperContext"},{"id":2501,"kind":65536,"name":"__type","url":"modules/shoppercontext.html#deleteshoppercontextpathparameters-2.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperContext.deleteShopperContextPathParameters"},{"id":2502,"kind":32,"name":"usid","url":"modules/shoppercontext.html#deleteshoppercontextpathparameters-2.__type-2.usid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.deleteShopperContextPathParameters.__type"},{"id":2503,"kind":32,"name":"organizationId","url":"modules/shoppercontext.html#deleteshoppercontextpathparameters-2.__type-2.organizationid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.deleteShopperContextPathParameters.__type"},{"id":2504,"kind":4194304,"name":"getShopperContextQueryParameters","url":"modules/shoppercontext.html#getshoppercontextqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperContext"},{"id":2505,"kind":65536,"name":"__type","url":"modules/shoppercontext.html#getshoppercontextqueryparameters-2.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperContext.getShopperContextQueryParameters"},{"id":2506,"kind":32,"name":"siteId","url":"modules/shoppercontext.html#getshoppercontextqueryparameters-2.__type-5.siteid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.getShopperContextQueryParameters.__type"},{"id":2507,"kind":4194304,"name":"getShopperContextPathParameters","url":"modules/shoppercontext.html#getshoppercontextpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperContext"},{"id":2508,"kind":65536,"name":"__type","url":"modules/shoppercontext.html#getshoppercontextpathparameters-2.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperContext.getShopperContextPathParameters"},{"id":2509,"kind":32,"name":"usid","url":"modules/shoppercontext.html#getshoppercontextpathparameters-2.__type-4.usid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.getShopperContextPathParameters.__type"},{"id":2510,"kind":32,"name":"organizationId","url":"modules/shoppercontext.html#getshoppercontextpathparameters-2.__type-4.organizationid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.getShopperContextPathParameters.__type"},{"id":2511,"kind":4194304,"name":"updateShopperContextQueryParameters","url":"modules/shoppercontext.html#updateshoppercontextqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperContext"},{"id":2512,"kind":65536,"name":"__type","url":"modules/shoppercontext.html#updateshoppercontextqueryparameters-2.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperContext.updateShopperContextQueryParameters"},{"id":2513,"kind":32,"name":"siteId","url":"modules/shoppercontext.html#updateshoppercontextqueryparameters-2.__type-7.siteid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.updateShopperContextQueryParameters.__type"},{"id":2514,"kind":32,"name":"evaluateContextWithClientIp","url":"modules/shoppercontext.html#updateshoppercontextqueryparameters-2.__type-7.evaluatecontextwithclientip-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.updateShopperContextQueryParameters.__type"},{"id":2515,"kind":4194304,"name":"updateShopperContextPathParameters","url":"modules/shoppercontext.html#updateshoppercontextpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperContext"},{"id":2516,"kind":65536,"name":"__type","url":"modules/shoppercontext.html#updateshoppercontextpathparameters-2.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperContext.updateShopperContextPathParameters"},{"id":2517,"kind":32,"name":"usid","url":"modules/shoppercontext.html#updateshoppercontextpathparameters-2.__type-6.usid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.updateShopperContextPathParameters.__type"},{"id":2518,"kind":32,"name":"organizationId","url":"modules/shoppercontext.html#updateshoppercontextpathparameters-2.__type-6.organizationid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.updateShopperContextPathParameters.__type"},{"id":2519,"kind":4194304,"name":"ShopperContextPathParameters","url":"modules/shoppercontext.html#shoppercontextpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperContext"},{"id":2520,"kind":4194304,"name":"ShopperContextQueryParameters","url":"modules/shoppercontext.html#shoppercontextqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperContext"},{"id":2521,"kind":4194304,"name":"ShopperContextParameters","url":"modules/shoppercontext.html#shoppercontextparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperContext"},{"id":2522,"kind":16777216,"name":"createShopperContextQueryParameters","url":"modules/shoppercontext.html#createshoppercontextqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2523,"kind":16777216,"name":"createShopperContextPathParameters","url":"modules/shoppercontext.html#createshoppercontextpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2524,"kind":16777216,"name":"deleteShopperContextQueryParameters","url":"modules/shoppercontext.html#deleteshoppercontextqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2525,"kind":16777216,"name":"deleteShopperContextPathParameters","url":"modules/shoppercontext.html#deleteshoppercontextpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2526,"kind":16777216,"name":"getShopperContextQueryParameters","url":"modules/shoppercontext.html#getshoppercontextqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2527,"kind":16777216,"name":"getShopperContextPathParameters","url":"modules/shoppercontext.html#getshoppercontextpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2528,"kind":16777216,"name":"updateShopperContextQueryParameters","url":"modules/shoppercontext.html#updateshoppercontextqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2529,"kind":16777216,"name":"updateShopperContextPathParameters","url":"modules/shoppercontext.html#updateshoppercontextpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2530,"kind":16777216,"name":"ShopperContextPathParameters","url":"modules/shoppercontext.html#shoppercontextpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2531,"kind":16777216,"name":"ShopperContextQueryParameters","url":"modules/shoppercontext.html#shoppercontextqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2532,"kind":16777216,"name":"ShopperContextParameters","url":"modules/shoppercontext.html#shoppercontextparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2533,"kind":16777216,"name":"ShopperContexts","url":"modules/shoppercontext.html#shoppercontexts","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2534,"kind":16777216,"name":"defaultBaseUri","url":"modules/shoppercontext.html#defaultbaseuri","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2535,"kind":16777216,"name":"createShopperContextQueryParameters","url":"modules/shoppercontext.html#createshoppercontextqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2536,"kind":16777216,"name":"createShopperContextPathParameters","url":"modules/shoppercontext.html#createshoppercontextpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2537,"kind":16777216,"name":"deleteShopperContextQueryParameters","url":"modules/shoppercontext.html#deleteshoppercontextqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2538,"kind":16777216,"name":"deleteShopperContextPathParameters","url":"modules/shoppercontext.html#deleteshoppercontextpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2539,"kind":16777216,"name":"getShopperContextQueryParameters","url":"modules/shoppercontext.html#getshoppercontextqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2540,"kind":16777216,"name":"getShopperContextPathParameters","url":"modules/shoppercontext.html#getshoppercontextpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2541,"kind":16777216,"name":"updateShopperContextQueryParameters","url":"modules/shoppercontext.html#updateshoppercontextqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2542,"kind":16777216,"name":"updateShopperContextPathParameters","url":"modules/shoppercontext.html#updateshoppercontextpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2543,"kind":16777216,"name":"ShopperContextPathParameters","url":"modules/shoppercontext.html#shoppercontextpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2544,"kind":16777216,"name":"ShopperContextQueryParameters","url":"modules/shoppercontext.html#shoppercontextqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2545,"kind":16777216,"name":"ShopperContextParameters","url":"modules/shoppercontext.html#shoppercontextparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2546,"kind":16777216,"name":"ShopperContexts","url":"modules/shoppercontext.html#shoppercontexts-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2547,"kind":16777216,"name":"ErrorResponse","url":"modules/shoppercontext.html#errorresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2548,"kind":16777216,"name":"ShopperContext","url":"modules/shoppercontext.html#shoppercontext-2","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2549,"kind":16777216,"name":"ShopperContextGeoLocation","url":"modules/shoppercontext.html#shoppercontextgeolocation-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2550,"kind":2,"name":"ShopperContextsTypes","url":"modules/shoppercontext.shoppercontextstypes.html","classes":"tsd-kind-namespace tsd-parent-kind-module","parent":"shopperContext"},{"id":2551,"kind":4194304,"name":"ShopperContextPathParameters","url":"modules/shoppercontext.shoppercontextstypes.html#shoppercontextpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperContext.ShopperContextsTypes"},{"id":2552,"kind":4194304,"name":"ShopperContextQueryParameters","url":"modules/shoppercontext.shoppercontextstypes.html#shoppercontextqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperContext.ShopperContextsTypes"},{"id":2553,"kind":4194304,"name":"createShopperContextQueryParameters","url":"modules/shoppercontext.shoppercontextstypes.html#createshoppercontextqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperContext.ShopperContextsTypes"},{"id":2554,"kind":4194304,"name":"createShopperContextPathParameters","url":"modules/shoppercontext.shoppercontextstypes.html#createshoppercontextpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperContext.ShopperContextsTypes"},{"id":2555,"kind":4194304,"name":"deleteShopperContextQueryParameters","url":"modules/shoppercontext.shoppercontextstypes.html#deleteshoppercontextqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperContext.ShopperContextsTypes"},{"id":2556,"kind":4194304,"name":"deleteShopperContextPathParameters","url":"modules/shoppercontext.shoppercontextstypes.html#deleteshoppercontextpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperContext.ShopperContextsTypes"},{"id":2557,"kind":4194304,"name":"getShopperContextQueryParameters","url":"modules/shoppercontext.shoppercontextstypes.html#getshoppercontextqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperContext.ShopperContextsTypes"},{"id":2558,"kind":4194304,"name":"getShopperContextPathParameters","url":"modules/shoppercontext.shoppercontextstypes.html#getshoppercontextpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperContext.ShopperContextsTypes"},{"id":2559,"kind":4194304,"name":"updateShopperContextQueryParameters","url":"modules/shoppercontext.shoppercontextstypes.html#updateshoppercontextqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperContext.ShopperContextsTypes"},{"id":2560,"kind":4194304,"name":"updateShopperContextPathParameters","url":"modules/shoppercontext.shoppercontextstypes.html#updateshoppercontextpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperContext.ShopperContextsTypes"},{"id":2561,"kind":4194304,"name":"ErrorResponse","url":"modules/shoppercontext.shoppercontextstypes.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperContext.ShopperContextsTypes"},{"id":2562,"kind":4194304,"name":"ShopperContext","url":"modules/shoppercontext.shoppercontextstypes.html#shoppercontext","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperContext.ShopperContextsTypes"},{"id":2563,"kind":4194304,"name":"ShopperContextGeoLocation","url":"modules/shoppercontext.shoppercontextstypes.html#shoppercontextgeolocation","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperContext.ShopperContextsTypes"},{"id":2564,"kind":1,"name":"shopperCustomers","url":"modules/shoppercustomers.html","classes":"tsd-kind-module"},{"id":2565,"kind":32,"name":"defaultBaseUri","url":"modules/shoppercustomers.html#defaultbaseuri-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2566,"kind":4194304,"name":"NoValue","url":"modules/shoppercustomers.html#novalue-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2567,"kind":4194304,"name":"CurrencyCode","url":"modules/shoppercustomers.html#currencycode-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2568,"kind":4194304,"name":"GiftCertificateItem","url":"modules/shoppercustomers.html#giftcertificateitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2569,"kind":4194304,"name":"Status","url":"modules/shoppercustomers.html#status-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2570,"kind":4194304,"name":"PaymentCard","url":"modules/shoppercustomers.html#paymentcard-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2571,"kind":4194304,"name":"OrderPaymentInstrument","url":"modules/shoppercustomers.html#orderpaymentinstrument-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2572,"kind":4194304,"name":"ProductDetailsLink","url":"modules/shoppercustomers.html#productdetailslink-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2573,"kind":4194304,"name":"BonusDiscountLineItem","url":"modules/shoppercustomers.html#bonusdiscountlineitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2574,"kind":4194304,"name":"Discount","url":"modules/shoppercustomers.html#discount-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2575,"kind":4194304,"name":"DiscountTypeEnum","url":"modules/shoppercustomers.html#discounttypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2576,"kind":4194304,"name":"PriceAdjustment","url":"modules/shoppercustomers.html#priceadjustment-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2577,"kind":4194304,"name":"ShippingItem","url":"modules/shoppercustomers.html#shippingitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2578,"kind":4194304,"name":"OrderAddress","url":"modules/shoppercustomers.html#orderaddress-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2579,"kind":4194304,"name":"ShippingPromotion","url":"modules/shoppercustomers.html#shippingpromotion-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2580,"kind":4194304,"name":"ShippingMethod","url":"modules/shoppercustomers.html#shippingmethod-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2581,"kind":4194304,"name":"Shipment","url":"modules/shoppercustomers.html#shipment-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2582,"kind":4194304,"name":"ShipmentShippingStatusEnum","url":"modules/shoppercustomers.html#shipmentshippingstatusenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2583,"kind":4194304,"name":"CouponItem","url":"modules/shoppercustomers.html#couponitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2584,"kind":4194304,"name":"CouponItemStatusCodeEnum","url":"modules/shoppercustomers.html#couponitemstatuscodeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2585,"kind":4194304,"name":"CustomerInfo","url":"modules/shoppercustomers.html#customerinfo-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2586,"kind":4194304,"name":"GroupedTaxItem","url":"modules/shoppercustomers.html#groupedtaxitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2587,"kind":4194304,"name":"ProductListLink","url":"modules/shoppercustomers.html#productlistlink-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2588,"kind":4194304,"name":"ProductListLinkTypeEnum","url":"modules/shoppercustomers.html#productlistlinktypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2589,"kind":4194304,"name":"ProductListItemReference","url":"modules/shoppercustomers.html#productlistitemreference-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2590,"kind":4194304,"name":"ProductListItemReferenceTypeEnum","url":"modules/shoppercustomers.html#productlistitemreferencetypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2591,"kind":4194304,"name":"OptionItem","url":"modules/shoppercustomers.html#optionitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2592,"kind":4194304,"name":"ProductItem","url":"modules/shoppercustomers.html#productitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2593,"kind":4194304,"name":"Basket","url":"modules/shoppercustomers.html#basket-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2594,"kind":4194304,"name":"BasketChannelTypeEnum","url":"modules/shoppercustomers.html#basketchanneltypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2595,"kind":4194304,"name":"BasketTaxationEnum","url":"modules/shoppercustomers.html#baskettaxationenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2596,"kind":4194304,"name":"BasketsResult","url":"modules/shoppercustomers.html#basketsresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2597,"kind":4194304,"name":"Image","url":"modules/shoppercustomers.html#image-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2598,"kind":4194304,"name":"VariationAttributeValue","url":"modules/shoppercustomers.html#variationattributevalue-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2599,"kind":4194304,"name":"VariationAttribute","url":"modules/shoppercustomers.html#variationattribute-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2600,"kind":4194304,"name":"VariationGroup","url":"modules/shoppercustomers.html#variationgroup-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2601,"kind":4194304,"name":"ProductType","url":"modules/shoppercustomers.html#producttype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2602,"kind":4194304,"name":"ProductPriceTable","url":"modules/shoppercustomers.html#productpricetable-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2603,"kind":4194304,"name":"RecommendationType","url":"modules/shoppercustomers.html#recommendationtype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2604,"kind":4194304,"name":"Recommendation","url":"modules/shoppercustomers.html#recommendation-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2605,"kind":4194304,"name":"PriceRange","url":"modules/shoppercustomers.html#pricerange-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2606,"kind":4194304,"name":"ProductPromotion","url":"modules/shoppercustomers.html#productpromotion-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2607,"kind":4194304,"name":"Master","url":"modules/shoppercustomers.html#master-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2608,"kind":4194304,"name":"Variant","url":"modules/shoppercustomers.html#variant-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2609,"kind":4194304,"name":"PageMetaTag","url":"modules/shoppercustomers.html#pagemetatag-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2610,"kind":4194304,"name":"ProductLink","url":"modules/shoppercustomers.html#productlink-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2611,"kind":4194304,"name":"ProductLinkTypeEnum","url":"modules/shoppercustomers.html#productlinktypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2612,"kind":4194304,"name":"OptionValue","url":"modules/shoppercustomers.html#optionvalue-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2613,"kind":4194304,"name":"Option","url":"modules/shoppercustomers.html#option-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2614,"kind":4194304,"name":"ImageGroup","url":"modules/shoppercustomers.html#imagegroup-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2615,"kind":4194304,"name":"Inventory","url":"modules/shoppercustomers.html#inventory-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2616,"kind":4194304,"name":"Product","url":"modules/shoppercustomers.html#product-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2617,"kind":4194304,"name":"BundledProduct","url":"modules/shoppercustomers.html#bundledproduct-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2618,"kind":4194304,"name":"CustomerPaymentInstrument","url":"modules/shoppercustomers.html#customerpaymentinstrument-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2619,"kind":4194304,"name":"CustomerAddress","url":"modules/shoppercustomers.html#customeraddress-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2620,"kind":4194304,"name":"Customer","url":"modules/shoppercustomers.html#customer-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2621,"kind":4194304,"name":"CustomerAuthTypeEnum","url":"modules/shoppercustomers.html#customerauthtypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2622,"kind":4194304,"name":"CustomerAddressInfo","url":"modules/shoppercustomers.html#customeraddressinfo-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2623,"kind":4194304,"name":"CustomerExtProfileRequest","url":"modules/shoppercustomers.html#customerextprofilerequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2624,"kind":4194304,"name":"CustomerExternalProfile","url":"modules/shoppercustomers.html#customerexternalprofile-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2625,"kind":4194304,"name":"Order","url":"modules/shoppercustomers.html#order-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2626,"kind":4194304,"name":"OrderChannelTypeEnum","url":"modules/shoppercustomers.html#orderchanneltypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2627,"kind":4194304,"name":"OrderConfirmationStatusEnum","url":"modules/shoppercustomers.html#orderconfirmationstatusenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2628,"kind":4194304,"name":"OrderExportStatusEnum","url":"modules/shoppercustomers.html#orderexportstatusenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2629,"kind":4194304,"name":"OrderPaymentStatusEnum","url":"modules/shoppercustomers.html#orderpaymentstatusenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2630,"kind":4194304,"name":"OrderShippingStatusEnum","url":"modules/shoppercustomers.html#ordershippingstatusenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2631,"kind":4194304,"name":"OrderStatusEnum","url":"modules/shoppercustomers.html#orderstatusenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2632,"kind":4194304,"name":"OrderTaxationEnum","url":"modules/shoppercustomers.html#ordertaxationenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2633,"kind":4194304,"name":"CustomerOrderResult","url":"modules/shoppercustomers.html#customerorderresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2634,"kind":4194304,"name":"CustomerPaymentCardRequest","url":"modules/shoppercustomers.html#customerpaymentcardrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2635,"kind":4194304,"name":"PaymentBankAccountRequest","url":"modules/shoppercustomers.html#paymentbankaccountrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2636,"kind":4194304,"name":"CustomerPaymentInstrumentRequest","url":"modules/shoppercustomers.html#customerpaymentinstrumentrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2637,"kind":4194304,"name":"ProductListEvent","url":"modules/shoppercustomers.html#productlistevent-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2638,"kind":4194304,"name":"CustomerProductListItem","url":"modules/shoppercustomers.html#customerproductlistitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2639,"kind":4194304,"name":"CustomerProductListItemTypeEnum","url":"modules/shoppercustomers.html#customerproductlistitemtypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2640,"kind":4194304,"name":"CustomerProductListRegistrant","url":"modules/shoppercustomers.html#customerproductlistregistrant-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2641,"kind":4194304,"name":"ProductListShippingAddress","url":"modules/shoppercustomers.html#productlistshippingaddress-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2642,"kind":4194304,"name":"CustomerProductList","url":"modules/shoppercustomers.html#customerproductlist-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2643,"kind":4194304,"name":"CustomerProductListTypeEnum","url":"modules/shoppercustomers.html#customerproductlisttypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2644,"kind":4194304,"name":"CustomerProductListResult","url":"modules/shoppercustomers.html#customerproductlistresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2645,"kind":4194304,"name":"CustomerRegistration","url":"modules/shoppercustomers.html#customerregistration-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2646,"kind":4194304,"name":"ErrorResponse","url":"modules/shoppercustomers.html#errorresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2647,"kind":4194304,"name":"PaginatedResultBase","url":"modules/shoppercustomers.html#paginatedresultbase-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2648,"kind":4194304,"name":"PasswordChangeRequest","url":"modules/shoppercustomers.html#passwordchangerequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2649,"kind":4194304,"name":"ProductListRegistrant","url":"modules/shoppercustomers.html#productlistregistrant-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2650,"kind":4194304,"name":"PublicProductListItem","url":"modules/shoppercustomers.html#publicproductlistitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2651,"kind":4194304,"name":"PublicProductListItemTypeEnum","url":"modules/shoppercustomers.html#publicproductlistitemtypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2652,"kind":4194304,"name":"PublicProductList","url":"modules/shoppercustomers.html#publicproductlist-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2653,"kind":4194304,"name":"PublicProductListTypeEnum","url":"modules/shoppercustomers.html#publicproductlisttypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2654,"kind":4194304,"name":"PublicProductListInfo","url":"modules/shoppercustomers.html#publicproductlistinfo-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2655,"kind":4194304,"name":"PublicProductListInfoTypeEnum","url":"modules/shoppercustomers.html#publicproductlistinfotypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2656,"kind":4194304,"name":"PublicProductListResult","url":"modules/shoppercustomers.html#publicproductlistresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2657,"kind":4194304,"name":"ResetPasswordRequest","url":"modules/shoppercustomers.html#resetpasswordrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2658,"kind":4194304,"name":"ResetPasswordToken","url":"modules/shoppercustomers.html#resetpasswordtoken-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2659,"kind":4194304,"name":"ResetPasswordTokenRequest","url":"modules/shoppercustomers.html#resetpasswordtokenrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2660,"kind":4194304,"name":"ResultBase","url":"modules/shoppercustomers.html#resultbase-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2661,"kind":16777216,"name":"Basket","url":"modules/shoppercustomers.html#basket","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2662,"kind":16777216,"name":"BasketChannelTypeEnum","url":"modules/shoppercustomers.html#basketchanneltypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2663,"kind":16777216,"name":"BasketTaxationEnum","url":"modules/shoppercustomers.html#baskettaxationenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2664,"kind":16777216,"name":"BasketsResult","url":"modules/shoppercustomers.html#basketsresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2665,"kind":16777216,"name":"BonusDiscountLineItem","url":"modules/shoppercustomers.html#bonusdiscountlineitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2666,"kind":16777216,"name":"BundledProduct","url":"modules/shoppercustomers.html#bundledproduct","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2667,"kind":16777216,"name":"CouponItem","url":"modules/shoppercustomers.html#couponitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2668,"kind":16777216,"name":"CouponItemStatusCodeEnum","url":"modules/shoppercustomers.html#couponitemstatuscodeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2669,"kind":16777216,"name":"CurrencyCode","url":"modules/shoppercustomers.html#currencycode","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2670,"kind":16777216,"name":"Customer","url":"modules/shoppercustomers.html#customer","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2671,"kind":16777216,"name":"CustomerAuthTypeEnum","url":"modules/shoppercustomers.html#customerauthtypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2672,"kind":16777216,"name":"CustomerAddress","url":"modules/shoppercustomers.html#customeraddress","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2673,"kind":16777216,"name":"CustomerAddressInfo","url":"modules/shoppercustomers.html#customeraddressinfo","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2674,"kind":16777216,"name":"CustomerExtProfileRequest","url":"modules/shoppercustomers.html#customerextprofilerequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2675,"kind":16777216,"name":"CustomerExternalProfile","url":"modules/shoppercustomers.html#customerexternalprofile","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2676,"kind":16777216,"name":"CustomerInfo","url":"modules/shoppercustomers.html#customerinfo","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2677,"kind":16777216,"name":"CustomerOrderResult","url":"modules/shoppercustomers.html#customerorderresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2678,"kind":16777216,"name":"CustomerPaymentCardRequest","url":"modules/shoppercustomers.html#customerpaymentcardrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2679,"kind":16777216,"name":"CustomerPaymentInstrument","url":"modules/shoppercustomers.html#customerpaymentinstrument","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2680,"kind":16777216,"name":"CustomerPaymentInstrumentRequest","url":"modules/shoppercustomers.html#customerpaymentinstrumentrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2681,"kind":16777216,"name":"CustomerProductList","url":"modules/shoppercustomers.html#customerproductlist","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2682,"kind":16777216,"name":"CustomerProductListTypeEnum","url":"modules/shoppercustomers.html#customerproductlisttypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2683,"kind":16777216,"name":"CustomerProductListItem","url":"modules/shoppercustomers.html#customerproductlistitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2684,"kind":16777216,"name":"CustomerProductListItemTypeEnum","url":"modules/shoppercustomers.html#customerproductlistitemtypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2685,"kind":16777216,"name":"CustomerProductListRegistrant","url":"modules/shoppercustomers.html#customerproductlistregistrant","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2686,"kind":16777216,"name":"CustomerProductListResult","url":"modules/shoppercustomers.html#customerproductlistresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2687,"kind":16777216,"name":"CustomerRegistration","url":"modules/shoppercustomers.html#customerregistration","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2688,"kind":16777216,"name":"Discount","url":"modules/shoppercustomers.html#discount","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2689,"kind":16777216,"name":"DiscountTypeEnum","url":"modules/shoppercustomers.html#discounttypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2690,"kind":16777216,"name":"ErrorResponse","url":"modules/shoppercustomers.html#errorresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2691,"kind":16777216,"name":"GiftCertificateItem","url":"modules/shoppercustomers.html#giftcertificateitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2692,"kind":16777216,"name":"GroupedTaxItem","url":"modules/shoppercustomers.html#groupedtaxitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2693,"kind":16777216,"name":"Image","url":"modules/shoppercustomers.html#image","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2694,"kind":16777216,"name":"ImageGroup","url":"modules/shoppercustomers.html#imagegroup","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2695,"kind":16777216,"name":"Inventory","url":"modules/shoppercustomers.html#inventory","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2696,"kind":16777216,"name":"Master","url":"modules/shoppercustomers.html#master","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2697,"kind":16777216,"name":"NoValue","url":"modules/shoppercustomers.html#novalue","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2698,"kind":16777216,"name":"Option","url":"modules/shoppercustomers.html#option","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2699,"kind":16777216,"name":"OptionItem","url":"modules/shoppercustomers.html#optionitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2700,"kind":16777216,"name":"OptionValue","url":"modules/shoppercustomers.html#optionvalue","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2701,"kind":16777216,"name":"Order","url":"modules/shoppercustomers.html#order","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2702,"kind":16777216,"name":"OrderChannelTypeEnum","url":"modules/shoppercustomers.html#orderchanneltypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2703,"kind":16777216,"name":"OrderConfirmationStatusEnum","url":"modules/shoppercustomers.html#orderconfirmationstatusenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2704,"kind":16777216,"name":"OrderExportStatusEnum","url":"modules/shoppercustomers.html#orderexportstatusenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2705,"kind":16777216,"name":"OrderPaymentStatusEnum","url":"modules/shoppercustomers.html#orderpaymentstatusenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2706,"kind":16777216,"name":"OrderShippingStatusEnum","url":"modules/shoppercustomers.html#ordershippingstatusenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2707,"kind":16777216,"name":"OrderStatusEnum","url":"modules/shoppercustomers.html#orderstatusenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2708,"kind":16777216,"name":"OrderTaxationEnum","url":"modules/shoppercustomers.html#ordertaxationenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2709,"kind":16777216,"name":"OrderAddress","url":"modules/shoppercustomers.html#orderaddress","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2710,"kind":16777216,"name":"OrderPaymentInstrument","url":"modules/shoppercustomers.html#orderpaymentinstrument","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2711,"kind":16777216,"name":"PageMetaTag","url":"modules/shoppercustomers.html#pagemetatag","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2712,"kind":16777216,"name":"PaginatedResultBase","url":"modules/shoppercustomers.html#paginatedresultbase","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2713,"kind":16777216,"name":"PasswordChangeRequest","url":"modules/shoppercustomers.html#passwordchangerequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2714,"kind":16777216,"name":"PaymentBankAccountRequest","url":"modules/shoppercustomers.html#paymentbankaccountrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2715,"kind":16777216,"name":"PaymentCard","url":"modules/shoppercustomers.html#paymentcard","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2716,"kind":16777216,"name":"PriceAdjustment","url":"modules/shoppercustomers.html#priceadjustment","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2717,"kind":16777216,"name":"PriceRange","url":"modules/shoppercustomers.html#pricerange","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2718,"kind":16777216,"name":"Product","url":"modules/shoppercustomers.html#product","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2719,"kind":16777216,"name":"ProductDetailsLink","url":"modules/shoppercustomers.html#productdetailslink","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2720,"kind":16777216,"name":"ProductItem","url":"modules/shoppercustomers.html#productitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2721,"kind":16777216,"name":"ProductLink","url":"modules/shoppercustomers.html#productlink","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2722,"kind":16777216,"name":"ProductLinkTypeEnum","url":"modules/shoppercustomers.html#productlinktypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2723,"kind":16777216,"name":"ProductListEvent","url":"modules/shoppercustomers.html#productlistevent","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2724,"kind":16777216,"name":"ProductListItemReference","url":"modules/shoppercustomers.html#productlistitemreference","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2725,"kind":16777216,"name":"ProductListItemReferenceTypeEnum","url":"modules/shoppercustomers.html#productlistitemreferencetypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2726,"kind":16777216,"name":"ProductListLink","url":"modules/shoppercustomers.html#productlistlink","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2727,"kind":16777216,"name":"ProductListLinkTypeEnum","url":"modules/shoppercustomers.html#productlistlinktypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2728,"kind":16777216,"name":"ProductListRegistrant","url":"modules/shoppercustomers.html#productlistregistrant","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2729,"kind":16777216,"name":"ProductListShippingAddress","url":"modules/shoppercustomers.html#productlistshippingaddress","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2730,"kind":16777216,"name":"ProductPriceTable","url":"modules/shoppercustomers.html#productpricetable","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2731,"kind":16777216,"name":"ProductPromotion","url":"modules/shoppercustomers.html#productpromotion","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2732,"kind":16777216,"name":"ProductType","url":"modules/shoppercustomers.html#producttype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2733,"kind":16777216,"name":"PublicProductList","url":"modules/shoppercustomers.html#publicproductlist","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2734,"kind":16777216,"name":"PublicProductListTypeEnum","url":"modules/shoppercustomers.html#publicproductlisttypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2735,"kind":16777216,"name":"PublicProductListInfo","url":"modules/shoppercustomers.html#publicproductlistinfo","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2736,"kind":16777216,"name":"PublicProductListInfoTypeEnum","url":"modules/shoppercustomers.html#publicproductlistinfotypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2737,"kind":16777216,"name":"PublicProductListItem","url":"modules/shoppercustomers.html#publicproductlistitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2738,"kind":16777216,"name":"PublicProductListItemTypeEnum","url":"modules/shoppercustomers.html#publicproductlistitemtypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2739,"kind":16777216,"name":"PublicProductListResult","url":"modules/shoppercustomers.html#publicproductlistresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2740,"kind":16777216,"name":"Recommendation","url":"modules/shoppercustomers.html#recommendation","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2741,"kind":16777216,"name":"RecommendationType","url":"modules/shoppercustomers.html#recommendationtype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2742,"kind":16777216,"name":"ResetPasswordRequest","url":"modules/shoppercustomers.html#resetpasswordrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2743,"kind":16777216,"name":"ResetPasswordToken","url":"modules/shoppercustomers.html#resetpasswordtoken","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2744,"kind":16777216,"name":"ResetPasswordTokenRequest","url":"modules/shoppercustomers.html#resetpasswordtokenrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2745,"kind":16777216,"name":"ResultBase","url":"modules/shoppercustomers.html#resultbase","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2746,"kind":16777216,"name":"Shipment","url":"modules/shoppercustomers.html#shipment","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2747,"kind":16777216,"name":"ShipmentShippingStatusEnum","url":"modules/shoppercustomers.html#shipmentshippingstatusenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2748,"kind":16777216,"name":"ShippingItem","url":"modules/shoppercustomers.html#shippingitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2749,"kind":16777216,"name":"ShippingMethod","url":"modules/shoppercustomers.html#shippingmethod","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2750,"kind":16777216,"name":"ShippingPromotion","url":"modules/shoppercustomers.html#shippingpromotion","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2751,"kind":16777216,"name":"Status","url":"modules/shoppercustomers.html#status","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2752,"kind":16777216,"name":"Variant","url":"modules/shoppercustomers.html#variant","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2753,"kind":16777216,"name":"VariationAttribute","url":"modules/shoppercustomers.html#variationattribute","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2754,"kind":16777216,"name":"VariationAttributeValue","url":"modules/shoppercustomers.html#variationattributevalue","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2755,"kind":16777216,"name":"VariationGroup","url":"modules/shoppercustomers.html#variationgroup","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2756,"kind":128,"name":"ShopperCustomers","url":"classes/shoppercustomers.shoppercustomers-3.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"shopperCustomers"},{"id":2757,"kind":1024,"name":"clientConfig","url":"classes/shoppercustomers.shoppercustomers-3.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class","parent":"shopperCustomers.ShopperCustomers"},{"id":2758,"kind":1024,"name":"defaultBaseUri","url":"classes/shoppercustomers.shoppercustomers-3.html#defaultbaseuri","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperCustomers.ShopperCustomers"},{"id":2759,"kind":2097152,"name":"apiPaths","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-static","parent":"shopperCustomers.ShopperCustomers"},{"id":2760,"kind":32,"name":"createCustomerAddress","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.createcustomeraddress-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":2761,"kind":32,"name":"createCustomerPaymentInstrument","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.createcustomerpaymentinstrument-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":2762,"kind":32,"name":"createCustomerProductList","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.createcustomerproductlist-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":2763,"kind":32,"name":"createCustomerProductListItem","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.createcustomerproductlistitem-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":2764,"kind":32,"name":"deleteCustomerPaymentInstrument","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.deletecustomerpaymentinstrument-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":2765,"kind":32,"name":"deleteCustomerProductList","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.deletecustomerproductlist-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":2766,"kind":32,"name":"deleteCustomerProductListItem","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.deletecustomerproductlistitem-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":2767,"kind":32,"name":"getCustomer","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.getcustomer-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":2768,"kind":32,"name":"getCustomerAddress","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.getcustomeraddress-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":2769,"kind":32,"name":"getCustomerBaskets","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.getcustomerbaskets-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":2770,"kind":32,"name":"getCustomerOrders","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.getcustomerorders-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":2771,"kind":32,"name":"getCustomerPaymentInstrument","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.getcustomerpaymentinstrument-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":2772,"kind":32,"name":"getCustomerProductList","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.getcustomerproductlist-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":2773,"kind":32,"name":"getCustomerProductListItem","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.getcustomerproductlistitem-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":2774,"kind":32,"name":"getCustomerProductLists","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.getcustomerproductlists-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":2775,"kind":32,"name":"getExternalProfile","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.getexternalprofile-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":2776,"kind":32,"name":"getProductListItem","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.getproductlistitem-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":2777,"kind":32,"name":"getPublicProductList","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.getpublicproductlist-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":2778,"kind":32,"name":"getPublicProductListsBySearchTerm","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.getpublicproductlistsbysearchterm-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":2779,"kind":32,"name":"getResetPasswordToken","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.getresetpasswordtoken-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":2780,"kind":32,"name":"registerCustomer","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.registercustomer-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":2781,"kind":32,"name":"registerExternalProfile","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.registerexternalprofile-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":2782,"kind":32,"name":"removeCustomerAddress","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.removecustomeraddress-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":2783,"kind":32,"name":"resetPassword","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.resetpassword-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":2784,"kind":32,"name":"updateCustomer","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.updatecustomer-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":2785,"kind":32,"name":"updateCustomerAddress","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.updatecustomeraddress-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":2786,"kind":32,"name":"updateCustomerPassword","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.updatecustomerpassword-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":2787,"kind":32,"name":"updateCustomerProductList","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.updatecustomerproductlist-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":2788,"kind":32,"name":"updateCustomerProductListItem","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.updatecustomerproductlistitem-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":2789,"kind":512,"name":"constructor","url":"classes/shoppercustomers.shoppercustomers-3.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"shopperCustomers.ShopperCustomers"},{"id":2790,"kind":1024,"name":"paramKeys","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperCustomers.ShopperCustomers"},{"id":2791,"kind":65536,"name":"__type","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"shopperCustomers.ShopperCustomers.paramKeys"},{"id":2792,"kind":32,"name":"createCustomerAddress","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.createcustomeraddress","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2793,"kind":32,"name":"createCustomerAddressRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.createcustomeraddressrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2794,"kind":32,"name":"createCustomerPaymentInstrument","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.createcustomerpaymentinstrument","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2795,"kind":32,"name":"createCustomerPaymentInstrumentRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.createcustomerpaymentinstrumentrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2796,"kind":32,"name":"createCustomerProductList","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.createcustomerproductlist","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2797,"kind":32,"name":"createCustomerProductListRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.createcustomerproductlistrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2798,"kind":32,"name":"createCustomerProductListItem","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.createcustomerproductlistitem","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2799,"kind":32,"name":"createCustomerProductListItemRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.createcustomerproductlistitemrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2800,"kind":32,"name":"deleteCustomerPaymentInstrument","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.deletecustomerpaymentinstrument","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2801,"kind":32,"name":"deleteCustomerPaymentInstrumentRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.deletecustomerpaymentinstrumentrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2802,"kind":32,"name":"deleteCustomerProductList","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.deletecustomerproductlist","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2803,"kind":32,"name":"deleteCustomerProductListRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.deletecustomerproductlistrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2804,"kind":32,"name":"deleteCustomerProductListItem","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.deletecustomerproductlistitem","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2805,"kind":32,"name":"deleteCustomerProductListItemRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.deletecustomerproductlistitemrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2806,"kind":32,"name":"getCustomer","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getcustomer","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2807,"kind":32,"name":"getCustomerRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getcustomerrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2808,"kind":32,"name":"getCustomerAddress","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getcustomeraddress","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2809,"kind":32,"name":"getCustomerAddressRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getcustomeraddressrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2810,"kind":32,"name":"getCustomerBaskets","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getcustomerbaskets","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2811,"kind":32,"name":"getCustomerBasketsRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getcustomerbasketsrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2812,"kind":32,"name":"getCustomerOrders","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getcustomerorders","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2813,"kind":32,"name":"getCustomerOrdersRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getcustomerordersrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2814,"kind":32,"name":"getCustomerPaymentInstrument","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getcustomerpaymentinstrument","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2815,"kind":32,"name":"getCustomerPaymentInstrumentRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getcustomerpaymentinstrumentrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2816,"kind":32,"name":"getCustomerProductList","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getcustomerproductlist","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2817,"kind":32,"name":"getCustomerProductListRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getcustomerproductlistrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2818,"kind":32,"name":"getCustomerProductListItem","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getcustomerproductlistitem","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2819,"kind":32,"name":"getCustomerProductListItemRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getcustomerproductlistitemrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2820,"kind":32,"name":"getCustomerProductLists","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getcustomerproductlists","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2821,"kind":32,"name":"getCustomerProductListsRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getcustomerproductlistsrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2822,"kind":32,"name":"getExternalProfile","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getexternalprofile","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2823,"kind":32,"name":"getExternalProfileRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getexternalprofilerequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2824,"kind":32,"name":"getProductListItem","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getproductlistitem","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2825,"kind":32,"name":"getProductListItemRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getproductlistitemrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2826,"kind":32,"name":"getPublicProductList","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getpublicproductlist","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2827,"kind":32,"name":"getPublicProductListRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getpublicproductlistrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2828,"kind":32,"name":"getPublicProductListsBySearchTerm","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getpublicproductlistsbysearchterm","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2829,"kind":32,"name":"getPublicProductListsBySearchTermRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getpublicproductlistsbysearchtermrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2830,"kind":32,"name":"getResetPasswordToken","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getresetpasswordtoken","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2831,"kind":32,"name":"getResetPasswordTokenRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getresetpasswordtokenrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2832,"kind":32,"name":"registerCustomer","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.registercustomer","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2833,"kind":32,"name":"registerCustomerRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.registercustomerrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2834,"kind":32,"name":"registerExternalProfile","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.registerexternalprofile","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2835,"kind":32,"name":"registerExternalProfileRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.registerexternalprofilerequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2836,"kind":32,"name":"removeCustomerAddress","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.removecustomeraddress","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2837,"kind":32,"name":"removeCustomerAddressRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.removecustomeraddressrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2838,"kind":32,"name":"resetPassword","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.resetpassword","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2839,"kind":32,"name":"resetPasswordRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.resetpasswordrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2840,"kind":32,"name":"updateCustomer","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.updatecustomer","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2841,"kind":32,"name":"updateCustomerRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.updatecustomerrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2842,"kind":32,"name":"updateCustomerAddress","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.updatecustomeraddress","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2843,"kind":32,"name":"updateCustomerAddressRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.updatecustomeraddressrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2844,"kind":32,"name":"updateCustomerPassword","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.updatecustomerpassword","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2845,"kind":32,"name":"updateCustomerPasswordRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.updatecustomerpasswordrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2846,"kind":32,"name":"updateCustomerProductList","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.updatecustomerproductlist","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2847,"kind":32,"name":"updateCustomerProductListRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.updatecustomerproductlistrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2848,"kind":32,"name":"updateCustomerProductListItem","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.updatecustomerproductlistitem","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2849,"kind":32,"name":"updateCustomerProductListItemRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.updatecustomerproductlistitemrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":2850,"kind":2048,"name":"createCustomerAddress","url":"classes/shoppercustomers.shoppercustomers-3.html#createcustomeraddress-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":2851,"kind":2048,"name":"createCustomerPaymentInstrument","url":"classes/shoppercustomers.shoppercustomers-3.html#createcustomerpaymentinstrument-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":2852,"kind":2048,"name":"createCustomerProductList","url":"classes/shoppercustomers.shoppercustomers-3.html#createcustomerproductlist-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":2853,"kind":2048,"name":"createCustomerProductListItem","url":"classes/shoppercustomers.shoppercustomers-3.html#createcustomerproductlistitem-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":2854,"kind":2048,"name":"deleteCustomerPaymentInstrument","url":"classes/shoppercustomers.shoppercustomers-3.html#deletecustomerpaymentinstrument-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":2855,"kind":2048,"name":"deleteCustomerProductList","url":"classes/shoppercustomers.shoppercustomers-3.html#deletecustomerproductlist-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":2856,"kind":2048,"name":"deleteCustomerProductListItem","url":"classes/shoppercustomers.shoppercustomers-3.html#deletecustomerproductlistitem-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":2857,"kind":2048,"name":"getCustomer","url":"classes/shoppercustomers.shoppercustomers-3.html#getcustomer-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":2858,"kind":2048,"name":"getCustomerAddress","url":"classes/shoppercustomers.shoppercustomers-3.html#getcustomeraddress-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":2859,"kind":2048,"name":"getCustomerBaskets","url":"classes/shoppercustomers.shoppercustomers-3.html#getcustomerbaskets-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":2860,"kind":2048,"name":"getCustomerOrders","url":"classes/shoppercustomers.shoppercustomers-3.html#getcustomerorders-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":2861,"kind":2048,"name":"getCustomerPaymentInstrument","url":"classes/shoppercustomers.shoppercustomers-3.html#getcustomerpaymentinstrument-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":2862,"kind":2048,"name":"getCustomerProductList","url":"classes/shoppercustomers.shoppercustomers-3.html#getcustomerproductlist-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":2863,"kind":2048,"name":"getCustomerProductListItem","url":"classes/shoppercustomers.shoppercustomers-3.html#getcustomerproductlistitem-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":2864,"kind":2048,"name":"getCustomerProductLists","url":"classes/shoppercustomers.shoppercustomers-3.html#getcustomerproductlists-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":2865,"kind":2048,"name":"getExternalProfile","url":"classes/shoppercustomers.shoppercustomers-3.html#getexternalprofile-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":2866,"kind":2048,"name":"getProductListItem","url":"classes/shoppercustomers.shoppercustomers-3.html#getproductlistitem-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":2867,"kind":2048,"name":"getPublicProductList","url":"classes/shoppercustomers.shoppercustomers-3.html#getpublicproductlist-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":2868,"kind":2048,"name":"getPublicProductListsBySearchTerm","url":"classes/shoppercustomers.shoppercustomers-3.html#getpublicproductlistsbysearchterm-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":2869,"kind":2048,"name":"getResetPasswordToken","url":"classes/shoppercustomers.shoppercustomers-3.html#getresetpasswordtoken-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":2870,"kind":2048,"name":"registerCustomer","url":"classes/shoppercustomers.shoppercustomers-3.html#registercustomer-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":2871,"kind":2048,"name":"registerExternalProfile","url":"classes/shoppercustomers.shoppercustomers-3.html#registerexternalprofile-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":2872,"kind":2048,"name":"removeCustomerAddress","url":"classes/shoppercustomers.shoppercustomers-3.html#removecustomeraddress-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":2873,"kind":2048,"name":"resetPassword","url":"classes/shoppercustomers.shoppercustomers-3.html#resetpassword-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":2874,"kind":2048,"name":"updateCustomer","url":"classes/shoppercustomers.shoppercustomers-3.html#updatecustomer-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":2875,"kind":2048,"name":"updateCustomerAddress","url":"classes/shoppercustomers.shoppercustomers-3.html#updatecustomeraddress-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":2876,"kind":2048,"name":"updateCustomerPassword","url":"classes/shoppercustomers.shoppercustomers-3.html#updatecustomerpassword-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":2877,"kind":2048,"name":"updateCustomerProductList","url":"classes/shoppercustomers.shoppercustomers-3.html#updatecustomerproductlist-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":2878,"kind":2048,"name":"updateCustomerProductListItem","url":"classes/shoppercustomers.shoppercustomers-3.html#updatecustomerproductlistitem-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":2879,"kind":4194304,"name":"createCustomerAddressQueryParameters","url":"modules/shoppercustomers.html#createcustomeraddressqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2880,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#createcustomeraddressqueryparameters-2.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.createCustomerAddressQueryParameters"},{"id":2881,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#createcustomeraddressqueryparameters-2.__type-1.siteid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.createCustomerAddressQueryParameters.__type"},{"id":2882,"kind":4194304,"name":"createCustomerAddressPathParameters","url":"modules/shoppercustomers.html#createcustomeraddresspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2883,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#createcustomeraddresspathparameters-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.createCustomerAddressPathParameters"},{"id":2884,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#createcustomeraddresspathparameters-2.__type.customerid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.createCustomerAddressPathParameters.__type"},{"id":2885,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#createcustomeraddresspathparameters-2.__type.organizationid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.createCustomerAddressPathParameters.__type"},{"id":2886,"kind":4194304,"name":"createCustomerPaymentInstrumentQueryParameters","url":"modules/shoppercustomers.html#createcustomerpaymentinstrumentqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2887,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#createcustomerpaymentinstrumentqueryparameters-2.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.createCustomerPaymentInstrumentQueryParameters"},{"id":2888,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#createcustomerpaymentinstrumentqueryparameters-2.__type-3.siteid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.createCustomerPaymentInstrumentQueryParameters.__type"},{"id":2889,"kind":4194304,"name":"createCustomerPaymentInstrumentPathParameters","url":"modules/shoppercustomers.html#createcustomerpaymentinstrumentpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2890,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#createcustomerpaymentinstrumentpathparameters-2.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.createCustomerPaymentInstrumentPathParameters"},{"id":2891,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#createcustomerpaymentinstrumentpathparameters-2.__type-2.customerid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.createCustomerPaymentInstrumentPathParameters.__type"},{"id":2892,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#createcustomerpaymentinstrumentpathparameters-2.__type-2.organizationid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.createCustomerPaymentInstrumentPathParameters.__type"},{"id":2893,"kind":4194304,"name":"createCustomerProductListQueryParameters","url":"modules/shoppercustomers.html#createcustomerproductlistqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2894,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#createcustomerproductlistqueryparameters-2.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.createCustomerProductListQueryParameters"},{"id":2895,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#createcustomerproductlistqueryparameters-2.__type-7.siteid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.createCustomerProductListQueryParameters.__type"},{"id":2896,"kind":4194304,"name":"createCustomerProductListPathParameters","url":"modules/shoppercustomers.html#createcustomerproductlistpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2897,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#createcustomerproductlistpathparameters-2.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.createCustomerProductListPathParameters"},{"id":2898,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#createcustomerproductlistpathparameters-2.__type-6.customerid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.createCustomerProductListPathParameters.__type"},{"id":2899,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#createcustomerproductlistpathparameters-2.__type-6.organizationid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.createCustomerProductListPathParameters.__type"},{"id":2900,"kind":4194304,"name":"createCustomerProductListItemQueryParameters","url":"modules/shoppercustomers.html#createcustomerproductlistitemqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2901,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#createcustomerproductlistitemqueryparameters-2.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.createCustomerProductListItemQueryParameters"},{"id":2902,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#createcustomerproductlistitemqueryparameters-2.__type-5.siteid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.createCustomerProductListItemQueryParameters.__type"},{"id":2903,"kind":4194304,"name":"createCustomerProductListItemPathParameters","url":"modules/shoppercustomers.html#createcustomerproductlistitempathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2904,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#createcustomerproductlistitempathparameters-2.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.createCustomerProductListItemPathParameters"},{"id":2905,"kind":32,"name":"listId","url":"modules/shoppercustomers.html#createcustomerproductlistitempathparameters-2.__type-4.listid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.createCustomerProductListItemPathParameters.__type"},{"id":2906,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#createcustomerproductlistitempathparameters-2.__type-4.customerid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.createCustomerProductListItemPathParameters.__type"},{"id":2907,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#createcustomerproductlistitempathparameters-2.__type-4.organizationid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.createCustomerProductListItemPathParameters.__type"},{"id":2908,"kind":4194304,"name":"deleteCustomerPaymentInstrumentQueryParameters","url":"modules/shoppercustomers.html#deletecustomerpaymentinstrumentqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2909,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#deletecustomerpaymentinstrumentqueryparameters-2.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.deleteCustomerPaymentInstrumentQueryParameters"},{"id":2910,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#deletecustomerpaymentinstrumentqueryparameters-2.__type-9.siteid-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.deleteCustomerPaymentInstrumentQueryParameters.__type"},{"id":2911,"kind":4194304,"name":"deleteCustomerPaymentInstrumentPathParameters","url":"modules/shoppercustomers.html#deletecustomerpaymentinstrumentpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2912,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#deletecustomerpaymentinstrumentpathparameters-2.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.deleteCustomerPaymentInstrumentPathParameters"},{"id":2913,"kind":32,"name":"paymentInstrumentId","url":"modules/shoppercustomers.html#deletecustomerpaymentinstrumentpathparameters-2.__type-8.paymentinstrumentid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.deleteCustomerPaymentInstrumentPathParameters.__type"},{"id":2914,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#deletecustomerpaymentinstrumentpathparameters-2.__type-8.customerid-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.deleteCustomerPaymentInstrumentPathParameters.__type"},{"id":2915,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#deletecustomerpaymentinstrumentpathparameters-2.__type-8.organizationid-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.deleteCustomerPaymentInstrumentPathParameters.__type"},{"id":2916,"kind":4194304,"name":"deleteCustomerProductListQueryParameters","url":"modules/shoppercustomers.html#deletecustomerproductlistqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2917,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#deletecustomerproductlistqueryparameters-2.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.deleteCustomerProductListQueryParameters"},{"id":2918,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#deletecustomerproductlistqueryparameters-2.__type-13.siteid-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.deleteCustomerProductListQueryParameters.__type"},{"id":2919,"kind":4194304,"name":"deleteCustomerProductListPathParameters","url":"modules/shoppercustomers.html#deletecustomerproductlistpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2920,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#deletecustomerproductlistpathparameters-2.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.deleteCustomerProductListPathParameters"},{"id":2921,"kind":32,"name":"listId","url":"modules/shoppercustomers.html#deletecustomerproductlistpathparameters-2.__type-12.listid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.deleteCustomerProductListPathParameters.__type"},{"id":2922,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#deletecustomerproductlistpathparameters-2.__type-12.customerid-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.deleteCustomerProductListPathParameters.__type"},{"id":2923,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#deletecustomerproductlistpathparameters-2.__type-12.organizationid-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.deleteCustomerProductListPathParameters.__type"},{"id":2924,"kind":4194304,"name":"deleteCustomerProductListItemQueryParameters","url":"modules/shoppercustomers.html#deletecustomerproductlistitemqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2925,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#deletecustomerproductlistitemqueryparameters-2.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.deleteCustomerProductListItemQueryParameters"},{"id":2926,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#deletecustomerproductlistitemqueryparameters-2.__type-11.siteid-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.deleteCustomerProductListItemQueryParameters.__type"},{"id":2927,"kind":4194304,"name":"deleteCustomerProductListItemPathParameters","url":"modules/shoppercustomers.html#deletecustomerproductlistitempathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2928,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#deletecustomerproductlistitempathparameters-2.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.deleteCustomerProductListItemPathParameters"},{"id":2929,"kind":32,"name":"itemId","url":"modules/shoppercustomers.html#deletecustomerproductlistitempathparameters-2.__type-10.itemid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.deleteCustomerProductListItemPathParameters.__type"},{"id":2930,"kind":32,"name":"listId","url":"modules/shoppercustomers.html#deletecustomerproductlistitempathparameters-2.__type-10.listid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.deleteCustomerProductListItemPathParameters.__type"},{"id":2931,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#deletecustomerproductlistitempathparameters-2.__type-10.customerid-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.deleteCustomerProductListItemPathParameters.__type"},{"id":2932,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#deletecustomerproductlistitempathparameters-2.__type-10.organizationid-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.deleteCustomerProductListItemPathParameters.__type"},{"id":2933,"kind":4194304,"name":"getCustomerQueryParameters","url":"modules/shoppercustomers.html#getcustomerqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2934,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getcustomerqueryparameters-2.__type-29","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getCustomerQueryParameters"},{"id":2935,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#getcustomerqueryparameters-2.__type-29.siteid-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerQueryParameters.__type"},{"id":2936,"kind":4194304,"name":"getCustomerPathParameters","url":"modules/shoppercustomers.html#getcustomerpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2937,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getcustomerpathparameters-2.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getCustomerPathParameters"},{"id":2938,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#getcustomerpathparameters-2.__type-20.customerid-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerPathParameters.__type"},{"id":2939,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#getcustomerpathparameters-2.__type-20.organizationid-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerPathParameters.__type"},{"id":2940,"kind":4194304,"name":"getCustomerAddressQueryParameters","url":"modules/shoppercustomers.html#getcustomeraddressqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2941,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getcustomeraddressqueryparameters-2.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getCustomerAddressQueryParameters"},{"id":2942,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#getcustomeraddressqueryparameters-2.__type-15.siteid-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerAddressQueryParameters.__type"},{"id":2943,"kind":4194304,"name":"getCustomerAddressPathParameters","url":"modules/shoppercustomers.html#getcustomeraddresspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2944,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getcustomeraddresspathparameters-2.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getCustomerAddressPathParameters"},{"id":2945,"kind":32,"name":"addressName","url":"modules/shoppercustomers.html#getcustomeraddresspathparameters-2.__type-14.addressname","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerAddressPathParameters.__type"},{"id":2946,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#getcustomeraddresspathparameters-2.__type-14.customerid-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerAddressPathParameters.__type"},{"id":2947,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#getcustomeraddresspathparameters-2.__type-14.organizationid-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerAddressPathParameters.__type"},{"id":2948,"kind":4194304,"name":"getCustomerBasketsQueryParameters","url":"modules/shoppercustomers.html#getcustomerbasketsqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2949,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getcustomerbasketsqueryparameters-2.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getCustomerBasketsQueryParameters"},{"id":2950,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#getcustomerbasketsqueryparameters-2.__type-17.siteid-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerBasketsQueryParameters.__type"},{"id":2951,"kind":4194304,"name":"getCustomerBasketsPathParameters","url":"modules/shoppercustomers.html#getcustomerbasketspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2952,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getcustomerbasketspathparameters-2.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getCustomerBasketsPathParameters"},{"id":2953,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#getcustomerbasketspathparameters-2.__type-16.customerid-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerBasketsPathParameters.__type"},{"id":2954,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#getcustomerbasketspathparameters-2.__type-16.organizationid-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerBasketsPathParameters.__type"},{"id":2955,"kind":4194304,"name":"getCustomerOrdersQueryParameters","url":"modules/shoppercustomers.html#getcustomerordersqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2956,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getcustomerordersqueryparameters-2.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getCustomerOrdersQueryParameters"},{"id":2957,"kind":32,"name":"crossSites","url":"modules/shoppercustomers.html#getcustomerordersqueryparameters-2.__type-19.crosssites","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerOrdersQueryParameters.__type"},{"id":2958,"kind":32,"name":"from","url":"modules/shoppercustomers.html#getcustomerordersqueryparameters-2.__type-19.from","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerOrdersQueryParameters.__type"},{"id":2959,"kind":32,"name":"until","url":"modules/shoppercustomers.html#getcustomerordersqueryparameters-2.__type-19.until","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerOrdersQueryParameters.__type"},{"id":2960,"kind":32,"name":"status","url":"modules/shoppercustomers.html#getcustomerordersqueryparameters-2.__type-19.status-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerOrdersQueryParameters.__type"},{"id":2961,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#getcustomerordersqueryparameters-2.__type-19.siteid-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerOrdersQueryParameters.__type"},{"id":2962,"kind":32,"name":"limit","url":"modules/shoppercustomers.html#getcustomerordersqueryparameters-2.__type-19.limit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerOrdersQueryParameters.__type"},{"id":2963,"kind":32,"name":"offset","url":"modules/shoppercustomers.html#getcustomerordersqueryparameters-2.__type-19.offset","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerOrdersQueryParameters.__type"},{"id":2964,"kind":4194304,"name":"getCustomerOrdersPathParameters","url":"modules/shoppercustomers.html#getcustomerorderspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2965,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getcustomerorderspathparameters-2.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getCustomerOrdersPathParameters"},{"id":2966,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#getcustomerorderspathparameters-2.__type-18.customerid-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerOrdersPathParameters.__type"},{"id":2967,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#getcustomerorderspathparameters-2.__type-18.organizationid-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerOrdersPathParameters.__type"},{"id":2968,"kind":4194304,"name":"getCustomerPaymentInstrumentQueryParameters","url":"modules/shoppercustomers.html#getcustomerpaymentinstrumentqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2969,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getcustomerpaymentinstrumentqueryparameters-2.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getCustomerPaymentInstrumentQueryParameters"},{"id":2970,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#getcustomerpaymentinstrumentqueryparameters-2.__type-22.siteid-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerPaymentInstrumentQueryParameters.__type"},{"id":2971,"kind":4194304,"name":"getCustomerPaymentInstrumentPathParameters","url":"modules/shoppercustomers.html#getcustomerpaymentinstrumentpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2972,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getcustomerpaymentinstrumentpathparameters-2.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getCustomerPaymentInstrumentPathParameters"},{"id":2973,"kind":32,"name":"paymentInstrumentId","url":"modules/shoppercustomers.html#getcustomerpaymentinstrumentpathparameters-2.__type-21.paymentinstrumentid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerPaymentInstrumentPathParameters.__type"},{"id":2974,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#getcustomerpaymentinstrumentpathparameters-2.__type-21.customerid-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerPaymentInstrumentPathParameters.__type"},{"id":2975,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#getcustomerpaymentinstrumentpathparameters-2.__type-21.organizationid-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerPaymentInstrumentPathParameters.__type"},{"id":2976,"kind":4194304,"name":"getCustomerProductListQueryParameters","url":"modules/shoppercustomers.html#getcustomerproductlistqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2977,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getcustomerproductlistqueryparameters-2.__type-26","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getCustomerProductListQueryParameters"},{"id":2978,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#getcustomerproductlistqueryparameters-2.__type-26.siteid-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerProductListQueryParameters.__type"},{"id":2979,"kind":4194304,"name":"getCustomerProductListPathParameters","url":"modules/shoppercustomers.html#getcustomerproductlistpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2980,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getcustomerproductlistpathparameters-2.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getCustomerProductListPathParameters"},{"id":2981,"kind":32,"name":"listId","url":"modules/shoppercustomers.html#getcustomerproductlistpathparameters-2.__type-25.listid-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerProductListPathParameters.__type"},{"id":2982,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#getcustomerproductlistpathparameters-2.__type-25.customerid-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerProductListPathParameters.__type"},{"id":2983,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#getcustomerproductlistpathparameters-2.__type-25.organizationid-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerProductListPathParameters.__type"},{"id":2984,"kind":4194304,"name":"getCustomerProductListItemQueryParameters","url":"modules/shoppercustomers.html#getcustomerproductlistitemqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2985,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getcustomerproductlistitemqueryparameters-2.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getCustomerProductListItemQueryParameters"},{"id":2986,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#getcustomerproductlistitemqueryparameters-2.__type-24.siteid-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerProductListItemQueryParameters.__type"},{"id":2987,"kind":4194304,"name":"getCustomerProductListItemPathParameters","url":"modules/shoppercustomers.html#getcustomerproductlistitempathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2988,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getcustomerproductlistitempathparameters-2.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getCustomerProductListItemPathParameters"},{"id":2989,"kind":32,"name":"itemId","url":"modules/shoppercustomers.html#getcustomerproductlistitempathparameters-2.__type-23.itemid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerProductListItemPathParameters.__type"},{"id":2990,"kind":32,"name":"listId","url":"modules/shoppercustomers.html#getcustomerproductlistitempathparameters-2.__type-23.listid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerProductListItemPathParameters.__type"},{"id":2991,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#getcustomerproductlistitempathparameters-2.__type-23.customerid-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerProductListItemPathParameters.__type"},{"id":2992,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#getcustomerproductlistitempathparameters-2.__type-23.organizationid-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerProductListItemPathParameters.__type"},{"id":2993,"kind":4194304,"name":"getCustomerProductListsQueryParameters","url":"modules/shoppercustomers.html#getcustomerproductlistsqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2994,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getcustomerproductlistsqueryparameters-2.__type-28","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getCustomerProductListsQueryParameters"},{"id":2995,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#getcustomerproductlistsqueryparameters-2.__type-28.siteid-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerProductListsQueryParameters.__type"},{"id":2996,"kind":4194304,"name":"getCustomerProductListsPathParameters","url":"modules/shoppercustomers.html#getcustomerproductlistspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2997,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getcustomerproductlistspathparameters-2.__type-27","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getCustomerProductListsPathParameters"},{"id":2998,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#getcustomerproductlistspathparameters-2.__type-27.customerid-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerProductListsPathParameters.__type"},{"id":2999,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#getcustomerproductlistspathparameters-2.__type-27.organizationid-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerProductListsPathParameters.__type"},{"id":3000,"kind":4194304,"name":"getExternalProfileQueryParameters","url":"modules/shoppercustomers.html#getexternalprofilequeryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3001,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getexternalprofilequeryparameters-2.__type-31","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getExternalProfileQueryParameters"},{"id":3002,"kind":32,"name":"externalId","url":"modules/shoppercustomers.html#getexternalprofilequeryparameters-2.__type-31.externalid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getExternalProfileQueryParameters.__type"},{"id":3003,"kind":32,"name":"authenticationProviderId","url":"modules/shoppercustomers.html#getexternalprofilequeryparameters-2.__type-31.authenticationproviderid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getExternalProfileQueryParameters.__type"},{"id":3004,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#getexternalprofilequeryparameters-2.__type-31.siteid-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getExternalProfileQueryParameters.__type"},{"id":3005,"kind":4194304,"name":"getExternalProfilePathParameters","url":"modules/shoppercustomers.html#getexternalprofilepathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3006,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getexternalprofilepathparameters-2.__type-30","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getExternalProfilePathParameters"},{"id":3007,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#getexternalprofilepathparameters-2.__type-30.organizationid-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getExternalProfilePathParameters.__type"},{"id":3008,"kind":4194304,"name":"getProductListItemQueryParameters","url":"modules/shoppercustomers.html#getproductlistitemqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3009,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getproductlistitemqueryparameters-2.__type-33","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getProductListItemQueryParameters"},{"id":3010,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#getproductlistitemqueryparameters-2.__type-33.siteid-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getProductListItemQueryParameters.__type"},{"id":3011,"kind":4194304,"name":"getProductListItemPathParameters","url":"modules/shoppercustomers.html#getproductlistitempathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3012,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getproductlistitempathparameters-2.__type-32","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getProductListItemPathParameters"},{"id":3013,"kind":32,"name":"itemId","url":"modules/shoppercustomers.html#getproductlistitempathparameters-2.__type-32.itemid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getProductListItemPathParameters.__type"},{"id":3014,"kind":32,"name":"listId","url":"modules/shoppercustomers.html#getproductlistitempathparameters-2.__type-32.listid-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getProductListItemPathParameters.__type"},{"id":3015,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#getproductlistitempathparameters-2.__type-32.organizationid-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getProductListItemPathParameters.__type"},{"id":3016,"kind":4194304,"name":"getPublicProductListQueryParameters","url":"modules/shoppercustomers.html#getpublicproductlistqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3017,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getpublicproductlistqueryparameters-2.__type-35","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getPublicProductListQueryParameters"},{"id":3018,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#getpublicproductlistqueryparameters-2.__type-35.siteid-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getPublicProductListQueryParameters.__type"},{"id":3019,"kind":4194304,"name":"getPublicProductListPathParameters","url":"modules/shoppercustomers.html#getpublicproductlistpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3020,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getpublicproductlistpathparameters-2.__type-34","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getPublicProductListPathParameters"},{"id":3021,"kind":32,"name":"listId","url":"modules/shoppercustomers.html#getpublicproductlistpathparameters-2.__type-34.listid-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getPublicProductListPathParameters.__type"},{"id":3022,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#getpublicproductlistpathparameters-2.__type-34.organizationid-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getPublicProductListPathParameters.__type"},{"id":3023,"kind":4194304,"name":"getPublicProductListsBySearchTermQueryParameters","url":"modules/shoppercustomers.html#getpublicproductlistsbysearchtermqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3024,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getpublicproductlistsbysearchtermqueryparameters-2.__type-37","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getPublicProductListsBySearchTermQueryParameters"},{"id":3025,"kind":32,"name":"email","url":"modules/shoppercustomers.html#getpublicproductlistsbysearchtermqueryparameters-2.__type-37.email","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getPublicProductListsBySearchTermQueryParameters.__type"},{"id":3026,"kind":32,"name":"firstName","url":"modules/shoppercustomers.html#getpublicproductlistsbysearchtermqueryparameters-2.__type-37.firstname","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getPublicProductListsBySearchTermQueryParameters.__type"},{"id":3027,"kind":32,"name":"lastName","url":"modules/shoppercustomers.html#getpublicproductlistsbysearchtermqueryparameters-2.__type-37.lastname","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getPublicProductListsBySearchTermQueryParameters.__type"},{"id":3028,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#getpublicproductlistsbysearchtermqueryparameters-2.__type-37.siteid-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getPublicProductListsBySearchTermQueryParameters.__type"},{"id":3029,"kind":4194304,"name":"getPublicProductListsBySearchTermPathParameters","url":"modules/shoppercustomers.html#getpublicproductlistsbysearchtermpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3030,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getpublicproductlistsbysearchtermpathparameters-2.__type-36","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getPublicProductListsBySearchTermPathParameters"},{"id":3031,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#getpublicproductlistsbysearchtermpathparameters-2.__type-36.organizationid-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getPublicProductListsBySearchTermPathParameters.__type"},{"id":3032,"kind":4194304,"name":"getResetPasswordTokenQueryParameters","url":"modules/shoppercustomers.html#getresetpasswordtokenqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3033,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getresetpasswordtokenqueryparameters-2.__type-39","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getResetPasswordTokenQueryParameters"},{"id":3034,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#getresetpasswordtokenqueryparameters-2.__type-39.siteid-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getResetPasswordTokenQueryParameters.__type"},{"id":3035,"kind":4194304,"name":"getResetPasswordTokenPathParameters","url":"modules/shoppercustomers.html#getresetpasswordtokenpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3036,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getresetpasswordtokenpathparameters-2.__type-38","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getResetPasswordTokenPathParameters"},{"id":3037,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#getresetpasswordtokenpathparameters-2.__type-38.organizationid-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getResetPasswordTokenPathParameters.__type"},{"id":3038,"kind":4194304,"name":"registerCustomerQueryParameters","url":"modules/shoppercustomers.html#registercustomerqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3039,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#registercustomerqueryparameters-2.__type-41","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.registerCustomerQueryParameters"},{"id":3040,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#registercustomerqueryparameters-2.__type-41.siteid-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.registerCustomerQueryParameters.__type"},{"id":3041,"kind":4194304,"name":"registerCustomerPathParameters","url":"modules/shoppercustomers.html#registercustomerpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3042,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#registercustomerpathparameters-2.__type-40","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.registerCustomerPathParameters"},{"id":3043,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#registercustomerpathparameters-2.__type-40.organizationid-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.registerCustomerPathParameters.__type"},{"id":3044,"kind":4194304,"name":"registerExternalProfileQueryParameters","url":"modules/shoppercustomers.html#registerexternalprofilequeryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3045,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#registerexternalprofilequeryparameters-2.__type-43","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.registerExternalProfileQueryParameters"},{"id":3046,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#registerexternalprofilequeryparameters-2.__type-43.siteid-21","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.registerExternalProfileQueryParameters.__type"},{"id":3047,"kind":4194304,"name":"registerExternalProfilePathParameters","url":"modules/shoppercustomers.html#registerexternalprofilepathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3048,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#registerexternalprofilepathparameters-2.__type-42","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.registerExternalProfilePathParameters"},{"id":3049,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#registerexternalprofilepathparameters-2.__type-42.organizationid-21","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.registerExternalProfilePathParameters.__type"},{"id":3050,"kind":4194304,"name":"removeCustomerAddressQueryParameters","url":"modules/shoppercustomers.html#removecustomeraddressqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3051,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#removecustomeraddressqueryparameters-2.__type-45","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.removeCustomerAddressQueryParameters"},{"id":3052,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#removecustomeraddressqueryparameters-2.__type-45.siteid-22","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.removeCustomerAddressQueryParameters.__type"},{"id":3053,"kind":4194304,"name":"removeCustomerAddressPathParameters","url":"modules/shoppercustomers.html#removecustomeraddresspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3054,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#removecustomeraddresspathparameters-2.__type-44","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.removeCustomerAddressPathParameters"},{"id":3055,"kind":32,"name":"addressName","url":"modules/shoppercustomers.html#removecustomeraddresspathparameters-2.__type-44.addressname-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.removeCustomerAddressPathParameters.__type"},{"id":3056,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#removecustomeraddresspathparameters-2.__type-44.customerid-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.removeCustomerAddressPathParameters.__type"},{"id":3057,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#removecustomeraddresspathparameters-2.__type-44.organizationid-22","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.removeCustomerAddressPathParameters.__type"},{"id":3058,"kind":4194304,"name":"resetPasswordQueryParameters","url":"modules/shoppercustomers.html#resetpasswordqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3059,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#resetpasswordqueryparameters-2.__type-47","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.resetPasswordQueryParameters"},{"id":3060,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#resetpasswordqueryparameters-2.__type-47.siteid-23","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.resetPasswordQueryParameters.__type"},{"id":3061,"kind":4194304,"name":"resetPasswordPathParameters","url":"modules/shoppercustomers.html#resetpasswordpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3062,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#resetpasswordpathparameters-2.__type-46","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.resetPasswordPathParameters"},{"id":3063,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#resetpasswordpathparameters-2.__type-46.organizationid-23","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.resetPasswordPathParameters.__type"},{"id":3064,"kind":4194304,"name":"updateCustomerQueryParameters","url":"modules/shoppercustomers.html#updatecustomerqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3065,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#updatecustomerqueryparameters-2.__type-57","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.updateCustomerQueryParameters"},{"id":3066,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#updatecustomerqueryparameters-2.__type-57.siteid-28","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerQueryParameters.__type"},{"id":3067,"kind":4194304,"name":"updateCustomerPathParameters","url":"modules/shoppercustomers.html#updatecustomerpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3068,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#updatecustomerpathparameters-2.__type-52","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.updateCustomerPathParameters"},{"id":3069,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#updatecustomerpathparameters-2.__type-52.customerid-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerPathParameters.__type"},{"id":3070,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#updatecustomerpathparameters-2.__type-52.organizationid-26","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerPathParameters.__type"},{"id":3071,"kind":4194304,"name":"updateCustomerAddressQueryParameters","url":"modules/shoppercustomers.html#updatecustomeraddressqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3072,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#updatecustomeraddressqueryparameters-2.__type-49","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.updateCustomerAddressQueryParameters"},{"id":3073,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#updatecustomeraddressqueryparameters-2.__type-49.siteid-24","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerAddressQueryParameters.__type"},{"id":3074,"kind":4194304,"name":"updateCustomerAddressPathParameters","url":"modules/shoppercustomers.html#updatecustomeraddresspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3075,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#updatecustomeraddresspathparameters-2.__type-48","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.updateCustomerAddressPathParameters"},{"id":3076,"kind":32,"name":"addressName","url":"modules/shoppercustomers.html#updatecustomeraddresspathparameters-2.__type-48.addressname-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerAddressPathParameters.__type"},{"id":3077,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#updatecustomeraddresspathparameters-2.__type-48.customerid-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerAddressPathParameters.__type"},{"id":3078,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#updatecustomeraddresspathparameters-2.__type-48.organizationid-24","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerAddressPathParameters.__type"},{"id":3079,"kind":4194304,"name":"updateCustomerPasswordQueryParameters","url":"modules/shoppercustomers.html#updatecustomerpasswordqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3080,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#updatecustomerpasswordqueryparameters-2.__type-51","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.updateCustomerPasswordQueryParameters"},{"id":3081,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#updatecustomerpasswordqueryparameters-2.__type-51.siteid-25","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerPasswordQueryParameters.__type"},{"id":3082,"kind":4194304,"name":"updateCustomerPasswordPathParameters","url":"modules/shoppercustomers.html#updatecustomerpasswordpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3083,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#updatecustomerpasswordpathparameters-2.__type-50","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.updateCustomerPasswordPathParameters"},{"id":3084,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#updatecustomerpasswordpathparameters-2.__type-50.customerid-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerPasswordPathParameters.__type"},{"id":3085,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#updatecustomerpasswordpathparameters-2.__type-50.organizationid-25","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerPasswordPathParameters.__type"},{"id":3086,"kind":4194304,"name":"updateCustomerProductListQueryParameters","url":"modules/shoppercustomers.html#updatecustomerproductlistqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3087,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#updatecustomerproductlistqueryparameters-2.__type-56","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.updateCustomerProductListQueryParameters"},{"id":3088,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#updatecustomerproductlistqueryparameters-2.__type-56.siteid-27","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerProductListQueryParameters.__type"},{"id":3089,"kind":4194304,"name":"updateCustomerProductListPathParameters","url":"modules/shoppercustomers.html#updatecustomerproductlistpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3090,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#updatecustomerproductlistpathparameters-2.__type-55","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.updateCustomerProductListPathParameters"},{"id":3091,"kind":32,"name":"listId","url":"modules/shoppercustomers.html#updatecustomerproductlistpathparameters-2.__type-55.listid-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerProductListPathParameters.__type"},{"id":3092,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#updatecustomerproductlistpathparameters-2.__type-55.customerid-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerProductListPathParameters.__type"},{"id":3093,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#updatecustomerproductlistpathparameters-2.__type-55.organizationid-28","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerProductListPathParameters.__type"},{"id":3094,"kind":4194304,"name":"updateCustomerProductListItemQueryParameters","url":"modules/shoppercustomers.html#updatecustomerproductlistitemqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3095,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#updatecustomerproductlistitemqueryparameters-2.__type-54","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.updateCustomerProductListItemQueryParameters"},{"id":3096,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#updatecustomerproductlistitemqueryparameters-2.__type-54.siteid-26","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerProductListItemQueryParameters.__type"},{"id":3097,"kind":4194304,"name":"updateCustomerProductListItemPathParameters","url":"modules/shoppercustomers.html#updatecustomerproductlistitempathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3098,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#updatecustomerproductlistitempathparameters-2.__type-53","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.updateCustomerProductListItemPathParameters"},{"id":3099,"kind":32,"name":"itemId","url":"modules/shoppercustomers.html#updatecustomerproductlistitempathparameters-2.__type-53.itemid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerProductListItemPathParameters.__type"},{"id":3100,"kind":32,"name":"listId","url":"modules/shoppercustomers.html#updatecustomerproductlistitempathparameters-2.__type-53.listid-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerProductListItemPathParameters.__type"},{"id":3101,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#updatecustomerproductlistitempathparameters-2.__type-53.customerid-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerProductListItemPathParameters.__type"},{"id":3102,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#updatecustomerproductlistitempathparameters-2.__type-53.organizationid-27","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerProductListItemPathParameters.__type"},{"id":3103,"kind":4194304,"name":"ShopperCustomersPathParameters","url":"modules/shoppercustomers.html#shoppercustomerspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3104,"kind":4194304,"name":"ShopperCustomersQueryParameters","url":"modules/shoppercustomers.html#shoppercustomersqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3105,"kind":4194304,"name":"ShopperCustomersParameters","url":"modules/shoppercustomers.html#shoppercustomersparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3106,"kind":16777216,"name":"createCustomerAddressQueryParameters","url":"modules/shoppercustomers.html#createcustomeraddressqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3107,"kind":16777216,"name":"createCustomerAddressPathParameters","url":"modules/shoppercustomers.html#createcustomeraddresspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3108,"kind":16777216,"name":"createCustomerPaymentInstrumentQueryParameters","url":"modules/shoppercustomers.html#createcustomerpaymentinstrumentqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3109,"kind":16777216,"name":"createCustomerPaymentInstrumentPathParameters","url":"modules/shoppercustomers.html#createcustomerpaymentinstrumentpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3110,"kind":16777216,"name":"createCustomerProductListQueryParameters","url":"modules/shoppercustomers.html#createcustomerproductlistqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3111,"kind":16777216,"name":"createCustomerProductListPathParameters","url":"modules/shoppercustomers.html#createcustomerproductlistpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3112,"kind":16777216,"name":"createCustomerProductListItemQueryParameters","url":"modules/shoppercustomers.html#createcustomerproductlistitemqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3113,"kind":16777216,"name":"createCustomerProductListItemPathParameters","url":"modules/shoppercustomers.html#createcustomerproductlistitempathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3114,"kind":16777216,"name":"deleteCustomerPaymentInstrumentQueryParameters","url":"modules/shoppercustomers.html#deletecustomerpaymentinstrumentqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3115,"kind":16777216,"name":"deleteCustomerPaymentInstrumentPathParameters","url":"modules/shoppercustomers.html#deletecustomerpaymentinstrumentpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3116,"kind":16777216,"name":"deleteCustomerProductListQueryParameters","url":"modules/shoppercustomers.html#deletecustomerproductlistqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3117,"kind":16777216,"name":"deleteCustomerProductListPathParameters","url":"modules/shoppercustomers.html#deletecustomerproductlistpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3118,"kind":16777216,"name":"deleteCustomerProductListItemQueryParameters","url":"modules/shoppercustomers.html#deletecustomerproductlistitemqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3119,"kind":16777216,"name":"deleteCustomerProductListItemPathParameters","url":"modules/shoppercustomers.html#deletecustomerproductlistitempathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3120,"kind":16777216,"name":"getCustomerQueryParameters","url":"modules/shoppercustomers.html#getcustomerqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3121,"kind":16777216,"name":"getCustomerPathParameters","url":"modules/shoppercustomers.html#getcustomerpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3122,"kind":16777216,"name":"getCustomerAddressQueryParameters","url":"modules/shoppercustomers.html#getcustomeraddressqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3123,"kind":16777216,"name":"getCustomerAddressPathParameters","url":"modules/shoppercustomers.html#getcustomeraddresspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3124,"kind":16777216,"name":"getCustomerBasketsQueryParameters","url":"modules/shoppercustomers.html#getcustomerbasketsqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3125,"kind":16777216,"name":"getCustomerBasketsPathParameters","url":"modules/shoppercustomers.html#getcustomerbasketspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3126,"kind":16777216,"name":"getCustomerOrdersQueryParameters","url":"modules/shoppercustomers.html#getcustomerordersqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3127,"kind":16777216,"name":"getCustomerOrdersPathParameters","url":"modules/shoppercustomers.html#getcustomerorderspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3128,"kind":16777216,"name":"getCustomerPaymentInstrumentQueryParameters","url":"modules/shoppercustomers.html#getcustomerpaymentinstrumentqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3129,"kind":16777216,"name":"getCustomerPaymentInstrumentPathParameters","url":"modules/shoppercustomers.html#getcustomerpaymentinstrumentpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3130,"kind":16777216,"name":"getCustomerProductListQueryParameters","url":"modules/shoppercustomers.html#getcustomerproductlistqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3131,"kind":16777216,"name":"getCustomerProductListPathParameters","url":"modules/shoppercustomers.html#getcustomerproductlistpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3132,"kind":16777216,"name":"getCustomerProductListItemQueryParameters","url":"modules/shoppercustomers.html#getcustomerproductlistitemqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3133,"kind":16777216,"name":"getCustomerProductListItemPathParameters","url":"modules/shoppercustomers.html#getcustomerproductlistitempathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3134,"kind":16777216,"name":"getCustomerProductListsQueryParameters","url":"modules/shoppercustomers.html#getcustomerproductlistsqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3135,"kind":16777216,"name":"getCustomerProductListsPathParameters","url":"modules/shoppercustomers.html#getcustomerproductlistspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3136,"kind":16777216,"name":"getExternalProfileQueryParameters","url":"modules/shoppercustomers.html#getexternalprofilequeryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3137,"kind":16777216,"name":"getExternalProfilePathParameters","url":"modules/shoppercustomers.html#getexternalprofilepathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3138,"kind":16777216,"name":"getProductListItemQueryParameters","url":"modules/shoppercustomers.html#getproductlistitemqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3139,"kind":16777216,"name":"getProductListItemPathParameters","url":"modules/shoppercustomers.html#getproductlistitempathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3140,"kind":16777216,"name":"getPublicProductListQueryParameters","url":"modules/shoppercustomers.html#getpublicproductlistqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3141,"kind":16777216,"name":"getPublicProductListPathParameters","url":"modules/shoppercustomers.html#getpublicproductlistpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3142,"kind":16777216,"name":"getPublicProductListsBySearchTermQueryParameters","url":"modules/shoppercustomers.html#getpublicproductlistsbysearchtermqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3143,"kind":16777216,"name":"getPublicProductListsBySearchTermPathParameters","url":"modules/shoppercustomers.html#getpublicproductlistsbysearchtermpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3144,"kind":16777216,"name":"getResetPasswordTokenQueryParameters","url":"modules/shoppercustomers.html#getresetpasswordtokenqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3145,"kind":16777216,"name":"getResetPasswordTokenPathParameters","url":"modules/shoppercustomers.html#getresetpasswordtokenpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3146,"kind":16777216,"name":"registerCustomerQueryParameters","url":"modules/shoppercustomers.html#registercustomerqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3147,"kind":16777216,"name":"registerCustomerPathParameters","url":"modules/shoppercustomers.html#registercustomerpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3148,"kind":16777216,"name":"registerExternalProfileQueryParameters","url":"modules/shoppercustomers.html#registerexternalprofilequeryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3149,"kind":16777216,"name":"registerExternalProfilePathParameters","url":"modules/shoppercustomers.html#registerexternalprofilepathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3150,"kind":16777216,"name":"removeCustomerAddressQueryParameters","url":"modules/shoppercustomers.html#removecustomeraddressqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3151,"kind":16777216,"name":"removeCustomerAddressPathParameters","url":"modules/shoppercustomers.html#removecustomeraddresspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3152,"kind":16777216,"name":"resetPasswordQueryParameters","url":"modules/shoppercustomers.html#resetpasswordqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3153,"kind":16777216,"name":"resetPasswordPathParameters","url":"modules/shoppercustomers.html#resetpasswordpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3154,"kind":16777216,"name":"updateCustomerQueryParameters","url":"modules/shoppercustomers.html#updatecustomerqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3155,"kind":16777216,"name":"updateCustomerPathParameters","url":"modules/shoppercustomers.html#updatecustomerpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3156,"kind":16777216,"name":"updateCustomerAddressQueryParameters","url":"modules/shoppercustomers.html#updatecustomeraddressqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3157,"kind":16777216,"name":"updateCustomerAddressPathParameters","url":"modules/shoppercustomers.html#updatecustomeraddresspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3158,"kind":16777216,"name":"updateCustomerPasswordQueryParameters","url":"modules/shoppercustomers.html#updatecustomerpasswordqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3159,"kind":16777216,"name":"updateCustomerPasswordPathParameters","url":"modules/shoppercustomers.html#updatecustomerpasswordpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3160,"kind":16777216,"name":"updateCustomerProductListQueryParameters","url":"modules/shoppercustomers.html#updatecustomerproductlistqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3161,"kind":16777216,"name":"updateCustomerProductListPathParameters","url":"modules/shoppercustomers.html#updatecustomerproductlistpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3162,"kind":16777216,"name":"updateCustomerProductListItemQueryParameters","url":"modules/shoppercustomers.html#updatecustomerproductlistitemqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3163,"kind":16777216,"name":"updateCustomerProductListItemPathParameters","url":"modules/shoppercustomers.html#updatecustomerproductlistitempathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3164,"kind":16777216,"name":"ShopperCustomersPathParameters","url":"modules/shoppercustomers.html#shoppercustomerspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3165,"kind":16777216,"name":"ShopperCustomersQueryParameters","url":"modules/shoppercustomers.html#shoppercustomersqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3166,"kind":16777216,"name":"ShopperCustomersParameters","url":"modules/shoppercustomers.html#shoppercustomersparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3167,"kind":16777216,"name":"ShopperCustomers","url":"modules/shoppercustomers.html#shoppercustomers-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3168,"kind":16777216,"name":"defaultBaseUri","url":"modules/shoppercustomers.html#defaultbaseuri","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3169,"kind":16777216,"name":"createCustomerAddressQueryParameters","url":"modules/shoppercustomers.html#createcustomeraddressqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3170,"kind":16777216,"name":"createCustomerAddressPathParameters","url":"modules/shoppercustomers.html#createcustomeraddresspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3171,"kind":16777216,"name":"createCustomerPaymentInstrumentQueryParameters","url":"modules/shoppercustomers.html#createcustomerpaymentinstrumentqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3172,"kind":16777216,"name":"createCustomerPaymentInstrumentPathParameters","url":"modules/shoppercustomers.html#createcustomerpaymentinstrumentpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3173,"kind":16777216,"name":"createCustomerProductListQueryParameters","url":"modules/shoppercustomers.html#createcustomerproductlistqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3174,"kind":16777216,"name":"createCustomerProductListPathParameters","url":"modules/shoppercustomers.html#createcustomerproductlistpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3175,"kind":16777216,"name":"createCustomerProductListItemQueryParameters","url":"modules/shoppercustomers.html#createcustomerproductlistitemqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3176,"kind":16777216,"name":"createCustomerProductListItemPathParameters","url":"modules/shoppercustomers.html#createcustomerproductlistitempathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3177,"kind":16777216,"name":"deleteCustomerPaymentInstrumentQueryParameters","url":"modules/shoppercustomers.html#deletecustomerpaymentinstrumentqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3178,"kind":16777216,"name":"deleteCustomerPaymentInstrumentPathParameters","url":"modules/shoppercustomers.html#deletecustomerpaymentinstrumentpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3179,"kind":16777216,"name":"deleteCustomerProductListQueryParameters","url":"modules/shoppercustomers.html#deletecustomerproductlistqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3180,"kind":16777216,"name":"deleteCustomerProductListPathParameters","url":"modules/shoppercustomers.html#deletecustomerproductlistpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3181,"kind":16777216,"name":"deleteCustomerProductListItemQueryParameters","url":"modules/shoppercustomers.html#deletecustomerproductlistitemqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3182,"kind":16777216,"name":"deleteCustomerProductListItemPathParameters","url":"modules/shoppercustomers.html#deletecustomerproductlistitempathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3183,"kind":16777216,"name":"getCustomerQueryParameters","url":"modules/shoppercustomers.html#getcustomerqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3184,"kind":16777216,"name":"getCustomerPathParameters","url":"modules/shoppercustomers.html#getcustomerpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3185,"kind":16777216,"name":"getCustomerAddressQueryParameters","url":"modules/shoppercustomers.html#getcustomeraddressqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3186,"kind":16777216,"name":"getCustomerAddressPathParameters","url":"modules/shoppercustomers.html#getcustomeraddresspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3187,"kind":16777216,"name":"getCustomerBasketsQueryParameters","url":"modules/shoppercustomers.html#getcustomerbasketsqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3188,"kind":16777216,"name":"getCustomerBasketsPathParameters","url":"modules/shoppercustomers.html#getcustomerbasketspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3189,"kind":16777216,"name":"getCustomerOrdersQueryParameters","url":"modules/shoppercustomers.html#getcustomerordersqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3190,"kind":16777216,"name":"getCustomerOrdersPathParameters","url":"modules/shoppercustomers.html#getcustomerorderspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3191,"kind":16777216,"name":"getCustomerPaymentInstrumentQueryParameters","url":"modules/shoppercustomers.html#getcustomerpaymentinstrumentqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3192,"kind":16777216,"name":"getCustomerPaymentInstrumentPathParameters","url":"modules/shoppercustomers.html#getcustomerpaymentinstrumentpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3193,"kind":16777216,"name":"getCustomerProductListQueryParameters","url":"modules/shoppercustomers.html#getcustomerproductlistqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3194,"kind":16777216,"name":"getCustomerProductListPathParameters","url":"modules/shoppercustomers.html#getcustomerproductlistpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3195,"kind":16777216,"name":"getCustomerProductListItemQueryParameters","url":"modules/shoppercustomers.html#getcustomerproductlistitemqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3196,"kind":16777216,"name":"getCustomerProductListItemPathParameters","url":"modules/shoppercustomers.html#getcustomerproductlistitempathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3197,"kind":16777216,"name":"getCustomerProductListsQueryParameters","url":"modules/shoppercustomers.html#getcustomerproductlistsqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3198,"kind":16777216,"name":"getCustomerProductListsPathParameters","url":"modules/shoppercustomers.html#getcustomerproductlistspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3199,"kind":16777216,"name":"getExternalProfileQueryParameters","url":"modules/shoppercustomers.html#getexternalprofilequeryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3200,"kind":16777216,"name":"getExternalProfilePathParameters","url":"modules/shoppercustomers.html#getexternalprofilepathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3201,"kind":16777216,"name":"getProductListItemQueryParameters","url":"modules/shoppercustomers.html#getproductlistitemqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3202,"kind":16777216,"name":"getProductListItemPathParameters","url":"modules/shoppercustomers.html#getproductlistitempathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3203,"kind":16777216,"name":"getPublicProductListQueryParameters","url":"modules/shoppercustomers.html#getpublicproductlistqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3204,"kind":16777216,"name":"getPublicProductListPathParameters","url":"modules/shoppercustomers.html#getpublicproductlistpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3205,"kind":16777216,"name":"getPublicProductListsBySearchTermQueryParameters","url":"modules/shoppercustomers.html#getpublicproductlistsbysearchtermqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3206,"kind":16777216,"name":"getPublicProductListsBySearchTermPathParameters","url":"modules/shoppercustomers.html#getpublicproductlistsbysearchtermpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3207,"kind":16777216,"name":"getResetPasswordTokenQueryParameters","url":"modules/shoppercustomers.html#getresetpasswordtokenqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3208,"kind":16777216,"name":"getResetPasswordTokenPathParameters","url":"modules/shoppercustomers.html#getresetpasswordtokenpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3209,"kind":16777216,"name":"registerCustomerQueryParameters","url":"modules/shoppercustomers.html#registercustomerqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3210,"kind":16777216,"name":"registerCustomerPathParameters","url":"modules/shoppercustomers.html#registercustomerpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3211,"kind":16777216,"name":"registerExternalProfileQueryParameters","url":"modules/shoppercustomers.html#registerexternalprofilequeryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3212,"kind":16777216,"name":"registerExternalProfilePathParameters","url":"modules/shoppercustomers.html#registerexternalprofilepathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3213,"kind":16777216,"name":"removeCustomerAddressQueryParameters","url":"modules/shoppercustomers.html#removecustomeraddressqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3214,"kind":16777216,"name":"removeCustomerAddressPathParameters","url":"modules/shoppercustomers.html#removecustomeraddresspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3215,"kind":16777216,"name":"resetPasswordQueryParameters","url":"modules/shoppercustomers.html#resetpasswordqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3216,"kind":16777216,"name":"resetPasswordPathParameters","url":"modules/shoppercustomers.html#resetpasswordpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3217,"kind":16777216,"name":"updateCustomerQueryParameters","url":"modules/shoppercustomers.html#updatecustomerqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3218,"kind":16777216,"name":"updateCustomerPathParameters","url":"modules/shoppercustomers.html#updatecustomerpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3219,"kind":16777216,"name":"updateCustomerAddressQueryParameters","url":"modules/shoppercustomers.html#updatecustomeraddressqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3220,"kind":16777216,"name":"updateCustomerAddressPathParameters","url":"modules/shoppercustomers.html#updatecustomeraddresspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3221,"kind":16777216,"name":"updateCustomerPasswordQueryParameters","url":"modules/shoppercustomers.html#updatecustomerpasswordqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3222,"kind":16777216,"name":"updateCustomerPasswordPathParameters","url":"modules/shoppercustomers.html#updatecustomerpasswordpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3223,"kind":16777216,"name":"updateCustomerProductListQueryParameters","url":"modules/shoppercustomers.html#updatecustomerproductlistqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3224,"kind":16777216,"name":"updateCustomerProductListPathParameters","url":"modules/shoppercustomers.html#updatecustomerproductlistpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3225,"kind":16777216,"name":"updateCustomerProductListItemQueryParameters","url":"modules/shoppercustomers.html#updatecustomerproductlistitemqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3226,"kind":16777216,"name":"updateCustomerProductListItemPathParameters","url":"modules/shoppercustomers.html#updatecustomerproductlistitempathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3227,"kind":16777216,"name":"ShopperCustomersPathParameters","url":"modules/shoppercustomers.html#shoppercustomerspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3228,"kind":16777216,"name":"ShopperCustomersQueryParameters","url":"modules/shoppercustomers.html#shoppercustomersqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3229,"kind":16777216,"name":"ShopperCustomersParameters","url":"modules/shoppercustomers.html#shoppercustomersparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3230,"kind":16777216,"name":"ShopperCustomers","url":"modules/shoppercustomers.html#shoppercustomers-2","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3231,"kind":16777216,"name":"Basket","url":"modules/shoppercustomers.html#basket-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3232,"kind":16777216,"name":"BasketChannelTypeEnum","url":"modules/shoppercustomers.html#basketchanneltypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3233,"kind":16777216,"name":"BasketTaxationEnum","url":"modules/shoppercustomers.html#baskettaxationenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3234,"kind":16777216,"name":"BasketsResult","url":"modules/shoppercustomers.html#basketsresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3235,"kind":16777216,"name":"BonusDiscountLineItem","url":"modules/shoppercustomers.html#bonusdiscountlineitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3236,"kind":16777216,"name":"BundledProduct","url":"modules/shoppercustomers.html#bundledproduct-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3237,"kind":16777216,"name":"CouponItem","url":"modules/shoppercustomers.html#couponitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3238,"kind":16777216,"name":"CouponItemStatusCodeEnum","url":"modules/shoppercustomers.html#couponitemstatuscodeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3239,"kind":16777216,"name":"CurrencyCode","url":"modules/shoppercustomers.html#currencycode-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3240,"kind":16777216,"name":"Customer","url":"modules/shoppercustomers.html#customer-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3241,"kind":16777216,"name":"CustomerAuthTypeEnum","url":"modules/shoppercustomers.html#customerauthtypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3242,"kind":16777216,"name":"CustomerAddress","url":"modules/shoppercustomers.html#customeraddress-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3243,"kind":16777216,"name":"CustomerAddressInfo","url":"modules/shoppercustomers.html#customeraddressinfo-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3244,"kind":16777216,"name":"CustomerExtProfileRequest","url":"modules/shoppercustomers.html#customerextprofilerequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3245,"kind":16777216,"name":"CustomerExternalProfile","url":"modules/shoppercustomers.html#customerexternalprofile-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3246,"kind":16777216,"name":"CustomerInfo","url":"modules/shoppercustomers.html#customerinfo-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3247,"kind":16777216,"name":"CustomerOrderResult","url":"modules/shoppercustomers.html#customerorderresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3248,"kind":16777216,"name":"CustomerPaymentCardRequest","url":"modules/shoppercustomers.html#customerpaymentcardrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3249,"kind":16777216,"name":"CustomerPaymentInstrument","url":"modules/shoppercustomers.html#customerpaymentinstrument-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3250,"kind":16777216,"name":"CustomerPaymentInstrumentRequest","url":"modules/shoppercustomers.html#customerpaymentinstrumentrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3251,"kind":16777216,"name":"CustomerProductList","url":"modules/shoppercustomers.html#customerproductlist-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3252,"kind":16777216,"name":"CustomerProductListTypeEnum","url":"modules/shoppercustomers.html#customerproductlisttypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3253,"kind":16777216,"name":"CustomerProductListItem","url":"modules/shoppercustomers.html#customerproductlistitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3254,"kind":16777216,"name":"CustomerProductListItemTypeEnum","url":"modules/shoppercustomers.html#customerproductlistitemtypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3255,"kind":16777216,"name":"CustomerProductListRegistrant","url":"modules/shoppercustomers.html#customerproductlistregistrant-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3256,"kind":16777216,"name":"CustomerProductListResult","url":"modules/shoppercustomers.html#customerproductlistresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3257,"kind":16777216,"name":"CustomerRegistration","url":"modules/shoppercustomers.html#customerregistration-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3258,"kind":16777216,"name":"Discount","url":"modules/shoppercustomers.html#discount-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3259,"kind":16777216,"name":"DiscountTypeEnum","url":"modules/shoppercustomers.html#discounttypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3260,"kind":16777216,"name":"ErrorResponse","url":"modules/shoppercustomers.html#errorresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3261,"kind":16777216,"name":"GiftCertificateItem","url":"modules/shoppercustomers.html#giftcertificateitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3262,"kind":16777216,"name":"GroupedTaxItem","url":"modules/shoppercustomers.html#groupedtaxitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3263,"kind":16777216,"name":"Image","url":"modules/shoppercustomers.html#image-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3264,"kind":16777216,"name":"ImageGroup","url":"modules/shoppercustomers.html#imagegroup-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3265,"kind":16777216,"name":"Inventory","url":"modules/shoppercustomers.html#inventory-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3266,"kind":16777216,"name":"Master","url":"modules/shoppercustomers.html#master-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3267,"kind":16777216,"name":"NoValue","url":"modules/shoppercustomers.html#novalue-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3268,"kind":16777216,"name":"Option","url":"modules/shoppercustomers.html#option-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3269,"kind":16777216,"name":"OptionItem","url":"modules/shoppercustomers.html#optionitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3270,"kind":16777216,"name":"OptionValue","url":"modules/shoppercustomers.html#optionvalue-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3271,"kind":16777216,"name":"Order","url":"modules/shoppercustomers.html#order-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3272,"kind":16777216,"name":"OrderChannelTypeEnum","url":"modules/shoppercustomers.html#orderchanneltypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3273,"kind":16777216,"name":"OrderConfirmationStatusEnum","url":"modules/shoppercustomers.html#orderconfirmationstatusenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3274,"kind":16777216,"name":"OrderExportStatusEnum","url":"modules/shoppercustomers.html#orderexportstatusenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3275,"kind":16777216,"name":"OrderPaymentStatusEnum","url":"modules/shoppercustomers.html#orderpaymentstatusenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3276,"kind":16777216,"name":"OrderShippingStatusEnum","url":"modules/shoppercustomers.html#ordershippingstatusenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3277,"kind":16777216,"name":"OrderStatusEnum","url":"modules/shoppercustomers.html#orderstatusenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3278,"kind":16777216,"name":"OrderTaxationEnum","url":"modules/shoppercustomers.html#ordertaxationenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3279,"kind":16777216,"name":"OrderAddress","url":"modules/shoppercustomers.html#orderaddress-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3280,"kind":16777216,"name":"OrderPaymentInstrument","url":"modules/shoppercustomers.html#orderpaymentinstrument-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3281,"kind":16777216,"name":"PageMetaTag","url":"modules/shoppercustomers.html#pagemetatag-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3282,"kind":16777216,"name":"PaginatedResultBase","url":"modules/shoppercustomers.html#paginatedresultbase-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3283,"kind":16777216,"name":"PasswordChangeRequest","url":"modules/shoppercustomers.html#passwordchangerequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3284,"kind":16777216,"name":"PaymentBankAccountRequest","url":"modules/shoppercustomers.html#paymentbankaccountrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3285,"kind":16777216,"name":"PaymentCard","url":"modules/shoppercustomers.html#paymentcard-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3286,"kind":16777216,"name":"PriceAdjustment","url":"modules/shoppercustomers.html#priceadjustment-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3287,"kind":16777216,"name":"PriceRange","url":"modules/shoppercustomers.html#pricerange-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3288,"kind":16777216,"name":"Product","url":"modules/shoppercustomers.html#product-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3289,"kind":16777216,"name":"ProductDetailsLink","url":"modules/shoppercustomers.html#productdetailslink-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3290,"kind":16777216,"name":"ProductItem","url":"modules/shoppercustomers.html#productitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3291,"kind":16777216,"name":"ProductLink","url":"modules/shoppercustomers.html#productlink-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3292,"kind":16777216,"name":"ProductLinkTypeEnum","url":"modules/shoppercustomers.html#productlinktypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3293,"kind":16777216,"name":"ProductListEvent","url":"modules/shoppercustomers.html#productlistevent-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3294,"kind":16777216,"name":"ProductListItemReference","url":"modules/shoppercustomers.html#productlistitemreference-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3295,"kind":16777216,"name":"ProductListItemReferenceTypeEnum","url":"modules/shoppercustomers.html#productlistitemreferencetypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3296,"kind":16777216,"name":"ProductListLink","url":"modules/shoppercustomers.html#productlistlink-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3297,"kind":16777216,"name":"ProductListLinkTypeEnum","url":"modules/shoppercustomers.html#productlistlinktypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3298,"kind":16777216,"name":"ProductListRegistrant","url":"modules/shoppercustomers.html#productlistregistrant-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3299,"kind":16777216,"name":"ProductListShippingAddress","url":"modules/shoppercustomers.html#productlistshippingaddress-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3300,"kind":16777216,"name":"ProductPriceTable","url":"modules/shoppercustomers.html#productpricetable-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3301,"kind":16777216,"name":"ProductPromotion","url":"modules/shoppercustomers.html#productpromotion-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3302,"kind":16777216,"name":"ProductType","url":"modules/shoppercustomers.html#producttype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3303,"kind":16777216,"name":"PublicProductList","url":"modules/shoppercustomers.html#publicproductlist-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3304,"kind":16777216,"name":"PublicProductListTypeEnum","url":"modules/shoppercustomers.html#publicproductlisttypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3305,"kind":16777216,"name":"PublicProductListInfo","url":"modules/shoppercustomers.html#publicproductlistinfo-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3306,"kind":16777216,"name":"PublicProductListInfoTypeEnum","url":"modules/shoppercustomers.html#publicproductlistinfotypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3307,"kind":16777216,"name":"PublicProductListItem","url":"modules/shoppercustomers.html#publicproductlistitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3308,"kind":16777216,"name":"PublicProductListItemTypeEnum","url":"modules/shoppercustomers.html#publicproductlistitemtypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3309,"kind":16777216,"name":"PublicProductListResult","url":"modules/shoppercustomers.html#publicproductlistresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3310,"kind":16777216,"name":"Recommendation","url":"modules/shoppercustomers.html#recommendation-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3311,"kind":16777216,"name":"RecommendationType","url":"modules/shoppercustomers.html#recommendationtype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3312,"kind":16777216,"name":"ResetPasswordRequest","url":"modules/shoppercustomers.html#resetpasswordrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3313,"kind":16777216,"name":"ResetPasswordToken","url":"modules/shoppercustomers.html#resetpasswordtoken-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3314,"kind":16777216,"name":"ResetPasswordTokenRequest","url":"modules/shoppercustomers.html#resetpasswordtokenrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3315,"kind":16777216,"name":"ResultBase","url":"modules/shoppercustomers.html#resultbase-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3316,"kind":16777216,"name":"Shipment","url":"modules/shoppercustomers.html#shipment-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3317,"kind":16777216,"name":"ShipmentShippingStatusEnum","url":"modules/shoppercustomers.html#shipmentshippingstatusenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3318,"kind":16777216,"name":"ShippingItem","url":"modules/shoppercustomers.html#shippingitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3319,"kind":16777216,"name":"ShippingMethod","url":"modules/shoppercustomers.html#shippingmethod-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3320,"kind":16777216,"name":"ShippingPromotion","url":"modules/shoppercustomers.html#shippingpromotion-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3321,"kind":16777216,"name":"Status","url":"modules/shoppercustomers.html#status-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3322,"kind":16777216,"name":"Variant","url":"modules/shoppercustomers.html#variant-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3323,"kind":16777216,"name":"VariationAttribute","url":"modules/shoppercustomers.html#variationattribute-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3324,"kind":16777216,"name":"VariationAttributeValue","url":"modules/shoppercustomers.html#variationattributevalue-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3325,"kind":16777216,"name":"VariationGroup","url":"modules/shoppercustomers.html#variationgroup-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3326,"kind":2,"name":"ShopperCustomersTypes","url":"modules/shoppercustomers.shoppercustomerstypes.html","classes":"tsd-kind-namespace tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3327,"kind":4194304,"name":"ShopperCustomersPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#shoppercustomerspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3328,"kind":4194304,"name":"ShopperCustomersQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#shoppercustomersqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3329,"kind":4194304,"name":"createCustomerAddressQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#createcustomeraddressqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3330,"kind":4194304,"name":"createCustomerAddressPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#createcustomeraddresspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3331,"kind":4194304,"name":"createCustomerPaymentInstrumentQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#createcustomerpaymentinstrumentqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3332,"kind":4194304,"name":"createCustomerPaymentInstrumentPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#createcustomerpaymentinstrumentpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3333,"kind":4194304,"name":"createCustomerProductListQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#createcustomerproductlistqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3334,"kind":4194304,"name":"createCustomerProductListPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#createcustomerproductlistpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3335,"kind":4194304,"name":"createCustomerProductListItemQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#createcustomerproductlistitemqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3336,"kind":4194304,"name":"createCustomerProductListItemPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#createcustomerproductlistitempathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3337,"kind":4194304,"name":"deleteCustomerPaymentInstrumentQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#deletecustomerpaymentinstrumentqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3338,"kind":4194304,"name":"deleteCustomerPaymentInstrumentPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#deletecustomerpaymentinstrumentpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3339,"kind":4194304,"name":"deleteCustomerProductListQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#deletecustomerproductlistqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3340,"kind":4194304,"name":"deleteCustomerProductListPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#deletecustomerproductlistpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3341,"kind":4194304,"name":"deleteCustomerProductListItemQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#deletecustomerproductlistitemqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3342,"kind":4194304,"name":"deleteCustomerProductListItemPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#deletecustomerproductlistitempathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3343,"kind":4194304,"name":"getCustomerQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getcustomerqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3344,"kind":4194304,"name":"getCustomerPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getcustomerpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3345,"kind":4194304,"name":"getCustomerAddressQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getcustomeraddressqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3346,"kind":4194304,"name":"getCustomerAddressPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getcustomeraddresspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3347,"kind":4194304,"name":"getCustomerBasketsQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getcustomerbasketsqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3348,"kind":4194304,"name":"getCustomerBasketsPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getcustomerbasketspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3349,"kind":4194304,"name":"getCustomerOrdersQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getcustomerordersqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3350,"kind":4194304,"name":"getCustomerOrdersPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getcustomerorderspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3351,"kind":4194304,"name":"getCustomerPaymentInstrumentQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getcustomerpaymentinstrumentqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3352,"kind":4194304,"name":"getCustomerPaymentInstrumentPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getcustomerpaymentinstrumentpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3353,"kind":4194304,"name":"getCustomerProductListQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getcustomerproductlistqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3354,"kind":4194304,"name":"getCustomerProductListPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getcustomerproductlistpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3355,"kind":4194304,"name":"getCustomerProductListItemQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getcustomerproductlistitemqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3356,"kind":4194304,"name":"getCustomerProductListItemPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getcustomerproductlistitempathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3357,"kind":4194304,"name":"getCustomerProductListsQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getcustomerproductlistsqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3358,"kind":4194304,"name":"getCustomerProductListsPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getcustomerproductlistspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3359,"kind":4194304,"name":"getExternalProfileQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getexternalprofilequeryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3360,"kind":4194304,"name":"getExternalProfilePathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getexternalprofilepathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3361,"kind":4194304,"name":"getProductListItemQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getproductlistitemqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3362,"kind":4194304,"name":"getProductListItemPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getproductlistitempathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3363,"kind":4194304,"name":"getPublicProductListQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getpublicproductlistqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3364,"kind":4194304,"name":"getPublicProductListPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getpublicproductlistpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3365,"kind":4194304,"name":"getPublicProductListsBySearchTermQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getpublicproductlistsbysearchtermqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3366,"kind":4194304,"name":"getPublicProductListsBySearchTermPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getpublicproductlistsbysearchtermpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3367,"kind":4194304,"name":"getResetPasswordTokenQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getresetpasswordtokenqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3368,"kind":4194304,"name":"getResetPasswordTokenPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getresetpasswordtokenpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3369,"kind":4194304,"name":"registerCustomerQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#registercustomerqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3370,"kind":4194304,"name":"registerCustomerPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#registercustomerpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3371,"kind":4194304,"name":"registerExternalProfileQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#registerexternalprofilequeryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3372,"kind":4194304,"name":"registerExternalProfilePathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#registerexternalprofilepathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3373,"kind":4194304,"name":"removeCustomerAddressQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#removecustomeraddressqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3374,"kind":4194304,"name":"removeCustomerAddressPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#removecustomeraddresspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3375,"kind":4194304,"name":"resetPasswordQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#resetpasswordqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3376,"kind":4194304,"name":"resetPasswordPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#resetpasswordpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3377,"kind":4194304,"name":"updateCustomerQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#updatecustomerqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3378,"kind":4194304,"name":"updateCustomerPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#updatecustomerpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3379,"kind":4194304,"name":"updateCustomerAddressQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#updatecustomeraddressqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3380,"kind":4194304,"name":"updateCustomerAddressPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#updatecustomeraddresspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3381,"kind":4194304,"name":"updateCustomerPasswordQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#updatecustomerpasswordqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3382,"kind":4194304,"name":"updateCustomerPasswordPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#updatecustomerpasswordpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3383,"kind":4194304,"name":"updateCustomerProductListQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#updatecustomerproductlistqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3384,"kind":4194304,"name":"updateCustomerProductListPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#updatecustomerproductlistpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3385,"kind":4194304,"name":"updateCustomerProductListItemQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#updatecustomerproductlistitemqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3386,"kind":4194304,"name":"updateCustomerProductListItemPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#updatecustomerproductlistitempathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3387,"kind":4194304,"name":"Basket","url":"modules/shoppercustomers.shoppercustomerstypes.html#basket","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3388,"kind":4194304,"name":"BasketChannelTypeEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#basketchanneltypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3389,"kind":4194304,"name":"BasketTaxationEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#baskettaxationenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3390,"kind":4194304,"name":"BasketsResult","url":"modules/shoppercustomers.shoppercustomerstypes.html#basketsresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3391,"kind":4194304,"name":"BonusDiscountLineItem","url":"modules/shoppercustomers.shoppercustomerstypes.html#bonusdiscountlineitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3392,"kind":4194304,"name":"BundledProduct","url":"modules/shoppercustomers.shoppercustomerstypes.html#bundledproduct","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3393,"kind":4194304,"name":"CouponItem","url":"modules/shoppercustomers.shoppercustomerstypes.html#couponitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3394,"kind":4194304,"name":"CouponItemStatusCodeEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#couponitemstatuscodeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3395,"kind":4194304,"name":"CurrencyCode","url":"modules/shoppercustomers.shoppercustomerstypes.html#currencycode","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3396,"kind":4194304,"name":"Customer","url":"modules/shoppercustomers.shoppercustomerstypes.html#customer","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3397,"kind":4194304,"name":"CustomerAuthTypeEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#customerauthtypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3398,"kind":4194304,"name":"CustomerAddress","url":"modules/shoppercustomers.shoppercustomerstypes.html#customeraddress","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3399,"kind":4194304,"name":"CustomerAddressInfo","url":"modules/shoppercustomers.shoppercustomerstypes.html#customeraddressinfo","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3400,"kind":4194304,"name":"CustomerExtProfileRequest","url":"modules/shoppercustomers.shoppercustomerstypes.html#customerextprofilerequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3401,"kind":4194304,"name":"CustomerExternalProfile","url":"modules/shoppercustomers.shoppercustomerstypes.html#customerexternalprofile","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3402,"kind":4194304,"name":"CustomerInfo","url":"modules/shoppercustomers.shoppercustomerstypes.html#customerinfo","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3403,"kind":4194304,"name":"CustomerOrderResult","url":"modules/shoppercustomers.shoppercustomerstypes.html#customerorderresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3404,"kind":4194304,"name":"CustomerPaymentCardRequest","url":"modules/shoppercustomers.shoppercustomerstypes.html#customerpaymentcardrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3405,"kind":4194304,"name":"CustomerPaymentInstrument","url":"modules/shoppercustomers.shoppercustomerstypes.html#customerpaymentinstrument","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3406,"kind":4194304,"name":"CustomerPaymentInstrumentRequest","url":"modules/shoppercustomers.shoppercustomerstypes.html#customerpaymentinstrumentrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3407,"kind":4194304,"name":"CustomerProductList","url":"modules/shoppercustomers.shoppercustomerstypes.html#customerproductlist","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3408,"kind":4194304,"name":"CustomerProductListTypeEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#customerproductlisttypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3409,"kind":4194304,"name":"CustomerProductListItem","url":"modules/shoppercustomers.shoppercustomerstypes.html#customerproductlistitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3410,"kind":4194304,"name":"CustomerProductListItemTypeEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#customerproductlistitemtypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3411,"kind":4194304,"name":"CustomerProductListRegistrant","url":"modules/shoppercustomers.shoppercustomerstypes.html#customerproductlistregistrant","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3412,"kind":4194304,"name":"CustomerProductListResult","url":"modules/shoppercustomers.shoppercustomerstypes.html#customerproductlistresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3413,"kind":4194304,"name":"CustomerRegistration","url":"modules/shoppercustomers.shoppercustomerstypes.html#customerregistration","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3414,"kind":4194304,"name":"Discount","url":"modules/shoppercustomers.shoppercustomerstypes.html#discount","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3415,"kind":4194304,"name":"DiscountTypeEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#discounttypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3416,"kind":4194304,"name":"ErrorResponse","url":"modules/shoppercustomers.shoppercustomerstypes.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3417,"kind":4194304,"name":"GiftCertificateItem","url":"modules/shoppercustomers.shoppercustomerstypes.html#giftcertificateitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3418,"kind":4194304,"name":"GroupedTaxItem","url":"modules/shoppercustomers.shoppercustomerstypes.html#groupedtaxitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3419,"kind":4194304,"name":"Image","url":"modules/shoppercustomers.shoppercustomerstypes.html#image","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3420,"kind":4194304,"name":"ImageGroup","url":"modules/shoppercustomers.shoppercustomerstypes.html#imagegroup","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3421,"kind":4194304,"name":"Inventory","url":"modules/shoppercustomers.shoppercustomerstypes.html#inventory","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3422,"kind":4194304,"name":"Master","url":"modules/shoppercustomers.shoppercustomerstypes.html#master","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3423,"kind":4194304,"name":"NoValue","url":"modules/shoppercustomers.shoppercustomerstypes.html#novalue","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3424,"kind":4194304,"name":"Option","url":"modules/shoppercustomers.shoppercustomerstypes.html#option","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3425,"kind":4194304,"name":"OptionItem","url":"modules/shoppercustomers.shoppercustomerstypes.html#optionitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3426,"kind":4194304,"name":"OptionValue","url":"modules/shoppercustomers.shoppercustomerstypes.html#optionvalue","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3427,"kind":4194304,"name":"Order","url":"modules/shoppercustomers.shoppercustomerstypes.html#order","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3428,"kind":4194304,"name":"OrderChannelTypeEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#orderchanneltypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3429,"kind":4194304,"name":"OrderConfirmationStatusEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#orderconfirmationstatusenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3430,"kind":4194304,"name":"OrderExportStatusEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#orderexportstatusenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3431,"kind":4194304,"name":"OrderPaymentStatusEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#orderpaymentstatusenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3432,"kind":4194304,"name":"OrderShippingStatusEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#ordershippingstatusenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3433,"kind":4194304,"name":"OrderStatusEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#orderstatusenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3434,"kind":4194304,"name":"OrderTaxationEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#ordertaxationenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3435,"kind":4194304,"name":"OrderAddress","url":"modules/shoppercustomers.shoppercustomerstypes.html#orderaddress","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3436,"kind":4194304,"name":"OrderPaymentInstrument","url":"modules/shoppercustomers.shoppercustomerstypes.html#orderpaymentinstrument","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3437,"kind":4194304,"name":"PageMetaTag","url":"modules/shoppercustomers.shoppercustomerstypes.html#pagemetatag","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3438,"kind":4194304,"name":"PaginatedResultBase","url":"modules/shoppercustomers.shoppercustomerstypes.html#paginatedresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3439,"kind":4194304,"name":"PasswordChangeRequest","url":"modules/shoppercustomers.shoppercustomerstypes.html#passwordchangerequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3440,"kind":4194304,"name":"PaymentBankAccountRequest","url":"modules/shoppercustomers.shoppercustomerstypes.html#paymentbankaccountrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3441,"kind":4194304,"name":"PaymentCard","url":"modules/shoppercustomers.shoppercustomerstypes.html#paymentcard","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3442,"kind":4194304,"name":"PriceAdjustment","url":"modules/shoppercustomers.shoppercustomerstypes.html#priceadjustment","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3443,"kind":4194304,"name":"PriceRange","url":"modules/shoppercustomers.shoppercustomerstypes.html#pricerange","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3444,"kind":4194304,"name":"Product","url":"modules/shoppercustomers.shoppercustomerstypes.html#product","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3445,"kind":4194304,"name":"ProductDetailsLink","url":"modules/shoppercustomers.shoppercustomerstypes.html#productdetailslink","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3446,"kind":4194304,"name":"ProductItem","url":"modules/shoppercustomers.shoppercustomerstypes.html#productitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3447,"kind":4194304,"name":"ProductLink","url":"modules/shoppercustomers.shoppercustomerstypes.html#productlink","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3448,"kind":4194304,"name":"ProductLinkTypeEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#productlinktypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3449,"kind":4194304,"name":"ProductListEvent","url":"modules/shoppercustomers.shoppercustomerstypes.html#productlistevent","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3450,"kind":4194304,"name":"ProductListItemReference","url":"modules/shoppercustomers.shoppercustomerstypes.html#productlistitemreference","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3451,"kind":4194304,"name":"ProductListItemReferenceTypeEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#productlistitemreferencetypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3452,"kind":4194304,"name":"ProductListLink","url":"modules/shoppercustomers.shoppercustomerstypes.html#productlistlink","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3453,"kind":4194304,"name":"ProductListLinkTypeEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#productlistlinktypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3454,"kind":4194304,"name":"ProductListRegistrant","url":"modules/shoppercustomers.shoppercustomerstypes.html#productlistregistrant","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3455,"kind":4194304,"name":"ProductListShippingAddress","url":"modules/shoppercustomers.shoppercustomerstypes.html#productlistshippingaddress","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3456,"kind":4194304,"name":"ProductPriceTable","url":"modules/shoppercustomers.shoppercustomerstypes.html#productpricetable","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3457,"kind":4194304,"name":"ProductPromotion","url":"modules/shoppercustomers.shoppercustomerstypes.html#productpromotion","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3458,"kind":4194304,"name":"ProductType","url":"modules/shoppercustomers.shoppercustomerstypes.html#producttype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3459,"kind":4194304,"name":"PublicProductList","url":"modules/shoppercustomers.shoppercustomerstypes.html#publicproductlist","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3460,"kind":4194304,"name":"PublicProductListTypeEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#publicproductlisttypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3461,"kind":4194304,"name":"PublicProductListInfo","url":"modules/shoppercustomers.shoppercustomerstypes.html#publicproductlistinfo","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3462,"kind":4194304,"name":"PublicProductListInfoTypeEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#publicproductlistinfotypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3463,"kind":4194304,"name":"PublicProductListItem","url":"modules/shoppercustomers.shoppercustomerstypes.html#publicproductlistitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3464,"kind":4194304,"name":"PublicProductListItemTypeEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#publicproductlistitemtypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3465,"kind":4194304,"name":"PublicProductListResult","url":"modules/shoppercustomers.shoppercustomerstypes.html#publicproductlistresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3466,"kind":4194304,"name":"Recommendation","url":"modules/shoppercustomers.shoppercustomerstypes.html#recommendation","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3467,"kind":4194304,"name":"RecommendationType","url":"modules/shoppercustomers.shoppercustomerstypes.html#recommendationtype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3468,"kind":4194304,"name":"ResetPasswordRequest","url":"modules/shoppercustomers.shoppercustomerstypes.html#resetpasswordrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3469,"kind":4194304,"name":"ResetPasswordToken","url":"modules/shoppercustomers.shoppercustomerstypes.html#resetpasswordtoken","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3470,"kind":4194304,"name":"ResetPasswordTokenRequest","url":"modules/shoppercustomers.shoppercustomerstypes.html#resetpasswordtokenrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3471,"kind":4194304,"name":"ResultBase","url":"modules/shoppercustomers.shoppercustomerstypes.html#resultbase","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3472,"kind":4194304,"name":"Shipment","url":"modules/shoppercustomers.shoppercustomerstypes.html#shipment","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3473,"kind":4194304,"name":"ShipmentShippingStatusEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#shipmentshippingstatusenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3474,"kind":4194304,"name":"ShippingItem","url":"modules/shoppercustomers.shoppercustomerstypes.html#shippingitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3475,"kind":4194304,"name":"ShippingMethod","url":"modules/shoppercustomers.shoppercustomerstypes.html#shippingmethod","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3476,"kind":4194304,"name":"ShippingPromotion","url":"modules/shoppercustomers.shoppercustomerstypes.html#shippingpromotion","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3477,"kind":4194304,"name":"Status","url":"modules/shoppercustomers.shoppercustomerstypes.html#status","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3478,"kind":4194304,"name":"Variant","url":"modules/shoppercustomers.shoppercustomerstypes.html#variant","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3479,"kind":4194304,"name":"VariationAttribute","url":"modules/shoppercustomers.shoppercustomerstypes.html#variationattribute","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3480,"kind":4194304,"name":"VariationAttributeValue","url":"modules/shoppercustomers.shoppercustomerstypes.html#variationattributevalue","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3481,"kind":4194304,"name":"VariationGroup","url":"modules/shoppercustomers.shoppercustomerstypes.html#variationgroup","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3482,"kind":1,"name":"shopperExperience","url":"modules/shopperexperience.html","classes":"tsd-kind-module"},{"id":3483,"kind":32,"name":"defaultBaseUri","url":"modules/shopperexperience.html#defaultbaseuri-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"shopperExperience"},{"id":3484,"kind":4194304,"name":"Region","url":"modules/shopperexperience.html#region-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3485,"kind":4194304,"name":"Component","url":"modules/shopperexperience.html#component-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3486,"kind":4194304,"name":"DefaultFallback","url":"modules/shopperexperience.html#defaultfallback-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3487,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperexperience.html#errorresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3488,"kind":4194304,"name":"LocaleCode","url":"modules/shopperexperience.html#localecode-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3489,"kind":4194304,"name":"Page","url":"modules/shopperexperience.html#page-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3490,"kind":4194304,"name":"PageResult","url":"modules/shopperexperience.html#pageresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3491,"kind":16777216,"name":"Component","url":"modules/shopperexperience.html#component","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3492,"kind":16777216,"name":"DefaultFallback","url":"modules/shopperexperience.html#defaultfallback","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3493,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperexperience.html#errorresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3494,"kind":16777216,"name":"LocaleCode","url":"modules/shopperexperience.html#localecode","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3495,"kind":16777216,"name":"Page","url":"modules/shopperexperience.html#page","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3496,"kind":16777216,"name":"PageResult","url":"modules/shopperexperience.html#pageresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3497,"kind":16777216,"name":"Region","url":"modules/shopperexperience.html#region","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3498,"kind":128,"name":"ShopperExperience","url":"classes/shopperexperience.shopperexperience-3.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"shopperExperience"},{"id":3499,"kind":1024,"name":"clientConfig","url":"classes/shopperexperience.shopperexperience-3.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class","parent":"shopperExperience.ShopperExperience"},{"id":3500,"kind":1024,"name":"defaultBaseUri","url":"classes/shopperexperience.shopperexperience-3.html#defaultbaseuri","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperExperience.ShopperExperience"},{"id":3501,"kind":2097152,"name":"apiPaths","url":"classes/shopperexperience.shopperexperience-3.html#apipaths","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-static","parent":"shopperExperience.ShopperExperience"},{"id":3502,"kind":32,"name":"getPage","url":"classes/shopperexperience.shopperexperience-3.html#apipaths.getpage-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperExperience.ShopperExperience.apiPaths"},{"id":3503,"kind":32,"name":"getPages","url":"classes/shopperexperience.shopperexperience-3.html#apipaths.getpages-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperExperience.ShopperExperience.apiPaths"},{"id":3504,"kind":512,"name":"constructor","url":"classes/shopperexperience.shopperexperience-3.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"shopperExperience.ShopperExperience"},{"id":3505,"kind":1024,"name":"paramKeys","url":"classes/shopperexperience.shopperexperience-3.html#paramkeys","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperExperience.ShopperExperience"},{"id":3506,"kind":65536,"name":"__type","url":"classes/shopperexperience.shopperexperience-3.html#paramkeys.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"shopperExperience.ShopperExperience.paramKeys"},{"id":3507,"kind":32,"name":"getPage","url":"classes/shopperexperience.shopperexperience-3.html#paramkeys.__type.getpage","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.ShopperExperience.paramKeys.__type"},{"id":3508,"kind":32,"name":"getPageRequired","url":"classes/shopperexperience.shopperexperience-3.html#paramkeys.__type.getpagerequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.ShopperExperience.paramKeys.__type"},{"id":3509,"kind":32,"name":"getPages","url":"classes/shopperexperience.shopperexperience-3.html#paramkeys.__type.getpages","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.ShopperExperience.paramKeys.__type"},{"id":3510,"kind":32,"name":"getPagesRequired","url":"classes/shopperexperience.shopperexperience-3.html#paramkeys.__type.getpagesrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.ShopperExperience.paramKeys.__type"},{"id":3511,"kind":2048,"name":"getPage","url":"classes/shopperexperience.shopperexperience-3.html#getpage-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperExperience.ShopperExperience"},{"id":3512,"kind":2048,"name":"getPages","url":"classes/shopperexperience.shopperexperience-3.html#getpages-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperExperience.ShopperExperience"},{"id":3513,"kind":4194304,"name":"getPageQueryParameters","url":"modules/shopperexperience.html#getpagequeryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3514,"kind":65536,"name":"__type","url":"modules/shopperexperience.html#getpagequeryparameters-2.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperExperience.getPageQueryParameters"},{"id":3515,"kind":32,"name":"aspectAttributes","url":"modules/shopperexperience.html#getpagequeryparameters-2.__type-1.aspectattributes","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getPageQueryParameters.__type"},{"id":3516,"kind":32,"name":"parameters","url":"modules/shopperexperience.html#getpagequeryparameters-2.__type-1.parameters","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getPageQueryParameters.__type"},{"id":3517,"kind":32,"name":"siteId","url":"modules/shopperexperience.html#getpagequeryparameters-2.__type-1.siteid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getPageQueryParameters.__type"},{"id":3518,"kind":32,"name":"locale","url":"modules/shopperexperience.html#getpagequeryparameters-2.__type-1.locale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getPageQueryParameters.__type"},{"id":3519,"kind":4194304,"name":"getPagePathParameters","url":"modules/shopperexperience.html#getpagepathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3520,"kind":65536,"name":"__type","url":"modules/shopperexperience.html#getpagepathparameters-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperExperience.getPagePathParameters"},{"id":3521,"kind":32,"name":"pageId","url":"modules/shopperexperience.html#getpagepathparameters-2.__type.pageid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getPagePathParameters.__type"},{"id":3522,"kind":32,"name":"organizationId","url":"modules/shopperexperience.html#getpagepathparameters-2.__type.organizationid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getPagePathParameters.__type"},{"id":3523,"kind":4194304,"name":"getPagesQueryParameters","url":"modules/shopperexperience.html#getpagesqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3524,"kind":65536,"name":"__type","url":"modules/shopperexperience.html#getpagesqueryparameters-2.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperExperience.getPagesQueryParameters"},{"id":3525,"kind":32,"name":"categoryId","url":"modules/shopperexperience.html#getpagesqueryparameters-2.__type-3.categoryid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getPagesQueryParameters.__type"},{"id":3526,"kind":32,"name":"productId","url":"modules/shopperexperience.html#getpagesqueryparameters-2.__type-3.productid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getPagesQueryParameters.__type"},{"id":3527,"kind":32,"name":"aspectTypeId","url":"modules/shopperexperience.html#getpagesqueryparameters-2.__type-3.aspecttypeid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getPagesQueryParameters.__type"},{"id":3528,"kind":32,"name":"aspectAttributes","url":"modules/shopperexperience.html#getpagesqueryparameters-2.__type-3.aspectattributes-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getPagesQueryParameters.__type"},{"id":3529,"kind":32,"name":"parameters","url":"modules/shopperexperience.html#getpagesqueryparameters-2.__type-3.parameters-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getPagesQueryParameters.__type"},{"id":3530,"kind":32,"name":"siteId","url":"modules/shopperexperience.html#getpagesqueryparameters-2.__type-3.siteid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getPagesQueryParameters.__type"},{"id":3531,"kind":32,"name":"locale","url":"modules/shopperexperience.html#getpagesqueryparameters-2.__type-3.locale-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getPagesQueryParameters.__type"},{"id":3532,"kind":4194304,"name":"getPagesPathParameters","url":"modules/shopperexperience.html#getpagespathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3533,"kind":65536,"name":"__type","url":"modules/shopperexperience.html#getpagespathparameters-2.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperExperience.getPagesPathParameters"},{"id":3534,"kind":32,"name":"organizationId","url":"modules/shopperexperience.html#getpagespathparameters-2.__type-2.organizationid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getPagesPathParameters.__type"},{"id":3535,"kind":4194304,"name":"ShopperExperiencePathParameters","url":"modules/shopperexperience.html#shopperexperiencepathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3536,"kind":4194304,"name":"ShopperExperienceQueryParameters","url":"modules/shopperexperience.html#shopperexperiencequeryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3537,"kind":4194304,"name":"ShopperExperienceParameters","url":"modules/shopperexperience.html#shopperexperienceparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3538,"kind":16777216,"name":"getPageQueryParameters","url":"modules/shopperexperience.html#getpagequeryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3539,"kind":16777216,"name":"getPagePathParameters","url":"modules/shopperexperience.html#getpagepathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3540,"kind":16777216,"name":"getPagesQueryParameters","url":"modules/shopperexperience.html#getpagesqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3541,"kind":16777216,"name":"getPagesPathParameters","url":"modules/shopperexperience.html#getpagespathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3542,"kind":16777216,"name":"ShopperExperiencePathParameters","url":"modules/shopperexperience.html#shopperexperiencepathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3543,"kind":16777216,"name":"ShopperExperienceQueryParameters","url":"modules/shopperexperience.html#shopperexperiencequeryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3544,"kind":16777216,"name":"ShopperExperienceParameters","url":"modules/shopperexperience.html#shopperexperienceparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3545,"kind":16777216,"name":"ShopperExperience","url":"modules/shopperexperience.html#shopperexperience-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3546,"kind":16777216,"name":"defaultBaseUri","url":"modules/shopperexperience.html#defaultbaseuri","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3547,"kind":16777216,"name":"getPageQueryParameters","url":"modules/shopperexperience.html#getpagequeryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3548,"kind":16777216,"name":"getPagePathParameters","url":"modules/shopperexperience.html#getpagepathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3549,"kind":16777216,"name":"getPagesQueryParameters","url":"modules/shopperexperience.html#getpagesqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3550,"kind":16777216,"name":"getPagesPathParameters","url":"modules/shopperexperience.html#getpagespathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3551,"kind":16777216,"name":"ShopperExperiencePathParameters","url":"modules/shopperexperience.html#shopperexperiencepathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3552,"kind":16777216,"name":"ShopperExperienceQueryParameters","url":"modules/shopperexperience.html#shopperexperiencequeryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3553,"kind":16777216,"name":"ShopperExperienceParameters","url":"modules/shopperexperience.html#shopperexperienceparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3554,"kind":16777216,"name":"ShopperExperience","url":"modules/shopperexperience.html#shopperexperience-2","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3555,"kind":16777216,"name":"Component","url":"modules/shopperexperience.html#component-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3556,"kind":16777216,"name":"DefaultFallback","url":"modules/shopperexperience.html#defaultfallback-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3557,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperexperience.html#errorresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3558,"kind":16777216,"name":"LocaleCode","url":"modules/shopperexperience.html#localecode-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3559,"kind":16777216,"name":"Page","url":"modules/shopperexperience.html#page-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3560,"kind":16777216,"name":"PageResult","url":"modules/shopperexperience.html#pageresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3561,"kind":16777216,"name":"Region","url":"modules/shopperexperience.html#region-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3562,"kind":2,"name":"ShopperExperienceTypes","url":"modules/shopperexperience.shopperexperiencetypes.html","classes":"tsd-kind-namespace tsd-parent-kind-module","parent":"shopperExperience"},{"id":3563,"kind":4194304,"name":"ShopperExperiencePathParameters","url":"modules/shopperexperience.shopperexperiencetypes.html#shopperexperiencepathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":3564,"kind":4194304,"name":"ShopperExperienceQueryParameters","url":"modules/shopperexperience.shopperexperiencetypes.html#shopperexperiencequeryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":3565,"kind":4194304,"name":"getPageQueryParameters","url":"modules/shopperexperience.shopperexperiencetypes.html#getpagequeryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":3566,"kind":4194304,"name":"getPagePathParameters","url":"modules/shopperexperience.shopperexperiencetypes.html#getpagepathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":3567,"kind":4194304,"name":"getPagesQueryParameters","url":"modules/shopperexperience.shopperexperiencetypes.html#getpagesqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":3568,"kind":4194304,"name":"getPagesPathParameters","url":"modules/shopperexperience.shopperexperiencetypes.html#getpagespathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":3569,"kind":4194304,"name":"Component","url":"modules/shopperexperience.shopperexperiencetypes.html#component","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":3570,"kind":4194304,"name":"DefaultFallback","url":"modules/shopperexperience.shopperexperiencetypes.html#defaultfallback","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":3571,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperexperience.shopperexperiencetypes.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":3572,"kind":4194304,"name":"LocaleCode","url":"modules/shopperexperience.shopperexperiencetypes.html#localecode","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":3573,"kind":4194304,"name":"Page","url":"modules/shopperexperience.shopperexperiencetypes.html#page","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":3574,"kind":4194304,"name":"PageResult","url":"modules/shopperexperience.shopperexperiencetypes.html#pageresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":3575,"kind":4194304,"name":"Region","url":"modules/shopperexperience.shopperexperiencetypes.html#region","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":3576,"kind":1,"name":"shopperGiftCertificates","url":"modules/shoppergiftcertificates.html","classes":"tsd-kind-module"},{"id":3577,"kind":32,"name":"defaultBaseUri","url":"modules/shoppergiftcertificates.html#defaultbaseuri-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":3578,"kind":4194304,"name":"ErrorResponse","url":"modules/shoppergiftcertificates.html#errorresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":3579,"kind":4194304,"name":"GiftCertificate","url":"modules/shoppergiftcertificates.html#giftcertificate-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":3580,"kind":4194304,"name":"GiftCertificateStatusEnum","url":"modules/shoppergiftcertificates.html#giftcertificatestatusenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":3581,"kind":4194304,"name":"GiftCertificateRequest","url":"modules/shoppergiftcertificates.html#giftcertificaterequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":3582,"kind":16777216,"name":"ErrorResponse","url":"modules/shoppergiftcertificates.html#errorresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":3583,"kind":16777216,"name":"GiftCertificate","url":"modules/shoppergiftcertificates.html#giftcertificate","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":3584,"kind":16777216,"name":"GiftCertificateStatusEnum","url":"modules/shoppergiftcertificates.html#giftcertificatestatusenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":3585,"kind":16777216,"name":"GiftCertificateRequest","url":"modules/shoppergiftcertificates.html#giftcertificaterequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":3586,"kind":128,"name":"ShopperGiftCertificates","url":"classes/shoppergiftcertificates.shoppergiftcertificates-3.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"shopperGiftCertificates"},{"id":3587,"kind":1024,"name":"clientConfig","url":"classes/shoppergiftcertificates.shoppergiftcertificates-3.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class","parent":"shopperGiftCertificates.ShopperGiftCertificates"},{"id":3588,"kind":1024,"name":"defaultBaseUri","url":"classes/shoppergiftcertificates.shoppergiftcertificates-3.html#defaultbaseuri","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperGiftCertificates.ShopperGiftCertificates"},{"id":3589,"kind":2097152,"name":"apiPaths","url":"classes/shoppergiftcertificates.shoppergiftcertificates-3.html#apipaths","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-static","parent":"shopperGiftCertificates.ShopperGiftCertificates"},{"id":3590,"kind":32,"name":"getGiftCertificate","url":"classes/shoppergiftcertificates.shoppergiftcertificates-3.html#apipaths.getgiftcertificate-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperGiftCertificates.ShopperGiftCertificates.apiPaths"},{"id":3591,"kind":512,"name":"constructor","url":"classes/shoppergiftcertificates.shoppergiftcertificates-3.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"shopperGiftCertificates.ShopperGiftCertificates"},{"id":3592,"kind":1024,"name":"paramKeys","url":"classes/shoppergiftcertificates.shoppergiftcertificates-3.html#paramkeys","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperGiftCertificates.ShopperGiftCertificates"},{"id":3593,"kind":65536,"name":"__type","url":"classes/shoppergiftcertificates.shoppergiftcertificates-3.html#paramkeys.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"shopperGiftCertificates.ShopperGiftCertificates.paramKeys"},{"id":3594,"kind":32,"name":"getGiftCertificate","url":"classes/shoppergiftcertificates.shoppergiftcertificates-3.html#paramkeys.__type.getgiftcertificate","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperGiftCertificates.ShopperGiftCertificates.paramKeys.__type"},{"id":3595,"kind":32,"name":"getGiftCertificateRequired","url":"classes/shoppergiftcertificates.shoppergiftcertificates-3.html#paramkeys.__type.getgiftcertificaterequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperGiftCertificates.ShopperGiftCertificates.paramKeys.__type"},{"id":3596,"kind":2048,"name":"getGiftCertificate","url":"classes/shoppergiftcertificates.shoppergiftcertificates-3.html#getgiftcertificate-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperGiftCertificates.ShopperGiftCertificates"},{"id":3597,"kind":4194304,"name":"getGiftCertificateQueryParameters","url":"modules/shoppergiftcertificates.html#getgiftcertificatequeryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":3598,"kind":65536,"name":"__type","url":"modules/shoppergiftcertificates.html#getgiftcertificatequeryparameters-2.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperGiftCertificates.getGiftCertificateQueryParameters"},{"id":3599,"kind":32,"name":"siteId","url":"modules/shoppergiftcertificates.html#getgiftcertificatequeryparameters-2.__type-1.siteid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperGiftCertificates.getGiftCertificateQueryParameters.__type"},{"id":3600,"kind":4194304,"name":"getGiftCertificatePathParameters","url":"modules/shoppergiftcertificates.html#getgiftcertificatepathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":3601,"kind":65536,"name":"__type","url":"modules/shoppergiftcertificates.html#getgiftcertificatepathparameters-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperGiftCertificates.getGiftCertificatePathParameters"},{"id":3602,"kind":32,"name":"organizationId","url":"modules/shoppergiftcertificates.html#getgiftcertificatepathparameters-2.__type.organizationid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperGiftCertificates.getGiftCertificatePathParameters.__type"},{"id":3603,"kind":4194304,"name":"ShopperGiftCertificatesPathParameters","url":"modules/shoppergiftcertificates.html#shoppergiftcertificatespathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":3604,"kind":4194304,"name":"ShopperGiftCertificatesQueryParameters","url":"modules/shoppergiftcertificates.html#shoppergiftcertificatesqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":3605,"kind":4194304,"name":"ShopperGiftCertificatesParameters","url":"modules/shoppergiftcertificates.html#shoppergiftcertificatesparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":3606,"kind":16777216,"name":"getGiftCertificateQueryParameters","url":"modules/shoppergiftcertificates.html#getgiftcertificatequeryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":3607,"kind":16777216,"name":"getGiftCertificatePathParameters","url":"modules/shoppergiftcertificates.html#getgiftcertificatepathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":3608,"kind":16777216,"name":"ShopperGiftCertificatesPathParameters","url":"modules/shoppergiftcertificates.html#shoppergiftcertificatespathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":3609,"kind":16777216,"name":"ShopperGiftCertificatesQueryParameters","url":"modules/shoppergiftcertificates.html#shoppergiftcertificatesqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":3610,"kind":16777216,"name":"ShopperGiftCertificatesParameters","url":"modules/shoppergiftcertificates.html#shoppergiftcertificatesparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":3611,"kind":16777216,"name":"ShopperGiftCertificates","url":"modules/shoppergiftcertificates.html#shoppergiftcertificates-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":3612,"kind":16777216,"name":"defaultBaseUri","url":"modules/shoppergiftcertificates.html#defaultbaseuri","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":3613,"kind":16777216,"name":"getGiftCertificateQueryParameters","url":"modules/shoppergiftcertificates.html#getgiftcertificatequeryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":3614,"kind":16777216,"name":"getGiftCertificatePathParameters","url":"modules/shoppergiftcertificates.html#getgiftcertificatepathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":3615,"kind":16777216,"name":"ShopperGiftCertificatesPathParameters","url":"modules/shoppergiftcertificates.html#shoppergiftcertificatespathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":3616,"kind":16777216,"name":"ShopperGiftCertificatesQueryParameters","url":"modules/shoppergiftcertificates.html#shoppergiftcertificatesqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":3617,"kind":16777216,"name":"ShopperGiftCertificatesParameters","url":"modules/shoppergiftcertificates.html#shoppergiftcertificatesparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":3618,"kind":16777216,"name":"ShopperGiftCertificates","url":"modules/shoppergiftcertificates.html#shoppergiftcertificates-2","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":3619,"kind":16777216,"name":"ErrorResponse","url":"modules/shoppergiftcertificates.html#errorresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":3620,"kind":16777216,"name":"GiftCertificate","url":"modules/shoppergiftcertificates.html#giftcertificate-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":3621,"kind":16777216,"name":"GiftCertificateStatusEnum","url":"modules/shoppergiftcertificates.html#giftcertificatestatusenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":3622,"kind":16777216,"name":"GiftCertificateRequest","url":"modules/shoppergiftcertificates.html#giftcertificaterequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":3623,"kind":2,"name":"ShopperGiftCertificatesTypes","url":"modules/shoppergiftcertificates.shoppergiftcertificatestypes.html","classes":"tsd-kind-namespace tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":3624,"kind":4194304,"name":"ShopperGiftCertificatesPathParameters","url":"modules/shoppergiftcertificates.shoppergiftcertificatestypes.html#shoppergiftcertificatespathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperGiftCertificates.ShopperGiftCertificatesTypes"},{"id":3625,"kind":4194304,"name":"ShopperGiftCertificatesQueryParameters","url":"modules/shoppergiftcertificates.shoppergiftcertificatestypes.html#shoppergiftcertificatesqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperGiftCertificates.ShopperGiftCertificatesTypes"},{"id":3626,"kind":4194304,"name":"getGiftCertificateQueryParameters","url":"modules/shoppergiftcertificates.shoppergiftcertificatestypes.html#getgiftcertificatequeryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperGiftCertificates.ShopperGiftCertificatesTypes"},{"id":3627,"kind":4194304,"name":"getGiftCertificatePathParameters","url":"modules/shoppergiftcertificates.shoppergiftcertificatestypes.html#getgiftcertificatepathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperGiftCertificates.ShopperGiftCertificatesTypes"},{"id":3628,"kind":4194304,"name":"ErrorResponse","url":"modules/shoppergiftcertificates.shoppergiftcertificatestypes.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperGiftCertificates.ShopperGiftCertificatesTypes"},{"id":3629,"kind":4194304,"name":"GiftCertificate","url":"modules/shoppergiftcertificates.shoppergiftcertificatestypes.html#giftcertificate","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperGiftCertificates.ShopperGiftCertificatesTypes"},{"id":3630,"kind":4194304,"name":"GiftCertificateStatusEnum","url":"modules/shoppergiftcertificates.shoppergiftcertificatestypes.html#giftcertificatestatusenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperGiftCertificates.ShopperGiftCertificatesTypes"},{"id":3631,"kind":4194304,"name":"GiftCertificateRequest","url":"modules/shoppergiftcertificates.shoppergiftcertificatestypes.html#giftcertificaterequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperGiftCertificates.ShopperGiftCertificatesTypes"},{"id":3632,"kind":16777216,"name":"defaultBaseUri","url":"modules/shopperlogin.html#defaultbaseuri","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3633,"kind":16777216,"name":"AuthorizeCustomerResponseTypeEnum","url":"modules/shopperlogin.html#authorizecustomerresponsetypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3634,"kind":16777216,"name":"AuthorizeCustomerScopeEnum","url":"modules/shopperlogin.html#authorizecustomerscopeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3635,"kind":16777216,"name":"AuthorizePasswordlessCustomerModeEnum","url":"modules/shopperlogin.html#authorizepasswordlesscustomermodeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3636,"kind":16777216,"name":"GetPasswordLessAccessTokenGrantTypeEnum","url":"modules/shopperlogin.html#getpasswordlessaccesstokengranttypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3637,"kind":16777216,"name":"GetPasswordResetTokenModeEnum","url":"modules/shopperlogin.html#getpasswordresettokenmodeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3638,"kind":16777216,"name":"GetSessionBridgeAccessTokenGrantTypeEnum","url":"modules/shopperlogin.html#getsessionbridgeaccesstokengranttypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3639,"kind":16777216,"name":"GetTrustedAgentAccessTokenGrantTypeEnum","url":"modules/shopperlogin.html#gettrustedagentaccesstokengranttypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3640,"kind":16777216,"name":"GetTrustedAgentAuthorizationTokenResponseTypeEnum","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenresponsetypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3641,"kind":16777216,"name":"GetTrustedSystemAccessTokenGrantTypeEnum","url":"modules/shopperlogin.html#gettrustedsystemaccesstokengranttypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3642,"kind":16777216,"name":"GetTrustedSystemAccessTokenHintEnum","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenhintenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3643,"kind":16777216,"name":"GetTrustedSystemAccessTokenIdpOriginEnum","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenidporiginenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3644,"kind":16777216,"name":"IntrospectTokenTokenTypeHintEnum","url":"modules/shopperlogin.html#introspecttokentokentypehintenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3645,"kind":16777216,"name":"LogoutCustomerHintEnum","url":"modules/shopperlogin.html#logoutcustomerhintenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3646,"kind":16777216,"name":"RevokeTokenTokenTypeHintEnum","url":"modules/shopperlogin.html#revoketokentokentypehintenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3647,"kind":16777216,"name":"authenticateCustomerQueryParameters","url":"modules/shopperlogin.html#authenticatecustomerqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3648,"kind":16777216,"name":"authenticateCustomerPathParameters","url":"modules/shopperlogin.html#authenticatecustomerpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3649,"kind":16777216,"name":"authenticateCustomerBodyType","url":"modules/shopperlogin.html#authenticatecustomerbodytype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3650,"kind":16777216,"name":"authorizeCustomerQueryParameters","url":"modules/shopperlogin.html#authorizecustomerqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3651,"kind":16777216,"name":"authorizeCustomerPathParameters","url":"modules/shopperlogin.html#authorizecustomerpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3652,"kind":16777216,"name":"authorizePasswordlessCustomerQueryParameters","url":"modules/shopperlogin.html#authorizepasswordlesscustomerqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3653,"kind":16777216,"name":"authorizePasswordlessCustomerPathParameters","url":"modules/shopperlogin.html#authorizepasswordlesscustomerpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3654,"kind":16777216,"name":"authorizePasswordlessCustomerBodyType","url":"modules/shopperlogin.html#authorizepasswordlesscustomerbodytype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3655,"kind":16777216,"name":"getAccessTokenQueryParameters","url":"modules/shopperlogin.html#getaccesstokenqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3656,"kind":16777216,"name":"getAccessTokenPathParameters","url":"modules/shopperlogin.html#getaccesstokenpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3657,"kind":16777216,"name":"getAccessTokenBodyType","url":"modules/shopperlogin.html#getaccesstokenbodytype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3658,"kind":16777216,"name":"getJwksUriQueryParameters","url":"modules/shopperlogin.html#getjwksuriqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3659,"kind":16777216,"name":"getJwksUriPathParameters","url":"modules/shopperlogin.html#getjwksuripathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3660,"kind":16777216,"name":"getPasswordLessAccessTokenQueryParameters","url":"modules/shopperlogin.html#getpasswordlessaccesstokenqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3661,"kind":16777216,"name":"getPasswordLessAccessTokenPathParameters","url":"modules/shopperlogin.html#getpasswordlessaccesstokenpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3662,"kind":16777216,"name":"getPasswordLessAccessTokenBodyType","url":"modules/shopperlogin.html#getpasswordlessaccesstokenbodytype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3663,"kind":16777216,"name":"getPasswordResetTokenQueryParameters","url":"modules/shopperlogin.html#getpasswordresettokenqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3664,"kind":16777216,"name":"getPasswordResetTokenPathParameters","url":"modules/shopperlogin.html#getpasswordresettokenpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3665,"kind":16777216,"name":"getPasswordResetTokenBodyType","url":"modules/shopperlogin.html#getpasswordresettokenbodytype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3666,"kind":16777216,"name":"getSessionBridgeAccessTokenQueryParameters","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3667,"kind":16777216,"name":"getSessionBridgeAccessTokenPathParameters","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3668,"kind":16777216,"name":"getSessionBridgeAccessTokenBodyType","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenbodytype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3669,"kind":16777216,"name":"getTrustedAgentAccessTokenQueryParameters","url":"modules/shopperlogin.html#gettrustedagentaccesstokenqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3670,"kind":16777216,"name":"getTrustedAgentAccessTokenPathParameters","url":"modules/shopperlogin.html#gettrustedagentaccesstokenpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3671,"kind":16777216,"name":"getTrustedAgentAccessTokenBodyType","url":"modules/shopperlogin.html#gettrustedagentaccesstokenbodytype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3672,"kind":16777216,"name":"getTrustedAgentAuthorizationTokenQueryParameters","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3673,"kind":16777216,"name":"getTrustedAgentAuthorizationTokenPathParameters","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3674,"kind":16777216,"name":"getTrustedSystemAccessTokenQueryParameters","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3675,"kind":16777216,"name":"getTrustedSystemAccessTokenPathParameters","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3676,"kind":16777216,"name":"getTrustedSystemAccessTokenBodyType","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenbodytype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3677,"kind":16777216,"name":"getUserInfoQueryParameters","url":"modules/shopperlogin.html#getuserinfoqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3678,"kind":16777216,"name":"getUserInfoPathParameters","url":"modules/shopperlogin.html#getuserinfopathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3679,"kind":16777216,"name":"getWellknownOpenidConfigurationQueryParameters","url":"modules/shopperlogin.html#getwellknownopenidconfigurationqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3680,"kind":16777216,"name":"getWellknownOpenidConfigurationPathParameters","url":"modules/shopperlogin.html#getwellknownopenidconfigurationpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3681,"kind":16777216,"name":"introspectTokenQueryParameters","url":"modules/shopperlogin.html#introspecttokenqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3682,"kind":16777216,"name":"introspectTokenPathParameters","url":"modules/shopperlogin.html#introspecttokenpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3683,"kind":16777216,"name":"introspectTokenBodyType","url":"modules/shopperlogin.html#introspecttokenbodytype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3684,"kind":16777216,"name":"logoutCustomerQueryParameters","url":"modules/shopperlogin.html#logoutcustomerqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3685,"kind":16777216,"name":"logoutCustomerPathParameters","url":"modules/shopperlogin.html#logoutcustomerpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3686,"kind":16777216,"name":"resetPasswordQueryParameters","url":"modules/shopperlogin.html#resetpasswordqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3687,"kind":16777216,"name":"resetPasswordPathParameters","url":"modules/shopperlogin.html#resetpasswordpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3688,"kind":16777216,"name":"resetPasswordBodyType","url":"modules/shopperlogin.html#resetpasswordbodytype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3689,"kind":16777216,"name":"revokeTokenQueryParameters","url":"modules/shopperlogin.html#revoketokenqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3690,"kind":16777216,"name":"revokeTokenPathParameters","url":"modules/shopperlogin.html#revoketokenpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3691,"kind":16777216,"name":"revokeTokenBodyType","url":"modules/shopperlogin.html#revoketokenbodytype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3692,"kind":16777216,"name":"ShopperLoginPathParameters","url":"modules/shopperlogin.html#shopperloginpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3693,"kind":16777216,"name":"ShopperLoginQueryParameters","url":"modules/shopperlogin.html#shopperloginqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3694,"kind":16777216,"name":"ShopperLoginParameters","url":"modules/shopperlogin.html#shopperloginparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3695,"kind":16777216,"name":"ShopperLogin","url":"modules/shopperlogin.html#shopperlogin-2","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3696,"kind":16777216,"name":"GrantType","url":"modules/shopperlogin.html#granttype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3697,"kind":16777216,"name":"Oauth2ErrorResponse","url":"modules/shopperlogin.html#oauth2errorresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3698,"kind":16777216,"name":"ResponseType","url":"modules/shopperlogin.html#responsetype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3699,"kind":16777216,"name":"TokenActionRequest","url":"modules/shopperlogin.html#tokenactionrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3700,"kind":16777216,"name":"TokenActionRequestTokenTypeHintEnum","url":"modules/shopperlogin.html#tokenactionrequesttokentypehintenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3701,"kind":16777216,"name":"TokenResponse","url":"modules/shopperlogin.html#tokenresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3702,"kind":16777216,"name":"TokenType","url":"modules/shopperlogin.html#tokentype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":3703,"kind":2,"name":"ShopperLoginTypes","url":"modules/shopperlogin.shopperlogintypes.html","classes":"tsd-kind-namespace tsd-parent-kind-module","parent":"shopperLogin"},{"id":3704,"kind":4194304,"name":"ShopperLoginPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#shopperloginpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3705,"kind":4194304,"name":"ShopperLoginQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#shopperloginqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3706,"kind":4194304,"name":"authenticateCustomerBodyType","url":"modules/shopperlogin.shopperlogintypes.html#authenticatecustomerbodytype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3707,"kind":4194304,"name":"authenticateCustomerQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#authenticatecustomerqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3708,"kind":4194304,"name":"authenticateCustomerPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#authenticatecustomerpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3709,"kind":4194304,"name":"AuthorizeCustomerResponseTypeEnum","url":"modules/shopperlogin.shopperlogintypes.html#authorizecustomerresponsetypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3710,"kind":4194304,"name":"AuthorizeCustomerScopeEnum","url":"modules/shopperlogin.shopperlogintypes.html#authorizecustomerscopeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3711,"kind":4194304,"name":"authorizeCustomerQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#authorizecustomerqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3712,"kind":4194304,"name":"authorizeCustomerPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#authorizecustomerpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3713,"kind":4194304,"name":"AuthorizePasswordlessCustomerModeEnum","url":"modules/shopperlogin.shopperlogintypes.html#authorizepasswordlesscustomermodeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3714,"kind":4194304,"name":"authorizePasswordlessCustomerBodyType","url":"modules/shopperlogin.shopperlogintypes.html#authorizepasswordlesscustomerbodytype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3715,"kind":4194304,"name":"authorizePasswordlessCustomerQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#authorizepasswordlesscustomerqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3716,"kind":4194304,"name":"authorizePasswordlessCustomerPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#authorizepasswordlesscustomerpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3717,"kind":4194304,"name":"getAccessTokenBodyType","url":"modules/shopperlogin.shopperlogintypes.html#getaccesstokenbodytype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3718,"kind":4194304,"name":"getAccessTokenQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#getaccesstokenqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3719,"kind":4194304,"name":"getAccessTokenPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#getaccesstokenpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3720,"kind":4194304,"name":"getJwksUriQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#getjwksuriqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3721,"kind":4194304,"name":"getJwksUriPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#getjwksuripathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3722,"kind":4194304,"name":"GetPasswordLessAccessTokenGrantTypeEnum","url":"modules/shopperlogin.shopperlogintypes.html#getpasswordlessaccesstokengranttypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3723,"kind":4194304,"name":"getPasswordLessAccessTokenBodyType","url":"modules/shopperlogin.shopperlogintypes.html#getpasswordlessaccesstokenbodytype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3724,"kind":4194304,"name":"getPasswordLessAccessTokenQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#getpasswordlessaccesstokenqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3725,"kind":4194304,"name":"getPasswordLessAccessTokenPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#getpasswordlessaccesstokenpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3726,"kind":4194304,"name":"GetPasswordResetTokenModeEnum","url":"modules/shopperlogin.shopperlogintypes.html#getpasswordresettokenmodeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3727,"kind":4194304,"name":"getPasswordResetTokenBodyType","url":"modules/shopperlogin.shopperlogintypes.html#getpasswordresettokenbodytype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3728,"kind":4194304,"name":"getPasswordResetTokenQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#getpasswordresettokenqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3729,"kind":4194304,"name":"getPasswordResetTokenPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#getpasswordresettokenpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3730,"kind":4194304,"name":"GetSessionBridgeAccessTokenGrantTypeEnum","url":"modules/shopperlogin.shopperlogintypes.html#getsessionbridgeaccesstokengranttypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3731,"kind":4194304,"name":"getSessionBridgeAccessTokenBodyType","url":"modules/shopperlogin.shopperlogintypes.html#getsessionbridgeaccesstokenbodytype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3732,"kind":4194304,"name":"getSessionBridgeAccessTokenQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#getsessionbridgeaccesstokenqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3733,"kind":4194304,"name":"getSessionBridgeAccessTokenPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#getsessionbridgeaccesstokenpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3734,"kind":4194304,"name":"GetTrustedAgentAccessTokenGrantTypeEnum","url":"modules/shopperlogin.shopperlogintypes.html#gettrustedagentaccesstokengranttypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3735,"kind":4194304,"name":"getTrustedAgentAccessTokenBodyType","url":"modules/shopperlogin.shopperlogintypes.html#gettrustedagentaccesstokenbodytype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3736,"kind":4194304,"name":"getTrustedAgentAccessTokenQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#gettrustedagentaccesstokenqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3737,"kind":4194304,"name":"getTrustedAgentAccessTokenPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#gettrustedagentaccesstokenpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3738,"kind":4194304,"name":"GetTrustedAgentAuthorizationTokenResponseTypeEnum","url":"modules/shopperlogin.shopperlogintypes.html#gettrustedagentauthorizationtokenresponsetypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3739,"kind":4194304,"name":"getTrustedAgentAuthorizationTokenQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#gettrustedagentauthorizationtokenqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3740,"kind":4194304,"name":"getTrustedAgentAuthorizationTokenPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#gettrustedagentauthorizationtokenpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3741,"kind":4194304,"name":"GetTrustedSystemAccessTokenGrantTypeEnum","url":"modules/shopperlogin.shopperlogintypes.html#gettrustedsystemaccesstokengranttypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3742,"kind":4194304,"name":"GetTrustedSystemAccessTokenHintEnum","url":"modules/shopperlogin.shopperlogintypes.html#gettrustedsystemaccesstokenhintenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3743,"kind":4194304,"name":"GetTrustedSystemAccessTokenIdpOriginEnum","url":"modules/shopperlogin.shopperlogintypes.html#gettrustedsystemaccesstokenidporiginenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3744,"kind":4194304,"name":"getTrustedSystemAccessTokenBodyType","url":"modules/shopperlogin.shopperlogintypes.html#gettrustedsystemaccesstokenbodytype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3745,"kind":4194304,"name":"getTrustedSystemAccessTokenQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#gettrustedsystemaccesstokenqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3746,"kind":4194304,"name":"getTrustedSystemAccessTokenPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#gettrustedsystemaccesstokenpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3747,"kind":4194304,"name":"getUserInfoQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#getuserinfoqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3748,"kind":4194304,"name":"getUserInfoPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#getuserinfopathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3749,"kind":4194304,"name":"getWellknownOpenidConfigurationQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#getwellknownopenidconfigurationqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3750,"kind":4194304,"name":"getWellknownOpenidConfigurationPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#getwellknownopenidconfigurationpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3751,"kind":4194304,"name":"IntrospectTokenTokenTypeHintEnum","url":"modules/shopperlogin.shopperlogintypes.html#introspecttokentokentypehintenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3752,"kind":4194304,"name":"introspectTokenBodyType","url":"modules/shopperlogin.shopperlogintypes.html#introspecttokenbodytype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3753,"kind":4194304,"name":"introspectTokenQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#introspecttokenqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3754,"kind":4194304,"name":"introspectTokenPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#introspecttokenpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3755,"kind":4194304,"name":"LogoutCustomerHintEnum","url":"modules/shopperlogin.shopperlogintypes.html#logoutcustomerhintenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3756,"kind":4194304,"name":"logoutCustomerQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#logoutcustomerqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3757,"kind":4194304,"name":"logoutCustomerPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#logoutcustomerpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3758,"kind":4194304,"name":"resetPasswordBodyType","url":"modules/shopperlogin.shopperlogintypes.html#resetpasswordbodytype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3759,"kind":4194304,"name":"resetPasswordQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#resetpasswordqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3760,"kind":4194304,"name":"resetPasswordPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#resetpasswordpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3761,"kind":4194304,"name":"RevokeTokenTokenTypeHintEnum","url":"modules/shopperlogin.shopperlogintypes.html#revoketokentokentypehintenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3762,"kind":4194304,"name":"revokeTokenBodyType","url":"modules/shopperlogin.shopperlogintypes.html#revoketokenbodytype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3763,"kind":4194304,"name":"revokeTokenQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#revoketokenqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3764,"kind":4194304,"name":"revokeTokenPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#revoketokenpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3765,"kind":4194304,"name":"GrantType","url":"modules/shopperlogin.shopperlogintypes.html#granttype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3766,"kind":4194304,"name":"Oauth2ErrorResponse","url":"modules/shopperlogin.shopperlogintypes.html#oauth2errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3767,"kind":4194304,"name":"ResponseType","url":"modules/shopperlogin.shopperlogintypes.html#responsetype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3768,"kind":4194304,"name":"TokenActionRequest","url":"modules/shopperlogin.shopperlogintypes.html#tokenactionrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3769,"kind":4194304,"name":"TokenActionRequestTokenTypeHintEnum","url":"modules/shopperlogin.shopperlogintypes.html#tokenactionrequesttokentypehintenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3770,"kind":4194304,"name":"TokenResponse","url":"modules/shopperlogin.shopperlogintypes.html#tokenresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3771,"kind":4194304,"name":"TokenType","url":"modules/shopperlogin.shopperlogintypes.html#tokentype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":3772,"kind":1,"name":"shopperOrders","url":"modules/shopperorders.html","classes":"tsd-kind-module"},{"id":3773,"kind":32,"name":"defaultBaseUri","url":"modules/shopperorders.html#defaultbaseuri-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"shopperOrders"},{"id":3774,"kind":4194304,"name":"NoValue","url":"modules/shopperorders.html#novalue-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3775,"kind":4194304,"name":"CurrencyCode","url":"modules/shopperorders.html#currencycode-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3776,"kind":4194304,"name":"GiftCertificateItem","url":"modules/shopperorders.html#giftcertificateitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3777,"kind":4194304,"name":"Status","url":"modules/shopperorders.html#status-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3778,"kind":4194304,"name":"PaymentCard","url":"modules/shopperorders.html#paymentcard-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3779,"kind":4194304,"name":"OrderPaymentInstrument","url":"modules/shopperorders.html#orderpaymentinstrument-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3780,"kind":4194304,"name":"ProductDetailsLink","url":"modules/shopperorders.html#productdetailslink-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3781,"kind":4194304,"name":"BonusDiscountLineItem","url":"modules/shopperorders.html#bonusdiscountlineitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3782,"kind":4194304,"name":"Discount","url":"modules/shopperorders.html#discount-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3783,"kind":4194304,"name":"DiscountTypeEnum","url":"modules/shopperorders.html#discounttypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3784,"kind":4194304,"name":"PriceAdjustment","url":"modules/shopperorders.html#priceadjustment-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3785,"kind":4194304,"name":"ShippingItem","url":"modules/shopperorders.html#shippingitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3786,"kind":4194304,"name":"OrderAddress","url":"modules/shopperorders.html#orderaddress-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3787,"kind":4194304,"name":"ShippingPromotion","url":"modules/shopperorders.html#shippingpromotion-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3788,"kind":4194304,"name":"ShippingMethod","url":"modules/shopperorders.html#shippingmethod-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3789,"kind":4194304,"name":"Shipment","url":"modules/shopperorders.html#shipment-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3790,"kind":4194304,"name":"ShipmentShippingStatusEnum","url":"modules/shopperorders.html#shipmentshippingstatusenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3791,"kind":4194304,"name":"CouponItem","url":"modules/shopperorders.html#couponitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3792,"kind":4194304,"name":"CouponItemStatusCodeEnum","url":"modules/shopperorders.html#couponitemstatuscodeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3793,"kind":4194304,"name":"CustomerInfo","url":"modules/shopperorders.html#customerinfo-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3794,"kind":4194304,"name":"GroupedTaxItem","url":"modules/shopperorders.html#groupedtaxitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3795,"kind":4194304,"name":"ProductListLink","url":"modules/shopperorders.html#productlistlink-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3796,"kind":4194304,"name":"ProductListLinkTypeEnum","url":"modules/shopperorders.html#productlistlinktypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3797,"kind":4194304,"name":"ProductListItemReference","url":"modules/shopperorders.html#productlistitemreference-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3798,"kind":4194304,"name":"ProductListItemReferenceTypeEnum","url":"modules/shopperorders.html#productlistitemreferencetypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3799,"kind":4194304,"name":"OptionItem","url":"modules/shopperorders.html#optionitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3800,"kind":4194304,"name":"ProductItem","url":"modules/shopperorders.html#productitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3801,"kind":4194304,"name":"Basket","url":"modules/shopperorders.html#basket-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3802,"kind":4194304,"name":"BasketChannelTypeEnum","url":"modules/shopperorders.html#basketchanneltypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3803,"kind":4194304,"name":"BasketTaxationEnum","url":"modules/shopperorders.html#baskettaxationenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3804,"kind":4194304,"name":"DefaultFallback","url":"modules/shopperorders.html#defaultfallback-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3805,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperorders.html#errorresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3806,"kind":4194304,"name":"LocaleCode","url":"modules/shopperorders.html#localecode-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3807,"kind":4194304,"name":"Order","url":"modules/shopperorders.html#order-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3808,"kind":4194304,"name":"OrderChannelTypeEnum","url":"modules/shopperorders.html#orderchanneltypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3809,"kind":4194304,"name":"OrderConfirmationStatusEnum","url":"modules/shopperorders.html#orderconfirmationstatusenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3810,"kind":4194304,"name":"OrderExportStatusEnum","url":"modules/shopperorders.html#orderexportstatusenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3811,"kind":4194304,"name":"OrderPaymentStatusEnum","url":"modules/shopperorders.html#orderpaymentstatusenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3812,"kind":4194304,"name":"OrderShippingStatusEnum","url":"modules/shopperorders.html#ordershippingstatusenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3813,"kind":4194304,"name":"OrderStatusEnum","url":"modules/shopperorders.html#orderstatusenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3814,"kind":4194304,"name":"OrderTaxationEnum","url":"modules/shopperorders.html#ordertaxationenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3815,"kind":4194304,"name":"OrderLookupRequest","url":"modules/shopperorders.html#orderlookuprequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3816,"kind":4194304,"name":"OrderPaymentCardRequest","url":"modules/shopperorders.html#orderpaymentcardrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3817,"kind":4194304,"name":"OrderPaymentInstrumentRequest","url":"modules/shopperorders.html#orderpaymentinstrumentrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3818,"kind":4194304,"name":"PaymentCardSpec","url":"modules/shopperorders.html#paymentcardspec-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3819,"kind":4194304,"name":"PaymentMethod","url":"modules/shopperorders.html#paymentmethod-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3820,"kind":4194304,"name":"PaymentMethodResult","url":"modules/shopperorders.html#paymentmethodresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3821,"kind":4194304,"name":"TaxItem","url":"modules/shopperorders.html#taxitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3822,"kind":4194304,"name":"TaxItems","url":"modules/shopperorders.html#taxitems-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3823,"kind":4194304,"name":"Taxes","url":"modules/shopperorders.html#taxes-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3824,"kind":16777216,"name":"Basket","url":"modules/shopperorders.html#basket","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3825,"kind":16777216,"name":"BasketChannelTypeEnum","url":"modules/shopperorders.html#basketchanneltypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3826,"kind":16777216,"name":"BasketTaxationEnum","url":"modules/shopperorders.html#baskettaxationenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3827,"kind":16777216,"name":"BonusDiscountLineItem","url":"modules/shopperorders.html#bonusdiscountlineitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3828,"kind":16777216,"name":"CouponItem","url":"modules/shopperorders.html#couponitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3829,"kind":16777216,"name":"CouponItemStatusCodeEnum","url":"modules/shopperorders.html#couponitemstatuscodeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3830,"kind":16777216,"name":"CurrencyCode","url":"modules/shopperorders.html#currencycode","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3831,"kind":16777216,"name":"CustomerInfo","url":"modules/shopperorders.html#customerinfo","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3832,"kind":16777216,"name":"DefaultFallback","url":"modules/shopperorders.html#defaultfallback","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3833,"kind":16777216,"name":"Discount","url":"modules/shopperorders.html#discount","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3834,"kind":16777216,"name":"DiscountTypeEnum","url":"modules/shopperorders.html#discounttypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3835,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperorders.html#errorresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3836,"kind":16777216,"name":"GiftCertificateItem","url":"modules/shopperorders.html#giftcertificateitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3837,"kind":16777216,"name":"GroupedTaxItem","url":"modules/shopperorders.html#groupedtaxitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3838,"kind":16777216,"name":"LocaleCode","url":"modules/shopperorders.html#localecode","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3839,"kind":16777216,"name":"NoValue","url":"modules/shopperorders.html#novalue","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3840,"kind":16777216,"name":"OptionItem","url":"modules/shopperorders.html#optionitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3841,"kind":16777216,"name":"Order","url":"modules/shopperorders.html#order","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3842,"kind":16777216,"name":"OrderChannelTypeEnum","url":"modules/shopperorders.html#orderchanneltypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3843,"kind":16777216,"name":"OrderConfirmationStatusEnum","url":"modules/shopperorders.html#orderconfirmationstatusenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3844,"kind":16777216,"name":"OrderExportStatusEnum","url":"modules/shopperorders.html#orderexportstatusenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3845,"kind":16777216,"name":"OrderPaymentStatusEnum","url":"modules/shopperorders.html#orderpaymentstatusenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3846,"kind":16777216,"name":"OrderShippingStatusEnum","url":"modules/shopperorders.html#ordershippingstatusenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3847,"kind":16777216,"name":"OrderStatusEnum","url":"modules/shopperorders.html#orderstatusenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3848,"kind":16777216,"name":"OrderTaxationEnum","url":"modules/shopperorders.html#ordertaxationenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3849,"kind":16777216,"name":"OrderAddress","url":"modules/shopperorders.html#orderaddress","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3850,"kind":16777216,"name":"OrderLookupRequest","url":"modules/shopperorders.html#orderlookuprequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3851,"kind":16777216,"name":"OrderPaymentCardRequest","url":"modules/shopperorders.html#orderpaymentcardrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3852,"kind":16777216,"name":"OrderPaymentInstrument","url":"modules/shopperorders.html#orderpaymentinstrument","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3853,"kind":16777216,"name":"OrderPaymentInstrumentRequest","url":"modules/shopperorders.html#orderpaymentinstrumentrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3854,"kind":16777216,"name":"PaymentCard","url":"modules/shopperorders.html#paymentcard","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3855,"kind":16777216,"name":"PaymentCardSpec","url":"modules/shopperorders.html#paymentcardspec","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3856,"kind":16777216,"name":"PaymentMethod","url":"modules/shopperorders.html#paymentmethod","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3857,"kind":16777216,"name":"PaymentMethodResult","url":"modules/shopperorders.html#paymentmethodresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3858,"kind":16777216,"name":"PriceAdjustment","url":"modules/shopperorders.html#priceadjustment","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3859,"kind":16777216,"name":"ProductDetailsLink","url":"modules/shopperorders.html#productdetailslink","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3860,"kind":16777216,"name":"ProductItem","url":"modules/shopperorders.html#productitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3861,"kind":16777216,"name":"ProductListItemReference","url":"modules/shopperorders.html#productlistitemreference","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3862,"kind":16777216,"name":"ProductListItemReferenceTypeEnum","url":"modules/shopperorders.html#productlistitemreferencetypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3863,"kind":16777216,"name":"ProductListLink","url":"modules/shopperorders.html#productlistlink","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3864,"kind":16777216,"name":"ProductListLinkTypeEnum","url":"modules/shopperorders.html#productlistlinktypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3865,"kind":16777216,"name":"Shipment","url":"modules/shopperorders.html#shipment","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3866,"kind":16777216,"name":"ShipmentShippingStatusEnum","url":"modules/shopperorders.html#shipmentshippingstatusenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3867,"kind":16777216,"name":"ShippingItem","url":"modules/shopperorders.html#shippingitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3868,"kind":16777216,"name":"ShippingMethod","url":"modules/shopperorders.html#shippingmethod","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3869,"kind":16777216,"name":"ShippingPromotion","url":"modules/shopperorders.html#shippingpromotion","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3870,"kind":16777216,"name":"Status","url":"modules/shopperorders.html#status","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3871,"kind":16777216,"name":"TaxItem","url":"modules/shopperorders.html#taxitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3872,"kind":16777216,"name":"TaxItems","url":"modules/shopperorders.html#taxitems","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3873,"kind":16777216,"name":"Taxes","url":"modules/shopperorders.html#taxes","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3874,"kind":128,"name":"ShopperOrders","url":"classes/shopperorders.shopperorders-3.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"shopperOrders"},{"id":3875,"kind":1024,"name":"clientConfig","url":"classes/shopperorders.shopperorders-3.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class","parent":"shopperOrders.ShopperOrders"},{"id":3876,"kind":1024,"name":"defaultBaseUri","url":"classes/shopperorders.shopperorders-3.html#defaultbaseuri","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperOrders.ShopperOrders"},{"id":3877,"kind":2097152,"name":"apiPaths","url":"classes/shopperorders.shopperorders-3.html#apipaths","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-static","parent":"shopperOrders.ShopperOrders"},{"id":3878,"kind":32,"name":"createOrder","url":"classes/shopperorders.shopperorders-3.html#apipaths.createorder-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperOrders.ShopperOrders.apiPaths"},{"id":3879,"kind":32,"name":"createPaymentInstrumentForOrder","url":"classes/shopperorders.shopperorders-3.html#apipaths.createpaymentinstrumentfororder-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperOrders.ShopperOrders.apiPaths"},{"id":3880,"kind":32,"name":"getOrder","url":"classes/shopperorders.shopperorders-3.html#apipaths.getorder-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperOrders.ShopperOrders.apiPaths"},{"id":3881,"kind":32,"name":"getPaymentMethodsForOrder","url":"classes/shopperorders.shopperorders-3.html#apipaths.getpaymentmethodsfororder-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperOrders.ShopperOrders.apiPaths"},{"id":3882,"kind":32,"name":"getTaxesFromOrder","url":"classes/shopperorders.shopperorders-3.html#apipaths.gettaxesfromorder-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperOrders.ShopperOrders.apiPaths"},{"id":3883,"kind":32,"name":"guestOrderLookup","url":"classes/shopperorders.shopperorders-3.html#apipaths.guestorderlookup-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperOrders.ShopperOrders.apiPaths"},{"id":3884,"kind":32,"name":"removePaymentInstrumentFromOrder","url":"classes/shopperorders.shopperorders-3.html#apipaths.removepaymentinstrumentfromorder-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperOrders.ShopperOrders.apiPaths"},{"id":3885,"kind":32,"name":"updatePaymentInstrumentForOrder","url":"classes/shopperorders.shopperorders-3.html#apipaths.updatepaymentinstrumentfororder-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperOrders.ShopperOrders.apiPaths"},{"id":3886,"kind":512,"name":"constructor","url":"classes/shopperorders.shopperorders-3.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"shopperOrders.ShopperOrders"},{"id":3887,"kind":1024,"name":"paramKeys","url":"classes/shopperorders.shopperorders-3.html#paramkeys","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperOrders.ShopperOrders"},{"id":3888,"kind":65536,"name":"__type","url":"classes/shopperorders.shopperorders-3.html#paramkeys.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"shopperOrders.ShopperOrders.paramKeys"},{"id":3889,"kind":32,"name":"createOrder","url":"classes/shopperorders.shopperorders-3.html#paramkeys.__type.createorder","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.ShopperOrders.paramKeys.__type"},{"id":3890,"kind":32,"name":"createOrderRequired","url":"classes/shopperorders.shopperorders-3.html#paramkeys.__type.createorderrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.ShopperOrders.paramKeys.__type"},{"id":3891,"kind":32,"name":"createPaymentInstrumentForOrder","url":"classes/shopperorders.shopperorders-3.html#paramkeys.__type.createpaymentinstrumentfororder","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.ShopperOrders.paramKeys.__type"},{"id":3892,"kind":32,"name":"createPaymentInstrumentForOrderRequired","url":"classes/shopperorders.shopperorders-3.html#paramkeys.__type.createpaymentinstrumentfororderrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.ShopperOrders.paramKeys.__type"},{"id":3893,"kind":32,"name":"getOrder","url":"classes/shopperorders.shopperorders-3.html#paramkeys.__type.getorder","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.ShopperOrders.paramKeys.__type"},{"id":3894,"kind":32,"name":"getOrderRequired","url":"classes/shopperorders.shopperorders-3.html#paramkeys.__type.getorderrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.ShopperOrders.paramKeys.__type"},{"id":3895,"kind":32,"name":"getPaymentMethodsForOrder","url":"classes/shopperorders.shopperorders-3.html#paramkeys.__type.getpaymentmethodsfororder","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.ShopperOrders.paramKeys.__type"},{"id":3896,"kind":32,"name":"getPaymentMethodsForOrderRequired","url":"classes/shopperorders.shopperorders-3.html#paramkeys.__type.getpaymentmethodsfororderrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.ShopperOrders.paramKeys.__type"},{"id":3897,"kind":32,"name":"getTaxesFromOrder","url":"classes/shopperorders.shopperorders-3.html#paramkeys.__type.gettaxesfromorder","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.ShopperOrders.paramKeys.__type"},{"id":3898,"kind":32,"name":"getTaxesFromOrderRequired","url":"classes/shopperorders.shopperorders-3.html#paramkeys.__type.gettaxesfromorderrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.ShopperOrders.paramKeys.__type"},{"id":3899,"kind":32,"name":"guestOrderLookup","url":"classes/shopperorders.shopperorders-3.html#paramkeys.__type.guestorderlookup","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.ShopperOrders.paramKeys.__type"},{"id":3900,"kind":32,"name":"guestOrderLookupRequired","url":"classes/shopperorders.shopperorders-3.html#paramkeys.__type.guestorderlookuprequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.ShopperOrders.paramKeys.__type"},{"id":3901,"kind":32,"name":"removePaymentInstrumentFromOrder","url":"classes/shopperorders.shopperorders-3.html#paramkeys.__type.removepaymentinstrumentfromorder","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.ShopperOrders.paramKeys.__type"},{"id":3902,"kind":32,"name":"removePaymentInstrumentFromOrderRequired","url":"classes/shopperorders.shopperorders-3.html#paramkeys.__type.removepaymentinstrumentfromorderrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.ShopperOrders.paramKeys.__type"},{"id":3903,"kind":32,"name":"updatePaymentInstrumentForOrder","url":"classes/shopperorders.shopperorders-3.html#paramkeys.__type.updatepaymentinstrumentfororder","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.ShopperOrders.paramKeys.__type"},{"id":3904,"kind":32,"name":"updatePaymentInstrumentForOrderRequired","url":"classes/shopperorders.shopperorders-3.html#paramkeys.__type.updatepaymentinstrumentfororderrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.ShopperOrders.paramKeys.__type"},{"id":3905,"kind":2048,"name":"createOrder","url":"classes/shopperorders.shopperorders-3.html#createorder-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperOrders.ShopperOrders"},{"id":3906,"kind":2048,"name":"createPaymentInstrumentForOrder","url":"classes/shopperorders.shopperorders-3.html#createpaymentinstrumentfororder-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperOrders.ShopperOrders"},{"id":3907,"kind":2048,"name":"getOrder","url":"classes/shopperorders.shopperorders-3.html#getorder-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperOrders.ShopperOrders"},{"id":3908,"kind":2048,"name":"getPaymentMethodsForOrder","url":"classes/shopperorders.shopperorders-3.html#getpaymentmethodsfororder-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperOrders.ShopperOrders"},{"id":3909,"kind":2048,"name":"getTaxesFromOrder","url":"classes/shopperorders.shopperorders-3.html#gettaxesfromorder-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperOrders.ShopperOrders"},{"id":3910,"kind":2048,"name":"guestOrderLookup","url":"classes/shopperorders.shopperorders-3.html#guestorderlookup-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperOrders.ShopperOrders"},{"id":3911,"kind":2048,"name":"removePaymentInstrumentFromOrder","url":"classes/shopperorders.shopperorders-3.html#removepaymentinstrumentfromorder-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperOrders.ShopperOrders"},{"id":3912,"kind":2048,"name":"updatePaymentInstrumentForOrder","url":"classes/shopperorders.shopperorders-3.html#updatepaymentinstrumentfororder-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperOrders.ShopperOrders"},{"id":3913,"kind":4194304,"name":"createOrderQueryParameters","url":"modules/shopperorders.html#createorderqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3914,"kind":65536,"name":"__type","url":"modules/shopperorders.html#createorderqueryparameters-2.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperOrders.createOrderQueryParameters"},{"id":3915,"kind":32,"name":"siteId","url":"modules/shopperorders.html#createorderqueryparameters-2.__type-1.siteid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.createOrderQueryParameters.__type"},{"id":3916,"kind":32,"name":"locale","url":"modules/shopperorders.html#createorderqueryparameters-2.__type-1.locale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.createOrderQueryParameters.__type"},{"id":3917,"kind":4194304,"name":"createOrderPathParameters","url":"modules/shopperorders.html#createorderpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3918,"kind":65536,"name":"__type","url":"modules/shopperorders.html#createorderpathparameters-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperOrders.createOrderPathParameters"},{"id":3919,"kind":32,"name":"organizationId","url":"modules/shopperorders.html#createorderpathparameters-2.__type.organizationid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.createOrderPathParameters.__type"},{"id":3920,"kind":4194304,"name":"createPaymentInstrumentForOrderQueryParameters","url":"modules/shopperorders.html#createpaymentinstrumentfororderqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3921,"kind":65536,"name":"__type","url":"modules/shopperorders.html#createpaymentinstrumentfororderqueryparameters-2.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperOrders.createPaymentInstrumentForOrderQueryParameters"},{"id":3922,"kind":32,"name":"siteId","url":"modules/shopperorders.html#createpaymentinstrumentfororderqueryparameters-2.__type-3.siteid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.createPaymentInstrumentForOrderQueryParameters.__type"},{"id":3923,"kind":32,"name":"locale","url":"modules/shopperorders.html#createpaymentinstrumentfororderqueryparameters-2.__type-3.locale-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.createPaymentInstrumentForOrderQueryParameters.__type"},{"id":3924,"kind":4194304,"name":"createPaymentInstrumentForOrderPathParameters","url":"modules/shopperorders.html#createpaymentinstrumentfororderpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3925,"kind":65536,"name":"__type","url":"modules/shopperorders.html#createpaymentinstrumentfororderpathparameters-2.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperOrders.createPaymentInstrumentForOrderPathParameters"},{"id":3926,"kind":32,"name":"organizationId","url":"modules/shopperorders.html#createpaymentinstrumentfororderpathparameters-2.__type-2.organizationid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.createPaymentInstrumentForOrderPathParameters.__type"},{"id":3927,"kind":32,"name":"orderNo","url":"modules/shopperorders.html#createpaymentinstrumentfororderpathparameters-2.__type-2.orderno","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.createPaymentInstrumentForOrderPathParameters.__type"},{"id":3928,"kind":4194304,"name":"getOrderQueryParameters","url":"modules/shopperorders.html#getorderqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3929,"kind":65536,"name":"__type","url":"modules/shopperorders.html#getorderqueryparameters-2.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperOrders.getOrderQueryParameters"},{"id":3930,"kind":32,"name":"siteId","url":"modules/shopperorders.html#getorderqueryparameters-2.__type-5.siteid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.getOrderQueryParameters.__type"},{"id":3931,"kind":32,"name":"locale","url":"modules/shopperorders.html#getorderqueryparameters-2.__type-5.locale-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.getOrderQueryParameters.__type"},{"id":3932,"kind":4194304,"name":"getOrderPathParameters","url":"modules/shopperorders.html#getorderpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3933,"kind":65536,"name":"__type","url":"modules/shopperorders.html#getorderpathparameters-2.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperOrders.getOrderPathParameters"},{"id":3934,"kind":32,"name":"orderNo","url":"modules/shopperorders.html#getorderpathparameters-2.__type-4.orderno-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.getOrderPathParameters.__type"},{"id":3935,"kind":32,"name":"organizationId","url":"modules/shopperorders.html#getorderpathparameters-2.__type-4.organizationid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.getOrderPathParameters.__type"},{"id":3936,"kind":4194304,"name":"getPaymentMethodsForOrderQueryParameters","url":"modules/shopperorders.html#getpaymentmethodsfororderqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3937,"kind":65536,"name":"__type","url":"modules/shopperorders.html#getpaymentmethodsfororderqueryparameters-2.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperOrders.getPaymentMethodsForOrderQueryParameters"},{"id":3938,"kind":32,"name":"siteId","url":"modules/shopperorders.html#getpaymentmethodsfororderqueryparameters-2.__type-7.siteid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.getPaymentMethodsForOrderQueryParameters.__type"},{"id":3939,"kind":32,"name":"locale","url":"modules/shopperorders.html#getpaymentmethodsfororderqueryparameters-2.__type-7.locale-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.getPaymentMethodsForOrderQueryParameters.__type"},{"id":3940,"kind":4194304,"name":"getPaymentMethodsForOrderPathParameters","url":"modules/shopperorders.html#getpaymentmethodsfororderpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3941,"kind":65536,"name":"__type","url":"modules/shopperorders.html#getpaymentmethodsfororderpathparameters-2.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperOrders.getPaymentMethodsForOrderPathParameters"},{"id":3942,"kind":32,"name":"organizationId","url":"modules/shopperorders.html#getpaymentmethodsfororderpathparameters-2.__type-6.organizationid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.getPaymentMethodsForOrderPathParameters.__type"},{"id":3943,"kind":32,"name":"orderNo","url":"modules/shopperorders.html#getpaymentmethodsfororderpathparameters-2.__type-6.orderno-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.getPaymentMethodsForOrderPathParameters.__type"},{"id":3944,"kind":4194304,"name":"getTaxesFromOrderQueryParameters","url":"modules/shopperorders.html#gettaxesfromorderqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3945,"kind":65536,"name":"__type","url":"modules/shopperorders.html#gettaxesfromorderqueryparameters-2.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperOrders.getTaxesFromOrderQueryParameters"},{"id":3946,"kind":32,"name":"siteId","url":"modules/shopperorders.html#gettaxesfromorderqueryparameters-2.__type-9.siteid-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.getTaxesFromOrderQueryParameters.__type"},{"id":3947,"kind":4194304,"name":"getTaxesFromOrderPathParameters","url":"modules/shopperorders.html#gettaxesfromorderpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3948,"kind":65536,"name":"__type","url":"modules/shopperorders.html#gettaxesfromorderpathparameters-2.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperOrders.getTaxesFromOrderPathParameters"},{"id":3949,"kind":32,"name":"organizationId","url":"modules/shopperorders.html#gettaxesfromorderpathparameters-2.__type-8.organizationid-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.getTaxesFromOrderPathParameters.__type"},{"id":3950,"kind":32,"name":"orderNo","url":"modules/shopperorders.html#gettaxesfromorderpathparameters-2.__type-8.orderno-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.getTaxesFromOrderPathParameters.__type"},{"id":3951,"kind":4194304,"name":"guestOrderLookupQueryParameters","url":"modules/shopperorders.html#guestorderlookupqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3952,"kind":65536,"name":"__type","url":"modules/shopperorders.html#guestorderlookupqueryparameters-2.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperOrders.guestOrderLookupQueryParameters"},{"id":3953,"kind":32,"name":"siteId","url":"modules/shopperorders.html#guestorderlookupqueryparameters-2.__type-11.siteid-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.guestOrderLookupQueryParameters.__type"},{"id":3954,"kind":32,"name":"locale","url":"modules/shopperorders.html#guestorderlookupqueryparameters-2.__type-11.locale-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.guestOrderLookupQueryParameters.__type"},{"id":3955,"kind":4194304,"name":"guestOrderLookupPathParameters","url":"modules/shopperorders.html#guestorderlookuppathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3956,"kind":65536,"name":"__type","url":"modules/shopperorders.html#guestorderlookuppathparameters-2.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperOrders.guestOrderLookupPathParameters"},{"id":3957,"kind":32,"name":"organizationId","url":"modules/shopperorders.html#guestorderlookuppathparameters-2.__type-10.organizationid-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.guestOrderLookupPathParameters.__type"},{"id":3958,"kind":32,"name":"orderNo","url":"modules/shopperorders.html#guestorderlookuppathparameters-2.__type-10.orderno-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.guestOrderLookupPathParameters.__type"},{"id":3959,"kind":4194304,"name":"removePaymentInstrumentFromOrderQueryParameters","url":"modules/shopperorders.html#removepaymentinstrumentfromorderqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3960,"kind":65536,"name":"__type","url":"modules/shopperorders.html#removepaymentinstrumentfromorderqueryparameters-2.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperOrders.removePaymentInstrumentFromOrderQueryParameters"},{"id":3961,"kind":32,"name":"siteId","url":"modules/shopperorders.html#removepaymentinstrumentfromorderqueryparameters-2.__type-13.siteid-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.removePaymentInstrumentFromOrderQueryParameters.__type"},{"id":3962,"kind":32,"name":"locale","url":"modules/shopperorders.html#removepaymentinstrumentfromorderqueryparameters-2.__type-13.locale-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.removePaymentInstrumentFromOrderQueryParameters.__type"},{"id":3963,"kind":4194304,"name":"removePaymentInstrumentFromOrderPathParameters","url":"modules/shopperorders.html#removepaymentinstrumentfromorderpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3964,"kind":65536,"name":"__type","url":"modules/shopperorders.html#removepaymentinstrumentfromorderpathparameters-2.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperOrders.removePaymentInstrumentFromOrderPathParameters"},{"id":3965,"kind":32,"name":"paymentInstrumentId","url":"modules/shopperorders.html#removepaymentinstrumentfromorderpathparameters-2.__type-12.paymentinstrumentid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.removePaymentInstrumentFromOrderPathParameters.__type"},{"id":3966,"kind":32,"name":"organizationId","url":"modules/shopperorders.html#removepaymentinstrumentfromorderpathparameters-2.__type-12.organizationid-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.removePaymentInstrumentFromOrderPathParameters.__type"},{"id":3967,"kind":32,"name":"orderNo","url":"modules/shopperorders.html#removepaymentinstrumentfromorderpathparameters-2.__type-12.orderno-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.removePaymentInstrumentFromOrderPathParameters.__type"},{"id":3968,"kind":4194304,"name":"updatePaymentInstrumentForOrderQueryParameters","url":"modules/shopperorders.html#updatepaymentinstrumentfororderqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3969,"kind":65536,"name":"__type","url":"modules/shopperorders.html#updatepaymentinstrumentfororderqueryparameters-2.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperOrders.updatePaymentInstrumentForOrderQueryParameters"},{"id":3970,"kind":32,"name":"siteId","url":"modules/shopperorders.html#updatepaymentinstrumentfororderqueryparameters-2.__type-15.siteid-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.updatePaymentInstrumentForOrderQueryParameters.__type"},{"id":3971,"kind":32,"name":"locale","url":"modules/shopperorders.html#updatepaymentinstrumentfororderqueryparameters-2.__type-15.locale-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.updatePaymentInstrumentForOrderQueryParameters.__type"},{"id":3972,"kind":4194304,"name":"updatePaymentInstrumentForOrderPathParameters","url":"modules/shopperorders.html#updatepaymentinstrumentfororderpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3973,"kind":65536,"name":"__type","url":"modules/shopperorders.html#updatepaymentinstrumentfororderpathparameters-2.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperOrders.updatePaymentInstrumentForOrderPathParameters"},{"id":3974,"kind":32,"name":"paymentInstrumentId","url":"modules/shopperorders.html#updatepaymentinstrumentfororderpathparameters-2.__type-14.paymentinstrumentid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.updatePaymentInstrumentForOrderPathParameters.__type"},{"id":3975,"kind":32,"name":"organizationId","url":"modules/shopperorders.html#updatepaymentinstrumentfororderpathparameters-2.__type-14.organizationid-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.updatePaymentInstrumentForOrderPathParameters.__type"},{"id":3976,"kind":32,"name":"orderNo","url":"modules/shopperorders.html#updatepaymentinstrumentfororderpathparameters-2.__type-14.orderno-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.updatePaymentInstrumentForOrderPathParameters.__type"},{"id":3977,"kind":4194304,"name":"ShopperOrdersPathParameters","url":"modules/shopperorders.html#shopperorderspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3978,"kind":4194304,"name":"ShopperOrdersQueryParameters","url":"modules/shopperorders.html#shopperordersqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3979,"kind":4194304,"name":"ShopperOrdersParameters","url":"modules/shopperorders.html#shopperordersparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":3980,"kind":16777216,"name":"createOrderQueryParameters","url":"modules/shopperorders.html#createorderqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3981,"kind":16777216,"name":"createOrderPathParameters","url":"modules/shopperorders.html#createorderpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3982,"kind":16777216,"name":"createPaymentInstrumentForOrderQueryParameters","url":"modules/shopperorders.html#createpaymentinstrumentfororderqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3983,"kind":16777216,"name":"createPaymentInstrumentForOrderPathParameters","url":"modules/shopperorders.html#createpaymentinstrumentfororderpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3984,"kind":16777216,"name":"getOrderQueryParameters","url":"modules/shopperorders.html#getorderqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3985,"kind":16777216,"name":"getOrderPathParameters","url":"modules/shopperorders.html#getorderpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3986,"kind":16777216,"name":"getPaymentMethodsForOrderQueryParameters","url":"modules/shopperorders.html#getpaymentmethodsfororderqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3987,"kind":16777216,"name":"getPaymentMethodsForOrderPathParameters","url":"modules/shopperorders.html#getpaymentmethodsfororderpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3988,"kind":16777216,"name":"getTaxesFromOrderQueryParameters","url":"modules/shopperorders.html#gettaxesfromorderqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3989,"kind":16777216,"name":"getTaxesFromOrderPathParameters","url":"modules/shopperorders.html#gettaxesfromorderpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3990,"kind":16777216,"name":"guestOrderLookupQueryParameters","url":"modules/shopperorders.html#guestorderlookupqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3991,"kind":16777216,"name":"guestOrderLookupPathParameters","url":"modules/shopperorders.html#guestorderlookuppathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3992,"kind":16777216,"name":"removePaymentInstrumentFromOrderQueryParameters","url":"modules/shopperorders.html#removepaymentinstrumentfromorderqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3993,"kind":16777216,"name":"removePaymentInstrumentFromOrderPathParameters","url":"modules/shopperorders.html#removepaymentinstrumentfromorderpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3994,"kind":16777216,"name":"updatePaymentInstrumentForOrderQueryParameters","url":"modules/shopperorders.html#updatepaymentinstrumentfororderqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3995,"kind":16777216,"name":"updatePaymentInstrumentForOrderPathParameters","url":"modules/shopperorders.html#updatepaymentinstrumentfororderpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3996,"kind":16777216,"name":"ShopperOrdersPathParameters","url":"modules/shopperorders.html#shopperorderspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3997,"kind":16777216,"name":"ShopperOrdersQueryParameters","url":"modules/shopperorders.html#shopperordersqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3998,"kind":16777216,"name":"ShopperOrdersParameters","url":"modules/shopperorders.html#shopperordersparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":3999,"kind":16777216,"name":"ShopperOrders","url":"modules/shopperorders.html#shopperorders-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4000,"kind":16777216,"name":"defaultBaseUri","url":"modules/shopperorders.html#defaultbaseuri","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4001,"kind":16777216,"name":"createOrderQueryParameters","url":"modules/shopperorders.html#createorderqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4002,"kind":16777216,"name":"createOrderPathParameters","url":"modules/shopperorders.html#createorderpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4003,"kind":16777216,"name":"createPaymentInstrumentForOrderQueryParameters","url":"modules/shopperorders.html#createpaymentinstrumentfororderqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4004,"kind":16777216,"name":"createPaymentInstrumentForOrderPathParameters","url":"modules/shopperorders.html#createpaymentinstrumentfororderpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4005,"kind":16777216,"name":"getOrderQueryParameters","url":"modules/shopperorders.html#getorderqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4006,"kind":16777216,"name":"getOrderPathParameters","url":"modules/shopperorders.html#getorderpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4007,"kind":16777216,"name":"getPaymentMethodsForOrderQueryParameters","url":"modules/shopperorders.html#getpaymentmethodsfororderqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4008,"kind":16777216,"name":"getPaymentMethodsForOrderPathParameters","url":"modules/shopperorders.html#getpaymentmethodsfororderpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4009,"kind":16777216,"name":"getTaxesFromOrderQueryParameters","url":"modules/shopperorders.html#gettaxesfromorderqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4010,"kind":16777216,"name":"getTaxesFromOrderPathParameters","url":"modules/shopperorders.html#gettaxesfromorderpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4011,"kind":16777216,"name":"guestOrderLookupQueryParameters","url":"modules/shopperorders.html#guestorderlookupqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4012,"kind":16777216,"name":"guestOrderLookupPathParameters","url":"modules/shopperorders.html#guestorderlookuppathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4013,"kind":16777216,"name":"removePaymentInstrumentFromOrderQueryParameters","url":"modules/shopperorders.html#removepaymentinstrumentfromorderqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4014,"kind":16777216,"name":"removePaymentInstrumentFromOrderPathParameters","url":"modules/shopperorders.html#removepaymentinstrumentfromorderpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4015,"kind":16777216,"name":"updatePaymentInstrumentForOrderQueryParameters","url":"modules/shopperorders.html#updatepaymentinstrumentfororderqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4016,"kind":16777216,"name":"updatePaymentInstrumentForOrderPathParameters","url":"modules/shopperorders.html#updatepaymentinstrumentfororderpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4017,"kind":16777216,"name":"ShopperOrdersPathParameters","url":"modules/shopperorders.html#shopperorderspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4018,"kind":16777216,"name":"ShopperOrdersQueryParameters","url":"modules/shopperorders.html#shopperordersqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4019,"kind":16777216,"name":"ShopperOrdersParameters","url":"modules/shopperorders.html#shopperordersparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4020,"kind":16777216,"name":"ShopperOrders","url":"modules/shopperorders.html#shopperorders-2","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4021,"kind":16777216,"name":"Basket","url":"modules/shopperorders.html#basket-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4022,"kind":16777216,"name":"BasketChannelTypeEnum","url":"modules/shopperorders.html#basketchanneltypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4023,"kind":16777216,"name":"BasketTaxationEnum","url":"modules/shopperorders.html#baskettaxationenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4024,"kind":16777216,"name":"BonusDiscountLineItem","url":"modules/shopperorders.html#bonusdiscountlineitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4025,"kind":16777216,"name":"CouponItem","url":"modules/shopperorders.html#couponitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4026,"kind":16777216,"name":"CouponItemStatusCodeEnum","url":"modules/shopperorders.html#couponitemstatuscodeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4027,"kind":16777216,"name":"CurrencyCode","url":"modules/shopperorders.html#currencycode-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4028,"kind":16777216,"name":"CustomerInfo","url":"modules/shopperorders.html#customerinfo-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4029,"kind":16777216,"name":"DefaultFallback","url":"modules/shopperorders.html#defaultfallback-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4030,"kind":16777216,"name":"Discount","url":"modules/shopperorders.html#discount-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4031,"kind":16777216,"name":"DiscountTypeEnum","url":"modules/shopperorders.html#discounttypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4032,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperorders.html#errorresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4033,"kind":16777216,"name":"GiftCertificateItem","url":"modules/shopperorders.html#giftcertificateitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4034,"kind":16777216,"name":"GroupedTaxItem","url":"modules/shopperorders.html#groupedtaxitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4035,"kind":16777216,"name":"LocaleCode","url":"modules/shopperorders.html#localecode-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4036,"kind":16777216,"name":"NoValue","url":"modules/shopperorders.html#novalue-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4037,"kind":16777216,"name":"OptionItem","url":"modules/shopperorders.html#optionitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4038,"kind":16777216,"name":"Order","url":"modules/shopperorders.html#order-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4039,"kind":16777216,"name":"OrderChannelTypeEnum","url":"modules/shopperorders.html#orderchanneltypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4040,"kind":16777216,"name":"OrderConfirmationStatusEnum","url":"modules/shopperorders.html#orderconfirmationstatusenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4041,"kind":16777216,"name":"OrderExportStatusEnum","url":"modules/shopperorders.html#orderexportstatusenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4042,"kind":16777216,"name":"OrderPaymentStatusEnum","url":"modules/shopperorders.html#orderpaymentstatusenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4043,"kind":16777216,"name":"OrderShippingStatusEnum","url":"modules/shopperorders.html#ordershippingstatusenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4044,"kind":16777216,"name":"OrderStatusEnum","url":"modules/shopperorders.html#orderstatusenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4045,"kind":16777216,"name":"OrderTaxationEnum","url":"modules/shopperorders.html#ordertaxationenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4046,"kind":16777216,"name":"OrderAddress","url":"modules/shopperorders.html#orderaddress-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4047,"kind":16777216,"name":"OrderLookupRequest","url":"modules/shopperorders.html#orderlookuprequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4048,"kind":16777216,"name":"OrderPaymentCardRequest","url":"modules/shopperorders.html#orderpaymentcardrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4049,"kind":16777216,"name":"OrderPaymentInstrument","url":"modules/shopperorders.html#orderpaymentinstrument-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4050,"kind":16777216,"name":"OrderPaymentInstrumentRequest","url":"modules/shopperorders.html#orderpaymentinstrumentrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4051,"kind":16777216,"name":"PaymentCard","url":"modules/shopperorders.html#paymentcard-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4052,"kind":16777216,"name":"PaymentCardSpec","url":"modules/shopperorders.html#paymentcardspec-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4053,"kind":16777216,"name":"PaymentMethod","url":"modules/shopperorders.html#paymentmethod-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4054,"kind":16777216,"name":"PaymentMethodResult","url":"modules/shopperorders.html#paymentmethodresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4055,"kind":16777216,"name":"PriceAdjustment","url":"modules/shopperorders.html#priceadjustment-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4056,"kind":16777216,"name":"ProductDetailsLink","url":"modules/shopperorders.html#productdetailslink-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4057,"kind":16777216,"name":"ProductItem","url":"modules/shopperorders.html#productitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4058,"kind":16777216,"name":"ProductListItemReference","url":"modules/shopperorders.html#productlistitemreference-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4059,"kind":16777216,"name":"ProductListItemReferenceTypeEnum","url":"modules/shopperorders.html#productlistitemreferencetypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4060,"kind":16777216,"name":"ProductListLink","url":"modules/shopperorders.html#productlistlink-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4061,"kind":16777216,"name":"ProductListLinkTypeEnum","url":"modules/shopperorders.html#productlistlinktypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4062,"kind":16777216,"name":"Shipment","url":"modules/shopperorders.html#shipment-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4063,"kind":16777216,"name":"ShipmentShippingStatusEnum","url":"modules/shopperorders.html#shipmentshippingstatusenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4064,"kind":16777216,"name":"ShippingItem","url":"modules/shopperorders.html#shippingitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4065,"kind":16777216,"name":"ShippingMethod","url":"modules/shopperorders.html#shippingmethod-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4066,"kind":16777216,"name":"ShippingPromotion","url":"modules/shopperorders.html#shippingpromotion-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4067,"kind":16777216,"name":"Status","url":"modules/shopperorders.html#status-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4068,"kind":16777216,"name":"TaxItem","url":"modules/shopperorders.html#taxitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4069,"kind":16777216,"name":"TaxItems","url":"modules/shopperorders.html#taxitems-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4070,"kind":16777216,"name":"Taxes","url":"modules/shopperorders.html#taxes-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4071,"kind":2,"name":"ShopperOrdersTypes","url":"modules/shopperorders.shopperorderstypes.html","classes":"tsd-kind-namespace tsd-parent-kind-module","parent":"shopperOrders"},{"id":4072,"kind":4194304,"name":"ShopperOrdersPathParameters","url":"modules/shopperorders.shopperorderstypes.html#shopperorderspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4073,"kind":4194304,"name":"ShopperOrdersQueryParameters","url":"modules/shopperorders.shopperorderstypes.html#shopperordersqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4074,"kind":4194304,"name":"createOrderQueryParameters","url":"modules/shopperorders.shopperorderstypes.html#createorderqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4075,"kind":4194304,"name":"createOrderPathParameters","url":"modules/shopperorders.shopperorderstypes.html#createorderpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4076,"kind":4194304,"name":"createPaymentInstrumentForOrderQueryParameters","url":"modules/shopperorders.shopperorderstypes.html#createpaymentinstrumentfororderqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4077,"kind":4194304,"name":"createPaymentInstrumentForOrderPathParameters","url":"modules/shopperorders.shopperorderstypes.html#createpaymentinstrumentfororderpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4078,"kind":4194304,"name":"getOrderQueryParameters","url":"modules/shopperorders.shopperorderstypes.html#getorderqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4079,"kind":4194304,"name":"getOrderPathParameters","url":"modules/shopperorders.shopperorderstypes.html#getorderpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4080,"kind":4194304,"name":"getPaymentMethodsForOrderQueryParameters","url":"modules/shopperorders.shopperorderstypes.html#getpaymentmethodsfororderqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4081,"kind":4194304,"name":"getPaymentMethodsForOrderPathParameters","url":"modules/shopperorders.shopperorderstypes.html#getpaymentmethodsfororderpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4082,"kind":4194304,"name":"getTaxesFromOrderQueryParameters","url":"modules/shopperorders.shopperorderstypes.html#gettaxesfromorderqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4083,"kind":4194304,"name":"getTaxesFromOrderPathParameters","url":"modules/shopperorders.shopperorderstypes.html#gettaxesfromorderpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4084,"kind":4194304,"name":"guestOrderLookupQueryParameters","url":"modules/shopperorders.shopperorderstypes.html#guestorderlookupqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4085,"kind":4194304,"name":"guestOrderLookupPathParameters","url":"modules/shopperorders.shopperorderstypes.html#guestorderlookuppathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4086,"kind":4194304,"name":"removePaymentInstrumentFromOrderQueryParameters","url":"modules/shopperorders.shopperorderstypes.html#removepaymentinstrumentfromorderqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4087,"kind":4194304,"name":"removePaymentInstrumentFromOrderPathParameters","url":"modules/shopperorders.shopperorderstypes.html#removepaymentinstrumentfromorderpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4088,"kind":4194304,"name":"updatePaymentInstrumentForOrderQueryParameters","url":"modules/shopperorders.shopperorderstypes.html#updatepaymentinstrumentfororderqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4089,"kind":4194304,"name":"updatePaymentInstrumentForOrderPathParameters","url":"modules/shopperorders.shopperorderstypes.html#updatepaymentinstrumentfororderpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4090,"kind":4194304,"name":"Basket","url":"modules/shopperorders.shopperorderstypes.html#basket","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4091,"kind":4194304,"name":"BasketChannelTypeEnum","url":"modules/shopperorders.shopperorderstypes.html#basketchanneltypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4092,"kind":4194304,"name":"BasketTaxationEnum","url":"modules/shopperorders.shopperorderstypes.html#baskettaxationenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4093,"kind":4194304,"name":"BonusDiscountLineItem","url":"modules/shopperorders.shopperorderstypes.html#bonusdiscountlineitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4094,"kind":4194304,"name":"CouponItem","url":"modules/shopperorders.shopperorderstypes.html#couponitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4095,"kind":4194304,"name":"CouponItemStatusCodeEnum","url":"modules/shopperorders.shopperorderstypes.html#couponitemstatuscodeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4096,"kind":4194304,"name":"CurrencyCode","url":"modules/shopperorders.shopperorderstypes.html#currencycode","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4097,"kind":4194304,"name":"CustomerInfo","url":"modules/shopperorders.shopperorderstypes.html#customerinfo","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4098,"kind":4194304,"name":"DefaultFallback","url":"modules/shopperorders.shopperorderstypes.html#defaultfallback","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4099,"kind":4194304,"name":"Discount","url":"modules/shopperorders.shopperorderstypes.html#discount","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4100,"kind":4194304,"name":"DiscountTypeEnum","url":"modules/shopperorders.shopperorderstypes.html#discounttypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4101,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperorders.shopperorderstypes.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4102,"kind":4194304,"name":"GiftCertificateItem","url":"modules/shopperorders.shopperorderstypes.html#giftcertificateitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4103,"kind":4194304,"name":"GroupedTaxItem","url":"modules/shopperorders.shopperorderstypes.html#groupedtaxitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4104,"kind":4194304,"name":"LocaleCode","url":"modules/shopperorders.shopperorderstypes.html#localecode","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4105,"kind":4194304,"name":"NoValue","url":"modules/shopperorders.shopperorderstypes.html#novalue","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4106,"kind":4194304,"name":"OptionItem","url":"modules/shopperorders.shopperorderstypes.html#optionitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4107,"kind":4194304,"name":"Order","url":"modules/shopperorders.shopperorderstypes.html#order","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4108,"kind":4194304,"name":"OrderChannelTypeEnum","url":"modules/shopperorders.shopperorderstypes.html#orderchanneltypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4109,"kind":4194304,"name":"OrderConfirmationStatusEnum","url":"modules/shopperorders.shopperorderstypes.html#orderconfirmationstatusenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4110,"kind":4194304,"name":"OrderExportStatusEnum","url":"modules/shopperorders.shopperorderstypes.html#orderexportstatusenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4111,"kind":4194304,"name":"OrderPaymentStatusEnum","url":"modules/shopperorders.shopperorderstypes.html#orderpaymentstatusenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4112,"kind":4194304,"name":"OrderShippingStatusEnum","url":"modules/shopperorders.shopperorderstypes.html#ordershippingstatusenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4113,"kind":4194304,"name":"OrderStatusEnum","url":"modules/shopperorders.shopperorderstypes.html#orderstatusenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4114,"kind":4194304,"name":"OrderTaxationEnum","url":"modules/shopperorders.shopperorderstypes.html#ordertaxationenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4115,"kind":4194304,"name":"OrderAddress","url":"modules/shopperorders.shopperorderstypes.html#orderaddress","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4116,"kind":4194304,"name":"OrderLookupRequest","url":"modules/shopperorders.shopperorderstypes.html#orderlookuprequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4117,"kind":4194304,"name":"OrderPaymentCardRequest","url":"modules/shopperorders.shopperorderstypes.html#orderpaymentcardrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4118,"kind":4194304,"name":"OrderPaymentInstrument","url":"modules/shopperorders.shopperorderstypes.html#orderpaymentinstrument","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4119,"kind":4194304,"name":"OrderPaymentInstrumentRequest","url":"modules/shopperorders.shopperorderstypes.html#orderpaymentinstrumentrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4120,"kind":4194304,"name":"PaymentCard","url":"modules/shopperorders.shopperorderstypes.html#paymentcard","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4121,"kind":4194304,"name":"PaymentCardSpec","url":"modules/shopperorders.shopperorderstypes.html#paymentcardspec","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4122,"kind":4194304,"name":"PaymentMethod","url":"modules/shopperorders.shopperorderstypes.html#paymentmethod","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4123,"kind":4194304,"name":"PaymentMethodResult","url":"modules/shopperorders.shopperorderstypes.html#paymentmethodresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4124,"kind":4194304,"name":"PriceAdjustment","url":"modules/shopperorders.shopperorderstypes.html#priceadjustment","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4125,"kind":4194304,"name":"ProductDetailsLink","url":"modules/shopperorders.shopperorderstypes.html#productdetailslink","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4126,"kind":4194304,"name":"ProductItem","url":"modules/shopperorders.shopperorderstypes.html#productitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4127,"kind":4194304,"name":"ProductListItemReference","url":"modules/shopperorders.shopperorderstypes.html#productlistitemreference","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4128,"kind":4194304,"name":"ProductListItemReferenceTypeEnum","url":"modules/shopperorders.shopperorderstypes.html#productlistitemreferencetypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4129,"kind":4194304,"name":"ProductListLink","url":"modules/shopperorders.shopperorderstypes.html#productlistlink","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4130,"kind":4194304,"name":"ProductListLinkTypeEnum","url":"modules/shopperorders.shopperorderstypes.html#productlistlinktypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4131,"kind":4194304,"name":"Shipment","url":"modules/shopperorders.shopperorderstypes.html#shipment","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4132,"kind":4194304,"name":"ShipmentShippingStatusEnum","url":"modules/shopperorders.shopperorderstypes.html#shipmentshippingstatusenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4133,"kind":4194304,"name":"ShippingItem","url":"modules/shopperorders.shopperorderstypes.html#shippingitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4134,"kind":4194304,"name":"ShippingMethod","url":"modules/shopperorders.shopperorderstypes.html#shippingmethod","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4135,"kind":4194304,"name":"ShippingPromotion","url":"modules/shopperorders.shopperorderstypes.html#shippingpromotion","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4136,"kind":4194304,"name":"Status","url":"modules/shopperorders.shopperorderstypes.html#status","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4137,"kind":4194304,"name":"TaxItem","url":"modules/shopperorders.shopperorderstypes.html#taxitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4138,"kind":4194304,"name":"TaxItems","url":"modules/shopperorders.shopperorderstypes.html#taxitems","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4139,"kind":4194304,"name":"Taxes","url":"modules/shopperorders.shopperorderstypes.html#taxes","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4140,"kind":1,"name":"shopperProducts","url":"modules/shopperproducts.html","classes":"tsd-kind-module"},{"id":4141,"kind":32,"name":"defaultBaseUri","url":"modules/shopperproducts.html#defaultbaseuri-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"shopperProducts"},{"id":4142,"kind":4194304,"name":"Image","url":"modules/shopperproducts.html#image-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4143,"kind":4194304,"name":"VariationAttributeValue","url":"modules/shopperproducts.html#variationattributevalue-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4144,"kind":4194304,"name":"VariationAttribute","url":"modules/shopperproducts.html#variationattribute-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4145,"kind":4194304,"name":"VariationGroup","url":"modules/shopperproducts.html#variationgroup-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4146,"kind":4194304,"name":"ProductType","url":"modules/shopperproducts.html#producttype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4147,"kind":4194304,"name":"ProductPriceTable","url":"modules/shopperproducts.html#productpricetable-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4148,"kind":4194304,"name":"RecommendationType","url":"modules/shopperproducts.html#recommendationtype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4149,"kind":4194304,"name":"Recommendation","url":"modules/shopperproducts.html#recommendation-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4150,"kind":4194304,"name":"PriceRange","url":"modules/shopperproducts.html#pricerange-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4151,"kind":4194304,"name":"ProductPromotion","url":"modules/shopperproducts.html#productpromotion-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4152,"kind":4194304,"name":"NoValue","url":"modules/shopperproducts.html#novalue-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4153,"kind":4194304,"name":"CurrencyCode","url":"modules/shopperproducts.html#currencycode-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4154,"kind":4194304,"name":"Master","url":"modules/shopperproducts.html#master-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4155,"kind":4194304,"name":"Variant","url":"modules/shopperproducts.html#variant-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4156,"kind":4194304,"name":"PageMetaTag","url":"modules/shopperproducts.html#pagemetatag-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4157,"kind":4194304,"name":"ProductLink","url":"modules/shopperproducts.html#productlink-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4158,"kind":4194304,"name":"ProductLinkTypeEnum","url":"modules/shopperproducts.html#productlinktypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4159,"kind":4194304,"name":"OptionValue","url":"modules/shopperproducts.html#optionvalue-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4160,"kind":4194304,"name":"Option","url":"modules/shopperproducts.html#option-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4161,"kind":4194304,"name":"ImageGroup","url":"modules/shopperproducts.html#imagegroup-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4162,"kind":4194304,"name":"Inventory","url":"modules/shopperproducts.html#inventory-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4163,"kind":4194304,"name":"Product","url":"modules/shopperproducts.html#product-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4164,"kind":4194304,"name":"BundledProduct","url":"modules/shopperproducts.html#bundledproduct-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4165,"kind":4194304,"name":"PathRecord","url":"modules/shopperproducts.html#pathrecord-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4166,"kind":4194304,"name":"Category","url":"modules/shopperproducts.html#category-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4167,"kind":4194304,"name":"CategoryResult","url":"modules/shopperproducts.html#categoryresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4168,"kind":4194304,"name":"DefaultFallback","url":"modules/shopperproducts.html#defaultfallback-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4169,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperproducts.html#errorresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4170,"kind":4194304,"name":"LocaleCode","url":"modules/shopperproducts.html#localecode-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4171,"kind":4194304,"name":"ProductResult","url":"modules/shopperproducts.html#productresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4172,"kind":4194304,"name":"ResultBase","url":"modules/shopperproducts.html#resultbase-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4173,"kind":16777216,"name":"BundledProduct","url":"modules/shopperproducts.html#bundledproduct","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4174,"kind":16777216,"name":"Category","url":"modules/shopperproducts.html#category","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4175,"kind":16777216,"name":"CategoryResult","url":"modules/shopperproducts.html#categoryresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4176,"kind":16777216,"name":"CurrencyCode","url":"modules/shopperproducts.html#currencycode","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4177,"kind":16777216,"name":"DefaultFallback","url":"modules/shopperproducts.html#defaultfallback","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4178,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperproducts.html#errorresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4179,"kind":16777216,"name":"Image","url":"modules/shopperproducts.html#image","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4180,"kind":16777216,"name":"ImageGroup","url":"modules/shopperproducts.html#imagegroup","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4181,"kind":16777216,"name":"Inventory","url":"modules/shopperproducts.html#inventory","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4182,"kind":16777216,"name":"LocaleCode","url":"modules/shopperproducts.html#localecode","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4183,"kind":16777216,"name":"Master","url":"modules/shopperproducts.html#master","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4184,"kind":16777216,"name":"NoValue","url":"modules/shopperproducts.html#novalue","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4185,"kind":16777216,"name":"Option","url":"modules/shopperproducts.html#option","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4186,"kind":16777216,"name":"OptionValue","url":"modules/shopperproducts.html#optionvalue","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4187,"kind":16777216,"name":"PageMetaTag","url":"modules/shopperproducts.html#pagemetatag","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4188,"kind":16777216,"name":"PathRecord","url":"modules/shopperproducts.html#pathrecord","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4189,"kind":16777216,"name":"PriceRange","url":"modules/shopperproducts.html#pricerange","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4190,"kind":16777216,"name":"Product","url":"modules/shopperproducts.html#product","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4191,"kind":16777216,"name":"ProductLink","url":"modules/shopperproducts.html#productlink","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4192,"kind":16777216,"name":"ProductLinkTypeEnum","url":"modules/shopperproducts.html#productlinktypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4193,"kind":16777216,"name":"ProductPriceTable","url":"modules/shopperproducts.html#productpricetable","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4194,"kind":16777216,"name":"ProductPromotion","url":"modules/shopperproducts.html#productpromotion","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4195,"kind":16777216,"name":"ProductResult","url":"modules/shopperproducts.html#productresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4196,"kind":16777216,"name":"ProductType","url":"modules/shopperproducts.html#producttype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4197,"kind":16777216,"name":"Recommendation","url":"modules/shopperproducts.html#recommendation","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4198,"kind":16777216,"name":"RecommendationType","url":"modules/shopperproducts.html#recommendationtype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4199,"kind":16777216,"name":"ResultBase","url":"modules/shopperproducts.html#resultbase","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4200,"kind":16777216,"name":"Variant","url":"modules/shopperproducts.html#variant","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4201,"kind":16777216,"name":"VariationAttribute","url":"modules/shopperproducts.html#variationattribute","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4202,"kind":16777216,"name":"VariationAttributeValue","url":"modules/shopperproducts.html#variationattributevalue","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4203,"kind":16777216,"name":"VariationGroup","url":"modules/shopperproducts.html#variationgroup","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4204,"kind":128,"name":"ShopperProducts","url":"classes/shopperproducts.shopperproducts-3.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"shopperProducts"},{"id":4205,"kind":1024,"name":"clientConfig","url":"classes/shopperproducts.shopperproducts-3.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class","parent":"shopperProducts.ShopperProducts"},{"id":4206,"kind":1024,"name":"defaultBaseUri","url":"classes/shopperproducts.shopperproducts-3.html#defaultbaseuri","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperProducts.ShopperProducts"},{"id":4207,"kind":2097152,"name":"apiPaths","url":"classes/shopperproducts.shopperproducts-3.html#apipaths","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-static","parent":"shopperProducts.ShopperProducts"},{"id":4208,"kind":32,"name":"getCategories","url":"classes/shopperproducts.shopperproducts-3.html#apipaths.getcategories-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperProducts.ShopperProducts.apiPaths"},{"id":4209,"kind":32,"name":"getCategory","url":"classes/shopperproducts.shopperproducts-3.html#apipaths.getcategory-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperProducts.ShopperProducts.apiPaths"},{"id":4210,"kind":32,"name":"getProduct","url":"classes/shopperproducts.shopperproducts-3.html#apipaths.getproduct-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperProducts.ShopperProducts.apiPaths"},{"id":4211,"kind":32,"name":"getProducts","url":"classes/shopperproducts.shopperproducts-3.html#apipaths.getproducts-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperProducts.ShopperProducts.apiPaths"},{"id":4212,"kind":512,"name":"constructor","url":"classes/shopperproducts.shopperproducts-3.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"shopperProducts.ShopperProducts"},{"id":4213,"kind":1024,"name":"paramKeys","url":"classes/shopperproducts.shopperproducts-3.html#paramkeys","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperProducts.ShopperProducts"},{"id":4214,"kind":65536,"name":"__type","url":"classes/shopperproducts.shopperproducts-3.html#paramkeys.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"shopperProducts.ShopperProducts.paramKeys"},{"id":4215,"kind":32,"name":"getCategories","url":"classes/shopperproducts.shopperproducts-3.html#paramkeys.__type.getcategories","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.ShopperProducts.paramKeys.__type"},{"id":4216,"kind":32,"name":"getCategoriesRequired","url":"classes/shopperproducts.shopperproducts-3.html#paramkeys.__type.getcategoriesrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.ShopperProducts.paramKeys.__type"},{"id":4217,"kind":32,"name":"getCategory","url":"classes/shopperproducts.shopperproducts-3.html#paramkeys.__type.getcategory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.ShopperProducts.paramKeys.__type"},{"id":4218,"kind":32,"name":"getCategoryRequired","url":"classes/shopperproducts.shopperproducts-3.html#paramkeys.__type.getcategoryrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.ShopperProducts.paramKeys.__type"},{"id":4219,"kind":32,"name":"getProduct","url":"classes/shopperproducts.shopperproducts-3.html#paramkeys.__type.getproduct","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.ShopperProducts.paramKeys.__type"},{"id":4220,"kind":32,"name":"getProductRequired","url":"classes/shopperproducts.shopperproducts-3.html#paramkeys.__type.getproductrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.ShopperProducts.paramKeys.__type"},{"id":4221,"kind":32,"name":"getProducts","url":"classes/shopperproducts.shopperproducts-3.html#paramkeys.__type.getproducts","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.ShopperProducts.paramKeys.__type"},{"id":4222,"kind":32,"name":"getProductsRequired","url":"classes/shopperproducts.shopperproducts-3.html#paramkeys.__type.getproductsrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.ShopperProducts.paramKeys.__type"},{"id":4223,"kind":2048,"name":"getCategories","url":"classes/shopperproducts.shopperproducts-3.html#getcategories-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperProducts.ShopperProducts"},{"id":4224,"kind":2048,"name":"getCategory","url":"classes/shopperproducts.shopperproducts-3.html#getcategory-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperProducts.ShopperProducts"},{"id":4225,"kind":2048,"name":"getProduct","url":"classes/shopperproducts.shopperproducts-3.html#getproduct-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperProducts.ShopperProducts"},{"id":4226,"kind":2048,"name":"getProducts","url":"classes/shopperproducts.shopperproducts-3.html#getproducts-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperProducts.ShopperProducts"},{"id":4227,"kind":4194304,"name":"GetCategoriesLevelsEnum","url":"modules/shopperproducts.html#getcategorieslevelsenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4228,"kind":4194304,"name":"GetCategoryLevelsEnum","url":"modules/shopperproducts.html#getcategorylevelsenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4229,"kind":4194304,"name":"GetProductExpandEnum","url":"modules/shopperproducts.html#getproductexpandenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4230,"kind":4194304,"name":"GetProductsExpandEnum","url":"modules/shopperproducts.html#getproductsexpandenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4231,"kind":4194304,"name":"getCategoriesQueryParameters","url":"modules/shopperproducts.html#getcategoriesqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4232,"kind":65536,"name":"__type","url":"modules/shopperproducts.html#getcategoriesqueryparameters-2.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperProducts.getCategoriesQueryParameters"},{"id":4233,"kind":32,"name":"ids","url":"modules/shopperproducts.html#getcategoriesqueryparameters-2.__type-1.ids","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getCategoriesQueryParameters.__type"},{"id":4234,"kind":32,"name":"levels","url":"modules/shopperproducts.html#getcategoriesqueryparameters-2.__type-1.levels","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getCategoriesQueryParameters.__type"},{"id":4235,"kind":32,"name":"locale","url":"modules/shopperproducts.html#getcategoriesqueryparameters-2.__type-1.locale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getCategoriesQueryParameters.__type"},{"id":4236,"kind":32,"name":"siteId","url":"modules/shopperproducts.html#getcategoriesqueryparameters-2.__type-1.siteid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getCategoriesQueryParameters.__type"},{"id":4237,"kind":4194304,"name":"getCategoriesPathParameters","url":"modules/shopperproducts.html#getcategoriespathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4238,"kind":65536,"name":"__type","url":"modules/shopperproducts.html#getcategoriespathparameters-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperProducts.getCategoriesPathParameters"},{"id":4239,"kind":32,"name":"organizationId","url":"modules/shopperproducts.html#getcategoriespathparameters-2.__type.organizationid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getCategoriesPathParameters.__type"},{"id":4240,"kind":4194304,"name":"getCategoryQueryParameters","url":"modules/shopperproducts.html#getcategoryqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4241,"kind":65536,"name":"__type","url":"modules/shopperproducts.html#getcategoryqueryparameters-2.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperProducts.getCategoryQueryParameters"},{"id":4242,"kind":32,"name":"levels","url":"modules/shopperproducts.html#getcategoryqueryparameters-2.__type-3.levels-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getCategoryQueryParameters.__type"},{"id":4243,"kind":32,"name":"locale","url":"modules/shopperproducts.html#getcategoryqueryparameters-2.__type-3.locale-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getCategoryQueryParameters.__type"},{"id":4244,"kind":32,"name":"siteId","url":"modules/shopperproducts.html#getcategoryqueryparameters-2.__type-3.siteid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getCategoryQueryParameters.__type"},{"id":4245,"kind":4194304,"name":"getCategoryPathParameters","url":"modules/shopperproducts.html#getcategorypathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4246,"kind":65536,"name":"__type","url":"modules/shopperproducts.html#getcategorypathparameters-2.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperProducts.getCategoryPathParameters"},{"id":4247,"kind":32,"name":"id","url":"modules/shopperproducts.html#getcategorypathparameters-2.__type-2.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getCategoryPathParameters.__type"},{"id":4248,"kind":32,"name":"organizationId","url":"modules/shopperproducts.html#getcategorypathparameters-2.__type-2.organizationid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getCategoryPathParameters.__type"},{"id":4249,"kind":4194304,"name":"getProductQueryParameters","url":"modules/shopperproducts.html#getproductqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4250,"kind":65536,"name":"__type","url":"modules/shopperproducts.html#getproductqueryparameters-2.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperProducts.getProductQueryParameters"},{"id":4251,"kind":32,"name":"inventoryIds","url":"modules/shopperproducts.html#getproductqueryparameters-2.__type-5.inventoryids","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductQueryParameters.__type"},{"id":4252,"kind":32,"name":"expand","url":"modules/shopperproducts.html#getproductqueryparameters-2.__type-5.expand","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductQueryParameters.__type"},{"id":4253,"kind":32,"name":"allImages","url":"modules/shopperproducts.html#getproductqueryparameters-2.__type-5.allimages","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductQueryParameters.__type"},{"id":4254,"kind":32,"name":"perPricebook","url":"modules/shopperproducts.html#getproductqueryparameters-2.__type-5.perpricebook","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductQueryParameters.__type"},{"id":4255,"kind":32,"name":"select","url":"modules/shopperproducts.html#getproductqueryparameters-2.__type-5.select","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductQueryParameters.__type"},{"id":4256,"kind":32,"name":"currency","url":"modules/shopperproducts.html#getproductqueryparameters-2.__type-5.currency","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductQueryParameters.__type"},{"id":4257,"kind":32,"name":"locale","url":"modules/shopperproducts.html#getproductqueryparameters-2.__type-5.locale-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductQueryParameters.__type"},{"id":4258,"kind":32,"name":"siteId","url":"modules/shopperproducts.html#getproductqueryparameters-2.__type-5.siteid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductQueryParameters.__type"},{"id":4259,"kind":4194304,"name":"getProductPathParameters","url":"modules/shopperproducts.html#getproductpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4260,"kind":65536,"name":"__type","url":"modules/shopperproducts.html#getproductpathparameters-2.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperProducts.getProductPathParameters"},{"id":4261,"kind":32,"name":"organizationId","url":"modules/shopperproducts.html#getproductpathparameters-2.__type-4.organizationid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductPathParameters.__type"},{"id":4262,"kind":32,"name":"id","url":"modules/shopperproducts.html#getproductpathparameters-2.__type-4.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductPathParameters.__type"},{"id":4263,"kind":4194304,"name":"getProductsQueryParameters","url":"modules/shopperproducts.html#getproductsqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4264,"kind":65536,"name":"__type","url":"modules/shopperproducts.html#getproductsqueryparameters-2.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperProducts.getProductsQueryParameters"},{"id":4265,"kind":32,"name":"ids","url":"modules/shopperproducts.html#getproductsqueryparameters-2.__type-7.ids-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductsQueryParameters.__type"},{"id":4266,"kind":32,"name":"inventoryIds","url":"modules/shopperproducts.html#getproductsqueryparameters-2.__type-7.inventoryids-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductsQueryParameters.__type"},{"id":4267,"kind":32,"name":"expand","url":"modules/shopperproducts.html#getproductsqueryparameters-2.__type-7.expand-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductsQueryParameters.__type"},{"id":4268,"kind":32,"name":"allImages","url":"modules/shopperproducts.html#getproductsqueryparameters-2.__type-7.allimages-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductsQueryParameters.__type"},{"id":4269,"kind":32,"name":"perPricebook","url":"modules/shopperproducts.html#getproductsqueryparameters-2.__type-7.perpricebook-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductsQueryParameters.__type"},{"id":4270,"kind":32,"name":"siteId","url":"modules/shopperproducts.html#getproductsqueryparameters-2.__type-7.siteid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductsQueryParameters.__type"},{"id":4271,"kind":32,"name":"select","url":"modules/shopperproducts.html#getproductsqueryparameters-2.__type-7.select-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductsQueryParameters.__type"},{"id":4272,"kind":32,"name":"locale","url":"modules/shopperproducts.html#getproductsqueryparameters-2.__type-7.locale-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductsQueryParameters.__type"},{"id":4273,"kind":32,"name":"currency","url":"modules/shopperproducts.html#getproductsqueryparameters-2.__type-7.currency-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductsQueryParameters.__type"},{"id":4274,"kind":4194304,"name":"getProductsPathParameters","url":"modules/shopperproducts.html#getproductspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4275,"kind":65536,"name":"__type","url":"modules/shopperproducts.html#getproductspathparameters-2.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperProducts.getProductsPathParameters"},{"id":4276,"kind":32,"name":"organizationId","url":"modules/shopperproducts.html#getproductspathparameters-2.__type-6.organizationid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductsPathParameters.__type"},{"id":4277,"kind":4194304,"name":"ShopperProductsPathParameters","url":"modules/shopperproducts.html#shopperproductspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4278,"kind":4194304,"name":"ShopperProductsQueryParameters","url":"modules/shopperproducts.html#shopperproductsqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4279,"kind":4194304,"name":"ShopperProductsParameters","url":"modules/shopperproducts.html#shopperproductsparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4280,"kind":16777216,"name":"GetCategoriesLevelsEnum","url":"modules/shopperproducts.html#getcategorieslevelsenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4281,"kind":16777216,"name":"GetCategoryLevelsEnum","url":"modules/shopperproducts.html#getcategorylevelsenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4282,"kind":16777216,"name":"GetProductExpandEnum","url":"modules/shopperproducts.html#getproductexpandenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4283,"kind":16777216,"name":"GetProductsExpandEnum","url":"modules/shopperproducts.html#getproductsexpandenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4284,"kind":16777216,"name":"getCategoriesQueryParameters","url":"modules/shopperproducts.html#getcategoriesqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4285,"kind":16777216,"name":"getCategoriesPathParameters","url":"modules/shopperproducts.html#getcategoriespathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4286,"kind":16777216,"name":"getCategoryQueryParameters","url":"modules/shopperproducts.html#getcategoryqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4287,"kind":16777216,"name":"getCategoryPathParameters","url":"modules/shopperproducts.html#getcategorypathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4288,"kind":16777216,"name":"getProductQueryParameters","url":"modules/shopperproducts.html#getproductqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4289,"kind":16777216,"name":"getProductPathParameters","url":"modules/shopperproducts.html#getproductpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4290,"kind":16777216,"name":"getProductsQueryParameters","url":"modules/shopperproducts.html#getproductsqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4291,"kind":16777216,"name":"getProductsPathParameters","url":"modules/shopperproducts.html#getproductspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4292,"kind":16777216,"name":"ShopperProductsPathParameters","url":"modules/shopperproducts.html#shopperproductspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4293,"kind":16777216,"name":"ShopperProductsQueryParameters","url":"modules/shopperproducts.html#shopperproductsqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4294,"kind":16777216,"name":"ShopperProductsParameters","url":"modules/shopperproducts.html#shopperproductsparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4295,"kind":16777216,"name":"ShopperProducts","url":"modules/shopperproducts.html#shopperproducts-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4296,"kind":16777216,"name":"defaultBaseUri","url":"modules/shopperproducts.html#defaultbaseuri","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4297,"kind":16777216,"name":"GetCategoriesLevelsEnum","url":"modules/shopperproducts.html#getcategorieslevelsenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4298,"kind":16777216,"name":"GetCategoryLevelsEnum","url":"modules/shopperproducts.html#getcategorylevelsenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4299,"kind":16777216,"name":"GetProductExpandEnum","url":"modules/shopperproducts.html#getproductexpandenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4300,"kind":16777216,"name":"GetProductsExpandEnum","url":"modules/shopperproducts.html#getproductsexpandenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4301,"kind":16777216,"name":"getCategoriesQueryParameters","url":"modules/shopperproducts.html#getcategoriesqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4302,"kind":16777216,"name":"getCategoriesPathParameters","url":"modules/shopperproducts.html#getcategoriespathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4303,"kind":16777216,"name":"getCategoryQueryParameters","url":"modules/shopperproducts.html#getcategoryqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4304,"kind":16777216,"name":"getCategoryPathParameters","url":"modules/shopperproducts.html#getcategorypathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4305,"kind":16777216,"name":"getProductQueryParameters","url":"modules/shopperproducts.html#getproductqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4306,"kind":16777216,"name":"getProductPathParameters","url":"modules/shopperproducts.html#getproductpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4307,"kind":16777216,"name":"getProductsQueryParameters","url":"modules/shopperproducts.html#getproductsqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4308,"kind":16777216,"name":"getProductsPathParameters","url":"modules/shopperproducts.html#getproductspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4309,"kind":16777216,"name":"ShopperProductsPathParameters","url":"modules/shopperproducts.html#shopperproductspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4310,"kind":16777216,"name":"ShopperProductsQueryParameters","url":"modules/shopperproducts.html#shopperproductsqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4311,"kind":16777216,"name":"ShopperProductsParameters","url":"modules/shopperproducts.html#shopperproductsparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4312,"kind":16777216,"name":"ShopperProducts","url":"modules/shopperproducts.html#shopperproducts-2","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4313,"kind":16777216,"name":"BundledProduct","url":"modules/shopperproducts.html#bundledproduct-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4314,"kind":16777216,"name":"Category","url":"modules/shopperproducts.html#category-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4315,"kind":16777216,"name":"CategoryResult","url":"modules/shopperproducts.html#categoryresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4316,"kind":16777216,"name":"CurrencyCode","url":"modules/shopperproducts.html#currencycode-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4317,"kind":16777216,"name":"DefaultFallback","url":"modules/shopperproducts.html#defaultfallback-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4318,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperproducts.html#errorresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4319,"kind":16777216,"name":"Image","url":"modules/shopperproducts.html#image-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4320,"kind":16777216,"name":"ImageGroup","url":"modules/shopperproducts.html#imagegroup-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4321,"kind":16777216,"name":"Inventory","url":"modules/shopperproducts.html#inventory-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4322,"kind":16777216,"name":"LocaleCode","url":"modules/shopperproducts.html#localecode-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4323,"kind":16777216,"name":"Master","url":"modules/shopperproducts.html#master-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4324,"kind":16777216,"name":"NoValue","url":"modules/shopperproducts.html#novalue-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4325,"kind":16777216,"name":"Option","url":"modules/shopperproducts.html#option-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4326,"kind":16777216,"name":"OptionValue","url":"modules/shopperproducts.html#optionvalue-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4327,"kind":16777216,"name":"PageMetaTag","url":"modules/shopperproducts.html#pagemetatag-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4328,"kind":16777216,"name":"PathRecord","url":"modules/shopperproducts.html#pathrecord-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4329,"kind":16777216,"name":"PriceRange","url":"modules/shopperproducts.html#pricerange-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4330,"kind":16777216,"name":"Product","url":"modules/shopperproducts.html#product-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4331,"kind":16777216,"name":"ProductLink","url":"modules/shopperproducts.html#productlink-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4332,"kind":16777216,"name":"ProductLinkTypeEnum","url":"modules/shopperproducts.html#productlinktypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4333,"kind":16777216,"name":"ProductPriceTable","url":"modules/shopperproducts.html#productpricetable-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4334,"kind":16777216,"name":"ProductPromotion","url":"modules/shopperproducts.html#productpromotion-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4335,"kind":16777216,"name":"ProductResult","url":"modules/shopperproducts.html#productresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4336,"kind":16777216,"name":"ProductType","url":"modules/shopperproducts.html#producttype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4337,"kind":16777216,"name":"Recommendation","url":"modules/shopperproducts.html#recommendation-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4338,"kind":16777216,"name":"RecommendationType","url":"modules/shopperproducts.html#recommendationtype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4339,"kind":16777216,"name":"ResultBase","url":"modules/shopperproducts.html#resultbase-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4340,"kind":16777216,"name":"Variant","url":"modules/shopperproducts.html#variant-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4341,"kind":16777216,"name":"VariationAttribute","url":"modules/shopperproducts.html#variationattribute-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4342,"kind":16777216,"name":"VariationAttributeValue","url":"modules/shopperproducts.html#variationattributevalue-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4343,"kind":16777216,"name":"VariationGroup","url":"modules/shopperproducts.html#variationgroup-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4344,"kind":2,"name":"ShopperProductsTypes","url":"modules/shopperproducts.shopperproductstypes.html","classes":"tsd-kind-namespace tsd-parent-kind-module","parent":"shopperProducts"},{"id":4345,"kind":4194304,"name":"ShopperProductsPathParameters","url":"modules/shopperproducts.shopperproductstypes.html#shopperproductspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4346,"kind":4194304,"name":"ShopperProductsQueryParameters","url":"modules/shopperproducts.shopperproductstypes.html#shopperproductsqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4347,"kind":4194304,"name":"GetCategoriesLevelsEnum","url":"modules/shopperproducts.shopperproductstypes.html#getcategorieslevelsenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4348,"kind":4194304,"name":"getCategoriesQueryParameters","url":"modules/shopperproducts.shopperproductstypes.html#getcategoriesqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4349,"kind":4194304,"name":"getCategoriesPathParameters","url":"modules/shopperproducts.shopperproductstypes.html#getcategoriespathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4350,"kind":4194304,"name":"GetCategoryLevelsEnum","url":"modules/shopperproducts.shopperproductstypes.html#getcategorylevelsenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4351,"kind":4194304,"name":"getCategoryQueryParameters","url":"modules/shopperproducts.shopperproductstypes.html#getcategoryqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4352,"kind":4194304,"name":"getCategoryPathParameters","url":"modules/shopperproducts.shopperproductstypes.html#getcategorypathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4353,"kind":4194304,"name":"GetProductExpandEnum","url":"modules/shopperproducts.shopperproductstypes.html#getproductexpandenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4354,"kind":4194304,"name":"getProductQueryParameters","url":"modules/shopperproducts.shopperproductstypes.html#getproductqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4355,"kind":4194304,"name":"getProductPathParameters","url":"modules/shopperproducts.shopperproductstypes.html#getproductpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4356,"kind":4194304,"name":"GetProductsExpandEnum","url":"modules/shopperproducts.shopperproductstypes.html#getproductsexpandenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4357,"kind":4194304,"name":"getProductsQueryParameters","url":"modules/shopperproducts.shopperproductstypes.html#getproductsqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4358,"kind":4194304,"name":"getProductsPathParameters","url":"modules/shopperproducts.shopperproductstypes.html#getproductspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4359,"kind":4194304,"name":"BundledProduct","url":"modules/shopperproducts.shopperproductstypes.html#bundledproduct","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4360,"kind":4194304,"name":"Category","url":"modules/shopperproducts.shopperproductstypes.html#category","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4361,"kind":4194304,"name":"CategoryResult","url":"modules/shopperproducts.shopperproductstypes.html#categoryresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4362,"kind":4194304,"name":"CurrencyCode","url":"modules/shopperproducts.shopperproductstypes.html#currencycode","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4363,"kind":4194304,"name":"DefaultFallback","url":"modules/shopperproducts.shopperproductstypes.html#defaultfallback","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4364,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperproducts.shopperproductstypes.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4365,"kind":4194304,"name":"Image","url":"modules/shopperproducts.shopperproductstypes.html#image","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4366,"kind":4194304,"name":"ImageGroup","url":"modules/shopperproducts.shopperproductstypes.html#imagegroup","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4367,"kind":4194304,"name":"Inventory","url":"modules/shopperproducts.shopperproductstypes.html#inventory","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4368,"kind":4194304,"name":"LocaleCode","url":"modules/shopperproducts.shopperproductstypes.html#localecode","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4369,"kind":4194304,"name":"Master","url":"modules/shopperproducts.shopperproductstypes.html#master","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4370,"kind":4194304,"name":"NoValue","url":"modules/shopperproducts.shopperproductstypes.html#novalue","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4371,"kind":4194304,"name":"Option","url":"modules/shopperproducts.shopperproductstypes.html#option","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4372,"kind":4194304,"name":"OptionValue","url":"modules/shopperproducts.shopperproductstypes.html#optionvalue","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4373,"kind":4194304,"name":"PageMetaTag","url":"modules/shopperproducts.shopperproductstypes.html#pagemetatag","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4374,"kind":4194304,"name":"PathRecord","url":"modules/shopperproducts.shopperproductstypes.html#pathrecord","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4375,"kind":4194304,"name":"PriceRange","url":"modules/shopperproducts.shopperproductstypes.html#pricerange","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4376,"kind":4194304,"name":"Product","url":"modules/shopperproducts.shopperproductstypes.html#product","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4377,"kind":4194304,"name":"ProductLink","url":"modules/shopperproducts.shopperproductstypes.html#productlink","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4378,"kind":4194304,"name":"ProductLinkTypeEnum","url":"modules/shopperproducts.shopperproductstypes.html#productlinktypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4379,"kind":4194304,"name":"ProductPriceTable","url":"modules/shopperproducts.shopperproductstypes.html#productpricetable","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4380,"kind":4194304,"name":"ProductPromotion","url":"modules/shopperproducts.shopperproductstypes.html#productpromotion","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4381,"kind":4194304,"name":"ProductResult","url":"modules/shopperproducts.shopperproductstypes.html#productresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4382,"kind":4194304,"name":"ProductType","url":"modules/shopperproducts.shopperproductstypes.html#producttype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4383,"kind":4194304,"name":"Recommendation","url":"modules/shopperproducts.shopperproductstypes.html#recommendation","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4384,"kind":4194304,"name":"RecommendationType","url":"modules/shopperproducts.shopperproductstypes.html#recommendationtype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4385,"kind":4194304,"name":"ResultBase","url":"modules/shopperproducts.shopperproductstypes.html#resultbase","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4386,"kind":4194304,"name":"Variant","url":"modules/shopperproducts.shopperproductstypes.html#variant","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4387,"kind":4194304,"name":"VariationAttribute","url":"modules/shopperproducts.shopperproductstypes.html#variationattribute","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4388,"kind":4194304,"name":"VariationAttributeValue","url":"modules/shopperproducts.shopperproductstypes.html#variationattributevalue","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4389,"kind":4194304,"name":"VariationGroup","url":"modules/shopperproducts.shopperproductstypes.html#variationgroup","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":4390,"kind":1,"name":"shopperPromotions","url":"modules/shopperpromotions.html","classes":"tsd-kind-module"},{"id":4391,"kind":32,"name":"defaultBaseUri","url":"modules/shopperpromotions.html#defaultbaseuri-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4392,"kind":4194304,"name":"DefaultFallback","url":"modules/shopperpromotions.html#defaultfallback-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4393,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperpromotions.html#errorresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4394,"kind":4194304,"name":"LocaleCode","url":"modules/shopperpromotions.html#localecode-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4395,"kind":4194304,"name":"Promotion","url":"modules/shopperpromotions.html#promotion-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4396,"kind":4194304,"name":"PromotionResult","url":"modules/shopperpromotions.html#promotionresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4397,"kind":4194304,"name":"ResultBase","url":"modules/shopperpromotions.html#resultbase-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4398,"kind":16777216,"name":"DefaultFallback","url":"modules/shopperpromotions.html#defaultfallback","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4399,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperpromotions.html#errorresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4400,"kind":16777216,"name":"LocaleCode","url":"modules/shopperpromotions.html#localecode","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4401,"kind":16777216,"name":"Promotion","url":"modules/shopperpromotions.html#promotion","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4402,"kind":16777216,"name":"PromotionResult","url":"modules/shopperpromotions.html#promotionresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4403,"kind":16777216,"name":"ResultBase","url":"modules/shopperpromotions.html#resultbase","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4404,"kind":128,"name":"ShopperPromotions","url":"classes/shopperpromotions.shopperpromotions-3.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"shopperPromotions"},{"id":4405,"kind":1024,"name":"clientConfig","url":"classes/shopperpromotions.shopperpromotions-3.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class","parent":"shopperPromotions.ShopperPromotions"},{"id":4406,"kind":1024,"name":"defaultBaseUri","url":"classes/shopperpromotions.shopperpromotions-3.html#defaultbaseuri","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperPromotions.ShopperPromotions"},{"id":4407,"kind":2097152,"name":"apiPaths","url":"classes/shopperpromotions.shopperpromotions-3.html#apipaths","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-static","parent":"shopperPromotions.ShopperPromotions"},{"id":4408,"kind":32,"name":"getPromotions","url":"classes/shopperpromotions.shopperpromotions-3.html#apipaths.getpromotions-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperPromotions.ShopperPromotions.apiPaths"},{"id":4409,"kind":32,"name":"getPromotionsForCampaign","url":"classes/shopperpromotions.shopperpromotions-3.html#apipaths.getpromotionsforcampaign-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperPromotions.ShopperPromotions.apiPaths"},{"id":4410,"kind":512,"name":"constructor","url":"classes/shopperpromotions.shopperpromotions-3.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"shopperPromotions.ShopperPromotions"},{"id":4411,"kind":1024,"name":"paramKeys","url":"classes/shopperpromotions.shopperpromotions-3.html#paramkeys","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperPromotions.ShopperPromotions"},{"id":4412,"kind":65536,"name":"__type","url":"classes/shopperpromotions.shopperpromotions-3.html#paramkeys.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"shopperPromotions.ShopperPromotions.paramKeys"},{"id":4413,"kind":32,"name":"getPromotions","url":"classes/shopperpromotions.shopperpromotions-3.html#paramkeys.__type.getpromotions","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperPromotions.ShopperPromotions.paramKeys.__type"},{"id":4414,"kind":32,"name":"getPromotionsRequired","url":"classes/shopperpromotions.shopperpromotions-3.html#paramkeys.__type.getpromotionsrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperPromotions.ShopperPromotions.paramKeys.__type"},{"id":4415,"kind":32,"name":"getPromotionsForCampaign","url":"classes/shopperpromotions.shopperpromotions-3.html#paramkeys.__type.getpromotionsforcampaign","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperPromotions.ShopperPromotions.paramKeys.__type"},{"id":4416,"kind":32,"name":"getPromotionsForCampaignRequired","url":"classes/shopperpromotions.shopperpromotions-3.html#paramkeys.__type.getpromotionsforcampaignrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperPromotions.ShopperPromotions.paramKeys.__type"},{"id":4417,"kind":2048,"name":"getPromotions","url":"classes/shopperpromotions.shopperpromotions-3.html#getpromotions-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperPromotions.ShopperPromotions"},{"id":4418,"kind":2048,"name":"getPromotionsForCampaign","url":"classes/shopperpromotions.shopperpromotions-3.html#getpromotionsforcampaign-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperPromotions.ShopperPromotions"},{"id":4419,"kind":4194304,"name":"getPromotionsQueryParameters","url":"modules/shopperpromotions.html#getpromotionsqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4420,"kind":65536,"name":"__type","url":"modules/shopperpromotions.html#getpromotionsqueryparameters-2.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperPromotions.getPromotionsQueryParameters"},{"id":4421,"kind":32,"name":"siteId","url":"modules/shopperpromotions.html#getpromotionsqueryparameters-2.__type-3.siteid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperPromotions.getPromotionsQueryParameters.__type"},{"id":4422,"kind":32,"name":"ids","url":"modules/shopperpromotions.html#getpromotionsqueryparameters-2.__type-3.ids","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperPromotions.getPromotionsQueryParameters.__type"},{"id":4423,"kind":32,"name":"locale","url":"modules/shopperpromotions.html#getpromotionsqueryparameters-2.__type-3.locale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperPromotions.getPromotionsQueryParameters.__type"},{"id":4424,"kind":4194304,"name":"getPromotionsPathParameters","url":"modules/shopperpromotions.html#getpromotionspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4425,"kind":65536,"name":"__type","url":"modules/shopperpromotions.html#getpromotionspathparameters-2.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperPromotions.getPromotionsPathParameters"},{"id":4426,"kind":32,"name":"organizationId","url":"modules/shopperpromotions.html#getpromotionspathparameters-2.__type-2.organizationid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperPromotions.getPromotionsPathParameters.__type"},{"id":4427,"kind":4194304,"name":"getPromotionsForCampaignQueryParameters","url":"modules/shopperpromotions.html#getpromotionsforcampaignqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4428,"kind":65536,"name":"__type","url":"modules/shopperpromotions.html#getpromotionsforcampaignqueryparameters-2.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperPromotions.getPromotionsForCampaignQueryParameters"},{"id":4429,"kind":32,"name":"siteId","url":"modules/shopperpromotions.html#getpromotionsforcampaignqueryparameters-2.__type-1.siteid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperPromotions.getPromotionsForCampaignQueryParameters.__type"},{"id":4430,"kind":32,"name":"startDate","url":"modules/shopperpromotions.html#getpromotionsforcampaignqueryparameters-2.__type-1.startdate","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperPromotions.getPromotionsForCampaignQueryParameters.__type"},{"id":4431,"kind":32,"name":"endDate","url":"modules/shopperpromotions.html#getpromotionsforcampaignqueryparameters-2.__type-1.enddate","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperPromotions.getPromotionsForCampaignQueryParameters.__type"},{"id":4432,"kind":32,"name":"currency","url":"modules/shopperpromotions.html#getpromotionsforcampaignqueryparameters-2.__type-1.currency","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperPromotions.getPromotionsForCampaignQueryParameters.__type"},{"id":4433,"kind":4194304,"name":"getPromotionsForCampaignPathParameters","url":"modules/shopperpromotions.html#getpromotionsforcampaignpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4434,"kind":65536,"name":"__type","url":"modules/shopperpromotions.html#getpromotionsforcampaignpathparameters-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperPromotions.getPromotionsForCampaignPathParameters"},{"id":4435,"kind":32,"name":"campaignId","url":"modules/shopperpromotions.html#getpromotionsforcampaignpathparameters-2.__type.campaignid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperPromotions.getPromotionsForCampaignPathParameters.__type"},{"id":4436,"kind":32,"name":"organizationId","url":"modules/shopperpromotions.html#getpromotionsforcampaignpathparameters-2.__type.organizationid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperPromotions.getPromotionsForCampaignPathParameters.__type"},{"id":4437,"kind":4194304,"name":"ShopperPromotionsPathParameters","url":"modules/shopperpromotions.html#shopperpromotionspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4438,"kind":4194304,"name":"ShopperPromotionsQueryParameters","url":"modules/shopperpromotions.html#shopperpromotionsqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4439,"kind":4194304,"name":"ShopperPromotionsParameters","url":"modules/shopperpromotions.html#shopperpromotionsparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4440,"kind":16777216,"name":"getPromotionsQueryParameters","url":"modules/shopperpromotions.html#getpromotionsqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4441,"kind":16777216,"name":"getPromotionsPathParameters","url":"modules/shopperpromotions.html#getpromotionspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4442,"kind":16777216,"name":"getPromotionsForCampaignQueryParameters","url":"modules/shopperpromotions.html#getpromotionsforcampaignqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4443,"kind":16777216,"name":"getPromotionsForCampaignPathParameters","url":"modules/shopperpromotions.html#getpromotionsforcampaignpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4444,"kind":16777216,"name":"ShopperPromotionsPathParameters","url":"modules/shopperpromotions.html#shopperpromotionspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4445,"kind":16777216,"name":"ShopperPromotionsQueryParameters","url":"modules/shopperpromotions.html#shopperpromotionsqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4446,"kind":16777216,"name":"ShopperPromotionsParameters","url":"modules/shopperpromotions.html#shopperpromotionsparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4447,"kind":16777216,"name":"ShopperPromotions","url":"modules/shopperpromotions.html#shopperpromotions-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4448,"kind":16777216,"name":"defaultBaseUri","url":"modules/shopperpromotions.html#defaultbaseuri","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4449,"kind":16777216,"name":"getPromotionsQueryParameters","url":"modules/shopperpromotions.html#getpromotionsqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4450,"kind":16777216,"name":"getPromotionsPathParameters","url":"modules/shopperpromotions.html#getpromotionspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4451,"kind":16777216,"name":"getPromotionsForCampaignQueryParameters","url":"modules/shopperpromotions.html#getpromotionsforcampaignqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4452,"kind":16777216,"name":"getPromotionsForCampaignPathParameters","url":"modules/shopperpromotions.html#getpromotionsforcampaignpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4453,"kind":16777216,"name":"ShopperPromotionsPathParameters","url":"modules/shopperpromotions.html#shopperpromotionspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4454,"kind":16777216,"name":"ShopperPromotionsQueryParameters","url":"modules/shopperpromotions.html#shopperpromotionsqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4455,"kind":16777216,"name":"ShopperPromotionsParameters","url":"modules/shopperpromotions.html#shopperpromotionsparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4456,"kind":16777216,"name":"ShopperPromotions","url":"modules/shopperpromotions.html#shopperpromotions-2","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4457,"kind":16777216,"name":"DefaultFallback","url":"modules/shopperpromotions.html#defaultfallback-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4458,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperpromotions.html#errorresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4459,"kind":16777216,"name":"LocaleCode","url":"modules/shopperpromotions.html#localecode-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4460,"kind":16777216,"name":"Promotion","url":"modules/shopperpromotions.html#promotion-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4461,"kind":16777216,"name":"PromotionResult","url":"modules/shopperpromotions.html#promotionresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4462,"kind":16777216,"name":"ResultBase","url":"modules/shopperpromotions.html#resultbase-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4463,"kind":2,"name":"ShopperPromotionsTypes","url":"modules/shopperpromotions.shopperpromotionstypes.html","classes":"tsd-kind-namespace tsd-parent-kind-module","parent":"shopperPromotions"},{"id":4464,"kind":4194304,"name":"ShopperPromotionsPathParameters","url":"modules/shopperpromotions.shopperpromotionstypes.html#shopperpromotionspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperPromotions.ShopperPromotionsTypes"},{"id":4465,"kind":4194304,"name":"ShopperPromotionsQueryParameters","url":"modules/shopperpromotions.shopperpromotionstypes.html#shopperpromotionsqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperPromotions.ShopperPromotionsTypes"},{"id":4466,"kind":4194304,"name":"getPromotionsQueryParameters","url":"modules/shopperpromotions.shopperpromotionstypes.html#getpromotionsqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperPromotions.ShopperPromotionsTypes"},{"id":4467,"kind":4194304,"name":"getPromotionsPathParameters","url":"modules/shopperpromotions.shopperpromotionstypes.html#getpromotionspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperPromotions.ShopperPromotionsTypes"},{"id":4468,"kind":4194304,"name":"getPromotionsForCampaignQueryParameters","url":"modules/shopperpromotions.shopperpromotionstypes.html#getpromotionsforcampaignqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperPromotions.ShopperPromotionsTypes"},{"id":4469,"kind":4194304,"name":"getPromotionsForCampaignPathParameters","url":"modules/shopperpromotions.shopperpromotionstypes.html#getpromotionsforcampaignpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperPromotions.ShopperPromotionsTypes"},{"id":4470,"kind":4194304,"name":"DefaultFallback","url":"modules/shopperpromotions.shopperpromotionstypes.html#defaultfallback","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperPromotions.ShopperPromotionsTypes"},{"id":4471,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperpromotions.shopperpromotionstypes.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperPromotions.ShopperPromotionsTypes"},{"id":4472,"kind":4194304,"name":"LocaleCode","url":"modules/shopperpromotions.shopperpromotionstypes.html#localecode","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperPromotions.ShopperPromotionsTypes"},{"id":4473,"kind":4194304,"name":"Promotion","url":"modules/shopperpromotions.shopperpromotionstypes.html#promotion","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperPromotions.ShopperPromotionsTypes"},{"id":4474,"kind":4194304,"name":"PromotionResult","url":"modules/shopperpromotions.shopperpromotionstypes.html#promotionresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperPromotions.ShopperPromotionsTypes"},{"id":4475,"kind":4194304,"name":"ResultBase","url":"modules/shopperpromotions.shopperpromotionstypes.html#resultbase","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperPromotions.ShopperPromotionsTypes"},{"id":4476,"kind":1,"name":"shopperSearch","url":"modules/shoppersearch.html","classes":"tsd-kind-module"},{"id":4477,"kind":32,"name":"defaultBaseUri","url":"modules/shoppersearch.html#defaultbaseuri-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"shopperSearch"},{"id":4478,"kind":4194304,"name":"SuggestedTerm","url":"modules/shoppersearch.html#suggestedterm-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4479,"kind":4194304,"name":"SuggestedTerms","url":"modules/shoppersearch.html#suggestedterms-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4480,"kind":4194304,"name":"SuggestedPhrase","url":"modules/shoppersearch.html#suggestedphrase-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4481,"kind":4194304,"name":"BrandSuggestions","url":"modules/shoppersearch.html#brandsuggestions-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4482,"kind":4194304,"name":"SuggestedCategory","url":"modules/shoppersearch.html#suggestedcategory-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4483,"kind":4194304,"name":"CategorySuggestions","url":"modules/shoppersearch.html#categorysuggestions-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4484,"kind":4194304,"name":"NoValue","url":"modules/shoppersearch.html#novalue-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4485,"kind":4194304,"name":"CurrencyCode","url":"modules/shoppersearch.html#currencycode-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4486,"kind":4194304,"name":"CustomSuggestions","url":"modules/shoppersearch.html#customsuggestions-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4487,"kind":4194304,"name":"DefaultFallback","url":"modules/shoppersearch.html#defaultfallback-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4488,"kind":4194304,"name":"EinsteinSuggestedPhrases","url":"modules/shoppersearch.html#einsteinsuggestedphrases-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4489,"kind":4194304,"name":"ErrorResponse","url":"modules/shoppersearch.html#errorresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4490,"kind":4194304,"name":"Image","url":"modules/shoppersearch.html#image-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4491,"kind":4194304,"name":"VariationAttributeValue","url":"modules/shoppersearch.html#variationattributevalue-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4492,"kind":4194304,"name":"VariationAttribute","url":"modules/shoppersearch.html#variationattribute-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4493,"kind":4194304,"name":"ImageGroup","url":"modules/shoppersearch.html#imagegroup-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4494,"kind":4194304,"name":"LocaleCode","url":"modules/shoppersearch.html#localecode-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4495,"kind":4194304,"name":"PageMetaTag","url":"modules/shoppersearch.html#pagemetatag-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4496,"kind":4194304,"name":"PaginatedResultBase","url":"modules/shoppersearch.html#paginatedresultbase-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4497,"kind":4194304,"name":"PriceRange","url":"modules/shoppersearch.html#pricerange-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4498,"kind":4194304,"name":"ProductPriceTable","url":"modules/shoppersearch.html#productpricetable-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4499,"kind":4194304,"name":"ProductPromotion","url":"modules/shoppersearch.html#productpromotion-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4500,"kind":4194304,"name":"ProductRef","url":"modules/shoppersearch.html#productref-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4501,"kind":4194304,"name":"Variant","url":"modules/shoppersearch.html#variant-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4502,"kind":4194304,"name":"VariationGroup","url":"modules/shoppersearch.html#variationgroup-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4503,"kind":4194304,"name":"ProductType","url":"modules/shoppersearch.html#producttype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4504,"kind":4194304,"name":"ProductSearchHit","url":"modules/shoppersearch.html#productsearchhit-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4505,"kind":4194304,"name":"ProductSearchRefinementValue","url":"modules/shoppersearch.html#productsearchrefinementvalue-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4506,"kind":4194304,"name":"ProductSearchRefinement","url":"modules/shoppersearch.html#productsearchrefinement-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4507,"kind":4194304,"name":"Suggestion","url":"modules/shoppersearch.html#suggestion-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4508,"kind":4194304,"name":"ProductSearchSortingOption","url":"modules/shoppersearch.html#productsearchsortingoption-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4509,"kind":4194304,"name":"ProductSearchResult","url":"modules/shoppersearch.html#productsearchresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4510,"kind":4194304,"name":"SuggestedProduct","url":"modules/shoppersearch.html#suggestedproduct-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4511,"kind":4194304,"name":"ProductSuggestions","url":"modules/shoppersearch.html#productsuggestions-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4512,"kind":4194304,"name":"ResultBase","url":"modules/shoppersearch.html#resultbase-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4513,"kind":4194304,"name":"SuggestionResult","url":"modules/shoppersearch.html#suggestionresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4514,"kind":16777216,"name":"BrandSuggestions","url":"modules/shoppersearch.html#brandsuggestions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4515,"kind":16777216,"name":"CategorySuggestions","url":"modules/shoppersearch.html#categorysuggestions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4516,"kind":16777216,"name":"CurrencyCode","url":"modules/shoppersearch.html#currencycode","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4517,"kind":16777216,"name":"CustomSuggestions","url":"modules/shoppersearch.html#customsuggestions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4518,"kind":16777216,"name":"DefaultFallback","url":"modules/shoppersearch.html#defaultfallback","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4519,"kind":16777216,"name":"EinsteinSuggestedPhrases","url":"modules/shoppersearch.html#einsteinsuggestedphrases","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4520,"kind":16777216,"name":"ErrorResponse","url":"modules/shoppersearch.html#errorresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4521,"kind":16777216,"name":"Image","url":"modules/shoppersearch.html#image","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4522,"kind":16777216,"name":"ImageGroup","url":"modules/shoppersearch.html#imagegroup","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4523,"kind":16777216,"name":"LocaleCode","url":"modules/shoppersearch.html#localecode","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4524,"kind":16777216,"name":"NoValue","url":"modules/shoppersearch.html#novalue","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4525,"kind":16777216,"name":"PageMetaTag","url":"modules/shoppersearch.html#pagemetatag","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4526,"kind":16777216,"name":"PaginatedResultBase","url":"modules/shoppersearch.html#paginatedresultbase","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4527,"kind":16777216,"name":"PriceRange","url":"modules/shoppersearch.html#pricerange","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4528,"kind":16777216,"name":"ProductPriceTable","url":"modules/shoppersearch.html#productpricetable","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4529,"kind":16777216,"name":"ProductPromotion","url":"modules/shoppersearch.html#productpromotion","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4530,"kind":16777216,"name":"ProductRef","url":"modules/shoppersearch.html#productref","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4531,"kind":16777216,"name":"ProductSearchHit","url":"modules/shoppersearch.html#productsearchhit","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4532,"kind":16777216,"name":"ProductSearchRefinement","url":"modules/shoppersearch.html#productsearchrefinement","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4533,"kind":16777216,"name":"ProductSearchRefinementValue","url":"modules/shoppersearch.html#productsearchrefinementvalue","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4534,"kind":16777216,"name":"ProductSearchResult","url":"modules/shoppersearch.html#productsearchresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4535,"kind":16777216,"name":"ProductSearchSortingOption","url":"modules/shoppersearch.html#productsearchsortingoption","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4536,"kind":16777216,"name":"ProductSuggestions","url":"modules/shoppersearch.html#productsuggestions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4537,"kind":16777216,"name":"ProductType","url":"modules/shoppersearch.html#producttype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4538,"kind":16777216,"name":"ResultBase","url":"modules/shoppersearch.html#resultbase","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4539,"kind":16777216,"name":"SuggestedCategory","url":"modules/shoppersearch.html#suggestedcategory","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4540,"kind":16777216,"name":"SuggestedPhrase","url":"modules/shoppersearch.html#suggestedphrase","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4541,"kind":16777216,"name":"SuggestedProduct","url":"modules/shoppersearch.html#suggestedproduct","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4542,"kind":16777216,"name":"SuggestedTerm","url":"modules/shoppersearch.html#suggestedterm","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4543,"kind":16777216,"name":"SuggestedTerms","url":"modules/shoppersearch.html#suggestedterms","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4544,"kind":16777216,"name":"Suggestion","url":"modules/shoppersearch.html#suggestion","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4545,"kind":16777216,"name":"SuggestionResult","url":"modules/shoppersearch.html#suggestionresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4546,"kind":16777216,"name":"Variant","url":"modules/shoppersearch.html#variant","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4547,"kind":16777216,"name":"VariationAttribute","url":"modules/shoppersearch.html#variationattribute","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4548,"kind":16777216,"name":"VariationAttributeValue","url":"modules/shoppersearch.html#variationattributevalue","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4549,"kind":16777216,"name":"VariationGroup","url":"modules/shoppersearch.html#variationgroup","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4550,"kind":128,"name":"ShopperSearch","url":"classes/shoppersearch.shoppersearch-3.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"shopperSearch"},{"id":4551,"kind":1024,"name":"clientConfig","url":"classes/shoppersearch.shoppersearch-3.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class","parent":"shopperSearch.ShopperSearch"},{"id":4552,"kind":1024,"name":"defaultBaseUri","url":"classes/shoppersearch.shoppersearch-3.html#defaultbaseuri","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperSearch.ShopperSearch"},{"id":4553,"kind":2097152,"name":"apiPaths","url":"classes/shoppersearch.shoppersearch-3.html#apipaths","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-static","parent":"shopperSearch.ShopperSearch"},{"id":4554,"kind":32,"name":"getSearchSuggestions","url":"classes/shoppersearch.shoppersearch-3.html#apipaths.getsearchsuggestions-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperSearch.ShopperSearch.apiPaths"},{"id":4555,"kind":32,"name":"productSearch","url":"classes/shoppersearch.shoppersearch-3.html#apipaths.productsearch-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperSearch.ShopperSearch.apiPaths"},{"id":4556,"kind":512,"name":"constructor","url":"classes/shoppersearch.shoppersearch-3.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"shopperSearch.ShopperSearch"},{"id":4557,"kind":1024,"name":"paramKeys","url":"classes/shoppersearch.shoppersearch-3.html#paramkeys","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperSearch.ShopperSearch"},{"id":4558,"kind":65536,"name":"__type","url":"classes/shoppersearch.shoppersearch-3.html#paramkeys.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"shopperSearch.ShopperSearch.paramKeys"},{"id":4559,"kind":32,"name":"getSearchSuggestions","url":"classes/shoppersearch.shoppersearch-3.html#paramkeys.__type.getsearchsuggestions","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.ShopperSearch.paramKeys.__type"},{"id":4560,"kind":32,"name":"getSearchSuggestionsRequired","url":"classes/shoppersearch.shoppersearch-3.html#paramkeys.__type.getsearchsuggestionsrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.ShopperSearch.paramKeys.__type"},{"id":4561,"kind":32,"name":"productSearch","url":"classes/shoppersearch.shoppersearch-3.html#paramkeys.__type.productsearch","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.ShopperSearch.paramKeys.__type"},{"id":4562,"kind":32,"name":"productSearchRequired","url":"classes/shoppersearch.shoppersearch-3.html#paramkeys.__type.productsearchrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.ShopperSearch.paramKeys.__type"},{"id":4563,"kind":2048,"name":"getSearchSuggestions","url":"classes/shoppersearch.shoppersearch-3.html#getsearchsuggestions-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperSearch.ShopperSearch"},{"id":4564,"kind":2048,"name":"productSearch","url":"classes/shoppersearch.shoppersearch-3.html#productsearch-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperSearch.ShopperSearch"},{"id":4565,"kind":4194304,"name":"GetSearchSuggestionsExpandEnum","url":"modules/shoppersearch.html#getsearchsuggestionsexpandenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4566,"kind":4194304,"name":"ProductSearchExpandEnum","url":"modules/shoppersearch.html#productsearchexpandenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4567,"kind":4194304,"name":"getSearchSuggestionsQueryParameters","url":"modules/shoppersearch.html#getsearchsuggestionsqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4568,"kind":65536,"name":"__type","url":"modules/shoppersearch.html#getsearchsuggestionsqueryparameters-2.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperSearch.getSearchSuggestionsQueryParameters"},{"id":4569,"kind":32,"name":"siteId","url":"modules/shoppersearch.html#getsearchsuggestionsqueryparameters-2.__type-1.siteid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.getSearchSuggestionsQueryParameters.__type"},{"id":4570,"kind":32,"name":"q","url":"modules/shoppersearch.html#getsearchsuggestionsqueryparameters-2.__type-1.q","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.getSearchSuggestionsQueryParameters.__type"},{"id":4571,"kind":32,"name":"limit","url":"modules/shoppersearch.html#getsearchsuggestionsqueryparameters-2.__type-1.limit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.getSearchSuggestionsQueryParameters.__type"},{"id":4572,"kind":32,"name":"currency","url":"modules/shoppersearch.html#getsearchsuggestionsqueryparameters-2.__type-1.currency","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.getSearchSuggestionsQueryParameters.__type"},{"id":4573,"kind":32,"name":"locale","url":"modules/shoppersearch.html#getsearchsuggestionsqueryparameters-2.__type-1.locale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.getSearchSuggestionsQueryParameters.__type"},{"id":4574,"kind":32,"name":"expand","url":"modules/shoppersearch.html#getsearchsuggestionsqueryparameters-2.__type-1.expand","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.getSearchSuggestionsQueryParameters.__type"},{"id":4575,"kind":32,"name":"includedCustomProductProperties","url":"modules/shoppersearch.html#getsearchsuggestionsqueryparameters-2.__type-1.includedcustomproductproperties","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.getSearchSuggestionsQueryParameters.__type"},{"id":4576,"kind":32,"name":"includeEinsteinSuggestedPhrases","url":"modules/shoppersearch.html#getsearchsuggestionsqueryparameters-2.__type-1.includeeinsteinsuggestedphrases","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.getSearchSuggestionsQueryParameters.__type"},{"id":4577,"kind":4194304,"name":"getSearchSuggestionsPathParameters","url":"modules/shoppersearch.html#getsearchsuggestionspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4578,"kind":65536,"name":"__type","url":"modules/shoppersearch.html#getsearchsuggestionspathparameters-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperSearch.getSearchSuggestionsPathParameters"},{"id":4579,"kind":32,"name":"organizationId","url":"modules/shoppersearch.html#getsearchsuggestionspathparameters-2.__type.organizationid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.getSearchSuggestionsPathParameters.__type"},{"id":4580,"kind":4194304,"name":"productSearchQueryParameters","url":"modules/shoppersearch.html#productsearchqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4581,"kind":65536,"name":"__type","url":"modules/shoppersearch.html#productsearchqueryparameters-2.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperSearch.productSearchQueryParameters"},{"id":4582,"kind":32,"name":"select","url":"modules/shoppersearch.html#productsearchqueryparameters-2.__type-3.select","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.productSearchQueryParameters.__type"},{"id":4583,"kind":32,"name":"siteId","url":"modules/shoppersearch.html#productsearchqueryparameters-2.__type-3.siteid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.productSearchQueryParameters.__type"},{"id":4584,"kind":32,"name":"q","url":"modules/shoppersearch.html#productsearchqueryparameters-2.__type-3.q-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.productSearchQueryParameters.__type"},{"id":4585,"kind":32,"name":"refine","url":"modules/shoppersearch.html#productsearchqueryparameters-2.__type-3.refine","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.productSearchQueryParameters.__type"},{"id":4586,"kind":32,"name":"sort","url":"modules/shoppersearch.html#productsearchqueryparameters-2.__type-3.sort","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.productSearchQueryParameters.__type"},{"id":4587,"kind":32,"name":"currency","url":"modules/shoppersearch.html#productsearchqueryparameters-2.__type-3.currency-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.productSearchQueryParameters.__type"},{"id":4588,"kind":32,"name":"locale","url":"modules/shoppersearch.html#productsearchqueryparameters-2.__type-3.locale-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.productSearchQueryParameters.__type"},{"id":4589,"kind":32,"name":"expand","url":"modules/shoppersearch.html#productsearchqueryparameters-2.__type-3.expand-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.productSearchQueryParameters.__type"},{"id":4590,"kind":32,"name":"allImages","url":"modules/shoppersearch.html#productsearchqueryparameters-2.__type-3.allimages","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.productSearchQueryParameters.__type"},{"id":4591,"kind":32,"name":"perPricebook","url":"modules/shoppersearch.html#productsearchqueryparameters-2.__type-3.perpricebook","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.productSearchQueryParameters.__type"},{"id":4592,"kind":32,"name":"allVariationProperties","url":"modules/shoppersearch.html#productsearchqueryparameters-2.__type-3.allvariationproperties","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.productSearchQueryParameters.__type"},{"id":4593,"kind":32,"name":"includedCustomVariationProperties","url":"modules/shoppersearch.html#productsearchqueryparameters-2.__type-3.includedcustomvariationproperties","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.productSearchQueryParameters.__type"},{"id":4594,"kind":32,"name":"limit","url":"modules/shoppersearch.html#productsearchqueryparameters-2.__type-3.limit-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.productSearchQueryParameters.__type"},{"id":4595,"kind":32,"name":"offset","url":"modules/shoppersearch.html#productsearchqueryparameters-2.__type-3.offset","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.productSearchQueryParameters.__type"},{"id":4596,"kind":4194304,"name":"productSearchPathParameters","url":"modules/shoppersearch.html#productsearchpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4597,"kind":65536,"name":"__type","url":"modules/shoppersearch.html#productsearchpathparameters-2.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperSearch.productSearchPathParameters"},{"id":4598,"kind":32,"name":"organizationId","url":"modules/shoppersearch.html#productsearchpathparameters-2.__type-2.organizationid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.productSearchPathParameters.__type"},{"id":4599,"kind":4194304,"name":"ShopperSearchPathParameters","url":"modules/shoppersearch.html#shoppersearchpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4600,"kind":4194304,"name":"ShopperSearchQueryParameters","url":"modules/shoppersearch.html#shoppersearchqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4601,"kind":4194304,"name":"ShopperSearchParameters","url":"modules/shoppersearch.html#shoppersearchparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":4602,"kind":16777216,"name":"GetSearchSuggestionsExpandEnum","url":"modules/shoppersearch.html#getsearchsuggestionsexpandenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4603,"kind":16777216,"name":"ProductSearchExpandEnum","url":"modules/shoppersearch.html#productsearchexpandenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4604,"kind":16777216,"name":"getSearchSuggestionsQueryParameters","url":"modules/shoppersearch.html#getsearchsuggestionsqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4605,"kind":16777216,"name":"getSearchSuggestionsPathParameters","url":"modules/shoppersearch.html#getsearchsuggestionspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4606,"kind":16777216,"name":"productSearchQueryParameters","url":"modules/shoppersearch.html#productsearchqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4607,"kind":16777216,"name":"productSearchPathParameters","url":"modules/shoppersearch.html#productsearchpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4608,"kind":16777216,"name":"ShopperSearchPathParameters","url":"modules/shoppersearch.html#shoppersearchpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4609,"kind":16777216,"name":"ShopperSearchQueryParameters","url":"modules/shoppersearch.html#shoppersearchqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4610,"kind":16777216,"name":"ShopperSearchParameters","url":"modules/shoppersearch.html#shoppersearchparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4611,"kind":16777216,"name":"ShopperSearch","url":"modules/shoppersearch.html#shoppersearch-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4612,"kind":16777216,"name":"defaultBaseUri","url":"modules/shoppersearch.html#defaultbaseuri","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4613,"kind":16777216,"name":"GetSearchSuggestionsExpandEnum","url":"modules/shoppersearch.html#getsearchsuggestionsexpandenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4614,"kind":16777216,"name":"ProductSearchExpandEnum","url":"modules/shoppersearch.html#productsearchexpandenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4615,"kind":16777216,"name":"getSearchSuggestionsQueryParameters","url":"modules/shoppersearch.html#getsearchsuggestionsqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4616,"kind":16777216,"name":"getSearchSuggestionsPathParameters","url":"modules/shoppersearch.html#getsearchsuggestionspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4617,"kind":16777216,"name":"productSearchQueryParameters","url":"modules/shoppersearch.html#productsearchqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4618,"kind":16777216,"name":"productSearchPathParameters","url":"modules/shoppersearch.html#productsearchpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4619,"kind":16777216,"name":"ShopperSearchPathParameters","url":"modules/shoppersearch.html#shoppersearchpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4620,"kind":16777216,"name":"ShopperSearchQueryParameters","url":"modules/shoppersearch.html#shoppersearchqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4621,"kind":16777216,"name":"ShopperSearchParameters","url":"modules/shoppersearch.html#shoppersearchparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4622,"kind":16777216,"name":"ShopperSearch","url":"modules/shoppersearch.html#shoppersearch-2","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4623,"kind":16777216,"name":"BrandSuggestions","url":"modules/shoppersearch.html#brandsuggestions-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4624,"kind":16777216,"name":"CategorySuggestions","url":"modules/shoppersearch.html#categorysuggestions-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4625,"kind":16777216,"name":"CurrencyCode","url":"modules/shoppersearch.html#currencycode-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4626,"kind":16777216,"name":"CustomSuggestions","url":"modules/shoppersearch.html#customsuggestions-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4627,"kind":16777216,"name":"DefaultFallback","url":"modules/shoppersearch.html#defaultfallback-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4628,"kind":16777216,"name":"EinsteinSuggestedPhrases","url":"modules/shoppersearch.html#einsteinsuggestedphrases-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4629,"kind":16777216,"name":"ErrorResponse","url":"modules/shoppersearch.html#errorresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4630,"kind":16777216,"name":"Image","url":"modules/shoppersearch.html#image-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4631,"kind":16777216,"name":"ImageGroup","url":"modules/shoppersearch.html#imagegroup-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4632,"kind":16777216,"name":"LocaleCode","url":"modules/shoppersearch.html#localecode-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4633,"kind":16777216,"name":"NoValue","url":"modules/shoppersearch.html#novalue-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4634,"kind":16777216,"name":"PageMetaTag","url":"modules/shoppersearch.html#pagemetatag-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4635,"kind":16777216,"name":"PaginatedResultBase","url":"modules/shoppersearch.html#paginatedresultbase-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4636,"kind":16777216,"name":"PriceRange","url":"modules/shoppersearch.html#pricerange-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4637,"kind":16777216,"name":"ProductPriceTable","url":"modules/shoppersearch.html#productpricetable-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4638,"kind":16777216,"name":"ProductPromotion","url":"modules/shoppersearch.html#productpromotion-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4639,"kind":16777216,"name":"ProductRef","url":"modules/shoppersearch.html#productref-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4640,"kind":16777216,"name":"ProductSearchHit","url":"modules/shoppersearch.html#productsearchhit-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4641,"kind":16777216,"name":"ProductSearchRefinement","url":"modules/shoppersearch.html#productsearchrefinement-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4642,"kind":16777216,"name":"ProductSearchRefinementValue","url":"modules/shoppersearch.html#productsearchrefinementvalue-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4643,"kind":16777216,"name":"ProductSearchResult","url":"modules/shoppersearch.html#productsearchresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4644,"kind":16777216,"name":"ProductSearchSortingOption","url":"modules/shoppersearch.html#productsearchsortingoption-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4645,"kind":16777216,"name":"ProductSuggestions","url":"modules/shoppersearch.html#productsuggestions-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4646,"kind":16777216,"name":"ProductType","url":"modules/shoppersearch.html#producttype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4647,"kind":16777216,"name":"ResultBase","url":"modules/shoppersearch.html#resultbase-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4648,"kind":16777216,"name":"SuggestedCategory","url":"modules/shoppersearch.html#suggestedcategory-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4649,"kind":16777216,"name":"SuggestedPhrase","url":"modules/shoppersearch.html#suggestedphrase-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4650,"kind":16777216,"name":"SuggestedProduct","url":"modules/shoppersearch.html#suggestedproduct-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4651,"kind":16777216,"name":"SuggestedTerm","url":"modules/shoppersearch.html#suggestedterm-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4652,"kind":16777216,"name":"SuggestedTerms","url":"modules/shoppersearch.html#suggestedterms-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4653,"kind":16777216,"name":"Suggestion","url":"modules/shoppersearch.html#suggestion-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4654,"kind":16777216,"name":"SuggestionResult","url":"modules/shoppersearch.html#suggestionresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4655,"kind":16777216,"name":"Variant","url":"modules/shoppersearch.html#variant-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4656,"kind":16777216,"name":"VariationAttribute","url":"modules/shoppersearch.html#variationattribute-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4657,"kind":16777216,"name":"VariationAttributeValue","url":"modules/shoppersearch.html#variationattributevalue-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4658,"kind":16777216,"name":"VariationGroup","url":"modules/shoppersearch.html#variationgroup-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":4659,"kind":2,"name":"ShopperSearchTypes","url":"modules/shoppersearch.shoppersearchtypes.html","classes":"tsd-kind-namespace tsd-parent-kind-module","parent":"shopperSearch"},{"id":4660,"kind":4194304,"name":"ShopperSearchPathParameters","url":"modules/shoppersearch.shoppersearchtypes.html#shoppersearchpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4661,"kind":4194304,"name":"ShopperSearchQueryParameters","url":"modules/shoppersearch.shoppersearchtypes.html#shoppersearchqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4662,"kind":4194304,"name":"GetSearchSuggestionsExpandEnum","url":"modules/shoppersearch.shoppersearchtypes.html#getsearchsuggestionsexpandenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4663,"kind":4194304,"name":"getSearchSuggestionsQueryParameters","url":"modules/shoppersearch.shoppersearchtypes.html#getsearchsuggestionsqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4664,"kind":4194304,"name":"getSearchSuggestionsPathParameters","url":"modules/shoppersearch.shoppersearchtypes.html#getsearchsuggestionspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4665,"kind":4194304,"name":"ProductSearchExpandEnum","url":"modules/shoppersearch.shoppersearchtypes.html#productsearchexpandenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4666,"kind":4194304,"name":"productSearchQueryParameters","url":"modules/shoppersearch.shoppersearchtypes.html#productsearchqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4667,"kind":4194304,"name":"productSearchPathParameters","url":"modules/shoppersearch.shoppersearchtypes.html#productsearchpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4668,"kind":4194304,"name":"BrandSuggestions","url":"modules/shoppersearch.shoppersearchtypes.html#brandsuggestions","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4669,"kind":4194304,"name":"CategorySuggestions","url":"modules/shoppersearch.shoppersearchtypes.html#categorysuggestions","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4670,"kind":4194304,"name":"CurrencyCode","url":"modules/shoppersearch.shoppersearchtypes.html#currencycode","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4671,"kind":4194304,"name":"CustomSuggestions","url":"modules/shoppersearch.shoppersearchtypes.html#customsuggestions","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4672,"kind":4194304,"name":"DefaultFallback","url":"modules/shoppersearch.shoppersearchtypes.html#defaultfallback","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4673,"kind":4194304,"name":"EinsteinSuggestedPhrases","url":"modules/shoppersearch.shoppersearchtypes.html#einsteinsuggestedphrases","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4674,"kind":4194304,"name":"ErrorResponse","url":"modules/shoppersearch.shoppersearchtypes.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4675,"kind":4194304,"name":"Image","url":"modules/shoppersearch.shoppersearchtypes.html#image","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4676,"kind":4194304,"name":"ImageGroup","url":"modules/shoppersearch.shoppersearchtypes.html#imagegroup","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4677,"kind":4194304,"name":"LocaleCode","url":"modules/shoppersearch.shoppersearchtypes.html#localecode","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4678,"kind":4194304,"name":"NoValue","url":"modules/shoppersearch.shoppersearchtypes.html#novalue","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4679,"kind":4194304,"name":"PageMetaTag","url":"modules/shoppersearch.shoppersearchtypes.html#pagemetatag","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4680,"kind":4194304,"name":"PaginatedResultBase","url":"modules/shoppersearch.shoppersearchtypes.html#paginatedresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4681,"kind":4194304,"name":"PriceRange","url":"modules/shoppersearch.shoppersearchtypes.html#pricerange","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4682,"kind":4194304,"name":"ProductPriceTable","url":"modules/shoppersearch.shoppersearchtypes.html#productpricetable","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4683,"kind":4194304,"name":"ProductPromotion","url":"modules/shoppersearch.shoppersearchtypes.html#productpromotion","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4684,"kind":4194304,"name":"ProductRef","url":"modules/shoppersearch.shoppersearchtypes.html#productref","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4685,"kind":4194304,"name":"ProductSearchHit","url":"modules/shoppersearch.shoppersearchtypes.html#productsearchhit","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4686,"kind":4194304,"name":"ProductSearchRefinement","url":"modules/shoppersearch.shoppersearchtypes.html#productsearchrefinement","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4687,"kind":4194304,"name":"ProductSearchRefinementValue","url":"modules/shoppersearch.shoppersearchtypes.html#productsearchrefinementvalue","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4688,"kind":4194304,"name":"ProductSearchResult","url":"modules/shoppersearch.shoppersearchtypes.html#productsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4689,"kind":4194304,"name":"ProductSearchSortingOption","url":"modules/shoppersearch.shoppersearchtypes.html#productsearchsortingoption","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4690,"kind":4194304,"name":"ProductSuggestions","url":"modules/shoppersearch.shoppersearchtypes.html#productsuggestions","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4691,"kind":4194304,"name":"ProductType","url":"modules/shoppersearch.shoppersearchtypes.html#producttype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4692,"kind":4194304,"name":"ResultBase","url":"modules/shoppersearch.shoppersearchtypes.html#resultbase","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4693,"kind":4194304,"name":"SuggestedCategory","url":"modules/shoppersearch.shoppersearchtypes.html#suggestedcategory","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4694,"kind":4194304,"name":"SuggestedPhrase","url":"modules/shoppersearch.shoppersearchtypes.html#suggestedphrase","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4695,"kind":4194304,"name":"SuggestedProduct","url":"modules/shoppersearch.shoppersearchtypes.html#suggestedproduct","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4696,"kind":4194304,"name":"SuggestedTerm","url":"modules/shoppersearch.shoppersearchtypes.html#suggestedterm","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4697,"kind":4194304,"name":"SuggestedTerms","url":"modules/shoppersearch.shoppersearchtypes.html#suggestedterms","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4698,"kind":4194304,"name":"Suggestion","url":"modules/shoppersearch.shoppersearchtypes.html#suggestion","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4699,"kind":4194304,"name":"SuggestionResult","url":"modules/shoppersearch.shoppersearchtypes.html#suggestionresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4700,"kind":4194304,"name":"Variant","url":"modules/shoppersearch.shoppersearchtypes.html#variant","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4701,"kind":4194304,"name":"VariationAttribute","url":"modules/shoppersearch.shoppersearchtypes.html#variationattribute","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4702,"kind":4194304,"name":"VariationAttributeValue","url":"modules/shoppersearch.shoppersearchtypes.html#variationattributevalue","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4703,"kind":4194304,"name":"VariationGroup","url":"modules/shoppersearch.shoppersearchtypes.html#variationgroup","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":4704,"kind":1,"name":"shopperSeo","url":"modules/shopperseo.html","classes":"tsd-kind-module"},{"id":4705,"kind":32,"name":"defaultBaseUri","url":"modules/shopperseo.html#defaultbaseuri-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"shopperSeo"},{"id":4706,"kind":4194304,"name":"DefaultFallback","url":"modules/shopperseo.html#defaultfallback-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSeo"},{"id":4707,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperseo.html#errorresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSeo"},{"id":4708,"kind":4194304,"name":"LocaleCode","url":"modules/shopperseo.html#localecode-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSeo"},{"id":4709,"kind":4194304,"name":"UrlMapping","url":"modules/shopperseo.html#urlmapping-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSeo"},{"id":4710,"kind":16777216,"name":"DefaultFallback","url":"modules/shopperseo.html#defaultfallback","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":4711,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperseo.html#errorresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":4712,"kind":16777216,"name":"LocaleCode","url":"modules/shopperseo.html#localecode","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":4713,"kind":16777216,"name":"UrlMapping","url":"modules/shopperseo.html#urlmapping","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":4714,"kind":128,"name":"ShopperSEO","url":"classes/shopperseo.shopperseo-3.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"shopperSeo"},{"id":4715,"kind":1024,"name":"clientConfig","url":"classes/shopperseo.shopperseo-3.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class","parent":"shopperSeo.ShopperSEO"},{"id":4716,"kind":1024,"name":"defaultBaseUri","url":"classes/shopperseo.shopperseo-3.html#defaultbaseuri","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperSeo.ShopperSEO"},{"id":4717,"kind":2097152,"name":"apiPaths","url":"classes/shopperseo.shopperseo-3.html#apipaths","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-static","parent":"shopperSeo.ShopperSEO"},{"id":4718,"kind":32,"name":"getUrlMapping","url":"classes/shopperseo.shopperseo-3.html#apipaths.geturlmapping-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperSeo.ShopperSEO.apiPaths"},{"id":4719,"kind":512,"name":"constructor","url":"classes/shopperseo.shopperseo-3.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"shopperSeo.ShopperSEO"},{"id":4720,"kind":1024,"name":"paramKeys","url":"classes/shopperseo.shopperseo-3.html#paramkeys","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperSeo.ShopperSEO"},{"id":4721,"kind":65536,"name":"__type","url":"classes/shopperseo.shopperseo-3.html#paramkeys.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"shopperSeo.ShopperSEO.paramKeys"},{"id":4722,"kind":32,"name":"getUrlMapping","url":"classes/shopperseo.shopperseo-3.html#paramkeys.__type.geturlmapping","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSeo.ShopperSEO.paramKeys.__type"},{"id":4723,"kind":32,"name":"getUrlMappingRequired","url":"classes/shopperseo.shopperseo-3.html#paramkeys.__type.geturlmappingrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSeo.ShopperSEO.paramKeys.__type"},{"id":4724,"kind":2048,"name":"getUrlMapping","url":"classes/shopperseo.shopperseo-3.html#geturlmapping-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperSeo.ShopperSEO"},{"id":4725,"kind":4194304,"name":"getUrlMappingQueryParameters","url":"modules/shopperseo.html#geturlmappingqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSeo"},{"id":4726,"kind":65536,"name":"__type","url":"modules/shopperseo.html#geturlmappingqueryparameters-2.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperSeo.getUrlMappingQueryParameters"},{"id":4727,"kind":32,"name":"urlSegment","url":"modules/shopperseo.html#geturlmappingqueryparameters-2.__type-1.urlsegment","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSeo.getUrlMappingQueryParameters.__type"},{"id":4728,"kind":32,"name":"siteId","url":"modules/shopperseo.html#geturlmappingqueryparameters-2.__type-1.siteid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSeo.getUrlMappingQueryParameters.__type"},{"id":4729,"kind":32,"name":"locale","url":"modules/shopperseo.html#geturlmappingqueryparameters-2.__type-1.locale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSeo.getUrlMappingQueryParameters.__type"},{"id":4730,"kind":4194304,"name":"getUrlMappingPathParameters","url":"modules/shopperseo.html#geturlmappingpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSeo"},{"id":4731,"kind":65536,"name":"__type","url":"modules/shopperseo.html#geturlmappingpathparameters-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperSeo.getUrlMappingPathParameters"},{"id":4732,"kind":32,"name":"organizationId","url":"modules/shopperseo.html#geturlmappingpathparameters-2.__type.organizationid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSeo.getUrlMappingPathParameters.__type"},{"id":4733,"kind":4194304,"name":"ShopperSEOPathParameters","url":"modules/shopperseo.html#shopperseopathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSeo"},{"id":4734,"kind":4194304,"name":"ShopperSEOQueryParameters","url":"modules/shopperseo.html#shopperseoqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSeo"},{"id":4735,"kind":4194304,"name":"ShopperSEOParameters","url":"modules/shopperseo.html#shopperseoparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSeo"},{"id":4736,"kind":16777216,"name":"getUrlMappingQueryParameters","url":"modules/shopperseo.html#geturlmappingqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":4737,"kind":16777216,"name":"getUrlMappingPathParameters","url":"modules/shopperseo.html#geturlmappingpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":4738,"kind":16777216,"name":"ShopperSEOPathParameters","url":"modules/shopperseo.html#shopperseopathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":4739,"kind":16777216,"name":"ShopperSEOQueryParameters","url":"modules/shopperseo.html#shopperseoqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":4740,"kind":16777216,"name":"ShopperSEOParameters","url":"modules/shopperseo.html#shopperseoparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":4741,"kind":16777216,"name":"ShopperSEO","url":"modules/shopperseo.html#shopperseo-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":4742,"kind":16777216,"name":"defaultBaseUri","url":"modules/shopperseo.html#defaultbaseuri","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":4743,"kind":16777216,"name":"getUrlMappingQueryParameters","url":"modules/shopperseo.html#geturlmappingqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":4744,"kind":16777216,"name":"getUrlMappingPathParameters","url":"modules/shopperseo.html#geturlmappingpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":4745,"kind":16777216,"name":"ShopperSEOPathParameters","url":"modules/shopperseo.html#shopperseopathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":4746,"kind":16777216,"name":"ShopperSEOQueryParameters","url":"modules/shopperseo.html#shopperseoqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":4747,"kind":16777216,"name":"ShopperSEOParameters","url":"modules/shopperseo.html#shopperseoparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":4748,"kind":16777216,"name":"ShopperSEO","url":"modules/shopperseo.html#shopperseo-2","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":4749,"kind":16777216,"name":"DefaultFallback","url":"modules/shopperseo.html#defaultfallback-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":4750,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperseo.html#errorresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":4751,"kind":16777216,"name":"LocaleCode","url":"modules/shopperseo.html#localecode-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":4752,"kind":16777216,"name":"UrlMapping","url":"modules/shopperseo.html#urlmapping-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":4753,"kind":2,"name":"ShopperSEOTypes","url":"modules/shopperseo.shopperseotypes.html","classes":"tsd-kind-namespace tsd-parent-kind-module","parent":"shopperSeo"},{"id":4754,"kind":4194304,"name":"ShopperSEOPathParameters","url":"modules/shopperseo.shopperseotypes.html#shopperseopathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSeo.ShopperSEOTypes"},{"id":4755,"kind":4194304,"name":"ShopperSEOQueryParameters","url":"modules/shopperseo.shopperseotypes.html#shopperseoqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSeo.ShopperSEOTypes"},{"id":4756,"kind":4194304,"name":"getUrlMappingQueryParameters","url":"modules/shopperseo.shopperseotypes.html#geturlmappingqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSeo.ShopperSEOTypes"},{"id":4757,"kind":4194304,"name":"getUrlMappingPathParameters","url":"modules/shopperseo.shopperseotypes.html#geturlmappingpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSeo.ShopperSEOTypes"},{"id":4758,"kind":4194304,"name":"DefaultFallback","url":"modules/shopperseo.shopperseotypes.html#defaultfallback","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSeo.ShopperSEOTypes"},{"id":4759,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperseo.shopperseotypes.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSeo.ShopperSEOTypes"},{"id":4760,"kind":4194304,"name":"LocaleCode","url":"modules/shopperseo.shopperseotypes.html#localecode","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSeo.ShopperSEOTypes"},{"id":4761,"kind":4194304,"name":"UrlMapping","url":"modules/shopperseo.shopperseotypes.html#urlmapping","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSeo.ShopperSEOTypes"},{"id":4762,"kind":1,"name":"shopperStores","url":"modules/shopperstores.html","classes":"tsd-kind-module"},{"id":4763,"kind":32,"name":"defaultBaseUri","url":"modules/shopperstores.html#defaultbaseuri-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"shopperStores"},{"id":4764,"kind":4194304,"name":"DefaultFallback","url":"modules/shopperstores.html#defaultfallback-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperStores"},{"id":4765,"kind":4194304,"name":"DistanceUnit","url":"modules/shopperstores.html#distanceunit-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperStores"},{"id":4766,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperstores.html#errorresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperStores"},{"id":4767,"kind":4194304,"name":"LocaleCode","url":"modules/shopperstores.html#localecode-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperStores"},{"id":4768,"kind":4194304,"name":"PaginatedResultBase","url":"modules/shopperstores.html#paginatedresultbase-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperStores"},{"id":4769,"kind":4194304,"name":"ResultBase","url":"modules/shopperstores.html#resultbase-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperStores"},{"id":4770,"kind":4194304,"name":"Store","url":"modules/shopperstores.html#store-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperStores"},{"id":4771,"kind":4194304,"name":"StoreResult","url":"modules/shopperstores.html#storeresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperStores"},{"id":4772,"kind":4194304,"name":"Stores","url":"modules/shopperstores.html#stores-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperStores"},{"id":4773,"kind":16777216,"name":"DefaultFallback","url":"modules/shopperstores.html#defaultfallback","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":4774,"kind":16777216,"name":"DistanceUnit","url":"modules/shopperstores.html#distanceunit","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":4775,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperstores.html#errorresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":4776,"kind":16777216,"name":"LocaleCode","url":"modules/shopperstores.html#localecode","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":4777,"kind":16777216,"name":"PaginatedResultBase","url":"modules/shopperstores.html#paginatedresultbase","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":4778,"kind":16777216,"name":"ResultBase","url":"modules/shopperstores.html#resultbase","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":4779,"kind":16777216,"name":"Store","url":"modules/shopperstores.html#store","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":4780,"kind":16777216,"name":"StoreResult","url":"modules/shopperstores.html#storeresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":4781,"kind":16777216,"name":"Stores","url":"modules/shopperstores.html#stores","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":4782,"kind":128,"name":"ShopperStores","url":"classes/shopperstores.shopperstores-3.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"shopperStores"},{"id":4783,"kind":1024,"name":"clientConfig","url":"classes/shopperstores.shopperstores-3.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class","parent":"shopperStores.ShopperStores"},{"id":4784,"kind":1024,"name":"defaultBaseUri","url":"classes/shopperstores.shopperstores-3.html#defaultbaseuri","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperStores.ShopperStores"},{"id":4785,"kind":2097152,"name":"apiPaths","url":"classes/shopperstores.shopperstores-3.html#apipaths","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-static","parent":"shopperStores.ShopperStores"},{"id":4786,"kind":32,"name":"getStores","url":"classes/shopperstores.shopperstores-3.html#apipaths.getstores-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperStores.ShopperStores.apiPaths"},{"id":4787,"kind":32,"name":"searchStores","url":"classes/shopperstores.shopperstores-3.html#apipaths.searchstores-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperStores.ShopperStores.apiPaths"},{"id":4788,"kind":512,"name":"constructor","url":"classes/shopperstores.shopperstores-3.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"shopperStores.ShopperStores"},{"id":4789,"kind":1024,"name":"paramKeys","url":"classes/shopperstores.shopperstores-3.html#paramkeys","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperStores.ShopperStores"},{"id":4790,"kind":65536,"name":"__type","url":"classes/shopperstores.shopperstores-3.html#paramkeys.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"shopperStores.ShopperStores.paramKeys"},{"id":4791,"kind":32,"name":"getStores","url":"classes/shopperstores.shopperstores-3.html#paramkeys.__type.getstores","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.ShopperStores.paramKeys.__type"},{"id":4792,"kind":32,"name":"getStoresRequired","url":"classes/shopperstores.shopperstores-3.html#paramkeys.__type.getstoresrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.ShopperStores.paramKeys.__type"},{"id":4793,"kind":32,"name":"searchStores","url":"classes/shopperstores.shopperstores-3.html#paramkeys.__type.searchstores","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.ShopperStores.paramKeys.__type"},{"id":4794,"kind":32,"name":"searchStoresRequired","url":"classes/shopperstores.shopperstores-3.html#paramkeys.__type.searchstoresrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.ShopperStores.paramKeys.__type"},{"id":4795,"kind":2048,"name":"getStores","url":"classes/shopperstores.shopperstores-3.html#getstores-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperStores.ShopperStores"},{"id":4796,"kind":2048,"name":"searchStores","url":"classes/shopperstores.shopperstores-3.html#searchstores-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperStores.ShopperStores"},{"id":4797,"kind":4194304,"name":"getStoresQueryParameters","url":"modules/shopperstores.html#getstoresqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperStores"},{"id":4798,"kind":65536,"name":"__type","url":"modules/shopperstores.html#getstoresqueryparameters-2.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperStores.getStoresQueryParameters"},{"id":4799,"kind":32,"name":"ids","url":"modules/shopperstores.html#getstoresqueryparameters-2.__type-1.ids","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.getStoresQueryParameters.__type"},{"id":4800,"kind":32,"name":"siteId","url":"modules/shopperstores.html#getstoresqueryparameters-2.__type-1.siteid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.getStoresQueryParameters.__type"},{"id":4801,"kind":32,"name":"locale","url":"modules/shopperstores.html#getstoresqueryparameters-2.__type-1.locale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.getStoresQueryParameters.__type"},{"id":4802,"kind":4194304,"name":"getStoresPathParameters","url":"modules/shopperstores.html#getstorespathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperStores"},{"id":4803,"kind":65536,"name":"__type","url":"modules/shopperstores.html#getstorespathparameters-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperStores.getStoresPathParameters"},{"id":4804,"kind":32,"name":"organizationId","url":"modules/shopperstores.html#getstorespathparameters-2.__type.organizationid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.getStoresPathParameters.__type"},{"id":4805,"kind":4194304,"name":"searchStoresQueryParameters","url":"modules/shopperstores.html#searchstoresqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperStores"},{"id":4806,"kind":65536,"name":"__type","url":"modules/shopperstores.html#searchstoresqueryparameters-2.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperStores.searchStoresQueryParameters"},{"id":4807,"kind":32,"name":"countryCode","url":"modules/shopperstores.html#searchstoresqueryparameters-2.__type-3.countrycode","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.searchStoresQueryParameters.__type"},{"id":4808,"kind":32,"name":"distanceUnit","url":"modules/shopperstores.html#searchstoresqueryparameters-2.__type-3.distanceunit-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.searchStoresQueryParameters.__type"},{"id":4809,"kind":32,"name":"latitude","url":"modules/shopperstores.html#searchstoresqueryparameters-2.__type-3.latitude","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.searchStoresQueryParameters.__type"},{"id":4810,"kind":32,"name":"longitude","url":"modules/shopperstores.html#searchstoresqueryparameters-2.__type-3.longitude","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.searchStoresQueryParameters.__type"},{"id":4811,"kind":32,"name":"maxDistance","url":"modules/shopperstores.html#searchstoresqueryparameters-2.__type-3.maxdistance","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.searchStoresQueryParameters.__type"},{"id":4812,"kind":32,"name":"postalCode","url":"modules/shopperstores.html#searchstoresqueryparameters-2.__type-3.postalcode","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.searchStoresQueryParameters.__type"},{"id":4813,"kind":32,"name":"siteId","url":"modules/shopperstores.html#searchstoresqueryparameters-2.__type-3.siteid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.searchStoresQueryParameters.__type"},{"id":4814,"kind":32,"name":"locale","url":"modules/shopperstores.html#searchstoresqueryparameters-2.__type-3.locale-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.searchStoresQueryParameters.__type"},{"id":4815,"kind":32,"name":"limit","url":"modules/shopperstores.html#searchstoresqueryparameters-2.__type-3.limit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.searchStoresQueryParameters.__type"},{"id":4816,"kind":32,"name":"offset","url":"modules/shopperstores.html#searchstoresqueryparameters-2.__type-3.offset","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.searchStoresQueryParameters.__type"},{"id":4817,"kind":4194304,"name":"searchStoresPathParameters","url":"modules/shopperstores.html#searchstorespathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperStores"},{"id":4818,"kind":65536,"name":"__type","url":"modules/shopperstores.html#searchstorespathparameters-2.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperStores.searchStoresPathParameters"},{"id":4819,"kind":32,"name":"organizationId","url":"modules/shopperstores.html#searchstorespathparameters-2.__type-2.organizationid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.searchStoresPathParameters.__type"},{"id":4820,"kind":4194304,"name":"ShopperStoresPathParameters","url":"modules/shopperstores.html#shopperstorespathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperStores"},{"id":4821,"kind":4194304,"name":"ShopperStoresQueryParameters","url":"modules/shopperstores.html#shopperstoresqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperStores"},{"id":4822,"kind":4194304,"name":"ShopperStoresParameters","url":"modules/shopperstores.html#shopperstoresparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperStores"},{"id":4823,"kind":16777216,"name":"getStoresQueryParameters","url":"modules/shopperstores.html#getstoresqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":4824,"kind":16777216,"name":"getStoresPathParameters","url":"modules/shopperstores.html#getstorespathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":4825,"kind":16777216,"name":"searchStoresQueryParameters","url":"modules/shopperstores.html#searchstoresqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":4826,"kind":16777216,"name":"searchStoresPathParameters","url":"modules/shopperstores.html#searchstorespathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":4827,"kind":16777216,"name":"ShopperStoresPathParameters","url":"modules/shopperstores.html#shopperstorespathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":4828,"kind":16777216,"name":"ShopperStoresQueryParameters","url":"modules/shopperstores.html#shopperstoresqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":4829,"kind":16777216,"name":"ShopperStoresParameters","url":"modules/shopperstores.html#shopperstoresparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":4830,"kind":16777216,"name":"ShopperStores","url":"modules/shopperstores.html#shopperstores-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":4831,"kind":16777216,"name":"defaultBaseUri","url":"modules/shopperstores.html#defaultbaseuri","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":4832,"kind":16777216,"name":"getStoresQueryParameters","url":"modules/shopperstores.html#getstoresqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":4833,"kind":16777216,"name":"getStoresPathParameters","url":"modules/shopperstores.html#getstorespathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":4834,"kind":16777216,"name":"searchStoresQueryParameters","url":"modules/shopperstores.html#searchstoresqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":4835,"kind":16777216,"name":"searchStoresPathParameters","url":"modules/shopperstores.html#searchstorespathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":4836,"kind":16777216,"name":"ShopperStoresPathParameters","url":"modules/shopperstores.html#shopperstorespathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":4837,"kind":16777216,"name":"ShopperStoresQueryParameters","url":"modules/shopperstores.html#shopperstoresqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":4838,"kind":16777216,"name":"ShopperStoresParameters","url":"modules/shopperstores.html#shopperstoresparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":4839,"kind":16777216,"name":"ShopperStores","url":"modules/shopperstores.html#shopperstores-2","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":4840,"kind":16777216,"name":"DefaultFallback","url":"modules/shopperstores.html#defaultfallback-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":4841,"kind":16777216,"name":"DistanceUnit","url":"modules/shopperstores.html#distanceunit-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":4842,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperstores.html#errorresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":4843,"kind":16777216,"name":"LocaleCode","url":"modules/shopperstores.html#localecode-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":4844,"kind":16777216,"name":"PaginatedResultBase","url":"modules/shopperstores.html#paginatedresultbase-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":4845,"kind":16777216,"name":"ResultBase","url":"modules/shopperstores.html#resultbase-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":4846,"kind":16777216,"name":"Store","url":"modules/shopperstores.html#store-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":4847,"kind":16777216,"name":"StoreResult","url":"modules/shopperstores.html#storeresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":4848,"kind":16777216,"name":"Stores","url":"modules/shopperstores.html#stores-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":4849,"kind":2,"name":"ShopperStoresTypes","url":"modules/shopperstores.shopperstorestypes.html","classes":"tsd-kind-namespace tsd-parent-kind-module","parent":"shopperStores"},{"id":4850,"kind":4194304,"name":"ShopperStoresPathParameters","url":"modules/shopperstores.shopperstorestypes.html#shopperstorespathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperStores.ShopperStoresTypes"},{"id":4851,"kind":4194304,"name":"ShopperStoresQueryParameters","url":"modules/shopperstores.shopperstorestypes.html#shopperstoresqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperStores.ShopperStoresTypes"},{"id":4852,"kind":4194304,"name":"getStoresQueryParameters","url":"modules/shopperstores.shopperstorestypes.html#getstoresqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperStores.ShopperStoresTypes"},{"id":4853,"kind":4194304,"name":"getStoresPathParameters","url":"modules/shopperstores.shopperstorestypes.html#getstorespathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperStores.ShopperStoresTypes"},{"id":4854,"kind":4194304,"name":"searchStoresQueryParameters","url":"modules/shopperstores.shopperstorestypes.html#searchstoresqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperStores.ShopperStoresTypes"},{"id":4855,"kind":4194304,"name":"searchStoresPathParameters","url":"modules/shopperstores.shopperstorestypes.html#searchstorespathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperStores.ShopperStoresTypes"},{"id":4856,"kind":4194304,"name":"DefaultFallback","url":"modules/shopperstores.shopperstorestypes.html#defaultfallback","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperStores.ShopperStoresTypes"},{"id":4857,"kind":4194304,"name":"DistanceUnit","url":"modules/shopperstores.shopperstorestypes.html#distanceunit","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperStores.ShopperStoresTypes"},{"id":4858,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperstores.shopperstorestypes.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperStores.ShopperStoresTypes"},{"id":4859,"kind":4194304,"name":"LocaleCode","url":"modules/shopperstores.shopperstorestypes.html#localecode","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperStores.ShopperStoresTypes"},{"id":4860,"kind":4194304,"name":"PaginatedResultBase","url":"modules/shopperstores.shopperstorestypes.html#paginatedresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperStores.ShopperStoresTypes"},{"id":4861,"kind":4194304,"name":"ResultBase","url":"modules/shopperstores.shopperstorestypes.html#resultbase","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperStores.ShopperStoresTypes"},{"id":4862,"kind":4194304,"name":"Store","url":"modules/shopperstores.shopperstorestypes.html#store","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperStores.ShopperStoresTypes"},{"id":4863,"kind":4194304,"name":"StoreResult","url":"modules/shopperstores.shopperstorestypes.html#storeresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperStores.ShopperStoresTypes"},{"id":4864,"kind":4194304,"name":"Stores","url":"modules/shopperstores.shopperstorestypes.html#stores","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperStores.ShopperStoresTypes"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,42.632]],["parent/0",[]],["name/1",[1,75.737]],["parent/1",[0,4.256]],["name/2",[2,75.737]],["parent/2",[3,8.07]],["name/3",[4,75.737]],["parent/3",[0,4.256]],["name/4",[5,75.737]],["parent/4",[0,4.256]],["name/5",[6,80.846]],["parent/5",[0,4.256]],["name/6",[7,75.737]],["parent/6",[0,4.256]],["name/7",[8,75.737]],["parent/7",[0,4.256]],["name/8",[9,47.405]],["parent/8",[0,4.256]],["name/9",[10,26.925]],["parent/9",[11,8.07]],["name/10",[12,75.737]],["parent/10",[0,4.256]],["name/11",[13,75.737]],["parent/11",[0,4.256]],["name/12",[10,26.925]],["parent/12",[14,8.07]],["name/13",[15,75.737]],["parent/13",[0,4.256]],["name/14",[10,26.925]],["parent/14",[16,8.07]],["name/15",[17,53.765]],["parent/15",[]],["name/16",[18,80.846]],["parent/16",[17,5.367]],["name/17",[19,75.737]],["parent/17",[20,6.464]],["name/18",[21,75.737]],["parent/18",[20,6.464]],["name/19",[22,75.737]],["parent/19",[20,6.464]],["name/20",[23,69.86]],["parent/20",[20,6.464]],["name/21",[24,72.373]],["parent/21",[20,6.464]],["name/22",[25,72.373]],["parent/22",[20,6.464]],["name/23",[26,75.737]],["parent/23",[20,6.464]],["name/24",[17,53.765]],["parent/24",[17,5.367]],["name/25",[19,75.737]],["parent/25",[27,6.228]],["name/26",[21,75.737]],["parent/26",[27,6.228]],["name/27",[22,75.737]],["parent/27",[27,6.228]],["name/28",[10,26.925]],["parent/28",[28,8.07]],["name/29",[23,69.86]],["parent/29",[27,6.228]],["name/30",[24,72.373]],["parent/30",[27,6.228]],["name/31",[25,72.373]],["parent/31",[27,6.228]],["name/32",[26,75.737]],["parent/32",[27,6.228]],["name/33",[29,55.723]],["parent/33",[27,6.228]],["name/34",[30,80.846]],["parent/34",[27,6.228]],["name/35",[25,72.373]],["parent/35",[31,8.07]],["name/36",[32,80.846]],["parent/36",[17,5.367]],["name/37",[24,72.373]],["parent/37",[17,5.367]],["name/38",[33,80.846]],["parent/38",[17,5.367]],["name/39",[10,26.925]],["parent/39",[34,8.07]],["name/40",[35,75.737]],["parent/40",[]],["name/41",[36,80.846]],["parent/41",[35,7.56]],["name/42",[37,75.737]],["parent/42",[0,4.256]],["name/43",[38,75.737]],["parent/43",[0,4.256]],["name/44",[39,75.737]],["parent/44",[0,4.256]],["name/45",[40,75.737]],["parent/45",[0,4.256]],["name/46",[41,75.737]],["parent/46",[0,4.256]],["name/47",[42,31.078]],["parent/47",[]],["name/48",[43,46.723]],["parent/48",[42,3.102]],["name/49",[44,72.373]],["parent/49",[]],["name/50",[44,72.373]],["parent/50",[44,7.224]],["name/51",[29,55.723]],["parent/51",[45,5.412]],["name/52",[46,80.846]],["parent/52",[45,5.412]],["name/53",[47,80.846]],["parent/53",[45,5.412]],["name/54",[48,80.846]],["parent/54",[45,5.412]],["name/55",[49,80.846]],["parent/55",[45,5.412]],["name/56",[50,80.846]],["parent/56",[45,5.412]],["name/57",[51,80.846]],["parent/57",[45,5.412]],["name/58",[52,80.846]],["parent/58",[45,5.412]],["name/59",[53,80.846]],["parent/59",[45,5.412]],["name/60",[54,80.846]],["parent/60",[45,5.412]],["name/61",[55,80.846]],["parent/61",[45,5.412]],["name/62",[56,80.846]],["parent/62",[45,5.412]],["name/63",[57,80.846]],["parent/63",[45,5.412]],["name/64",[58,80.846]],["parent/64",[45,5.412]],["name/65",[59,80.846]],["parent/65",[45,5.412]],["name/66",[60,80.846]],["parent/66",[45,5.412]],["name/67",[61,80.846]],["parent/67",[45,5.412]],["name/68",[62,80.846]],["parent/68",[45,5.412]],["name/69",[63,80.846]],["parent/69",[45,5.412]],["name/70",[64,80.846]],["parent/70",[45,5.412]],["name/71",[65,80.846]],["parent/71",[45,5.412]],["name/72",[66,72.373]],["parent/72",[]],["name/73",[67,80.846]],["parent/73",[66,7.224]],["name/74",[68,80.846]],["parent/74",[66,7.224]],["name/75",[69,69.86]],["parent/75",[42,3.102]],["name/76",[70,69.86]],["parent/76",[42,3.102]],["name/77",[71,69.86]],["parent/77",[42,3.102]],["name/78",[72,69.86]],["parent/78",[42,3.102]],["name/79",[73,69.86]],["parent/79",[42,3.102]],["name/80",[74,69.86]],["parent/80",[42,3.102]],["name/81",[75,69.86]],["parent/81",[42,3.102]],["name/82",[69,69.86]],["parent/82",[42,3.102]],["name/83",[70,69.86]],["parent/83",[42,3.102]],["name/84",[71,69.86]],["parent/84",[42,3.102]],["name/85",[72,69.86]],["parent/85",[42,3.102]],["name/86",[73,69.86]],["parent/86",[42,3.102]],["name/87",[75,69.86]],["parent/87",[42,3.102]],["name/88",[74,69.86]],["parent/88",[42,3.102]],["name/89",[42,31.078]],["parent/89",[42,3.102]],["name/90",[17,53.765]],["parent/90",[76,5.367]],["name/91",[43,46.723]],["parent/91",[76,5.367]],["name/92",[77,57.492]],["parent/92",[76,5.367]],["name/93",[78,72.373]],["parent/93",[79,5.618]],["name/94",[80,72.373]],["parent/94",[79,5.618]],["name/95",[81,72.373]],["parent/95",[79,5.618]],["name/96",[82,72.373]],["parent/96",[79,5.618]],["name/97",[83,72.373]],["parent/97",[79,5.618]],["name/98",[84,67.853]],["parent/98",[79,5.618]],["name/99",[85,72.373]],["parent/99",[79,5.618]],["name/100",[86,72.373]],["parent/100",[79,5.618]],["name/101",[87,72.373]],["parent/101",[79,5.618]],["name/102",[88,72.373]],["parent/102",[79,5.618]],["name/103",[89,72.373]],["parent/103",[79,5.618]],["name/104",[90,72.373]],["parent/104",[79,5.618]],["name/105",[91,72.373]],["parent/105",[79,5.618]],["name/106",[92,72.373]],["parent/106",[79,5.618]],["name/107",[93,72.373]],["parent/107",[79,5.618]],["name/108",[94,66.182]],["parent/108",[79,5.618]],["name/109",[95,72.373]],["parent/109",[79,5.618]],["name/110",[29,55.723]],["parent/110",[76,5.367]],["name/111",[96,57.492]],["parent/111",[76,5.367]],["name/112",[10,26.925]],["parent/112",[97,8.07]],["name/113",[78,72.373]],["parent/113",[98,4.94]],["name/114",[99,80.846]],["parent/114",[98,4.94]],["name/115",[80,72.373]],["parent/115",[98,4.94]],["name/116",[100,80.846]],["parent/116",[98,4.94]],["name/117",[81,72.373]],["parent/117",[98,4.94]],["name/118",[101,80.846]],["parent/118",[98,4.94]],["name/119",[82,72.373]],["parent/119",[98,4.94]],["name/120",[102,80.846]],["parent/120",[98,4.94]],["name/121",[83,72.373]],["parent/121",[98,4.94]],["name/122",[103,80.846]],["parent/122",[98,4.94]],["name/123",[84,67.853]],["parent/123",[98,4.94]],["name/124",[104,80.846]],["parent/124",[98,4.94]],["name/125",[85,72.373]],["parent/125",[98,4.94]],["name/126",[105,80.846]],["parent/126",[98,4.94]],["name/127",[86,72.373]],["parent/127",[98,4.94]],["name/128",[106,80.846]],["parent/128",[98,4.94]],["name/129",[87,72.373]],["parent/129",[98,4.94]],["name/130",[107,80.846]],["parent/130",[98,4.94]],["name/131",[88,72.373]],["parent/131",[98,4.94]],["name/132",[108,80.846]],["parent/132",[98,4.94]],["name/133",[89,72.373]],["parent/133",[98,4.94]],["name/134",[109,80.846]],["parent/134",[98,4.94]],["name/135",[90,72.373]],["parent/135",[98,4.94]],["name/136",[110,80.846]],["parent/136",[98,4.94]],["name/137",[91,72.373]],["parent/137",[98,4.94]],["name/138",[111,80.846]],["parent/138",[98,4.94]],["name/139",[92,72.373]],["parent/139",[98,4.94]],["name/140",[112,80.846]],["parent/140",[98,4.94]],["name/141",[93,72.373]],["parent/141",[98,4.94]],["name/142",[113,80.846]],["parent/142",[98,4.94]],["name/143",[94,66.182]],["parent/143",[98,4.94]],["name/144",[114,75.737]],["parent/144",[98,4.94]],["name/145",[95,72.373]],["parent/145",[98,4.94]],["name/146",[115,80.846]],["parent/146",[98,4.94]],["name/147",[78,72.373]],["parent/147",[76,5.367]],["name/148",[80,72.373]],["parent/148",[76,5.367]],["name/149",[81,72.373]],["parent/149",[76,5.367]],["name/150",[82,72.373]],["parent/150",[76,5.367]],["name/151",[83,72.373]],["parent/151",[76,5.367]],["name/152",[84,67.853]],["parent/152",[76,5.367]],["name/153",[85,72.373]],["parent/153",[76,5.367]],["name/154",[86,72.373]],["parent/154",[76,5.367]],["name/155",[87,72.373]],["parent/155",[76,5.367]],["name/156",[88,72.373]],["parent/156",[76,5.367]],["name/157",[89,72.373]],["parent/157",[76,5.367]],["name/158",[90,72.373]],["parent/158",[76,5.367]],["name/159",[91,72.373]],["parent/159",[76,5.367]],["name/160",[92,72.373]],["parent/160",[76,5.367]],["name/161",[93,72.373]],["parent/161",[76,5.367]],["name/162",[94,66.182]],["parent/162",[76,5.367]],["name/163",[95,72.373]],["parent/163",[76,5.367]],["name/164",[116,69.86]],["parent/164",[42,3.102]],["name/165",[117,69.86]],["parent/165",[42,3.102]],["name/166",[118,69.86]],["parent/166",[42,3.102]],["name/167",[119,69.86]],["parent/167",[42,3.102]],["name/168",[120,69.86]],["parent/168",[42,3.102]],["name/169",[121,69.86]],["parent/169",[42,3.102]],["name/170",[122,69.86]],["parent/170",[42,3.102]],["name/171",[123,69.86]],["parent/171",[42,3.102]],["name/172",[124,69.86]],["parent/172",[42,3.102]],["name/173",[125,69.86]],["parent/173",[42,3.102]],["name/174",[126,69.86]],["parent/174",[42,3.102]],["name/175",[127,69.86]],["parent/175",[42,3.102]],["name/176",[128,69.86]],["parent/176",[42,3.102]],["name/177",[129,69.86]],["parent/177",[42,3.102]],["name/178",[130,69.86]],["parent/178",[42,3.102]],["name/179",[10,26.925]],["parent/179",[131,8.07]],["name/180",[132,69.86]],["parent/180",[42,3.102]],["name/181",[10,26.925]],["parent/181",[133,8.07]],["name/182",[134,34.761]],["parent/182",[135,8.07]],["name/183",[136,69.86]],["parent/183",[42,3.102]],["name/184",[10,26.925]],["parent/184",[137,8.07]],["name/185",[138,60.477]],["parent/185",[139,6.339]],["name/186",[140,72.373]],["parent/186",[139,6.339]],["name/187",[141,69.86]],["parent/187",[139,6.339]],["name/188",[142,72.373]],["parent/188",[139,6.339]],["name/189",[143,75.737]],["parent/189",[139,6.339]],["name/190",[144,60.477]],["parent/190",[139,6.339]],["name/191",[145,59.643]],["parent/191",[139,6.339]],["name/192",[146,69.86]],["parent/192",[139,6.339]],["name/193",[147,69.86]],["parent/193",[42,3.102]],["name/194",[10,26.925]],["parent/194",[148,8.07]],["name/195",[141,69.86]],["parent/195",[149,6.128]],["name/196",[140,72.373]],["parent/196",[149,6.128]],["name/197",[138,60.477]],["parent/197",[149,6.128]],["name/198",[143,75.737]],["parent/198",[149,6.128]],["name/199",[142,72.373]],["parent/199",[149,6.128]],["name/200",[144,60.477]],["parent/200",[149,6.128]],["name/201",[150,66.182]],["parent/201",[149,6.128]],["name/202",[145,59.643]],["parent/202",[149,6.128]],["name/203",[146,69.86]],["parent/203",[149,6.128]],["name/204",[151,80.846]],["parent/204",[149,6.128]],["name/205",[152,69.86]],["parent/205",[42,3.102]],["name/206",[10,26.925]],["parent/206",[153,8.07]],["name/207",[134,34.761]],["parent/207",[154,8.07]],["name/208",[155,69.86]],["parent/208",[42,3.102]],["name/209",[10,26.925]],["parent/209",[156,8.07]],["name/210",[157,69.86]],["parent/210",[42,3.102]],["name/211",[10,26.925]],["parent/211",[158,8.07]],["name/212",[134,34.761]],["parent/212",[159,8.07]],["name/213",[160,69.86]],["parent/213",[42,3.102]],["name/214",[10,26.925]],["parent/214",[161,8.07]],["name/215",[162,75.737]],["parent/215",[163,6.607]],["name/216",[164,75.737]],["parent/216",[163,6.607]],["name/217",[165,40.652]],["parent/217",[163,6.607]],["name/218",[144,60.477]],["parent/218",[163,6.607]],["name/219",[145,59.643]],["parent/219",[163,6.607]],["name/220",[166,75.737]],["parent/220",[163,6.607]],["name/221",[167,69.86]],["parent/221",[42,3.102]],["name/222",[10,26.925]],["parent/222",[168,8.07]],["name/223",[169,69.86]],["parent/223",[42,3.102]],["name/224",[10,26.925]],["parent/224",[170,8.07]],["name/225",[134,34.761]],["parent/225",[171,8.07]],["name/226",[172,69.86]],["parent/226",[42,3.102]],["name/227",[10,26.925]],["parent/227",[173,8.07]],["name/228",[174,75.737]],["parent/228",[175,6.228]],["name/229",[176,75.737]],["parent/229",[175,6.228]],["name/230",[144,60.477]],["parent/230",[175,6.228]],["name/231",[177,67.853]],["parent/231",[175,6.228]],["name/232",[141,69.86]],["parent/232",[175,6.228]],["name/233",[178,67.853]],["parent/233",[175,6.228]],["name/234",[138,60.477]],["parent/234",[175,6.228]],["name/235",[145,59.643]],["parent/235",[175,6.228]],["name/236",[179,69.86]],["parent/236",[175,6.228]],["name/237",[180,69.86]],["parent/237",[42,3.102]],["name/238",[10,26.925]],["parent/238",[181,8.07]],["name/239",[182,69.86]],["parent/239",[42,3.102]],["name/240",[10,26.925]],["parent/240",[183,8.07]],["name/241",[134,34.761]],["parent/241",[184,8.07]],["name/242",[185,69.86]],["parent/242",[42,3.102]],["name/243",[10,26.925]],["parent/243",[186,8.07]],["name/244",[187,69.86]],["parent/244",[42,3.102]],["name/245",[10,26.925]],["parent/245",[188,8.07]],["name/246",[134,34.761]],["parent/246",[189,8.07]],["name/247",[190,69.86]],["parent/247",[42,3.102]],["name/248",[10,26.925]],["parent/248",[191,8.07]],["name/249",[177,67.853]],["parent/249",[192,6.607]],["name/250",[150,66.182]],["parent/250",[192,6.607]],["name/251",[193,80.846]],["parent/251",[192,6.607]],["name/252",[138,60.477]],["parent/252",[192,6.607]],["name/253",[178,67.853]],["parent/253",[192,6.607]],["name/254",[194,67.853]],["parent/254",[192,6.607]],["name/255",[195,69.86]],["parent/255",[42,3.102]],["name/256",[10,26.925]],["parent/256",[196,8.07]],["name/257",[197,69.86]],["parent/257",[42,3.102]],["name/258",[10,26.925]],["parent/258",[198,8.07]],["name/259",[134,34.761]],["parent/259",[199,8.07]],["name/260",[200,69.86]],["parent/260",[42,3.102]],["name/261",[10,26.925]],["parent/261",[201,8.07]],["name/262",[162,75.737]],["parent/262",[202,6.228]],["name/263",[164,75.737]],["parent/263",[202,6.228]],["name/264",[145,59.643]],["parent/264",[202,6.228]],["name/265",[165,40.652]],["parent/265",[202,6.228]],["name/266",[138,60.477]],["parent/266",[202,6.228]],["name/267",[146,69.86]],["parent/267",[202,6.228]],["name/268",[166,75.737]],["parent/268",[202,6.228]],["name/269",[203,80.846]],["parent/269",[202,6.228]],["name/270",[150,66.182]],["parent/270",[202,6.228]],["name/271",[204,69.86]],["parent/271",[42,3.102]],["name/272",[10,26.925]],["parent/272",[205,8.07]],["name/273",[206,69.86]],["parent/273",[42,3.102]],["name/274",[10,26.925]],["parent/274",[207,8.07]],["name/275",[134,34.761]],["parent/275",[208,8.07]],["name/276",[209,69.86]],["parent/276",[42,3.102]],["name/277",[10,26.925]],["parent/277",[210,8.07]],["name/278",[176,75.737]],["parent/278",[211,6.037]],["name/279",[138,60.477]],["parent/279",[211,6.037]],["name/280",[145,59.643]],["parent/280",[211,6.037]],["name/281",[178,67.853]],["parent/281",[211,6.037]],["name/282",[212,80.846]],["parent/282",[211,6.037]],["name/283",[177,67.853]],["parent/283",[211,6.037]],["name/284",[194,67.853]],["parent/284",[211,6.037]],["name/285",[213,80.846]],["parent/285",[211,6.037]],["name/286",[214,80.846]],["parent/286",[211,6.037]],["name/287",[144,60.477]],["parent/287",[211,6.037]],["name/288",[179,69.86]],["parent/288",[211,6.037]],["name/289",[215,69.86]],["parent/289",[42,3.102]],["name/290",[10,26.925]],["parent/290",[216,8.07]],["name/291",[217,69.86]],["parent/291",[42,3.102]],["name/292",[10,26.925]],["parent/292",[218,8.07]],["name/293",[134,34.761]],["parent/293",[219,8.07]],["name/294",[220,69.86]],["parent/294",[42,3.102]],["name/295",[10,26.925]],["parent/295",[221,8.07]],["name/296",[222,80.846]],["parent/296",[223,6.128]],["name/297",[138,60.477]],["parent/297",[223,6.128]],["name/298",[145,59.643]],["parent/298",[223,6.128]],["name/299",[178,67.853]],["parent/299",[223,6.128]],["name/300",[177,67.853]],["parent/300",[223,6.128]],["name/301",[194,67.853]],["parent/301",[223,6.128]],["name/302",[224,72.373]],["parent/302",[223,6.128]],["name/303",[144,60.477]],["parent/303",[223,6.128]],["name/304",[179,69.86]],["parent/304",[223,6.128]],["name/305",[142,72.373]],["parent/305",[223,6.128]],["name/306",[225,69.86]],["parent/306",[42,3.102]],["name/307",[10,26.925]],["parent/307",[226,8.07]],["name/308",[138,60.477]],["parent/308",[227,6.464]],["name/309",[145,59.643]],["parent/309",[227,6.464]],["name/310",[146,69.86]],["parent/310",[227,6.464]],["name/311",[194,67.853]],["parent/311",[227,6.464]],["name/312",[224,72.373]],["parent/312",[227,6.464]],["name/313",[141,69.86]],["parent/313",[227,6.464]],["name/314",[140,72.373]],["parent/314",[227,6.464]],["name/315",[228,69.86]],["parent/315",[42,3.102]],["name/316",[10,26.925]],["parent/316",[229,8.07]],["name/317",[134,34.761]],["parent/317",[230,8.07]],["name/318",[231,69.86]],["parent/318",[42,3.102]],["name/319",[10,26.925]],["parent/319",[232,8.07]],["name/320",[233,69.86]],["parent/320",[42,3.102]],["name/321",[10,26.925]],["parent/321",[234,8.07]],["name/322",[134,34.761]],["parent/322",[235,8.07]],["name/323",[236,69.86]],["parent/323",[42,3.102]],["name/324",[10,26.925]],["parent/324",[237,8.07]],["name/325",[144,60.477]],["parent/325",[238,6.228]],["name/326",[177,67.853]],["parent/326",[238,6.228]],["name/327",[150,66.182]],["parent/327",[238,6.228]],["name/328",[194,67.853]],["parent/328",[238,6.228]],["name/329",[224,72.373]],["parent/329",[238,6.228]],["name/330",[138,60.477]],["parent/330",[238,6.228]],["name/331",[145,59.643]],["parent/331",[238,6.228]],["name/332",[239,80.846]],["parent/332",[238,6.228]],["name/333",[179,69.86]],["parent/333",[238,6.228]],["name/334",[240,69.86]],["parent/334",[42,3.102]],["name/335",[10,26.925]],["parent/335",[241,8.07]],["name/336",[145,59.643]],["parent/336",[242,8.07]],["name/337",[243,69.86]],["parent/337",[42,3.102]],["name/338",[10,26.925]],["parent/338",[244,8.07]],["name/339",[134,34.761]],["parent/339",[245,8.07]],["name/340",[246,69.86]],["parent/340",[42,3.102]],["name/341",[10,26.925]],["parent/341",[247,8.07]],["name/342",[248,69.86]],["parent/342",[42,3.102]],["name/343",[10,26.925]],["parent/343",[249,8.07]],["name/344",[134,34.761]],["parent/344",[250,8.07]],["name/345",[251,69.86]],["parent/345",[42,3.102]],["name/346",[10,26.925]],["parent/346",[252,8.07]],["name/347",[253,69.86]],["parent/347",[42,3.102]],["name/348",[10,26.925]],["parent/348",[254,8.07]],["name/349",[134,34.761]],["parent/349",[255,8.07]],["name/350",[256,69.86]],["parent/350",[42,3.102]],["name/351",[10,26.925]],["parent/351",[257,8.07]],["name/352",[258,75.737]],["parent/352",[259,7.56]],["name/353",[260,75.737]],["parent/353",[259,7.56]],["name/354",[261,69.86]],["parent/354",[42,3.102]],["name/355",[10,26.925]],["parent/355",[262,8.07]],["name/356",[138,60.477]],["parent/356",[263,6.974]],["name/357",[174,75.737]],["parent/357",[263,6.974]],["name/358",[145,59.643]],["parent/358",[263,6.974]],["name/359",[150,66.182]],["parent/359",[263,6.974]],["name/360",[264,69.86]],["parent/360",[42,3.102]],["name/361",[10,26.925]],["parent/361",[265,8.07]],["name/362",[134,34.761]],["parent/362",[266,8.07]],["name/363",[267,63.5]],["parent/363",[42,3.102]],["name/364",[10,26.925]],["parent/364",[268,8.07]],["name/365",[269,63.5]],["parent/365",[42,3.102]],["name/366",[10,26.925]],["parent/366",[270,8.07]],["name/367",[134,34.761]],["parent/367",[271,8.07]],["name/368",[272,69.86]],["parent/368",[42,3.102]],["name/369",[10,26.925]],["parent/369",[273,8.07]],["name/370",[138,60.477]],["parent/370",[274,6.607]],["name/371",[275,80.846]],["parent/371",[274,6.607]],["name/372",[178,67.853]],["parent/372",[274,6.607]],["name/373",[276,80.846]],["parent/373",[274,6.607]],["name/374",[145,59.643]],["parent/374",[274,6.607]],["name/375",[150,66.182]],["parent/375",[274,6.607]],["name/376",[277,69.86]],["parent/376",[42,3.102]],["name/377",[10,26.925]],["parent/377",[278,8.07]],["name/378",[279,69.86]],["parent/378",[42,3.102]],["name/379",[10,26.925]],["parent/379",[280,8.07]],["name/380",[134,34.761]],["parent/380",[281,8.07]],["name/381",[282,69.86]],["parent/381",[42,3.102]],["name/382",[10,26.925]],["parent/382",[283,8.07]],["name/383",[258,75.737]],["parent/383",[284,7.56]],["name/384",[260,75.737]],["parent/384",[284,7.56]],["name/385",[285,69.86]],["parent/385",[42,3.102]],["name/386",[286,69.86]],["parent/386",[42,3.102]],["name/387",[287,72.373]],["parent/387",[42,3.102]],["name/388",[116,69.86]],["parent/388",[42,3.102]],["name/389",[117,69.86]],["parent/389",[42,3.102]],["name/390",[118,69.86]],["parent/390",[42,3.102]],["name/391",[119,69.86]],["parent/391",[42,3.102]],["name/392",[120,69.86]],["parent/392",[42,3.102]],["name/393",[121,69.86]],["parent/393",[42,3.102]],["name/394",[122,69.86]],["parent/394",[42,3.102]],["name/395",[123,69.86]],["parent/395",[42,3.102]],["name/396",[124,69.86]],["parent/396",[42,3.102]],["name/397",[125,69.86]],["parent/397",[42,3.102]],["name/398",[126,69.86]],["parent/398",[42,3.102]],["name/399",[127,69.86]],["parent/399",[42,3.102]],["name/400",[128,69.86]],["parent/400",[42,3.102]],["name/401",[129,69.86]],["parent/401",[42,3.102]],["name/402",[130,69.86]],["parent/402",[42,3.102]],["name/403",[132,69.86]],["parent/403",[42,3.102]],["name/404",[136,69.86]],["parent/404",[42,3.102]],["name/405",[147,69.86]],["parent/405",[42,3.102]],["name/406",[152,69.86]],["parent/406",[42,3.102]],["name/407",[155,69.86]],["parent/407",[42,3.102]],["name/408",[157,69.86]],["parent/408",[42,3.102]],["name/409",[160,69.86]],["parent/409",[42,3.102]],["name/410",[167,69.86]],["parent/410",[42,3.102]],["name/411",[169,69.86]],["parent/411",[42,3.102]],["name/412",[172,69.86]],["parent/412",[42,3.102]],["name/413",[180,69.86]],["parent/413",[42,3.102]],["name/414",[182,69.86]],["parent/414",[42,3.102]],["name/415",[185,69.86]],["parent/415",[42,3.102]],["name/416",[187,69.86]],["parent/416",[42,3.102]],["name/417",[190,69.86]],["parent/417",[42,3.102]],["name/418",[195,69.86]],["parent/418",[42,3.102]],["name/419",[197,69.86]],["parent/419",[42,3.102]],["name/420",[200,69.86]],["parent/420",[42,3.102]],["name/421",[204,69.86]],["parent/421",[42,3.102]],["name/422",[206,69.86]],["parent/422",[42,3.102]],["name/423",[209,69.86]],["parent/423",[42,3.102]],["name/424",[215,69.86]],["parent/424",[42,3.102]],["name/425",[217,69.86]],["parent/425",[42,3.102]],["name/426",[220,69.86]],["parent/426",[42,3.102]],["name/427",[225,69.86]],["parent/427",[42,3.102]],["name/428",[228,69.86]],["parent/428",[42,3.102]],["name/429",[231,69.86]],["parent/429",[42,3.102]],["name/430",[233,69.86]],["parent/430",[42,3.102]],["name/431",[236,69.86]],["parent/431",[42,3.102]],["name/432",[240,69.86]],["parent/432",[42,3.102]],["name/433",[243,69.86]],["parent/433",[42,3.102]],["name/434",[246,69.86]],["parent/434",[42,3.102]],["name/435",[248,69.86]],["parent/435",[42,3.102]],["name/436",[251,69.86]],["parent/436",[42,3.102]],["name/437",[253,69.86]],["parent/437",[42,3.102]],["name/438",[256,69.86]],["parent/438",[42,3.102]],["name/439",[261,69.86]],["parent/439",[42,3.102]],["name/440",[264,69.86]],["parent/440",[42,3.102]],["name/441",[267,63.5]],["parent/441",[42,3.102]],["name/442",[269,63.5]],["parent/442",[42,3.102]],["name/443",[272,69.86]],["parent/443",[42,3.102]],["name/444",[277,69.86]],["parent/444",[42,3.102]],["name/445",[279,69.86]],["parent/445",[42,3.102]],["name/446",[282,69.86]],["parent/446",[42,3.102]],["name/447",[285,69.86]],["parent/447",[42,3.102]],["name/448",[286,69.86]],["parent/448",[42,3.102]],["name/449",[287,72.373]],["parent/449",[42,3.102]],["name/450",[42,31.078]],["parent/450",[42,3.102]],["name/451",[288,72.373]],["parent/451",[]],["name/452",[288,72.373]],["parent/452",[288,7.224]],["name/453",[29,55.723]],["parent/453",[289,6.607]],["name/454",[290,80.846]],["parent/454",[289,6.607]],["name/455",[291,80.846]],["parent/455",[289,6.607]],["name/456",[292,80.846]],["parent/456",[289,6.607]],["name/457",[293,80.846]],["parent/457",[289,6.607]],["name/458",[294,80.846]],["parent/458",[289,6.607]],["name/459",[295,75.737]],["parent/459",[0,4.256]],["name/460",[296,75.737]],["parent/460",[0,4.256]],["name/461",[297,80.846]],["parent/461",[0,4.256]],["name/462",[298,75.737]],["parent/462",[0,4.256]],["name/463",[299,75.737]],["parent/463",[0,4.256]],["name/464",[300,75.737]],["parent/464",[0,4.256]],["name/465",[301,75.737]],["parent/465",[0,4.256]],["name/466",[302,75.737]],["parent/466",[0,4.256]],["name/467",[303,75.737]],["parent/467",[0,4.256]],["name/468",[304,75.737]],["parent/468",[0,4.256]],["name/469",[305,75.737]],["parent/469",[0,4.256]],["name/470",[306,75.737]],["parent/470",[0,4.256]],["name/471",[84,67.853]],["parent/471",[0,4.256]],["name/472",[307,75.737]],["parent/472",[0,4.256]],["name/473",[308,75.737]],["parent/473",[0,4.256]],["name/474",[37,75.737]],["parent/474",[0,4.256]],["name/475",[38,75.737]],["parent/475",[0,4.256]],["name/476",[39,75.737]],["parent/476",[0,4.256]],["name/477",[40,75.737]],["parent/477",[0,4.256]],["name/478",[41,75.737]],["parent/478",[0,4.256]],["name/479",[300,75.737]],["parent/479",[0,4.256]],["name/480",[301,75.737]],["parent/480",[0,4.256]],["name/481",[302,75.737]],["parent/481",[0,4.256]],["name/482",[303,75.737]],["parent/482",[0,4.256]],["name/483",[304,75.737]],["parent/483",[0,4.256]],["name/484",[305,75.737]],["parent/484",[0,4.256]],["name/485",[306,75.737]],["parent/485",[0,4.256]],["name/486",[84,67.853]],["parent/486",[0,4.256]],["name/487",[307,75.737]],["parent/487",[0,4.256]],["name/488",[308,75.737]],["parent/488",[0,4.256]],["name/489",[295,75.737]],["parent/489",[0,4.256]],["name/490",[296,75.737]],["parent/490",[0,4.256]],["name/491",[298,75.737]],["parent/491",[0,4.256]],["name/492",[299,75.737]],["parent/492",[0,4.256]],["name/493",[7,75.737]],["parent/493",[0,4.256]],["name/494",[8,75.737]],["parent/494",[0,4.256]],["name/495",[1,75.737]],["parent/495",[0,4.256]],["name/496",[9,47.405]],["parent/496",[0,4.256]],["name/497",[4,75.737]],["parent/497",[0,4.256]],["name/498",[5,75.737]],["parent/498",[0,4.256]],["name/499",[12,75.737]],["parent/499",[0,4.256]],["name/500",[13,75.737]],["parent/500",[0,4.256]],["name/501",[15,75.737]],["parent/501",[0,4.256]],["name/502",[309,75.737]],["parent/502",[0,4.256]],["name/503",[310,75.737]],["parent/503",[0,4.256]],["name/504",[311,75.737]],["parent/504",[0,4.256]],["name/505",[312,75.737]],["parent/505",[0,4.256]],["name/506",[311,75.737]],["parent/506",[0,4.256]],["name/507",[312,75.737]],["parent/507",[0,4.256]],["name/508",[309,75.737]],["parent/508",[0,4.256]],["name/509",[313,80.846]],["parent/509",[314,6.773]],["name/510",[315,80.846]],["parent/510",[314,6.773]],["name/511",[316,80.846]],["parent/511",[314,6.773]],["name/512",[134,34.761]],["parent/512",[314,6.773]],["name/513",[2,75.737]],["parent/513",[314,6.773]],["name/514",[317,80.846]],["parent/514",[0,4.256]],["name/515",[310,75.737]],["parent/515",[0,4.256]],["name/516",[318,25.433]],["parent/516",[]],["name/517",[43,46.723]],["parent/517",[318,2.539]],["name/518",[319,52.914]],["parent/518",[318,2.539]],["name/519",[320,52.914]],["parent/519",[318,2.539]],["name/520",[321,56.867]],["parent/520",[318,2.539]],["name/521",[322,56.278]],["parent/521",[318,2.539]],["name/522",[323,56.867]],["parent/522",[318,2.539]],["name/523",[324,56.867]],["parent/523",[318,2.539]],["name/524",[325,56.867]],["parent/524",[318,2.539]],["name/525",[326,56.867]],["parent/525",[318,2.539]],["name/526",[327,56.867]],["parent/526",[318,2.539]],["name/527",[328,56.867]],["parent/527",[318,2.539]],["name/528",[329,56.867]],["parent/528",[318,2.539]],["name/529",[330,56.867]],["parent/529",[318,2.539]],["name/530",[331,56.867]],["parent/530",[318,2.539]],["name/531",[332,56.867]],["parent/531",[318,2.539]],["name/532",[333,56.867]],["parent/532",[318,2.539]],["name/533",[334,56.867]],["parent/533",[318,2.539]],["name/534",[335,56.867]],["parent/534",[318,2.539]],["name/535",[336,56.867]],["parent/535",[318,2.539]],["name/536",[337,56.867]],["parent/536",[318,2.539]],["name/537",[338,56.867]],["parent/537",[318,2.539]],["name/538",[339,56.867]],["parent/538",[318,2.539]],["name/539",[340,56.867]],["parent/539",[318,2.539]],["name/540",[341,56.867]],["parent/540",[318,2.539]],["name/541",[342,56.867]],["parent/541",[318,2.539]],["name/542",[343,56.867]],["parent/542",[318,2.539]],["name/543",[344,56.867]],["parent/543",[318,2.539]],["name/544",[345,56.867]],["parent/544",[318,2.539]],["name/545",[346,56.867]],["parent/545",[318,2.539]],["name/546",[347,56.867]],["parent/546",[318,2.539]],["name/547",[348,59.643]],["parent/547",[318,2.539]],["name/548",[349,63.5]],["parent/548",[318,2.539]],["name/549",[350,47.887]],["parent/549",[318,2.539]],["name/550",[351,63.5]],["parent/550",[318,2.539]],["name/551",[352,63.5]],["parent/551",[318,2.539]],["name/552",[353,44.558]],["parent/552",[318,2.539]],["name/553",[9,47.405]],["parent/553",[318,2.539]],["name/554",[354,59.643]],["parent/554",[318,2.539]],["name/555",[355,59.643]],["parent/555",[318,2.539]],["name/556",[356,59.643]],["parent/556",[318,2.539]],["name/557",[357,63.5]],["parent/557",[318,2.539]],["name/558",[358,63.5]],["parent/558",[318,2.539]],["name/559",[359,63.5]],["parent/559",[318,2.539]],["name/560",[360,59.643]],["parent/560",[318,2.539]],["name/561",[361,59.643]],["parent/561",[318,2.539]],["name/562",[362,59.643]],["parent/562",[318,2.539]],["name/563",[345,56.867]],["parent/563",[318,2.539]],["name/564",[346,56.867]],["parent/564",[318,2.539]],["name/565",[347,56.867]],["parent/565",[318,2.539]],["name/566",[349,63.5]],["parent/566",[318,2.539]],["name/567",[326,56.867]],["parent/567",[318,2.539]],["name/568",[336,56.867]],["parent/568",[318,2.539]],["name/569",[337,56.867]],["parent/569",[318,2.539]],["name/570",[320,52.914]],["parent/570",[318,2.539]],["name/571",[338,56.867]],["parent/571",[318,2.539]],["name/572",[350,47.887]],["parent/572",[318,2.539]],["name/573",[327,56.867]],["parent/573",[318,2.539]],["name/574",[328,56.867]],["parent/574",[318,2.539]],["name/575",[351,63.5]],["parent/575",[318,2.539]],["name/576",[352,63.5]],["parent/576",[318,2.539]],["name/577",[353,44.558]],["parent/577",[318,2.539]],["name/578",[321,56.867]],["parent/578",[318,2.539]],["name/579",[9,47.405]],["parent/579",[318,2.539]],["name/580",[319,52.914]],["parent/580",[318,2.539]],["name/581",[343,56.867]],["parent/581",[318,2.539]],["name/582",[331,56.867]],["parent/582",[318,2.539]],["name/583",[348,59.643]],["parent/583",[318,2.539]],["name/584",[324,56.867]],["parent/584",[318,2.539]],["name/585",[323,56.867]],["parent/585",[318,2.539]],["name/586",[354,59.643]],["parent/586",[318,2.539]],["name/587",[355,59.643]],["parent/587",[318,2.539]],["name/588",[356,59.643]],["parent/588",[318,2.539]],["name/589",[329,56.867]],["parent/589",[318,2.539]],["name/590",[357,63.5]],["parent/590",[318,2.539]],["name/591",[358,63.5]],["parent/591",[318,2.539]],["name/592",[325,56.867]],["parent/592",[318,2.539]],["name/593",[344,56.867]],["parent/593",[318,2.539]],["name/594",[341,56.867]],["parent/594",[318,2.539]],["name/595",[342,56.867]],["parent/595",[318,2.539]],["name/596",[339,56.867]],["parent/596",[318,2.539]],["name/597",[340,56.867]],["parent/597",[318,2.539]],["name/598",[334,56.867]],["parent/598",[318,2.539]],["name/599",[335,56.867]],["parent/599",[318,2.539]],["name/600",[330,56.867]],["parent/600",[318,2.539]],["name/601",[333,56.867]],["parent/601",[318,2.539]],["name/602",[359,63.5]],["parent/602",[318,2.539]],["name/603",[332,56.867]],["parent/603",[318,2.539]],["name/604",[322,56.278]],["parent/604",[318,2.539]],["name/605",[360,59.643]],["parent/605",[318,2.539]],["name/606",[361,59.643]],["parent/606",[318,2.539]],["name/607",[362,59.643]],["parent/607",[318,2.539]],["name/608",[318,25.433]],["parent/608",[318,2.539]],["name/609",[17,53.765]],["parent/609",[363,4.732]],["name/610",[43,46.723]],["parent/610",[363,4.732]],["name/611",[77,57.492]],["parent/611",[363,4.732]],["name/612",[364,66.182]],["parent/612",[365,4.857]],["name/613",[366,66.182]],["parent/613",[365,4.857]],["name/614",[367,66.182]],["parent/614",[365,4.857]],["name/615",[368,66.182]],["parent/615",[365,4.857]],["name/616",[369,66.182]],["parent/616",[365,4.857]],["name/617",[370,66.182]],["parent/617",[365,4.857]],["name/618",[371,66.182]],["parent/618",[365,4.857]],["name/619",[372,66.182]],["parent/619",[365,4.857]],["name/620",[373,66.182]],["parent/620",[365,4.857]],["name/621",[374,66.182]],["parent/621",[365,4.857]],["name/622",[375,66.182]],["parent/622",[365,4.857]],["name/623",[376,66.182]],["parent/623",[365,4.857]],["name/624",[377,66.182]],["parent/624",[365,4.857]],["name/625",[378,66.182]],["parent/625",[365,4.857]],["name/626",[379,66.182]],["parent/626",[365,4.857]],["name/627",[380,66.182]],["parent/627",[365,4.857]],["name/628",[381,66.182]],["parent/628",[365,4.857]],["name/629",[382,66.182]],["parent/629",[365,4.857]],["name/630",[383,66.182]],["parent/630",[365,4.857]],["name/631",[384,66.182]],["parent/631",[365,4.857]],["name/632",[385,66.182]],["parent/632",[365,4.857]],["name/633",[386,66.182]],["parent/633",[365,4.857]],["name/634",[387,66.182]],["parent/634",[365,4.857]],["name/635",[388,66.182]],["parent/635",[365,4.857]],["name/636",[389,66.182]],["parent/636",[365,4.857]],["name/637",[390,66.182]],["parent/637",[365,4.857]],["name/638",[391,66.182]],["parent/638",[365,4.857]],["name/639",[392,66.182]],["parent/639",[365,4.857]],["name/640",[393,66.182]],["parent/640",[365,4.857]],["name/641",[394,66.182]],["parent/641",[365,4.857]],["name/642",[395,66.182]],["parent/642",[365,4.857]],["name/643",[396,66.182]],["parent/643",[365,4.857]],["name/644",[397,66.182]],["parent/644",[365,4.857]],["name/645",[398,66.182]],["parent/645",[365,4.857]],["name/646",[399,66.182]],["parent/646",[365,4.857]],["name/647",[400,66.182]],["parent/647",[365,4.857]],["name/648",[401,66.182]],["parent/648",[365,4.857]],["name/649",[29,55.723]],["parent/649",[363,4.732]],["name/650",[96,57.492]],["parent/650",[363,4.732]],["name/651",[10,26.925]],["parent/651",[402,8.07]],["name/652",[364,66.182]],["parent/652",[403,4.172]],["name/653",[404,75.737]],["parent/653",[403,4.172]],["name/654",[366,66.182]],["parent/654",[403,4.172]],["name/655",[405,75.737]],["parent/655",[403,4.172]],["name/656",[367,66.182]],["parent/656",[403,4.172]],["name/657",[406,75.737]],["parent/657",[403,4.172]],["name/658",[368,66.182]],["parent/658",[403,4.172]],["name/659",[407,75.737]],["parent/659",[403,4.172]],["name/660",[369,66.182]],["parent/660",[403,4.172]],["name/661",[408,75.737]],["parent/661",[403,4.172]],["name/662",[370,66.182]],["parent/662",[403,4.172]],["name/663",[409,75.737]],["parent/663",[403,4.172]],["name/664",[371,66.182]],["parent/664",[403,4.172]],["name/665",[410,75.737]],["parent/665",[403,4.172]],["name/666",[372,66.182]],["parent/666",[403,4.172]],["name/667",[411,75.737]],["parent/667",[403,4.172]],["name/668",[373,66.182]],["parent/668",[403,4.172]],["name/669",[412,75.737]],["parent/669",[403,4.172]],["name/670",[374,66.182]],["parent/670",[403,4.172]],["name/671",[413,75.737]],["parent/671",[403,4.172]],["name/672",[375,66.182]],["parent/672",[403,4.172]],["name/673",[414,75.737]],["parent/673",[403,4.172]],["name/674",[376,66.182]],["parent/674",[403,4.172]],["name/675",[415,75.737]],["parent/675",[403,4.172]],["name/676",[377,66.182]],["parent/676",[403,4.172]],["name/677",[416,75.737]],["parent/677",[403,4.172]],["name/678",[378,66.182]],["parent/678",[403,4.172]],["name/679",[417,75.737]],["parent/679",[403,4.172]],["name/680",[379,66.182]],["parent/680",[403,4.172]],["name/681",[418,75.737]],["parent/681",[403,4.172]],["name/682",[380,66.182]],["parent/682",[403,4.172]],["name/683",[419,75.737]],["parent/683",[403,4.172]],["name/684",[381,66.182]],["parent/684",[403,4.172]],["name/685",[420,75.737]],["parent/685",[403,4.172]],["name/686",[382,66.182]],["parent/686",[403,4.172]],["name/687",[421,75.737]],["parent/687",[403,4.172]],["name/688",[383,66.182]],["parent/688",[403,4.172]],["name/689",[422,75.737]],["parent/689",[403,4.172]],["name/690",[384,66.182]],["parent/690",[403,4.172]],["name/691",[423,75.737]],["parent/691",[403,4.172]],["name/692",[385,66.182]],["parent/692",[403,4.172]],["name/693",[424,75.737]],["parent/693",[403,4.172]],["name/694",[386,66.182]],["parent/694",[403,4.172]],["name/695",[425,75.737]],["parent/695",[403,4.172]],["name/696",[387,66.182]],["parent/696",[403,4.172]],["name/697",[426,75.737]],["parent/697",[403,4.172]],["name/698",[388,66.182]],["parent/698",[403,4.172]],["name/699",[427,75.737]],["parent/699",[403,4.172]],["name/700",[389,66.182]],["parent/700",[403,4.172]],["name/701",[428,75.737]],["parent/701",[403,4.172]],["name/702",[390,66.182]],["parent/702",[403,4.172]],["name/703",[429,75.737]],["parent/703",[403,4.172]],["name/704",[391,66.182]],["parent/704",[403,4.172]],["name/705",[430,75.737]],["parent/705",[403,4.172]],["name/706",[392,66.182]],["parent/706",[403,4.172]],["name/707",[431,75.737]],["parent/707",[403,4.172]],["name/708",[393,66.182]],["parent/708",[403,4.172]],["name/709",[432,75.737]],["parent/709",[403,4.172]],["name/710",[394,66.182]],["parent/710",[403,4.172]],["name/711",[433,75.737]],["parent/711",[403,4.172]],["name/712",[395,66.182]],["parent/712",[403,4.172]],["name/713",[434,75.737]],["parent/713",[403,4.172]],["name/714",[396,66.182]],["parent/714",[403,4.172]],["name/715",[435,75.737]],["parent/715",[403,4.172]],["name/716",[397,66.182]],["parent/716",[403,4.172]],["name/717",[436,75.737]],["parent/717",[403,4.172]],["name/718",[398,66.182]],["parent/718",[403,4.172]],["name/719",[437,75.737]],["parent/719",[403,4.172]],["name/720",[399,66.182]],["parent/720",[403,4.172]],["name/721",[438,75.737]],["parent/721",[403,4.172]],["name/722",[400,66.182]],["parent/722",[403,4.172]],["name/723",[439,75.737]],["parent/723",[403,4.172]],["name/724",[401,66.182]],["parent/724",[403,4.172]],["name/725",[440,75.737]],["parent/725",[403,4.172]],["name/726",[364,66.182]],["parent/726",[363,4.732]],["name/727",[366,66.182]],["parent/727",[363,4.732]],["name/728",[367,66.182]],["parent/728",[363,4.732]],["name/729",[368,66.182]],["parent/729",[363,4.732]],["name/730",[369,66.182]],["parent/730",[363,4.732]],["name/731",[370,66.182]],["parent/731",[363,4.732]],["name/732",[371,66.182]],["parent/732",[363,4.732]],["name/733",[372,66.182]],["parent/733",[363,4.732]],["name/734",[373,66.182]],["parent/734",[363,4.732]],["name/735",[374,66.182]],["parent/735",[363,4.732]],["name/736",[375,66.182]],["parent/736",[363,4.732]],["name/737",[376,66.182]],["parent/737",[363,4.732]],["name/738",[377,66.182]],["parent/738",[363,4.732]],["name/739",[378,66.182]],["parent/739",[363,4.732]],["name/740",[379,66.182]],["parent/740",[363,4.732]],["name/741",[380,66.182]],["parent/741",[363,4.732]],["name/742",[381,66.182]],["parent/742",[363,4.732]],["name/743",[382,66.182]],["parent/743",[363,4.732]],["name/744",[383,66.182]],["parent/744",[363,4.732]],["name/745",[384,66.182]],["parent/745",[363,4.732]],["name/746",[385,66.182]],["parent/746",[363,4.732]],["name/747",[386,66.182]],["parent/747",[363,4.732]],["name/748",[387,66.182]],["parent/748",[363,4.732]],["name/749",[388,66.182]],["parent/749",[363,4.732]],["name/750",[389,66.182]],["parent/750",[363,4.732]],["name/751",[390,66.182]],["parent/751",[363,4.732]],["name/752",[391,66.182]],["parent/752",[363,4.732]],["name/753",[392,66.182]],["parent/753",[363,4.732]],["name/754",[393,66.182]],["parent/754",[363,4.732]],["name/755",[394,66.182]],["parent/755",[363,4.732]],["name/756",[395,66.182]],["parent/756",[363,4.732]],["name/757",[396,66.182]],["parent/757",[363,4.732]],["name/758",[397,66.182]],["parent/758",[363,4.732]],["name/759",[398,66.182]],["parent/759",[363,4.732]],["name/760",[399,66.182]],["parent/760",[363,4.732]],["name/761",[400,66.182]],["parent/761",[363,4.732]],["name/762",[401,66.182]],["parent/762",[363,4.732]],["name/763",[441,63.5]],["parent/763",[318,2.539]],["name/764",[442,63.5]],["parent/764",[318,2.539]],["name/765",[443,63.5]],["parent/765",[318,2.539]],["name/766",[10,26.925]],["parent/766",[444,8.07]],["name/767",[445,36.034]],["parent/767",[446,7.56]],["name/768",[165,40.652]],["parent/768",[446,7.56]],["name/769",[447,63.5]],["parent/769",[318,2.539]],["name/770",[10,26.925]],["parent/770",[448,8.07]],["name/771",[134,34.761]],["parent/771",[449,7.56]],["name/772",[450,42.632]],["parent/772",[449,7.56]],["name/773",[451,63.5]],["parent/773",[318,2.539]],["name/774",[10,26.925]],["parent/774",[452,8.07]],["name/775",[445,36.034]],["parent/775",[453,7.56]],["name/776",[165,40.652]],["parent/776",[453,7.56]],["name/777",[454,63.5]],["parent/777",[318,2.539]],["name/778",[10,26.925]],["parent/778",[455,8.07]],["name/779",[134,34.761]],["parent/779",[456,7.56]],["name/780",[450,42.632]],["parent/780",[456,7.56]],["name/781",[457,63.5]],["parent/781",[318,2.539]],["name/782",[10,26.925]],["parent/782",[458,8.07]],["name/783",[445,36.034]],["parent/783",[459,7.56]],["name/784",[165,40.652]],["parent/784",[459,7.56]],["name/785",[460,63.5]],["parent/785",[318,2.539]],["name/786",[10,26.925]],["parent/786",[461,8.07]],["name/787",[134,34.761]],["parent/787",[462,7.56]],["name/788",[450,42.632]],["parent/788",[462,7.56]],["name/789",[463,63.5]],["parent/789",[318,2.539]],["name/790",[10,26.925]],["parent/790",[464,8.07]],["name/791",[445,36.034]],["parent/791",[465,7.56]],["name/792",[165,40.652]],["parent/792",[465,7.56]],["name/793",[466,63.5]],["parent/793",[318,2.539]],["name/794",[10,26.925]],["parent/794",[467,8.07]],["name/795",[134,34.761]],["parent/795",[468,7.56]],["name/796",[450,42.632]],["parent/796",[468,7.56]],["name/797",[469,63.5]],["parent/797",[318,2.539]],["name/798",[10,26.925]],["parent/798",[470,8.07]],["name/799",[445,36.034]],["parent/799",[471,7.56]],["name/800",[165,40.652]],["parent/800",[471,7.56]],["name/801",[472,63.5]],["parent/801",[318,2.539]],["name/802",[10,26.925]],["parent/802",[473,8.07]],["name/803",[134,34.761]],["parent/803",[474,7.56]],["name/804",[450,42.632]],["parent/804",[474,7.56]],["name/805",[475,63.5]],["parent/805",[318,2.539]],["name/806",[10,26.925]],["parent/806",[476,8.07]],["name/807",[445,36.034]],["parent/807",[477,8.07]],["name/808",[478,63.5]],["parent/808",[318,2.539]],["name/809",[10,26.925]],["parent/809",[479,8.07]],["name/810",[134,34.761]],["parent/810",[480,7.56]],["name/811",[450,42.632]],["parent/811",[480,7.56]],["name/812",[481,63.5]],["parent/812",[318,2.539]],["name/813",[10,26.925]],["parent/813",[482,8.07]],["name/814",[445,36.034]],["parent/814",[483,8.07]],["name/815",[484,63.5]],["parent/815",[318,2.539]],["name/816",[10,26.925]],["parent/816",[485,8.07]],["name/817",[134,34.761]],["parent/817",[486,7.56]],["name/818",[450,42.632]],["parent/818",[486,7.56]],["name/819",[487,63.5]],["parent/819",[318,2.539]],["name/820",[10,26.925]],["parent/820",[488,8.07]],["name/821",[445,36.034]],["parent/821",[489,8.07]],["name/822",[490,63.5]],["parent/822",[318,2.539]],["name/823",[10,26.925]],["parent/823",[491,8.07]],["name/824",[134,34.761]],["parent/824",[492,7.224]],["name/825",[493,61.387]],["parent/825",[492,7.224]],["name/826",[450,42.632]],["parent/826",[492,7.224]],["name/827",[494,63.5]],["parent/827",[318,2.539]],["name/828",[10,26.925]],["parent/828",[495,8.07]],["name/829",[445,36.034]],["parent/829",[496,7.224]],["name/830",[497,75.737]],["parent/830",[496,7.224]],["name/831",[165,40.652]],["parent/831",[496,7.224]],["name/832",[498,63.5]],["parent/832",[318,2.539]],["name/833",[10,26.925]],["parent/833",[499,8.07]],["name/834",[134,34.761]],["parent/834",[500,8.07]],["name/835",[501,63.5]],["parent/835",[318,2.539]],["name/836",[10,26.925]],["parent/836",[502,8.07]],["name/837",[445,36.034]],["parent/837",[503,7.56]],["name/838",[165,40.652]],["parent/838",[503,7.56]],["name/839",[504,63.5]],["parent/839",[318,2.539]],["name/840",[10,26.925]],["parent/840",[505,8.07]],["name/841",[134,34.761]],["parent/841",[506,7.56]],["name/842",[450,42.632]],["parent/842",[506,7.56]],["name/843",[507,63.5]],["parent/843",[318,2.539]],["name/844",[10,26.925]],["parent/844",[508,8.07]],["name/845",[445,36.034]],["parent/845",[509,8.07]],["name/846",[510,63.5]],["parent/846",[318,2.539]],["name/847",[10,26.925]],["parent/847",[511,8.07]],["name/848",[134,34.761]],["parent/848",[512,7.56]],["name/849",[450,42.632]],["parent/849",[512,7.56]],["name/850",[513,63.5]],["parent/850",[318,2.539]],["name/851",[10,26.925]],["parent/851",[514,8.07]],["name/852",[445,36.034]],["parent/852",[515,7.56]],["name/853",[165,40.652]],["parent/853",[515,7.56]],["name/854",[516,63.5]],["parent/854",[318,2.539]],["name/855",[10,26.925]],["parent/855",[517,8.07]],["name/856",[134,34.761]],["parent/856",[518,7.56]],["name/857",[450,42.632]],["parent/857",[518,7.56]],["name/858",[519,63.5]],["parent/858",[318,2.539]],["name/859",[10,26.925]],["parent/859",[520,8.07]],["name/860",[445,36.034]],["parent/860",[521,7.56]],["name/861",[165,40.652]],["parent/861",[521,7.56]],["name/862",[522,63.5]],["parent/862",[318,2.539]],["name/863",[10,26.925]],["parent/863",[523,8.07]],["name/864",[134,34.761]],["parent/864",[524,7.56]],["name/865",[450,42.632]],["parent/865",[524,7.56]],["name/866",[525,63.5]],["parent/866",[318,2.539]],["name/867",[10,26.925]],["parent/867",[526,8.07]],["name/868",[445,36.034]],["parent/868",[527,8.07]],["name/869",[528,63.5]],["parent/869",[318,2.539]],["name/870",[10,26.925]],["parent/870",[529,8.07]],["name/871",[134,34.761]],["parent/871",[530,7.56]],["name/872",[450,42.632]],["parent/872",[530,7.56]],["name/873",[531,63.5]],["parent/873",[318,2.539]],["name/874",[10,26.925]],["parent/874",[532,8.07]],["name/875",[445,36.034]],["parent/875",[533,7.56]],["name/876",[165,40.652]],["parent/876",[533,7.56]],["name/877",[534,63.5]],["parent/877",[318,2.539]],["name/878",[10,26.925]],["parent/878",[535,8.07]],["name/879",[134,34.761]],["parent/879",[536,7.224]],["name/880",[537,61.387]],["parent/880",[536,7.224]],["name/881",[450,42.632]],["parent/881",[536,7.224]],["name/882",[538,63.5]],["parent/882",[318,2.539]],["name/883",[10,26.925]],["parent/883",[539,8.07]],["name/884",[445,36.034]],["parent/884",[540,8.07]],["name/885",[541,63.5]],["parent/885",[318,2.539]],["name/886",[10,26.925]],["parent/886",[542,8.07]],["name/887",[134,34.761]],["parent/887",[543,7.56]],["name/888",[450,42.632]],["parent/888",[543,7.56]],["name/889",[544,63.5]],["parent/889",[318,2.539]],["name/890",[10,26.925]],["parent/890",[545,8.07]],["name/891",[445,36.034]],["parent/891",[546,6.974]],["name/892",[547,75.737]],["parent/892",[546,6.974]],["name/893",[548,75.737]],["parent/893",[546,6.974]],["name/894",[165,40.652]],["parent/894",[546,6.974]],["name/895",[549,63.5]],["parent/895",[318,2.539]],["name/896",[10,26.925]],["parent/896",[550,8.07]],["name/897",[134,34.761]],["parent/897",[551,8.07]],["name/898",[552,63.5]],["parent/898",[318,2.539]],["name/899",[10,26.925]],["parent/899",[553,8.07]],["name/900",[445,36.034]],["parent/900",[554,7.56]],["name/901",[165,40.652]],["parent/901",[554,7.56]],["name/902",[555,63.5]],["parent/902",[318,2.539]],["name/903",[10,26.925]],["parent/903",[556,8.07]],["name/904",[134,34.761]],["parent/904",[557,7.224]],["name/905",[450,42.632]],["parent/905",[557,7.224]],["name/906",[558,75.737]],["parent/906",[557,7.224]],["name/907",[559,63.5]],["parent/907",[318,2.539]],["name/908",[10,26.925]],["parent/908",[560,8.07]],["name/909",[445,36.034]],["parent/909",[561,7.56]],["name/910",[165,40.652]],["parent/910",[561,7.56]],["name/911",[562,63.5]],["parent/911",[318,2.539]],["name/912",[10,26.925]],["parent/912",[563,8.07]],["name/913",[134,34.761]],["parent/913",[564,7.224]],["name/914",[450,42.632]],["parent/914",[564,7.224]],["name/915",[565,69.86]],["parent/915",[564,7.224]],["name/916",[566,63.5]],["parent/916",[318,2.539]],["name/917",[10,26.925]],["parent/917",[567,8.07]],["name/918",[445,36.034]],["parent/918",[568,7.56]],["name/919",[165,40.652]],["parent/919",[568,7.56]],["name/920",[569,63.5]],["parent/920",[318,2.539]],["name/921",[10,26.925]],["parent/921",[570,8.07]],["name/922",[493,61.387]],["parent/922",[571,7.224]],["name/923",[134,34.761]],["parent/923",[571,7.224]],["name/924",[450,42.632]],["parent/924",[571,7.224]],["name/925",[572,63.5]],["parent/925",[318,2.539]],["name/926",[10,26.925]],["parent/926",[573,8.07]],["name/927",[445,36.034]],["parent/927",[574,7.56]],["name/928",[165,40.652]],["parent/928",[574,7.56]],["name/929",[575,63.5]],["parent/929",[318,2.539]],["name/930",[10,26.925]],["parent/930",[576,8.07]],["name/931",[577,63.5]],["parent/931",[578,7.224]],["name/932",[134,34.761]],["parent/932",[578,7.224]],["name/933",[450,42.632]],["parent/933",[578,7.224]],["name/934",[579,63.5]],["parent/934",[318,2.539]],["name/935",[10,26.925]],["parent/935",[580,8.07]],["name/936",[445,36.034]],["parent/936",[581,7.56]],["name/937",[165,40.652]],["parent/937",[581,7.56]],["name/938",[582,63.5]],["parent/938",[318,2.539]],["name/939",[10,26.925]],["parent/939",[583,8.07]],["name/940",[584,69.86]],["parent/940",[585,7.224]],["name/941",[134,34.761]],["parent/941",[585,7.224]],["name/942",[450,42.632]],["parent/942",[585,7.224]],["name/943",[586,63.5]],["parent/943",[318,2.539]],["name/944",[10,26.925]],["parent/944",[587,8.07]],["name/945",[445,36.034]],["parent/945",[588,7.56]],["name/946",[165,40.652]],["parent/946",[588,7.56]],["name/947",[589,63.5]],["parent/947",[318,2.539]],["name/948",[10,26.925]],["parent/948",[590,8.07]],["name/949",[537,61.387]],["parent/949",[591,7.224]],["name/950",[134,34.761]],["parent/950",[591,7.224]],["name/951",[450,42.632]],["parent/951",[591,7.224]],["name/952",[592,63.5]],["parent/952",[318,2.539]],["name/953",[10,26.925]],["parent/953",[593,8.07]],["name/954",[445,36.034]],["parent/954",[594,6.974]],["name/955",[595,75.737]],["parent/955",[594,6.974]],["name/956",[596,75.737]],["parent/956",[594,6.974]],["name/957",[165,40.652]],["parent/957",[594,6.974]],["name/958",[597,63.5]],["parent/958",[318,2.539]],["name/959",[10,26.925]],["parent/959",[598,8.07]],["name/960",[134,34.761]],["parent/960",[599,8.07]],["name/961",[600,63.5]],["parent/961",[318,2.539]],["name/962",[10,26.925]],["parent/962",[601,8.07]],["name/963",[445,36.034]],["parent/963",[602,7.56]],["name/964",[165,40.652]],["parent/964",[602,7.56]],["name/965",[603,63.5]],["parent/965",[318,2.539]],["name/966",[10,26.925]],["parent/966",[604,8.07]],["name/967",[134,34.761]],["parent/967",[605,7.56]],["name/968",[450,42.632]],["parent/968",[605,7.56]],["name/969",[606,63.5]],["parent/969",[318,2.539]],["name/970",[10,26.925]],["parent/970",[607,8.07]],["name/971",[445,36.034]],["parent/971",[608,7.224]],["name/972",[609,75.737]],["parent/972",[608,7.224]],["name/973",[165,40.652]],["parent/973",[608,7.224]],["name/974",[610,63.5]],["parent/974",[318,2.539]],["name/975",[10,26.925]],["parent/975",[611,8.07]],["name/976",[134,34.761]],["parent/976",[612,7.56]],["name/977",[450,42.632]],["parent/977",[612,7.56]],["name/978",[613,63.5]],["parent/978",[318,2.539]],["name/979",[10,26.925]],["parent/979",[614,8.07]],["name/980",[445,36.034]],["parent/980",[615,7.224]],["name/981",[616,59.643]],["parent/981",[615,7.224]],["name/982",[165,40.652]],["parent/982",[615,7.224]],["name/983",[617,63.5]],["parent/983",[318,2.539]],["name/984",[10,26.925]],["parent/984",[618,8.07]],["name/985",[134,34.761]],["parent/985",[619,7.56]],["name/986",[450,42.632]],["parent/986",[619,7.56]],["name/987",[620,63.5]],["parent/987",[318,2.539]],["name/988",[10,26.925]],["parent/988",[621,8.07]],["name/989",[445,36.034]],["parent/989",[622,6.974]],["name/990",[165,40.652]],["parent/990",[622,6.974]],["name/991",[623,75.737]],["parent/991",[622,6.974]],["name/992",[616,59.643]],["parent/992",[622,6.974]],["name/993",[624,63.5]],["parent/993",[318,2.539]],["name/994",[10,26.925]],["parent/994",[625,8.07]],["name/995",[134,34.761]],["parent/995",[626,7.56]],["name/996",[450,42.632]],["parent/996",[626,7.56]],["name/997",[627,63.5]],["parent/997",[318,2.539]],["name/998",[10,26.925]],["parent/998",[628,8.07]],["name/999",[445,36.034]],["parent/999",[629,7.56]],["name/1000",[165,40.652]],["parent/1000",[629,7.56]],["name/1001",[630,63.5]],["parent/1001",[318,2.539]],["name/1002",[10,26.925]],["parent/1002",[631,8.07]],["name/1003",[134,34.761]],["parent/1003",[632,7.56]],["name/1004",[450,42.632]],["parent/1004",[632,7.56]],["name/1005",[633,63.5]],["parent/1005",[318,2.539]],["name/1006",[10,26.925]],["parent/1006",[634,8.07]],["name/1007",[445,36.034]],["parent/1007",[635,7.56]],["name/1008",[165,40.652]],["parent/1008",[635,7.56]],["name/1009",[636,63.5]],["parent/1009",[318,2.539]],["name/1010",[10,26.925]],["parent/1010",[637,8.07]],["name/1011",[134,34.761]],["parent/1011",[638,7.224]],["name/1012",[450,42.632]],["parent/1012",[638,7.224]],["name/1013",[565,69.86]],["parent/1013",[638,7.224]],["name/1014",[639,63.5]],["parent/1014",[318,2.539]],["name/1015",[10,26.925]],["parent/1015",[640,8.07]],["name/1016",[616,59.643]],["parent/1016",[641,7.224]],["name/1017",[445,36.034]],["parent/1017",[641,7.224]],["name/1018",[165,40.652]],["parent/1018",[641,7.224]],["name/1019",[642,63.5]],["parent/1019",[318,2.539]],["name/1020",[10,26.925]],["parent/1020",[643,8.07]],["name/1021",[493,61.387]],["parent/1021",[644,7.224]],["name/1022",[134,34.761]],["parent/1022",[644,7.224]],["name/1023",[450,42.632]],["parent/1023",[644,7.224]],["name/1024",[645,63.5]],["parent/1024",[318,2.539]],["name/1025",[10,26.925]],["parent/1025",[646,8.07]],["name/1026",[445,36.034]],["parent/1026",[647,7.224]],["name/1027",[616,59.643]],["parent/1027",[647,7.224]],["name/1028",[165,40.652]],["parent/1028",[647,7.224]],["name/1029",[648,63.5]],["parent/1029",[318,2.539]],["name/1030",[10,26.925]],["parent/1030",[649,8.07]],["name/1031",[134,34.761]],["parent/1031",[650,7.56]],["name/1032",[450,42.632]],["parent/1032",[650,7.56]],["name/1033",[651,63.5]],["parent/1033",[318,2.539]],["name/1034",[10,26.925]],["parent/1034",[652,8.07]],["name/1035",[616,59.643]],["parent/1035",[653,7.224]],["name/1036",[445,36.034]],["parent/1036",[653,7.224]],["name/1037",[165,40.652]],["parent/1037",[653,7.224]],["name/1038",[654,63.5]],["parent/1038",[318,2.539]],["name/1039",[10,26.925]],["parent/1039",[655,8.07]],["name/1040",[577,63.5]],["parent/1040",[656,7.224]],["name/1041",[134,34.761]],["parent/1041",[656,7.224]],["name/1042",[450,42.632]],["parent/1042",[656,7.224]],["name/1043",[657,63.5]],["parent/1043",[318,2.539]],["name/1044",[10,26.925]],["parent/1044",[658,8.07]],["name/1045",[445,36.034]],["parent/1045",[659,8.07]],["name/1046",[660,63.5]],["parent/1046",[318,2.539]],["name/1047",[10,26.925]],["parent/1047",[661,8.07]],["name/1048",[584,69.86]],["parent/1048",[662,7.224]],["name/1049",[134,34.761]],["parent/1049",[662,7.224]],["name/1050",[450,42.632]],["parent/1050",[662,7.224]],["name/1051",[663,63.5]],["parent/1051",[318,2.539]],["name/1052",[10,26.925]],["parent/1052",[664,8.07]],["name/1053",[445,36.034]],["parent/1053",[665,7.56]],["name/1054",[165,40.652]],["parent/1054",[665,7.56]],["name/1055",[666,63.5]],["parent/1055",[318,2.539]],["name/1056",[10,26.925]],["parent/1056",[667,8.07]],["name/1057",[537,61.387]],["parent/1057",[668,7.224]],["name/1058",[134,34.761]],["parent/1058",[668,7.224]],["name/1059",[450,42.632]],["parent/1059",[668,7.224]],["name/1060",[669,63.5]],["parent/1060",[318,2.539]],["name/1061",[10,26.925]],["parent/1061",[670,8.07]],["name/1062",[671,75.737]],["parent/1062",[672,6.974]],["name/1063",[616,59.643]],["parent/1063",[672,6.974]],["name/1064",[445,36.034]],["parent/1064",[672,6.974]],["name/1065",[165,40.652]],["parent/1065",[672,6.974]],["name/1066",[673,63.5]],["parent/1066",[318,2.539]],["name/1067",[10,26.925]],["parent/1067",[674,8.07]],["name/1068",[134,34.761]],["parent/1068",[675,7.224]],["name/1069",[537,61.387]],["parent/1069",[675,7.224]],["name/1070",[450,42.632]],["parent/1070",[675,7.224]],["name/1071",[676,63.5]],["parent/1071",[318,2.539]],["name/1072",[10,26.925]],["parent/1072",[677,8.07]],["name/1073",[445,36.034]],["parent/1073",[678,7.56]],["name/1074",[165,40.652]],["parent/1074",[678,7.56]],["name/1075",[679,63.5]],["parent/1075",[318,2.539]],["name/1076",[10,26.925]],["parent/1076",[680,8.07]],["name/1077",[134,34.761]],["parent/1077",[681,7.224]],["name/1078",[537,61.387]],["parent/1078",[681,7.224]],["name/1079",[450,42.632]],["parent/1079",[681,7.224]],["name/1080",[682,63.5]],["parent/1080",[318,2.539]],["name/1081",[683,63.5]],["parent/1081",[318,2.539]],["name/1082",[684,66.182]],["parent/1082",[318,2.539]],["name/1083",[441,63.5]],["parent/1083",[318,2.539]],["name/1084",[442,63.5]],["parent/1084",[318,2.539]],["name/1085",[443,63.5]],["parent/1085",[318,2.539]],["name/1086",[447,63.5]],["parent/1086",[318,2.539]],["name/1087",[451,63.5]],["parent/1087",[318,2.539]],["name/1088",[454,63.5]],["parent/1088",[318,2.539]],["name/1089",[457,63.5]],["parent/1089",[318,2.539]],["name/1090",[460,63.5]],["parent/1090",[318,2.539]],["name/1091",[463,63.5]],["parent/1091",[318,2.539]],["name/1092",[466,63.5]],["parent/1092",[318,2.539]],["name/1093",[469,63.5]],["parent/1093",[318,2.539]],["name/1094",[472,63.5]],["parent/1094",[318,2.539]],["name/1095",[475,63.5]],["parent/1095",[318,2.539]],["name/1096",[478,63.5]],["parent/1096",[318,2.539]],["name/1097",[481,63.5]],["parent/1097",[318,2.539]],["name/1098",[484,63.5]],["parent/1098",[318,2.539]],["name/1099",[487,63.5]],["parent/1099",[318,2.539]],["name/1100",[490,63.5]],["parent/1100",[318,2.539]],["name/1101",[494,63.5]],["parent/1101",[318,2.539]],["name/1102",[498,63.5]],["parent/1102",[318,2.539]],["name/1103",[501,63.5]],["parent/1103",[318,2.539]],["name/1104",[504,63.5]],["parent/1104",[318,2.539]],["name/1105",[507,63.5]],["parent/1105",[318,2.539]],["name/1106",[510,63.5]],["parent/1106",[318,2.539]],["name/1107",[513,63.5]],["parent/1107",[318,2.539]],["name/1108",[516,63.5]],["parent/1108",[318,2.539]],["name/1109",[519,63.5]],["parent/1109",[318,2.539]],["name/1110",[522,63.5]],["parent/1110",[318,2.539]],["name/1111",[525,63.5]],["parent/1111",[318,2.539]],["name/1112",[528,63.5]],["parent/1112",[318,2.539]],["name/1113",[531,63.5]],["parent/1113",[318,2.539]],["name/1114",[534,63.5]],["parent/1114",[318,2.539]],["name/1115",[538,63.5]],["parent/1115",[318,2.539]],["name/1116",[541,63.5]],["parent/1116",[318,2.539]],["name/1117",[544,63.5]],["parent/1117",[318,2.539]],["name/1118",[549,63.5]],["parent/1118",[318,2.539]],["name/1119",[552,63.5]],["parent/1119",[318,2.539]],["name/1120",[555,63.5]],["parent/1120",[318,2.539]],["name/1121",[559,63.5]],["parent/1121",[318,2.539]],["name/1122",[562,63.5]],["parent/1122",[318,2.539]],["name/1123",[566,63.5]],["parent/1123",[318,2.539]],["name/1124",[569,63.5]],["parent/1124",[318,2.539]],["name/1125",[572,63.5]],["parent/1125",[318,2.539]],["name/1126",[575,63.5]],["parent/1126",[318,2.539]],["name/1127",[579,63.5]],["parent/1127",[318,2.539]],["name/1128",[582,63.5]],["parent/1128",[318,2.539]],["name/1129",[586,63.5]],["parent/1129",[318,2.539]],["name/1130",[589,63.5]],["parent/1130",[318,2.539]],["name/1131",[592,63.5]],["parent/1131",[318,2.539]],["name/1132",[597,63.5]],["parent/1132",[318,2.539]],["name/1133",[600,63.5]],["parent/1133",[318,2.539]],["name/1134",[603,63.5]],["parent/1134",[318,2.539]],["name/1135",[606,63.5]],["parent/1135",[318,2.539]],["name/1136",[610,63.5]],["parent/1136",[318,2.539]],["name/1137",[613,63.5]],["parent/1137",[318,2.539]],["name/1138",[617,63.5]],["parent/1138",[318,2.539]],["name/1139",[620,63.5]],["parent/1139",[318,2.539]],["name/1140",[624,63.5]],["parent/1140",[318,2.539]],["name/1141",[627,63.5]],["parent/1141",[318,2.539]],["name/1142",[630,63.5]],["parent/1142",[318,2.539]],["name/1143",[633,63.5]],["parent/1143",[318,2.539]],["name/1144",[636,63.5]],["parent/1144",[318,2.539]],["name/1145",[639,63.5]],["parent/1145",[318,2.539]],["name/1146",[642,63.5]],["parent/1146",[318,2.539]],["name/1147",[645,63.5]],["parent/1147",[318,2.539]],["name/1148",[648,63.5]],["parent/1148",[318,2.539]],["name/1149",[651,63.5]],["parent/1149",[318,2.539]],["name/1150",[654,63.5]],["parent/1150",[318,2.539]],["name/1151",[657,63.5]],["parent/1151",[318,2.539]],["name/1152",[660,63.5]],["parent/1152",[318,2.539]],["name/1153",[663,63.5]],["parent/1153",[318,2.539]],["name/1154",[666,63.5]],["parent/1154",[318,2.539]],["name/1155",[669,63.5]],["parent/1155",[318,2.539]],["name/1156",[673,63.5]],["parent/1156",[318,2.539]],["name/1157",[676,63.5]],["parent/1157",[318,2.539]],["name/1158",[679,63.5]],["parent/1158",[318,2.539]],["name/1159",[682,63.5]],["parent/1159",[318,2.539]],["name/1160",[683,63.5]],["parent/1160",[318,2.539]],["name/1161",[684,66.182]],["parent/1161",[318,2.539]],["name/1162",[318,25.433]],["parent/1162",[318,2.539]],["name/1163",[43,46.723]],["parent/1163",[318,2.539]],["name/1164",[441,63.5]],["parent/1164",[318,2.539]],["name/1165",[442,63.5]],["parent/1165",[318,2.539]],["name/1166",[443,63.5]],["parent/1166",[318,2.539]],["name/1167",[447,63.5]],["parent/1167",[318,2.539]],["name/1168",[451,63.5]],["parent/1168",[318,2.539]],["name/1169",[454,63.5]],["parent/1169",[318,2.539]],["name/1170",[457,63.5]],["parent/1170",[318,2.539]],["name/1171",[460,63.5]],["parent/1171",[318,2.539]],["name/1172",[463,63.5]],["parent/1172",[318,2.539]],["name/1173",[466,63.5]],["parent/1173",[318,2.539]],["name/1174",[469,63.5]],["parent/1174",[318,2.539]],["name/1175",[472,63.5]],["parent/1175",[318,2.539]],["name/1176",[475,63.5]],["parent/1176",[318,2.539]],["name/1177",[478,63.5]],["parent/1177",[318,2.539]],["name/1178",[481,63.5]],["parent/1178",[318,2.539]],["name/1179",[484,63.5]],["parent/1179",[318,2.539]],["name/1180",[487,63.5]],["parent/1180",[318,2.539]],["name/1181",[490,63.5]],["parent/1181",[318,2.539]],["name/1182",[494,63.5]],["parent/1182",[318,2.539]],["name/1183",[498,63.5]],["parent/1183",[318,2.539]],["name/1184",[501,63.5]],["parent/1184",[318,2.539]],["name/1185",[504,63.5]],["parent/1185",[318,2.539]],["name/1186",[507,63.5]],["parent/1186",[318,2.539]],["name/1187",[510,63.5]],["parent/1187",[318,2.539]],["name/1188",[513,63.5]],["parent/1188",[318,2.539]],["name/1189",[516,63.5]],["parent/1189",[318,2.539]],["name/1190",[519,63.5]],["parent/1190",[318,2.539]],["name/1191",[522,63.5]],["parent/1191",[318,2.539]],["name/1192",[525,63.5]],["parent/1192",[318,2.539]],["name/1193",[528,63.5]],["parent/1193",[318,2.539]],["name/1194",[531,63.5]],["parent/1194",[318,2.539]],["name/1195",[534,63.5]],["parent/1195",[318,2.539]],["name/1196",[538,63.5]],["parent/1196",[318,2.539]],["name/1197",[541,63.5]],["parent/1197",[318,2.539]],["name/1198",[544,63.5]],["parent/1198",[318,2.539]],["name/1199",[549,63.5]],["parent/1199",[318,2.539]],["name/1200",[552,63.5]],["parent/1200",[318,2.539]],["name/1201",[555,63.5]],["parent/1201",[318,2.539]],["name/1202",[559,63.5]],["parent/1202",[318,2.539]],["name/1203",[562,63.5]],["parent/1203",[318,2.539]],["name/1204",[566,63.5]],["parent/1204",[318,2.539]],["name/1205",[569,63.5]],["parent/1205",[318,2.539]],["name/1206",[572,63.5]],["parent/1206",[318,2.539]],["name/1207",[575,63.5]],["parent/1207",[318,2.539]],["name/1208",[579,63.5]],["parent/1208",[318,2.539]],["name/1209",[582,63.5]],["parent/1209",[318,2.539]],["name/1210",[586,63.5]],["parent/1210",[318,2.539]],["name/1211",[589,63.5]],["parent/1211",[318,2.539]],["name/1212",[592,63.5]],["parent/1212",[318,2.539]],["name/1213",[597,63.5]],["parent/1213",[318,2.539]],["name/1214",[600,63.5]],["parent/1214",[318,2.539]],["name/1215",[603,63.5]],["parent/1215",[318,2.539]],["name/1216",[606,63.5]],["parent/1216",[318,2.539]],["name/1217",[610,63.5]],["parent/1217",[318,2.539]],["name/1218",[613,63.5]],["parent/1218",[318,2.539]],["name/1219",[617,63.5]],["parent/1219",[318,2.539]],["name/1220",[620,63.5]],["parent/1220",[318,2.539]],["name/1221",[624,63.5]],["parent/1221",[318,2.539]],["name/1222",[627,63.5]],["parent/1222",[318,2.539]],["name/1223",[630,63.5]],["parent/1223",[318,2.539]],["name/1224",[633,63.5]],["parent/1224",[318,2.539]],["name/1225",[636,63.5]],["parent/1225",[318,2.539]],["name/1226",[639,63.5]],["parent/1226",[318,2.539]],["name/1227",[642,63.5]],["parent/1227",[318,2.539]],["name/1228",[645,63.5]],["parent/1228",[318,2.539]],["name/1229",[648,63.5]],["parent/1229",[318,2.539]],["name/1230",[651,63.5]],["parent/1230",[318,2.539]],["name/1231",[654,63.5]],["parent/1231",[318,2.539]],["name/1232",[657,63.5]],["parent/1232",[318,2.539]],["name/1233",[660,63.5]],["parent/1233",[318,2.539]],["name/1234",[663,63.5]],["parent/1234",[318,2.539]],["name/1235",[666,63.5]],["parent/1235",[318,2.539]],["name/1236",[669,63.5]],["parent/1236",[318,2.539]],["name/1237",[673,63.5]],["parent/1237",[318,2.539]],["name/1238",[676,63.5]],["parent/1238",[318,2.539]],["name/1239",[679,63.5]],["parent/1239",[318,2.539]],["name/1240",[682,63.5]],["parent/1240",[318,2.539]],["name/1241",[683,63.5]],["parent/1241",[318,2.539]],["name/1242",[684,66.182]],["parent/1242",[318,2.539]],["name/1243",[318,25.433]],["parent/1243",[318,2.539]],["name/1244",[345,56.867]],["parent/1244",[318,2.539]],["name/1245",[346,56.867]],["parent/1245",[318,2.539]],["name/1246",[347,56.867]],["parent/1246",[318,2.539]],["name/1247",[349,63.5]],["parent/1247",[318,2.539]],["name/1248",[326,56.867]],["parent/1248",[318,2.539]],["name/1249",[336,56.867]],["parent/1249",[318,2.539]],["name/1250",[337,56.867]],["parent/1250",[318,2.539]],["name/1251",[320,52.914]],["parent/1251",[318,2.539]],["name/1252",[338,56.867]],["parent/1252",[318,2.539]],["name/1253",[350,47.887]],["parent/1253",[318,2.539]],["name/1254",[327,56.867]],["parent/1254",[318,2.539]],["name/1255",[328,56.867]],["parent/1255",[318,2.539]],["name/1256",[351,63.5]],["parent/1256",[318,2.539]],["name/1257",[352,63.5]],["parent/1257",[318,2.539]],["name/1258",[353,44.558]],["parent/1258",[318,2.539]],["name/1259",[321,56.867]],["parent/1259",[318,2.539]],["name/1260",[9,47.405]],["parent/1260",[318,2.539]],["name/1261",[319,52.914]],["parent/1261",[318,2.539]],["name/1262",[343,56.867]],["parent/1262",[318,2.539]],["name/1263",[331,56.867]],["parent/1263",[318,2.539]],["name/1264",[348,59.643]],["parent/1264",[318,2.539]],["name/1265",[324,56.867]],["parent/1265",[318,2.539]],["name/1266",[323,56.867]],["parent/1266",[318,2.539]],["name/1267",[354,59.643]],["parent/1267",[318,2.539]],["name/1268",[355,59.643]],["parent/1268",[318,2.539]],["name/1269",[356,59.643]],["parent/1269",[318,2.539]],["name/1270",[329,56.867]],["parent/1270",[318,2.539]],["name/1271",[357,63.5]],["parent/1271",[318,2.539]],["name/1272",[358,63.5]],["parent/1272",[318,2.539]],["name/1273",[325,56.867]],["parent/1273",[318,2.539]],["name/1274",[344,56.867]],["parent/1274",[318,2.539]],["name/1275",[341,56.867]],["parent/1275",[318,2.539]],["name/1276",[342,56.867]],["parent/1276",[318,2.539]],["name/1277",[339,56.867]],["parent/1277",[318,2.539]],["name/1278",[340,56.867]],["parent/1278",[318,2.539]],["name/1279",[334,56.867]],["parent/1279",[318,2.539]],["name/1280",[335,56.867]],["parent/1280",[318,2.539]],["name/1281",[330,56.867]],["parent/1281",[318,2.539]],["name/1282",[333,56.867]],["parent/1282",[318,2.539]],["name/1283",[359,63.5]],["parent/1283",[318,2.539]],["name/1284",[332,56.867]],["parent/1284",[318,2.539]],["name/1285",[322,56.278]],["parent/1285",[318,2.539]],["name/1286",[360,59.643]],["parent/1286",[318,2.539]],["name/1287",[361,59.643]],["parent/1287",[318,2.539]],["name/1288",[362,59.643]],["parent/1288",[318,2.539]],["name/1289",[685,80.846]],["parent/1289",[318,2.539]],["name/1290",[682,63.5]],["parent/1290",[686,3.667]],["name/1291",[683,63.5]],["parent/1291",[686,3.667]],["name/1292",[443,63.5]],["parent/1292",[686,3.667]],["name/1293",[447,63.5]],["parent/1293",[686,3.667]],["name/1294",[451,63.5]],["parent/1294",[686,3.667]],["name/1295",[454,63.5]],["parent/1295",[686,3.667]],["name/1296",[457,63.5]],["parent/1296",[686,3.667]],["name/1297",[460,63.5]],["parent/1297",[686,3.667]],["name/1298",[463,63.5]],["parent/1298",[686,3.667]],["name/1299",[466,63.5]],["parent/1299",[686,3.667]],["name/1300",[469,63.5]],["parent/1300",[686,3.667]],["name/1301",[472,63.5]],["parent/1301",[686,3.667]],["name/1302",[475,63.5]],["parent/1302",[686,3.667]],["name/1303",[478,63.5]],["parent/1303",[686,3.667]],["name/1304",[481,63.5]],["parent/1304",[686,3.667]],["name/1305",[484,63.5]],["parent/1305",[686,3.667]],["name/1306",[487,63.5]],["parent/1306",[686,3.667]],["name/1307",[490,63.5]],["parent/1307",[686,3.667]],["name/1308",[441,63.5]],["parent/1308",[686,3.667]],["name/1309",[494,63.5]],["parent/1309",[686,3.667]],["name/1310",[498,63.5]],["parent/1310",[686,3.667]],["name/1311",[501,63.5]],["parent/1311",[686,3.667]],["name/1312",[504,63.5]],["parent/1312",[686,3.667]],["name/1313",[507,63.5]],["parent/1313",[686,3.667]],["name/1314",[510,63.5]],["parent/1314",[686,3.667]],["name/1315",[513,63.5]],["parent/1315",[686,3.667]],["name/1316",[516,63.5]],["parent/1316",[686,3.667]],["name/1317",[519,63.5]],["parent/1317",[686,3.667]],["name/1318",[522,63.5]],["parent/1318",[686,3.667]],["name/1319",[525,63.5]],["parent/1319",[686,3.667]],["name/1320",[528,63.5]],["parent/1320",[686,3.667]],["name/1321",[531,63.5]],["parent/1321",[686,3.667]],["name/1322",[534,63.5]],["parent/1322",[686,3.667]],["name/1323",[538,63.5]],["parent/1323",[686,3.667]],["name/1324",[541,63.5]],["parent/1324",[686,3.667]],["name/1325",[442,63.5]],["parent/1325",[686,3.667]],["name/1326",[544,63.5]],["parent/1326",[686,3.667]],["name/1327",[549,63.5]],["parent/1327",[686,3.667]],["name/1328",[552,63.5]],["parent/1328",[686,3.667]],["name/1329",[555,63.5]],["parent/1329",[686,3.667]],["name/1330",[559,63.5]],["parent/1330",[686,3.667]],["name/1331",[562,63.5]],["parent/1331",[686,3.667]],["name/1332",[566,63.5]],["parent/1332",[686,3.667]],["name/1333",[569,63.5]],["parent/1333",[686,3.667]],["name/1334",[572,63.5]],["parent/1334",[686,3.667]],["name/1335",[575,63.5]],["parent/1335",[686,3.667]],["name/1336",[579,63.5]],["parent/1336",[686,3.667]],["name/1337",[582,63.5]],["parent/1337",[686,3.667]],["name/1338",[586,63.5]],["parent/1338",[686,3.667]],["name/1339",[589,63.5]],["parent/1339",[686,3.667]],["name/1340",[592,63.5]],["parent/1340",[686,3.667]],["name/1341",[597,63.5]],["parent/1341",[686,3.667]],["name/1342",[600,63.5]],["parent/1342",[686,3.667]],["name/1343",[603,63.5]],["parent/1343",[686,3.667]],["name/1344",[606,63.5]],["parent/1344",[686,3.667]],["name/1345",[610,63.5]],["parent/1345",[686,3.667]],["name/1346",[613,63.5]],["parent/1346",[686,3.667]],["name/1347",[617,63.5]],["parent/1347",[686,3.667]],["name/1348",[620,63.5]],["parent/1348",[686,3.667]],["name/1349",[624,63.5]],["parent/1349",[686,3.667]],["name/1350",[627,63.5]],["parent/1350",[686,3.667]],["name/1351",[630,63.5]],["parent/1351",[686,3.667]],["name/1352",[633,63.5]],["parent/1352",[686,3.667]],["name/1353",[636,63.5]],["parent/1353",[686,3.667]],["name/1354",[639,63.5]],["parent/1354",[686,3.667]],["name/1355",[642,63.5]],["parent/1355",[686,3.667]],["name/1356",[645,63.5]],["parent/1356",[686,3.667]],["name/1357",[648,63.5]],["parent/1357",[686,3.667]],["name/1358",[651,63.5]],["parent/1358",[686,3.667]],["name/1359",[654,63.5]],["parent/1359",[686,3.667]],["name/1360",[657,63.5]],["parent/1360",[686,3.667]],["name/1361",[660,63.5]],["parent/1361",[686,3.667]],["name/1362",[663,63.5]],["parent/1362",[686,3.667]],["name/1363",[666,63.5]],["parent/1363",[686,3.667]],["name/1364",[669,63.5]],["parent/1364",[686,3.667]],["name/1365",[673,63.5]],["parent/1365",[686,3.667]],["name/1366",[676,63.5]],["parent/1366",[686,3.667]],["name/1367",[679,63.5]],["parent/1367",[686,3.667]],["name/1368",[345,56.867]],["parent/1368",[686,3.667]],["name/1369",[346,56.867]],["parent/1369",[686,3.667]],["name/1370",[347,56.867]],["parent/1370",[686,3.667]],["name/1371",[349,63.5]],["parent/1371",[686,3.667]],["name/1372",[326,56.867]],["parent/1372",[686,3.667]],["name/1373",[336,56.867]],["parent/1373",[686,3.667]],["name/1374",[337,56.867]],["parent/1374",[686,3.667]],["name/1375",[320,52.914]],["parent/1375",[686,3.667]],["name/1376",[338,56.867]],["parent/1376",[686,3.667]],["name/1377",[350,47.887]],["parent/1377",[686,3.667]],["name/1378",[327,56.867]],["parent/1378",[686,3.667]],["name/1379",[328,56.867]],["parent/1379",[686,3.667]],["name/1380",[351,63.5]],["parent/1380",[686,3.667]],["name/1381",[352,63.5]],["parent/1381",[686,3.667]],["name/1382",[353,44.558]],["parent/1382",[686,3.667]],["name/1383",[321,56.867]],["parent/1383",[686,3.667]],["name/1384",[9,47.405]],["parent/1384",[686,3.667]],["name/1385",[319,52.914]],["parent/1385",[686,3.667]],["name/1386",[343,56.867]],["parent/1386",[686,3.667]],["name/1387",[331,56.867]],["parent/1387",[686,3.667]],["name/1388",[348,59.643]],["parent/1388",[686,3.667]],["name/1389",[324,56.867]],["parent/1389",[686,3.667]],["name/1390",[323,56.867]],["parent/1390",[686,3.667]],["name/1391",[354,59.643]],["parent/1391",[686,3.667]],["name/1392",[355,59.643]],["parent/1392",[686,3.667]],["name/1393",[356,59.643]],["parent/1393",[686,3.667]],["name/1394",[329,56.867]],["parent/1394",[686,3.667]],["name/1395",[357,63.5]],["parent/1395",[686,3.667]],["name/1396",[358,63.5]],["parent/1396",[686,3.667]],["name/1397",[325,56.867]],["parent/1397",[686,3.667]],["name/1398",[344,56.867]],["parent/1398",[686,3.667]],["name/1399",[341,56.867]],["parent/1399",[686,3.667]],["name/1400",[342,56.867]],["parent/1400",[686,3.667]],["name/1401",[339,56.867]],["parent/1401",[686,3.667]],["name/1402",[340,56.867]],["parent/1402",[686,3.667]],["name/1403",[334,56.867]],["parent/1403",[686,3.667]],["name/1404",[335,56.867]],["parent/1404",[686,3.667]],["name/1405",[330,56.867]],["parent/1405",[686,3.667]],["name/1406",[333,56.867]],["parent/1406",[686,3.667]],["name/1407",[359,63.5]],["parent/1407",[686,3.667]],["name/1408",[332,56.867]],["parent/1408",[686,3.667]],["name/1409",[322,56.278]],["parent/1409",[686,3.667]],["name/1410",[360,59.643]],["parent/1410",[686,3.667]],["name/1411",[361,59.643]],["parent/1411",[686,3.667]],["name/1412",[362,59.643]],["parent/1412",[686,3.667]],["name/1413",[687,25.355]],["parent/1413",[]],["name/1414",[43,46.723]],["parent/1414",[687,2.531]],["name/1415",[319,52.914]],["parent/1415",[687,2.531]],["name/1416",[320,52.914]],["parent/1416",[687,2.531]],["name/1417",[321,56.867]],["parent/1417",[687,2.531]],["name/1418",[322,56.278]],["parent/1418",[687,2.531]],["name/1419",[323,56.867]],["parent/1419",[687,2.531]],["name/1420",[324,56.867]],["parent/1420",[687,2.531]],["name/1421",[325,56.867]],["parent/1421",[687,2.531]],["name/1422",[326,56.867]],["parent/1422",[687,2.531]],["name/1423",[327,56.867]],["parent/1423",[687,2.531]],["name/1424",[328,56.867]],["parent/1424",[687,2.531]],["name/1425",[329,56.867]],["parent/1425",[687,2.531]],["name/1426",[330,56.867]],["parent/1426",[687,2.531]],["name/1427",[331,56.867]],["parent/1427",[687,2.531]],["name/1428",[332,56.867]],["parent/1428",[687,2.531]],["name/1429",[333,56.867]],["parent/1429",[687,2.531]],["name/1430",[334,56.867]],["parent/1430",[687,2.531]],["name/1431",[335,56.867]],["parent/1431",[687,2.531]],["name/1432",[336,56.867]],["parent/1432",[687,2.531]],["name/1433",[337,56.867]],["parent/1433",[687,2.531]],["name/1434",[338,56.867]],["parent/1434",[687,2.531]],["name/1435",[688,59.643]],["parent/1435",[687,2.531]],["name/1436",[339,56.867]],["parent/1436",[687,2.531]],["name/1437",[340,56.867]],["parent/1437",[687,2.531]],["name/1438",[341,56.867]],["parent/1438",[687,2.531]],["name/1439",[342,56.867]],["parent/1439",[687,2.531]],["name/1440",[343,56.867]],["parent/1440",[687,2.531]],["name/1441",[344,56.867]],["parent/1441",[687,2.531]],["name/1442",[345,56.867]],["parent/1442",[687,2.531]],["name/1443",[346,56.867]],["parent/1443",[687,2.531]],["name/1444",[347,56.867]],["parent/1444",[687,2.531]],["name/1445",[348,59.643]],["parent/1445",[687,2.531]],["name/1446",[349,63.5]],["parent/1446",[687,2.531]],["name/1447",[350,47.887]],["parent/1447",[687,2.531]],["name/1448",[351,63.5]],["parent/1448",[687,2.531]],["name/1449",[352,63.5]],["parent/1449",[687,2.531]],["name/1450",[353,44.558]],["parent/1450",[687,2.531]],["name/1451",[9,47.405]],["parent/1451",[687,2.531]],["name/1452",[354,59.643]],["parent/1452",[687,2.531]],["name/1453",[355,59.643]],["parent/1453",[687,2.531]],["name/1454",[356,59.643]],["parent/1454",[687,2.531]],["name/1455",[357,63.5]],["parent/1455",[687,2.531]],["name/1456",[358,63.5]],["parent/1456",[687,2.531]],["name/1457",[359,63.5]],["parent/1457",[687,2.531]],["name/1458",[360,59.643]],["parent/1458",[687,2.531]],["name/1459",[361,59.643]],["parent/1459",[687,2.531]],["name/1460",[362,59.643]],["parent/1460",[687,2.531]],["name/1461",[345,56.867]],["parent/1461",[687,2.531]],["name/1462",[346,56.867]],["parent/1462",[687,2.531]],["name/1463",[347,56.867]],["parent/1463",[687,2.531]],["name/1464",[349,63.5]],["parent/1464",[687,2.531]],["name/1465",[326,56.867]],["parent/1465",[687,2.531]],["name/1466",[336,56.867]],["parent/1466",[687,2.531]],["name/1467",[337,56.867]],["parent/1467",[687,2.531]],["name/1468",[320,52.914]],["parent/1468",[687,2.531]],["name/1469",[338,56.867]],["parent/1469",[687,2.531]],["name/1470",[350,47.887]],["parent/1470",[687,2.531]],["name/1471",[327,56.867]],["parent/1471",[687,2.531]],["name/1472",[328,56.867]],["parent/1472",[687,2.531]],["name/1473",[351,63.5]],["parent/1473",[687,2.531]],["name/1474",[352,63.5]],["parent/1474",[687,2.531]],["name/1475",[353,44.558]],["parent/1475",[687,2.531]],["name/1476",[321,56.867]],["parent/1476",[687,2.531]],["name/1477",[688,59.643]],["parent/1477",[687,2.531]],["name/1478",[9,47.405]],["parent/1478",[687,2.531]],["name/1479",[319,52.914]],["parent/1479",[687,2.531]],["name/1480",[343,56.867]],["parent/1480",[687,2.531]],["name/1481",[331,56.867]],["parent/1481",[687,2.531]],["name/1482",[348,59.643]],["parent/1482",[687,2.531]],["name/1483",[324,56.867]],["parent/1483",[687,2.531]],["name/1484",[323,56.867]],["parent/1484",[687,2.531]],["name/1485",[354,59.643]],["parent/1485",[687,2.531]],["name/1486",[355,59.643]],["parent/1486",[687,2.531]],["name/1487",[356,59.643]],["parent/1487",[687,2.531]],["name/1488",[329,56.867]],["parent/1488",[687,2.531]],["name/1489",[357,63.5]],["parent/1489",[687,2.531]],["name/1490",[358,63.5]],["parent/1490",[687,2.531]],["name/1491",[325,56.867]],["parent/1491",[687,2.531]],["name/1492",[344,56.867]],["parent/1492",[687,2.531]],["name/1493",[341,56.867]],["parent/1493",[687,2.531]],["name/1494",[342,56.867]],["parent/1494",[687,2.531]],["name/1495",[339,56.867]],["parent/1495",[687,2.531]],["name/1496",[340,56.867]],["parent/1496",[687,2.531]],["name/1497",[334,56.867]],["parent/1497",[687,2.531]],["name/1498",[335,56.867]],["parent/1498",[687,2.531]],["name/1499",[330,56.867]],["parent/1499",[687,2.531]],["name/1500",[333,56.867]],["parent/1500",[687,2.531]],["name/1501",[359,63.5]],["parent/1501",[687,2.531]],["name/1502",[332,56.867]],["parent/1502",[687,2.531]],["name/1503",[322,56.278]],["parent/1503",[687,2.531]],["name/1504",[360,59.643]],["parent/1504",[687,2.531]],["name/1505",[361,59.643]],["parent/1505",[687,2.531]],["name/1506",[362,59.643]],["parent/1506",[687,2.531]],["name/1507",[687,25.355]],["parent/1507",[687,2.531]],["name/1508",[17,53.765]],["parent/1508",[689,4.732]],["name/1509",[43,46.723]],["parent/1509",[689,4.732]],["name/1510",[77,57.492]],["parent/1510",[689,4.732]],["name/1511",[364,66.182]],["parent/1511",[690,4.857]],["name/1512",[366,66.182]],["parent/1512",[690,4.857]],["name/1513",[367,66.182]],["parent/1513",[690,4.857]],["name/1514",[368,66.182]],["parent/1514",[690,4.857]],["name/1515",[369,66.182]],["parent/1515",[690,4.857]],["name/1516",[370,66.182]],["parent/1516",[690,4.857]],["name/1517",[371,66.182]],["parent/1517",[690,4.857]],["name/1518",[372,66.182]],["parent/1518",[690,4.857]],["name/1519",[373,66.182]],["parent/1519",[690,4.857]],["name/1520",[374,66.182]],["parent/1520",[690,4.857]],["name/1521",[375,66.182]],["parent/1521",[690,4.857]],["name/1522",[376,66.182]],["parent/1522",[690,4.857]],["name/1523",[377,66.182]],["parent/1523",[690,4.857]],["name/1524",[378,66.182]],["parent/1524",[690,4.857]],["name/1525",[379,66.182]],["parent/1525",[690,4.857]],["name/1526",[380,66.182]],["parent/1526",[690,4.857]],["name/1527",[381,66.182]],["parent/1527",[690,4.857]],["name/1528",[382,66.182]],["parent/1528",[690,4.857]],["name/1529",[383,66.182]],["parent/1529",[690,4.857]],["name/1530",[384,66.182]],["parent/1530",[690,4.857]],["name/1531",[385,66.182]],["parent/1531",[690,4.857]],["name/1532",[386,66.182]],["parent/1532",[690,4.857]],["name/1533",[387,66.182]],["parent/1533",[690,4.857]],["name/1534",[388,66.182]],["parent/1534",[690,4.857]],["name/1535",[389,66.182]],["parent/1535",[690,4.857]],["name/1536",[390,66.182]],["parent/1536",[690,4.857]],["name/1537",[391,66.182]],["parent/1537",[690,4.857]],["name/1538",[392,66.182]],["parent/1538",[690,4.857]],["name/1539",[393,66.182]],["parent/1539",[690,4.857]],["name/1540",[394,66.182]],["parent/1540",[690,4.857]],["name/1541",[395,66.182]],["parent/1541",[690,4.857]],["name/1542",[396,66.182]],["parent/1542",[690,4.857]],["name/1543",[397,66.182]],["parent/1543",[690,4.857]],["name/1544",[398,66.182]],["parent/1544",[690,4.857]],["name/1545",[399,66.182]],["parent/1545",[690,4.857]],["name/1546",[400,66.182]],["parent/1546",[690,4.857]],["name/1547",[401,66.182]],["parent/1547",[690,4.857]],["name/1548",[29,55.723]],["parent/1548",[689,4.732]],["name/1549",[96,57.492]],["parent/1549",[689,4.732]],["name/1550",[10,26.925]],["parent/1550",[691,8.07]],["name/1551",[364,66.182]],["parent/1551",[692,4.172]],["name/1552",[404,75.737]],["parent/1552",[692,4.172]],["name/1553",[366,66.182]],["parent/1553",[692,4.172]],["name/1554",[405,75.737]],["parent/1554",[692,4.172]],["name/1555",[367,66.182]],["parent/1555",[692,4.172]],["name/1556",[406,75.737]],["parent/1556",[692,4.172]],["name/1557",[368,66.182]],["parent/1557",[692,4.172]],["name/1558",[407,75.737]],["parent/1558",[692,4.172]],["name/1559",[369,66.182]],["parent/1559",[692,4.172]],["name/1560",[408,75.737]],["parent/1560",[692,4.172]],["name/1561",[370,66.182]],["parent/1561",[692,4.172]],["name/1562",[409,75.737]],["parent/1562",[692,4.172]],["name/1563",[371,66.182]],["parent/1563",[692,4.172]],["name/1564",[410,75.737]],["parent/1564",[692,4.172]],["name/1565",[372,66.182]],["parent/1565",[692,4.172]],["name/1566",[411,75.737]],["parent/1566",[692,4.172]],["name/1567",[373,66.182]],["parent/1567",[692,4.172]],["name/1568",[412,75.737]],["parent/1568",[692,4.172]],["name/1569",[374,66.182]],["parent/1569",[692,4.172]],["name/1570",[413,75.737]],["parent/1570",[692,4.172]],["name/1571",[375,66.182]],["parent/1571",[692,4.172]],["name/1572",[414,75.737]],["parent/1572",[692,4.172]],["name/1573",[376,66.182]],["parent/1573",[692,4.172]],["name/1574",[415,75.737]],["parent/1574",[692,4.172]],["name/1575",[377,66.182]],["parent/1575",[692,4.172]],["name/1576",[416,75.737]],["parent/1576",[692,4.172]],["name/1577",[378,66.182]],["parent/1577",[692,4.172]],["name/1578",[417,75.737]],["parent/1578",[692,4.172]],["name/1579",[379,66.182]],["parent/1579",[692,4.172]],["name/1580",[418,75.737]],["parent/1580",[692,4.172]],["name/1581",[380,66.182]],["parent/1581",[692,4.172]],["name/1582",[419,75.737]],["parent/1582",[692,4.172]],["name/1583",[381,66.182]],["parent/1583",[692,4.172]],["name/1584",[420,75.737]],["parent/1584",[692,4.172]],["name/1585",[382,66.182]],["parent/1585",[692,4.172]],["name/1586",[421,75.737]],["parent/1586",[692,4.172]],["name/1587",[383,66.182]],["parent/1587",[692,4.172]],["name/1588",[422,75.737]],["parent/1588",[692,4.172]],["name/1589",[384,66.182]],["parent/1589",[692,4.172]],["name/1590",[423,75.737]],["parent/1590",[692,4.172]],["name/1591",[385,66.182]],["parent/1591",[692,4.172]],["name/1592",[424,75.737]],["parent/1592",[692,4.172]],["name/1593",[386,66.182]],["parent/1593",[692,4.172]],["name/1594",[425,75.737]],["parent/1594",[692,4.172]],["name/1595",[387,66.182]],["parent/1595",[692,4.172]],["name/1596",[426,75.737]],["parent/1596",[692,4.172]],["name/1597",[388,66.182]],["parent/1597",[692,4.172]],["name/1598",[427,75.737]],["parent/1598",[692,4.172]],["name/1599",[389,66.182]],["parent/1599",[692,4.172]],["name/1600",[428,75.737]],["parent/1600",[692,4.172]],["name/1601",[390,66.182]],["parent/1601",[692,4.172]],["name/1602",[429,75.737]],["parent/1602",[692,4.172]],["name/1603",[391,66.182]],["parent/1603",[692,4.172]],["name/1604",[430,75.737]],["parent/1604",[692,4.172]],["name/1605",[392,66.182]],["parent/1605",[692,4.172]],["name/1606",[431,75.737]],["parent/1606",[692,4.172]],["name/1607",[393,66.182]],["parent/1607",[692,4.172]],["name/1608",[432,75.737]],["parent/1608",[692,4.172]],["name/1609",[394,66.182]],["parent/1609",[692,4.172]],["name/1610",[433,75.737]],["parent/1610",[692,4.172]],["name/1611",[395,66.182]],["parent/1611",[692,4.172]],["name/1612",[434,75.737]],["parent/1612",[692,4.172]],["name/1613",[396,66.182]],["parent/1613",[692,4.172]],["name/1614",[435,75.737]],["parent/1614",[692,4.172]],["name/1615",[397,66.182]],["parent/1615",[692,4.172]],["name/1616",[436,75.737]],["parent/1616",[692,4.172]],["name/1617",[398,66.182]],["parent/1617",[692,4.172]],["name/1618",[437,75.737]],["parent/1618",[692,4.172]],["name/1619",[399,66.182]],["parent/1619",[692,4.172]],["name/1620",[438,75.737]],["parent/1620",[692,4.172]],["name/1621",[400,66.182]],["parent/1621",[692,4.172]],["name/1622",[439,75.737]],["parent/1622",[692,4.172]],["name/1623",[401,66.182]],["parent/1623",[692,4.172]],["name/1624",[440,75.737]],["parent/1624",[692,4.172]],["name/1625",[364,66.182]],["parent/1625",[689,4.732]],["name/1626",[366,66.182]],["parent/1626",[689,4.732]],["name/1627",[367,66.182]],["parent/1627",[689,4.732]],["name/1628",[368,66.182]],["parent/1628",[689,4.732]],["name/1629",[369,66.182]],["parent/1629",[689,4.732]],["name/1630",[370,66.182]],["parent/1630",[689,4.732]],["name/1631",[371,66.182]],["parent/1631",[689,4.732]],["name/1632",[372,66.182]],["parent/1632",[689,4.732]],["name/1633",[373,66.182]],["parent/1633",[689,4.732]],["name/1634",[374,66.182]],["parent/1634",[689,4.732]],["name/1635",[375,66.182]],["parent/1635",[689,4.732]],["name/1636",[376,66.182]],["parent/1636",[689,4.732]],["name/1637",[377,66.182]],["parent/1637",[689,4.732]],["name/1638",[378,66.182]],["parent/1638",[689,4.732]],["name/1639",[379,66.182]],["parent/1639",[689,4.732]],["name/1640",[380,66.182]],["parent/1640",[689,4.732]],["name/1641",[381,66.182]],["parent/1641",[689,4.732]],["name/1642",[382,66.182]],["parent/1642",[689,4.732]],["name/1643",[383,66.182]],["parent/1643",[689,4.732]],["name/1644",[384,66.182]],["parent/1644",[689,4.732]],["name/1645",[385,66.182]],["parent/1645",[689,4.732]],["name/1646",[386,66.182]],["parent/1646",[689,4.732]],["name/1647",[387,66.182]],["parent/1647",[689,4.732]],["name/1648",[388,66.182]],["parent/1648",[689,4.732]],["name/1649",[389,66.182]],["parent/1649",[689,4.732]],["name/1650",[390,66.182]],["parent/1650",[689,4.732]],["name/1651",[391,66.182]],["parent/1651",[689,4.732]],["name/1652",[392,66.182]],["parent/1652",[689,4.732]],["name/1653",[393,66.182]],["parent/1653",[689,4.732]],["name/1654",[394,66.182]],["parent/1654",[689,4.732]],["name/1655",[395,66.182]],["parent/1655",[689,4.732]],["name/1656",[396,66.182]],["parent/1656",[689,4.732]],["name/1657",[397,66.182]],["parent/1657",[689,4.732]],["name/1658",[398,66.182]],["parent/1658",[689,4.732]],["name/1659",[399,66.182]],["parent/1659",[689,4.732]],["name/1660",[400,66.182]],["parent/1660",[689,4.732]],["name/1661",[401,66.182]],["parent/1661",[689,4.732]],["name/1662",[441,63.5]],["parent/1662",[687,2.531]],["name/1663",[442,63.5]],["parent/1663",[687,2.531]],["name/1664",[443,63.5]],["parent/1664",[687,2.531]],["name/1665",[10,26.925]],["parent/1665",[693,8.07]],["name/1666",[445,36.034]],["parent/1666",[694,7.56]],["name/1667",[165,40.652]],["parent/1667",[694,7.56]],["name/1668",[447,63.5]],["parent/1668",[687,2.531]],["name/1669",[10,26.925]],["parent/1669",[695,8.07]],["name/1670",[134,34.761]],["parent/1670",[696,7.56]],["name/1671",[450,42.632]],["parent/1671",[696,7.56]],["name/1672",[451,63.5]],["parent/1672",[687,2.531]],["name/1673",[10,26.925]],["parent/1673",[697,8.07]],["name/1674",[445,36.034]],["parent/1674",[698,7.56]],["name/1675",[165,40.652]],["parent/1675",[698,7.56]],["name/1676",[454,63.5]],["parent/1676",[687,2.531]],["name/1677",[10,26.925]],["parent/1677",[699,8.07]],["name/1678",[134,34.761]],["parent/1678",[700,7.56]],["name/1679",[450,42.632]],["parent/1679",[700,7.56]],["name/1680",[457,63.5]],["parent/1680",[687,2.531]],["name/1681",[10,26.925]],["parent/1681",[701,8.07]],["name/1682",[445,36.034]],["parent/1682",[702,7.56]],["name/1683",[165,40.652]],["parent/1683",[702,7.56]],["name/1684",[460,63.5]],["parent/1684",[687,2.531]],["name/1685",[10,26.925]],["parent/1685",[703,8.07]],["name/1686",[134,34.761]],["parent/1686",[704,7.56]],["name/1687",[450,42.632]],["parent/1687",[704,7.56]],["name/1688",[463,63.5]],["parent/1688",[687,2.531]],["name/1689",[10,26.925]],["parent/1689",[705,8.07]],["name/1690",[445,36.034]],["parent/1690",[706,7.56]],["name/1691",[165,40.652]],["parent/1691",[706,7.56]],["name/1692",[466,63.5]],["parent/1692",[687,2.531]],["name/1693",[10,26.925]],["parent/1693",[707,8.07]],["name/1694",[134,34.761]],["parent/1694",[708,7.56]],["name/1695",[450,42.632]],["parent/1695",[708,7.56]],["name/1696",[469,63.5]],["parent/1696",[687,2.531]],["name/1697",[10,26.925]],["parent/1697",[709,8.07]],["name/1698",[445,36.034]],["parent/1698",[710,7.56]],["name/1699",[165,40.652]],["parent/1699",[710,7.56]],["name/1700",[472,63.5]],["parent/1700",[687,2.531]],["name/1701",[10,26.925]],["parent/1701",[711,8.07]],["name/1702",[134,34.761]],["parent/1702",[712,7.56]],["name/1703",[450,42.632]],["parent/1703",[712,7.56]],["name/1704",[475,63.5]],["parent/1704",[687,2.531]],["name/1705",[10,26.925]],["parent/1705",[713,8.07]],["name/1706",[445,36.034]],["parent/1706",[714,8.07]],["name/1707",[478,63.5]],["parent/1707",[687,2.531]],["name/1708",[10,26.925]],["parent/1708",[715,8.07]],["name/1709",[134,34.761]],["parent/1709",[716,7.56]],["name/1710",[450,42.632]],["parent/1710",[716,7.56]],["name/1711",[481,63.5]],["parent/1711",[687,2.531]],["name/1712",[10,26.925]],["parent/1712",[717,8.07]],["name/1713",[445,36.034]],["parent/1713",[718,8.07]],["name/1714",[484,63.5]],["parent/1714",[687,2.531]],["name/1715",[10,26.925]],["parent/1715",[719,8.07]],["name/1716",[134,34.761]],["parent/1716",[720,7.56]],["name/1717",[450,42.632]],["parent/1717",[720,7.56]],["name/1718",[487,63.5]],["parent/1718",[687,2.531]],["name/1719",[10,26.925]],["parent/1719",[721,8.07]],["name/1720",[445,36.034]],["parent/1720",[722,8.07]],["name/1721",[490,63.5]],["parent/1721",[687,2.531]],["name/1722",[10,26.925]],["parent/1722",[723,8.07]],["name/1723",[134,34.761]],["parent/1723",[724,7.224]],["name/1724",[493,61.387]],["parent/1724",[724,7.224]],["name/1725",[450,42.632]],["parent/1725",[724,7.224]],["name/1726",[494,63.5]],["parent/1726",[687,2.531]],["name/1727",[10,26.925]],["parent/1727",[725,8.07]],["name/1728",[445,36.034]],["parent/1728",[726,6.974]],["name/1729",[497,75.737]],["parent/1729",[726,6.974]],["name/1730",[727,80.846]],["parent/1730",[726,6.974]],["name/1731",[165,40.652]],["parent/1731",[726,6.974]],["name/1732",[498,63.5]],["parent/1732",[687,2.531]],["name/1733",[10,26.925]],["parent/1733",[728,8.07]],["name/1734",[134,34.761]],["parent/1734",[729,8.07]],["name/1735",[501,63.5]],["parent/1735",[687,2.531]],["name/1736",[10,26.925]],["parent/1736",[730,8.07]],["name/1737",[445,36.034]],["parent/1737",[731,7.56]],["name/1738",[165,40.652]],["parent/1738",[731,7.56]],["name/1739",[504,63.5]],["parent/1739",[687,2.531]],["name/1740",[10,26.925]],["parent/1740",[732,8.07]],["name/1741",[134,34.761]],["parent/1741",[733,7.56]],["name/1742",[450,42.632]],["parent/1742",[733,7.56]],["name/1743",[507,63.5]],["parent/1743",[687,2.531]],["name/1744",[10,26.925]],["parent/1744",[734,8.07]],["name/1745",[445,36.034]],["parent/1745",[735,8.07]],["name/1746",[510,63.5]],["parent/1746",[687,2.531]],["name/1747",[10,26.925]],["parent/1747",[736,8.07]],["name/1748",[134,34.761]],["parent/1748",[737,7.56]],["name/1749",[450,42.632]],["parent/1749",[737,7.56]],["name/1750",[513,63.5]],["parent/1750",[687,2.531]],["name/1751",[10,26.925]],["parent/1751",[738,8.07]],["name/1752",[445,36.034]],["parent/1752",[739,7.56]],["name/1753",[165,40.652]],["parent/1753",[739,7.56]],["name/1754",[516,63.5]],["parent/1754",[687,2.531]],["name/1755",[10,26.925]],["parent/1755",[740,8.07]],["name/1756",[134,34.761]],["parent/1756",[741,7.56]],["name/1757",[450,42.632]],["parent/1757",[741,7.56]],["name/1758",[519,63.5]],["parent/1758",[687,2.531]],["name/1759",[10,26.925]],["parent/1759",[742,8.07]],["name/1760",[445,36.034]],["parent/1760",[743,7.56]],["name/1761",[165,40.652]],["parent/1761",[743,7.56]],["name/1762",[522,63.5]],["parent/1762",[687,2.531]],["name/1763",[10,26.925]],["parent/1763",[744,8.07]],["name/1764",[134,34.761]],["parent/1764",[745,7.56]],["name/1765",[450,42.632]],["parent/1765",[745,7.56]],["name/1766",[525,63.5]],["parent/1766",[687,2.531]],["name/1767",[10,26.925]],["parent/1767",[746,8.07]],["name/1768",[445,36.034]],["parent/1768",[747,8.07]],["name/1769",[528,63.5]],["parent/1769",[687,2.531]],["name/1770",[10,26.925]],["parent/1770",[748,8.07]],["name/1771",[134,34.761]],["parent/1771",[749,7.56]],["name/1772",[450,42.632]],["parent/1772",[749,7.56]],["name/1773",[531,63.5]],["parent/1773",[687,2.531]],["name/1774",[10,26.925]],["parent/1774",[750,8.07]],["name/1775",[445,36.034]],["parent/1775",[751,7.56]],["name/1776",[165,40.652]],["parent/1776",[751,7.56]],["name/1777",[534,63.5]],["parent/1777",[687,2.531]],["name/1778",[10,26.925]],["parent/1778",[752,8.07]],["name/1779",[134,34.761]],["parent/1779",[753,7.224]],["name/1780",[537,61.387]],["parent/1780",[753,7.224]],["name/1781",[450,42.632]],["parent/1781",[753,7.224]],["name/1782",[538,63.5]],["parent/1782",[687,2.531]],["name/1783",[10,26.925]],["parent/1783",[754,8.07]],["name/1784",[445,36.034]],["parent/1784",[755,8.07]],["name/1785",[541,63.5]],["parent/1785",[687,2.531]],["name/1786",[10,26.925]],["parent/1786",[756,8.07]],["name/1787",[134,34.761]],["parent/1787",[757,7.56]],["name/1788",[450,42.632]],["parent/1788",[757,7.56]],["name/1789",[544,63.5]],["parent/1789",[687,2.531]],["name/1790",[10,26.925]],["parent/1790",[758,8.07]],["name/1791",[445,36.034]],["parent/1791",[759,6.974]],["name/1792",[547,75.737]],["parent/1792",[759,6.974]],["name/1793",[548,75.737]],["parent/1793",[759,6.974]],["name/1794",[165,40.652]],["parent/1794",[759,6.974]],["name/1795",[549,63.5]],["parent/1795",[687,2.531]],["name/1796",[10,26.925]],["parent/1796",[760,8.07]],["name/1797",[134,34.761]],["parent/1797",[761,8.07]],["name/1798",[552,63.5]],["parent/1798",[687,2.531]],["name/1799",[10,26.925]],["parent/1799",[762,8.07]],["name/1800",[445,36.034]],["parent/1800",[763,7.56]],["name/1801",[165,40.652]],["parent/1801",[763,7.56]],["name/1802",[555,63.5]],["parent/1802",[687,2.531]],["name/1803",[10,26.925]],["parent/1803",[764,8.07]],["name/1804",[134,34.761]],["parent/1804",[765,7.224]],["name/1805",[450,42.632]],["parent/1805",[765,7.224]],["name/1806",[558,75.737]],["parent/1806",[765,7.224]],["name/1807",[559,63.5]],["parent/1807",[687,2.531]],["name/1808",[10,26.925]],["parent/1808",[766,8.07]],["name/1809",[445,36.034]],["parent/1809",[767,7.56]],["name/1810",[165,40.652]],["parent/1810",[767,7.56]],["name/1811",[562,63.5]],["parent/1811",[687,2.531]],["name/1812",[10,26.925]],["parent/1812",[768,8.07]],["name/1813",[134,34.761]],["parent/1813",[769,7.224]],["name/1814",[450,42.632]],["parent/1814",[769,7.224]],["name/1815",[565,69.86]],["parent/1815",[769,7.224]],["name/1816",[566,63.5]],["parent/1816",[687,2.531]],["name/1817",[10,26.925]],["parent/1817",[770,8.07]],["name/1818",[445,36.034]],["parent/1818",[771,7.56]],["name/1819",[165,40.652]],["parent/1819",[771,7.56]],["name/1820",[569,63.5]],["parent/1820",[687,2.531]],["name/1821",[10,26.925]],["parent/1821",[772,8.07]],["name/1822",[493,61.387]],["parent/1822",[773,7.224]],["name/1823",[134,34.761]],["parent/1823",[773,7.224]],["name/1824",[450,42.632]],["parent/1824",[773,7.224]],["name/1825",[572,63.5]],["parent/1825",[687,2.531]],["name/1826",[10,26.925]],["parent/1826",[774,8.07]],["name/1827",[445,36.034]],["parent/1827",[775,7.56]],["name/1828",[165,40.652]],["parent/1828",[775,7.56]],["name/1829",[575,63.5]],["parent/1829",[687,2.531]],["name/1830",[10,26.925]],["parent/1830",[776,8.07]],["name/1831",[577,63.5]],["parent/1831",[777,7.224]],["name/1832",[134,34.761]],["parent/1832",[777,7.224]],["name/1833",[450,42.632]],["parent/1833",[777,7.224]],["name/1834",[579,63.5]],["parent/1834",[687,2.531]],["name/1835",[10,26.925]],["parent/1835",[778,8.07]],["name/1836",[445,36.034]],["parent/1836",[779,7.56]],["name/1837",[165,40.652]],["parent/1837",[779,7.56]],["name/1838",[582,63.5]],["parent/1838",[687,2.531]],["name/1839",[10,26.925]],["parent/1839",[780,8.07]],["name/1840",[584,69.86]],["parent/1840",[781,7.224]],["name/1841",[134,34.761]],["parent/1841",[781,7.224]],["name/1842",[450,42.632]],["parent/1842",[781,7.224]],["name/1843",[586,63.5]],["parent/1843",[687,2.531]],["name/1844",[10,26.925]],["parent/1844",[782,8.07]],["name/1845",[445,36.034]],["parent/1845",[783,7.56]],["name/1846",[165,40.652]],["parent/1846",[783,7.56]],["name/1847",[589,63.5]],["parent/1847",[687,2.531]],["name/1848",[10,26.925]],["parent/1848",[784,8.07]],["name/1849",[537,61.387]],["parent/1849",[785,7.224]],["name/1850",[134,34.761]],["parent/1850",[785,7.224]],["name/1851",[450,42.632]],["parent/1851",[785,7.224]],["name/1852",[592,63.5]],["parent/1852",[687,2.531]],["name/1853",[10,26.925]],["parent/1853",[786,8.07]],["name/1854",[445,36.034]],["parent/1854",[787,6.974]],["name/1855",[595,75.737]],["parent/1855",[787,6.974]],["name/1856",[596,75.737]],["parent/1856",[787,6.974]],["name/1857",[165,40.652]],["parent/1857",[787,6.974]],["name/1858",[597,63.5]],["parent/1858",[687,2.531]],["name/1859",[10,26.925]],["parent/1859",[788,8.07]],["name/1860",[134,34.761]],["parent/1860",[789,8.07]],["name/1861",[600,63.5]],["parent/1861",[687,2.531]],["name/1862",[10,26.925]],["parent/1862",[790,8.07]],["name/1863",[445,36.034]],["parent/1863",[791,7.56]],["name/1864",[165,40.652]],["parent/1864",[791,7.56]],["name/1865",[603,63.5]],["parent/1865",[687,2.531]],["name/1866",[10,26.925]],["parent/1866",[792,8.07]],["name/1867",[134,34.761]],["parent/1867",[793,7.56]],["name/1868",[450,42.632]],["parent/1868",[793,7.56]],["name/1869",[606,63.5]],["parent/1869",[687,2.531]],["name/1870",[10,26.925]],["parent/1870",[794,8.07]],["name/1871",[445,36.034]],["parent/1871",[795,7.224]],["name/1872",[609,75.737]],["parent/1872",[795,7.224]],["name/1873",[165,40.652]],["parent/1873",[795,7.224]],["name/1874",[610,63.5]],["parent/1874",[687,2.531]],["name/1875",[10,26.925]],["parent/1875",[796,8.07]],["name/1876",[134,34.761]],["parent/1876",[797,7.56]],["name/1877",[450,42.632]],["parent/1877",[797,7.56]],["name/1878",[613,63.5]],["parent/1878",[687,2.531]],["name/1879",[10,26.925]],["parent/1879",[798,8.07]],["name/1880",[445,36.034]],["parent/1880",[799,7.224]],["name/1881",[616,59.643]],["parent/1881",[799,7.224]],["name/1882",[165,40.652]],["parent/1882",[799,7.224]],["name/1883",[617,63.5]],["parent/1883",[687,2.531]],["name/1884",[10,26.925]],["parent/1884",[800,8.07]],["name/1885",[134,34.761]],["parent/1885",[801,7.56]],["name/1886",[450,42.632]],["parent/1886",[801,7.56]],["name/1887",[620,63.5]],["parent/1887",[687,2.531]],["name/1888",[10,26.925]],["parent/1888",[802,8.07]],["name/1889",[445,36.034]],["parent/1889",[803,6.974]],["name/1890",[165,40.652]],["parent/1890",[803,6.974]],["name/1891",[623,75.737]],["parent/1891",[803,6.974]],["name/1892",[616,59.643]],["parent/1892",[803,6.974]],["name/1893",[624,63.5]],["parent/1893",[687,2.531]],["name/1894",[10,26.925]],["parent/1894",[804,8.07]],["name/1895",[134,34.761]],["parent/1895",[805,7.56]],["name/1896",[450,42.632]],["parent/1896",[805,7.56]],["name/1897",[627,63.5]],["parent/1897",[687,2.531]],["name/1898",[10,26.925]],["parent/1898",[806,8.07]],["name/1899",[445,36.034]],["parent/1899",[807,7.56]],["name/1900",[165,40.652]],["parent/1900",[807,7.56]],["name/1901",[630,63.5]],["parent/1901",[687,2.531]],["name/1902",[10,26.925]],["parent/1902",[808,8.07]],["name/1903",[134,34.761]],["parent/1903",[809,7.56]],["name/1904",[450,42.632]],["parent/1904",[809,7.56]],["name/1905",[633,63.5]],["parent/1905",[687,2.531]],["name/1906",[10,26.925]],["parent/1906",[810,8.07]],["name/1907",[445,36.034]],["parent/1907",[811,7.56]],["name/1908",[165,40.652]],["parent/1908",[811,7.56]],["name/1909",[636,63.5]],["parent/1909",[687,2.531]],["name/1910",[10,26.925]],["parent/1910",[812,8.07]],["name/1911",[134,34.761]],["parent/1911",[813,7.224]],["name/1912",[450,42.632]],["parent/1912",[813,7.224]],["name/1913",[565,69.86]],["parent/1913",[813,7.224]],["name/1914",[639,63.5]],["parent/1914",[687,2.531]],["name/1915",[10,26.925]],["parent/1915",[814,8.07]],["name/1916",[616,59.643]],["parent/1916",[815,7.224]],["name/1917",[445,36.034]],["parent/1917",[815,7.224]],["name/1918",[165,40.652]],["parent/1918",[815,7.224]],["name/1919",[642,63.5]],["parent/1919",[687,2.531]],["name/1920",[10,26.925]],["parent/1920",[816,8.07]],["name/1921",[493,61.387]],["parent/1921",[817,7.224]],["name/1922",[134,34.761]],["parent/1922",[817,7.224]],["name/1923",[450,42.632]],["parent/1923",[817,7.224]],["name/1924",[645,63.5]],["parent/1924",[687,2.531]],["name/1925",[10,26.925]],["parent/1925",[818,8.07]],["name/1926",[445,36.034]],["parent/1926",[819,7.224]],["name/1927",[616,59.643]],["parent/1927",[819,7.224]],["name/1928",[165,40.652]],["parent/1928",[819,7.224]],["name/1929",[648,63.5]],["parent/1929",[687,2.531]],["name/1930",[10,26.925]],["parent/1930",[820,8.07]],["name/1931",[134,34.761]],["parent/1931",[821,7.56]],["name/1932",[450,42.632]],["parent/1932",[821,7.56]],["name/1933",[651,63.5]],["parent/1933",[687,2.531]],["name/1934",[10,26.925]],["parent/1934",[822,8.07]],["name/1935",[616,59.643]],["parent/1935",[823,7.224]],["name/1936",[445,36.034]],["parent/1936",[823,7.224]],["name/1937",[165,40.652]],["parent/1937",[823,7.224]],["name/1938",[654,63.5]],["parent/1938",[687,2.531]],["name/1939",[10,26.925]],["parent/1939",[824,8.07]],["name/1940",[577,63.5]],["parent/1940",[825,7.224]],["name/1941",[134,34.761]],["parent/1941",[825,7.224]],["name/1942",[450,42.632]],["parent/1942",[825,7.224]],["name/1943",[657,63.5]],["parent/1943",[687,2.531]],["name/1944",[10,26.925]],["parent/1944",[826,8.07]],["name/1945",[445,36.034]],["parent/1945",[827,8.07]],["name/1946",[660,63.5]],["parent/1946",[687,2.531]],["name/1947",[10,26.925]],["parent/1947",[828,8.07]],["name/1948",[584,69.86]],["parent/1948",[829,7.224]],["name/1949",[134,34.761]],["parent/1949",[829,7.224]],["name/1950",[450,42.632]],["parent/1950",[829,7.224]],["name/1951",[663,63.5]],["parent/1951",[687,2.531]],["name/1952",[10,26.925]],["parent/1952",[830,8.07]],["name/1953",[445,36.034]],["parent/1953",[831,7.56]],["name/1954",[165,40.652]],["parent/1954",[831,7.56]],["name/1955",[666,63.5]],["parent/1955",[687,2.531]],["name/1956",[10,26.925]],["parent/1956",[832,8.07]],["name/1957",[537,61.387]],["parent/1957",[833,7.224]],["name/1958",[134,34.761]],["parent/1958",[833,7.224]],["name/1959",[450,42.632]],["parent/1959",[833,7.224]],["name/1960",[669,63.5]],["parent/1960",[687,2.531]],["name/1961",[10,26.925]],["parent/1961",[834,8.07]],["name/1962",[671,75.737]],["parent/1962",[835,6.974]],["name/1963",[616,59.643]],["parent/1963",[835,6.974]],["name/1964",[445,36.034]],["parent/1964",[835,6.974]],["name/1965",[165,40.652]],["parent/1965",[835,6.974]],["name/1966",[673,63.5]],["parent/1966",[687,2.531]],["name/1967",[10,26.925]],["parent/1967",[836,8.07]],["name/1968",[134,34.761]],["parent/1968",[837,7.224]],["name/1969",[537,61.387]],["parent/1969",[837,7.224]],["name/1970",[450,42.632]],["parent/1970",[837,7.224]],["name/1971",[676,63.5]],["parent/1971",[687,2.531]],["name/1972",[10,26.925]],["parent/1972",[838,8.07]],["name/1973",[445,36.034]],["parent/1973",[839,7.56]],["name/1974",[165,40.652]],["parent/1974",[839,7.56]],["name/1975",[679,63.5]],["parent/1975",[687,2.531]],["name/1976",[10,26.925]],["parent/1976",[840,8.07]],["name/1977",[134,34.761]],["parent/1977",[841,7.224]],["name/1978",[537,61.387]],["parent/1978",[841,7.224]],["name/1979",[450,42.632]],["parent/1979",[841,7.224]],["name/1980",[682,63.5]],["parent/1980",[687,2.531]],["name/1981",[683,63.5]],["parent/1981",[687,2.531]],["name/1982",[684,66.182]],["parent/1982",[687,2.531]],["name/1983",[441,63.5]],["parent/1983",[687,2.531]],["name/1984",[442,63.5]],["parent/1984",[687,2.531]],["name/1985",[443,63.5]],["parent/1985",[687,2.531]],["name/1986",[447,63.5]],["parent/1986",[687,2.531]],["name/1987",[451,63.5]],["parent/1987",[687,2.531]],["name/1988",[454,63.5]],["parent/1988",[687,2.531]],["name/1989",[457,63.5]],["parent/1989",[687,2.531]],["name/1990",[460,63.5]],["parent/1990",[687,2.531]],["name/1991",[463,63.5]],["parent/1991",[687,2.531]],["name/1992",[466,63.5]],["parent/1992",[687,2.531]],["name/1993",[469,63.5]],["parent/1993",[687,2.531]],["name/1994",[472,63.5]],["parent/1994",[687,2.531]],["name/1995",[475,63.5]],["parent/1995",[687,2.531]],["name/1996",[478,63.5]],["parent/1996",[687,2.531]],["name/1997",[481,63.5]],["parent/1997",[687,2.531]],["name/1998",[484,63.5]],["parent/1998",[687,2.531]],["name/1999",[487,63.5]],["parent/1999",[687,2.531]],["name/2000",[490,63.5]],["parent/2000",[687,2.531]],["name/2001",[494,63.5]],["parent/2001",[687,2.531]],["name/2002",[498,63.5]],["parent/2002",[687,2.531]],["name/2003",[501,63.5]],["parent/2003",[687,2.531]],["name/2004",[504,63.5]],["parent/2004",[687,2.531]],["name/2005",[507,63.5]],["parent/2005",[687,2.531]],["name/2006",[510,63.5]],["parent/2006",[687,2.531]],["name/2007",[513,63.5]],["parent/2007",[687,2.531]],["name/2008",[516,63.5]],["parent/2008",[687,2.531]],["name/2009",[519,63.5]],["parent/2009",[687,2.531]],["name/2010",[522,63.5]],["parent/2010",[687,2.531]],["name/2011",[525,63.5]],["parent/2011",[687,2.531]],["name/2012",[528,63.5]],["parent/2012",[687,2.531]],["name/2013",[531,63.5]],["parent/2013",[687,2.531]],["name/2014",[534,63.5]],["parent/2014",[687,2.531]],["name/2015",[538,63.5]],["parent/2015",[687,2.531]],["name/2016",[541,63.5]],["parent/2016",[687,2.531]],["name/2017",[544,63.5]],["parent/2017",[687,2.531]],["name/2018",[549,63.5]],["parent/2018",[687,2.531]],["name/2019",[552,63.5]],["parent/2019",[687,2.531]],["name/2020",[555,63.5]],["parent/2020",[687,2.531]],["name/2021",[559,63.5]],["parent/2021",[687,2.531]],["name/2022",[562,63.5]],["parent/2022",[687,2.531]],["name/2023",[566,63.5]],["parent/2023",[687,2.531]],["name/2024",[569,63.5]],["parent/2024",[687,2.531]],["name/2025",[572,63.5]],["parent/2025",[687,2.531]],["name/2026",[575,63.5]],["parent/2026",[687,2.531]],["name/2027",[579,63.5]],["parent/2027",[687,2.531]],["name/2028",[582,63.5]],["parent/2028",[687,2.531]],["name/2029",[586,63.5]],["parent/2029",[687,2.531]],["name/2030",[589,63.5]],["parent/2030",[687,2.531]],["name/2031",[592,63.5]],["parent/2031",[687,2.531]],["name/2032",[597,63.5]],["parent/2032",[687,2.531]],["name/2033",[600,63.5]],["parent/2033",[687,2.531]],["name/2034",[603,63.5]],["parent/2034",[687,2.531]],["name/2035",[606,63.5]],["parent/2035",[687,2.531]],["name/2036",[610,63.5]],["parent/2036",[687,2.531]],["name/2037",[613,63.5]],["parent/2037",[687,2.531]],["name/2038",[617,63.5]],["parent/2038",[687,2.531]],["name/2039",[620,63.5]],["parent/2039",[687,2.531]],["name/2040",[624,63.5]],["parent/2040",[687,2.531]],["name/2041",[627,63.5]],["parent/2041",[687,2.531]],["name/2042",[630,63.5]],["parent/2042",[687,2.531]],["name/2043",[633,63.5]],["parent/2043",[687,2.531]],["name/2044",[636,63.5]],["parent/2044",[687,2.531]],["name/2045",[639,63.5]],["parent/2045",[687,2.531]],["name/2046",[642,63.5]],["parent/2046",[687,2.531]],["name/2047",[645,63.5]],["parent/2047",[687,2.531]],["name/2048",[648,63.5]],["parent/2048",[687,2.531]],["name/2049",[651,63.5]],["parent/2049",[687,2.531]],["name/2050",[654,63.5]],["parent/2050",[687,2.531]],["name/2051",[657,63.5]],["parent/2051",[687,2.531]],["name/2052",[660,63.5]],["parent/2052",[687,2.531]],["name/2053",[663,63.5]],["parent/2053",[687,2.531]],["name/2054",[666,63.5]],["parent/2054",[687,2.531]],["name/2055",[669,63.5]],["parent/2055",[687,2.531]],["name/2056",[673,63.5]],["parent/2056",[687,2.531]],["name/2057",[676,63.5]],["parent/2057",[687,2.531]],["name/2058",[679,63.5]],["parent/2058",[687,2.531]],["name/2059",[682,63.5]],["parent/2059",[687,2.531]],["name/2060",[683,63.5]],["parent/2060",[687,2.531]],["name/2061",[684,66.182]],["parent/2061",[687,2.531]],["name/2062",[687,25.355]],["parent/2062",[687,2.531]],["name/2063",[43,46.723]],["parent/2063",[687,2.531]],["name/2064",[441,63.5]],["parent/2064",[687,2.531]],["name/2065",[442,63.5]],["parent/2065",[687,2.531]],["name/2066",[443,63.5]],["parent/2066",[687,2.531]],["name/2067",[447,63.5]],["parent/2067",[687,2.531]],["name/2068",[451,63.5]],["parent/2068",[687,2.531]],["name/2069",[454,63.5]],["parent/2069",[687,2.531]],["name/2070",[457,63.5]],["parent/2070",[687,2.531]],["name/2071",[460,63.5]],["parent/2071",[687,2.531]],["name/2072",[463,63.5]],["parent/2072",[687,2.531]],["name/2073",[466,63.5]],["parent/2073",[687,2.531]],["name/2074",[469,63.5]],["parent/2074",[687,2.531]],["name/2075",[472,63.5]],["parent/2075",[687,2.531]],["name/2076",[475,63.5]],["parent/2076",[687,2.531]],["name/2077",[478,63.5]],["parent/2077",[687,2.531]],["name/2078",[481,63.5]],["parent/2078",[687,2.531]],["name/2079",[484,63.5]],["parent/2079",[687,2.531]],["name/2080",[487,63.5]],["parent/2080",[687,2.531]],["name/2081",[490,63.5]],["parent/2081",[687,2.531]],["name/2082",[494,63.5]],["parent/2082",[687,2.531]],["name/2083",[498,63.5]],["parent/2083",[687,2.531]],["name/2084",[501,63.5]],["parent/2084",[687,2.531]],["name/2085",[504,63.5]],["parent/2085",[687,2.531]],["name/2086",[507,63.5]],["parent/2086",[687,2.531]],["name/2087",[510,63.5]],["parent/2087",[687,2.531]],["name/2088",[513,63.5]],["parent/2088",[687,2.531]],["name/2089",[516,63.5]],["parent/2089",[687,2.531]],["name/2090",[519,63.5]],["parent/2090",[687,2.531]],["name/2091",[522,63.5]],["parent/2091",[687,2.531]],["name/2092",[525,63.5]],["parent/2092",[687,2.531]],["name/2093",[528,63.5]],["parent/2093",[687,2.531]],["name/2094",[531,63.5]],["parent/2094",[687,2.531]],["name/2095",[534,63.5]],["parent/2095",[687,2.531]],["name/2096",[538,63.5]],["parent/2096",[687,2.531]],["name/2097",[541,63.5]],["parent/2097",[687,2.531]],["name/2098",[544,63.5]],["parent/2098",[687,2.531]],["name/2099",[549,63.5]],["parent/2099",[687,2.531]],["name/2100",[552,63.5]],["parent/2100",[687,2.531]],["name/2101",[555,63.5]],["parent/2101",[687,2.531]],["name/2102",[559,63.5]],["parent/2102",[687,2.531]],["name/2103",[562,63.5]],["parent/2103",[687,2.531]],["name/2104",[566,63.5]],["parent/2104",[687,2.531]],["name/2105",[569,63.5]],["parent/2105",[687,2.531]],["name/2106",[572,63.5]],["parent/2106",[687,2.531]],["name/2107",[575,63.5]],["parent/2107",[687,2.531]],["name/2108",[579,63.5]],["parent/2108",[687,2.531]],["name/2109",[582,63.5]],["parent/2109",[687,2.531]],["name/2110",[586,63.5]],["parent/2110",[687,2.531]],["name/2111",[589,63.5]],["parent/2111",[687,2.531]],["name/2112",[592,63.5]],["parent/2112",[687,2.531]],["name/2113",[597,63.5]],["parent/2113",[687,2.531]],["name/2114",[600,63.5]],["parent/2114",[687,2.531]],["name/2115",[603,63.5]],["parent/2115",[687,2.531]],["name/2116",[606,63.5]],["parent/2116",[687,2.531]],["name/2117",[610,63.5]],["parent/2117",[687,2.531]],["name/2118",[613,63.5]],["parent/2118",[687,2.531]],["name/2119",[617,63.5]],["parent/2119",[687,2.531]],["name/2120",[620,63.5]],["parent/2120",[687,2.531]],["name/2121",[624,63.5]],["parent/2121",[687,2.531]],["name/2122",[627,63.5]],["parent/2122",[687,2.531]],["name/2123",[630,63.5]],["parent/2123",[687,2.531]],["name/2124",[633,63.5]],["parent/2124",[687,2.531]],["name/2125",[636,63.5]],["parent/2125",[687,2.531]],["name/2126",[639,63.5]],["parent/2126",[687,2.531]],["name/2127",[642,63.5]],["parent/2127",[687,2.531]],["name/2128",[645,63.5]],["parent/2128",[687,2.531]],["name/2129",[648,63.5]],["parent/2129",[687,2.531]],["name/2130",[651,63.5]],["parent/2130",[687,2.531]],["name/2131",[654,63.5]],["parent/2131",[687,2.531]],["name/2132",[657,63.5]],["parent/2132",[687,2.531]],["name/2133",[660,63.5]],["parent/2133",[687,2.531]],["name/2134",[663,63.5]],["parent/2134",[687,2.531]],["name/2135",[666,63.5]],["parent/2135",[687,2.531]],["name/2136",[669,63.5]],["parent/2136",[687,2.531]],["name/2137",[673,63.5]],["parent/2137",[687,2.531]],["name/2138",[676,63.5]],["parent/2138",[687,2.531]],["name/2139",[679,63.5]],["parent/2139",[687,2.531]],["name/2140",[682,63.5]],["parent/2140",[687,2.531]],["name/2141",[683,63.5]],["parent/2141",[687,2.531]],["name/2142",[684,66.182]],["parent/2142",[687,2.531]],["name/2143",[687,25.355]],["parent/2143",[687,2.531]],["name/2144",[345,56.867]],["parent/2144",[687,2.531]],["name/2145",[346,56.867]],["parent/2145",[687,2.531]],["name/2146",[347,56.867]],["parent/2146",[687,2.531]],["name/2147",[349,63.5]],["parent/2147",[687,2.531]],["name/2148",[326,56.867]],["parent/2148",[687,2.531]],["name/2149",[336,56.867]],["parent/2149",[687,2.531]],["name/2150",[337,56.867]],["parent/2150",[687,2.531]],["name/2151",[320,52.914]],["parent/2151",[687,2.531]],["name/2152",[338,56.867]],["parent/2152",[687,2.531]],["name/2153",[350,47.887]],["parent/2153",[687,2.531]],["name/2154",[327,56.867]],["parent/2154",[687,2.531]],["name/2155",[328,56.867]],["parent/2155",[687,2.531]],["name/2156",[351,63.5]],["parent/2156",[687,2.531]],["name/2157",[352,63.5]],["parent/2157",[687,2.531]],["name/2158",[353,44.558]],["parent/2158",[687,2.531]],["name/2159",[321,56.867]],["parent/2159",[687,2.531]],["name/2160",[688,59.643]],["parent/2160",[687,2.531]],["name/2161",[9,47.405]],["parent/2161",[687,2.531]],["name/2162",[319,52.914]],["parent/2162",[687,2.531]],["name/2163",[343,56.867]],["parent/2163",[687,2.531]],["name/2164",[331,56.867]],["parent/2164",[687,2.531]],["name/2165",[348,59.643]],["parent/2165",[687,2.531]],["name/2166",[324,56.867]],["parent/2166",[687,2.531]],["name/2167",[323,56.867]],["parent/2167",[687,2.531]],["name/2168",[354,59.643]],["parent/2168",[687,2.531]],["name/2169",[355,59.643]],["parent/2169",[687,2.531]],["name/2170",[356,59.643]],["parent/2170",[687,2.531]],["name/2171",[329,56.867]],["parent/2171",[687,2.531]],["name/2172",[357,63.5]],["parent/2172",[687,2.531]],["name/2173",[358,63.5]],["parent/2173",[687,2.531]],["name/2174",[325,56.867]],["parent/2174",[687,2.531]],["name/2175",[344,56.867]],["parent/2175",[687,2.531]],["name/2176",[341,56.867]],["parent/2176",[687,2.531]],["name/2177",[342,56.867]],["parent/2177",[687,2.531]],["name/2178",[339,56.867]],["parent/2178",[687,2.531]],["name/2179",[340,56.867]],["parent/2179",[687,2.531]],["name/2180",[334,56.867]],["parent/2180",[687,2.531]],["name/2181",[335,56.867]],["parent/2181",[687,2.531]],["name/2182",[330,56.867]],["parent/2182",[687,2.531]],["name/2183",[333,56.867]],["parent/2183",[687,2.531]],["name/2184",[359,63.5]],["parent/2184",[687,2.531]],["name/2185",[332,56.867]],["parent/2185",[687,2.531]],["name/2186",[322,56.278]],["parent/2186",[687,2.531]],["name/2187",[360,59.643]],["parent/2187",[687,2.531]],["name/2188",[361,59.643]],["parent/2188",[687,2.531]],["name/2189",[362,59.643]],["parent/2189",[687,2.531]],["name/2190",[842,80.846]],["parent/2190",[687,2.531]],["name/2191",[682,63.5]],["parent/2191",[843,3.659]],["name/2192",[683,63.5]],["parent/2192",[843,3.659]],["name/2193",[443,63.5]],["parent/2193",[843,3.659]],["name/2194",[447,63.5]],["parent/2194",[843,3.659]],["name/2195",[451,63.5]],["parent/2195",[843,3.659]],["name/2196",[454,63.5]],["parent/2196",[843,3.659]],["name/2197",[457,63.5]],["parent/2197",[843,3.659]],["name/2198",[460,63.5]],["parent/2198",[843,3.659]],["name/2199",[463,63.5]],["parent/2199",[843,3.659]],["name/2200",[466,63.5]],["parent/2200",[843,3.659]],["name/2201",[469,63.5]],["parent/2201",[843,3.659]],["name/2202",[472,63.5]],["parent/2202",[843,3.659]],["name/2203",[475,63.5]],["parent/2203",[843,3.659]],["name/2204",[478,63.5]],["parent/2204",[843,3.659]],["name/2205",[481,63.5]],["parent/2205",[843,3.659]],["name/2206",[484,63.5]],["parent/2206",[843,3.659]],["name/2207",[487,63.5]],["parent/2207",[843,3.659]],["name/2208",[490,63.5]],["parent/2208",[843,3.659]],["name/2209",[441,63.5]],["parent/2209",[843,3.659]],["name/2210",[494,63.5]],["parent/2210",[843,3.659]],["name/2211",[498,63.5]],["parent/2211",[843,3.659]],["name/2212",[501,63.5]],["parent/2212",[843,3.659]],["name/2213",[504,63.5]],["parent/2213",[843,3.659]],["name/2214",[507,63.5]],["parent/2214",[843,3.659]],["name/2215",[510,63.5]],["parent/2215",[843,3.659]],["name/2216",[513,63.5]],["parent/2216",[843,3.659]],["name/2217",[516,63.5]],["parent/2217",[843,3.659]],["name/2218",[519,63.5]],["parent/2218",[843,3.659]],["name/2219",[522,63.5]],["parent/2219",[843,3.659]],["name/2220",[525,63.5]],["parent/2220",[843,3.659]],["name/2221",[528,63.5]],["parent/2221",[843,3.659]],["name/2222",[531,63.5]],["parent/2222",[843,3.659]],["name/2223",[534,63.5]],["parent/2223",[843,3.659]],["name/2224",[538,63.5]],["parent/2224",[843,3.659]],["name/2225",[541,63.5]],["parent/2225",[843,3.659]],["name/2226",[442,63.5]],["parent/2226",[843,3.659]],["name/2227",[544,63.5]],["parent/2227",[843,3.659]],["name/2228",[549,63.5]],["parent/2228",[843,3.659]],["name/2229",[552,63.5]],["parent/2229",[843,3.659]],["name/2230",[555,63.5]],["parent/2230",[843,3.659]],["name/2231",[559,63.5]],["parent/2231",[843,3.659]],["name/2232",[562,63.5]],["parent/2232",[843,3.659]],["name/2233",[566,63.5]],["parent/2233",[843,3.659]],["name/2234",[569,63.5]],["parent/2234",[843,3.659]],["name/2235",[572,63.5]],["parent/2235",[843,3.659]],["name/2236",[575,63.5]],["parent/2236",[843,3.659]],["name/2237",[579,63.5]],["parent/2237",[843,3.659]],["name/2238",[582,63.5]],["parent/2238",[843,3.659]],["name/2239",[586,63.5]],["parent/2239",[843,3.659]],["name/2240",[589,63.5]],["parent/2240",[843,3.659]],["name/2241",[592,63.5]],["parent/2241",[843,3.659]],["name/2242",[597,63.5]],["parent/2242",[843,3.659]],["name/2243",[600,63.5]],["parent/2243",[843,3.659]],["name/2244",[603,63.5]],["parent/2244",[843,3.659]],["name/2245",[606,63.5]],["parent/2245",[843,3.659]],["name/2246",[610,63.5]],["parent/2246",[843,3.659]],["name/2247",[613,63.5]],["parent/2247",[843,3.659]],["name/2248",[617,63.5]],["parent/2248",[843,3.659]],["name/2249",[620,63.5]],["parent/2249",[843,3.659]],["name/2250",[624,63.5]],["parent/2250",[843,3.659]],["name/2251",[627,63.5]],["parent/2251",[843,3.659]],["name/2252",[630,63.5]],["parent/2252",[843,3.659]],["name/2253",[633,63.5]],["parent/2253",[843,3.659]],["name/2254",[636,63.5]],["parent/2254",[843,3.659]],["name/2255",[639,63.5]],["parent/2255",[843,3.659]],["name/2256",[642,63.5]],["parent/2256",[843,3.659]],["name/2257",[645,63.5]],["parent/2257",[843,3.659]],["name/2258",[648,63.5]],["parent/2258",[843,3.659]],["name/2259",[651,63.5]],["parent/2259",[843,3.659]],["name/2260",[654,63.5]],["parent/2260",[843,3.659]],["name/2261",[657,63.5]],["parent/2261",[843,3.659]],["name/2262",[660,63.5]],["parent/2262",[843,3.659]],["name/2263",[663,63.5]],["parent/2263",[843,3.659]],["name/2264",[666,63.5]],["parent/2264",[843,3.659]],["name/2265",[669,63.5]],["parent/2265",[843,3.659]],["name/2266",[673,63.5]],["parent/2266",[843,3.659]],["name/2267",[676,63.5]],["parent/2267",[843,3.659]],["name/2268",[679,63.5]],["parent/2268",[843,3.659]],["name/2269",[345,56.867]],["parent/2269",[843,3.659]],["name/2270",[346,56.867]],["parent/2270",[843,3.659]],["name/2271",[347,56.867]],["parent/2271",[843,3.659]],["name/2272",[349,63.5]],["parent/2272",[843,3.659]],["name/2273",[326,56.867]],["parent/2273",[843,3.659]],["name/2274",[336,56.867]],["parent/2274",[843,3.659]],["name/2275",[337,56.867]],["parent/2275",[843,3.659]],["name/2276",[320,52.914]],["parent/2276",[843,3.659]],["name/2277",[338,56.867]],["parent/2277",[843,3.659]],["name/2278",[350,47.887]],["parent/2278",[843,3.659]],["name/2279",[327,56.867]],["parent/2279",[843,3.659]],["name/2280",[328,56.867]],["parent/2280",[843,3.659]],["name/2281",[351,63.5]],["parent/2281",[843,3.659]],["name/2282",[352,63.5]],["parent/2282",[843,3.659]],["name/2283",[353,44.558]],["parent/2283",[843,3.659]],["name/2284",[321,56.867]],["parent/2284",[843,3.659]],["name/2285",[688,59.643]],["parent/2285",[843,3.659]],["name/2286",[9,47.405]],["parent/2286",[843,3.659]],["name/2287",[319,52.914]],["parent/2287",[843,3.659]],["name/2288",[343,56.867]],["parent/2288",[843,3.659]],["name/2289",[331,56.867]],["parent/2289",[843,3.659]],["name/2290",[348,59.643]],["parent/2290",[843,3.659]],["name/2291",[324,56.867]],["parent/2291",[843,3.659]],["name/2292",[323,56.867]],["parent/2292",[843,3.659]],["name/2293",[354,59.643]],["parent/2293",[843,3.659]],["name/2294",[355,59.643]],["parent/2294",[843,3.659]],["name/2295",[356,59.643]],["parent/2295",[843,3.659]],["name/2296",[329,56.867]],["parent/2296",[843,3.659]],["name/2297",[357,63.5]],["parent/2297",[843,3.659]],["name/2298",[358,63.5]],["parent/2298",[843,3.659]],["name/2299",[325,56.867]],["parent/2299",[843,3.659]],["name/2300",[344,56.867]],["parent/2300",[843,3.659]],["name/2301",[341,56.867]],["parent/2301",[843,3.659]],["name/2302",[342,56.867]],["parent/2302",[843,3.659]],["name/2303",[339,56.867]],["parent/2303",[843,3.659]],["name/2304",[340,56.867]],["parent/2304",[843,3.659]],["name/2305",[334,56.867]],["parent/2305",[843,3.659]],["name/2306",[335,56.867]],["parent/2306",[843,3.659]],["name/2307",[330,56.867]],["parent/2307",[843,3.659]],["name/2308",[333,56.867]],["parent/2308",[843,3.659]],["name/2309",[359,63.5]],["parent/2309",[843,3.659]],["name/2310",[332,56.867]],["parent/2310",[843,3.659]],["name/2311",[322,56.278]],["parent/2311",[843,3.659]],["name/2312",[360,59.643]],["parent/2312",[843,3.659]],["name/2313",[361,59.643]],["parent/2313",[843,3.659]],["name/2314",[362,59.643]],["parent/2314",[843,3.659]],["name/2315",[844,49.491]],["parent/2315",[]],["name/2316",[43,46.723]],["parent/2316",[844,4.94]],["name/2317",[353,44.558]],["parent/2317",[844,4.94]],["name/2318",[845,69.86]],["parent/2318",[844,4.94]],["name/2319",[846,69.86]],["parent/2319",[844,4.94]],["name/2320",[353,44.558]],["parent/2320",[844,4.94]],["name/2321",[845,69.86]],["parent/2321",[844,4.94]],["name/2322",[846,69.86]],["parent/2322",[844,4.94]],["name/2323",[844,49.491]],["parent/2323",[844,4.94]],["name/2324",[17,53.765]],["parent/2324",[847,6.607]],["name/2325",[43,46.723]],["parent/2325",[847,6.607]],["name/2326",[77,57.492]],["parent/2326",[847,6.607]],["name/2327",[848,72.373]],["parent/2327",[849,8.07]],["name/2328",[29,55.723]],["parent/2328",[847,6.607]],["name/2329",[96,57.492]],["parent/2329",[847,6.607]],["name/2330",[10,26.925]],["parent/2330",[850,8.07]],["name/2331",[848,72.373]],["parent/2331",[851,7.56]],["name/2332",[852,80.846]],["parent/2332",[851,7.56]],["name/2333",[848,72.373]],["parent/2333",[847,6.607]],["name/2334",[853,69.86]],["parent/2334",[844,4.94]],["name/2335",[10,26.925]],["parent/2335",[854,8.07]],["name/2336",[445,36.034]],["parent/2336",[855,8.07]],["name/2337",[856,69.86]],["parent/2337",[844,4.94]],["name/2338",[10,26.925]],["parent/2338",[857,8.07]],["name/2339",[134,34.761]],["parent/2339",[858,8.07]],["name/2340",[859,69.86]],["parent/2340",[844,4.94]],["name/2341",[860,69.86]],["parent/2341",[844,4.94]],["name/2342",[861,72.373]],["parent/2342",[844,4.94]],["name/2343",[853,69.86]],["parent/2343",[844,4.94]],["name/2344",[856,69.86]],["parent/2344",[844,4.94]],["name/2345",[859,69.86]],["parent/2345",[844,4.94]],["name/2346",[860,69.86]],["parent/2346",[844,4.94]],["name/2347",[861,72.373]],["parent/2347",[844,4.94]],["name/2348",[844,49.491]],["parent/2348",[844,4.94]],["name/2349",[43,46.723]],["parent/2349",[844,4.94]],["name/2350",[853,69.86]],["parent/2350",[844,4.94]],["name/2351",[856,69.86]],["parent/2351",[844,4.94]],["name/2352",[859,69.86]],["parent/2352",[844,4.94]],["name/2353",[860,69.86]],["parent/2353",[844,4.94]],["name/2354",[861,72.373]],["parent/2354",[844,4.94]],["name/2355",[844,49.491]],["parent/2355",[844,4.94]],["name/2356",[353,44.558]],["parent/2356",[844,4.94]],["name/2357",[845,69.86]],["parent/2357",[844,4.94]],["name/2358",[846,69.86]],["parent/2358",[844,4.94]],["name/2359",[862,80.846]],["parent/2359",[844,4.94]],["name/2360",[859,69.86]],["parent/2360",[863,6.464]],["name/2361",[860,69.86]],["parent/2361",[863,6.464]],["name/2362",[853,69.86]],["parent/2362",[863,6.464]],["name/2363",[856,69.86]],["parent/2363",[863,6.464]],["name/2364",[353,44.558]],["parent/2364",[863,6.464]],["name/2365",[845,69.86]],["parent/2365",[863,6.464]],["name/2366",[846,69.86]],["parent/2366",[863,6.464]],["name/2367",[864,44.736]],["parent/2367",[]],["name/2368",[43,46.723]],["parent/2368",[864,4.466]],["name/2369",[865,69.86]],["parent/2369",[864,4.466]],["name/2370",[866,69.86]],["parent/2370",[864,4.466]],["name/2371",[867,69.86]],["parent/2371",[864,4.466]],["name/2372",[868,69.86]],["parent/2372",[864,4.466]],["name/2373",[869,69.86]],["parent/2373",[864,4.466]],["name/2374",[350,47.887]],["parent/2374",[864,4.466]],["name/2375",[353,44.558]],["parent/2375",[864,4.466]],["name/2376",[9,47.405]],["parent/2376",[864,4.466]],["name/2377",[865,69.86]],["parent/2377",[864,4.466]],["name/2378",[867,69.86]],["parent/2378",[864,4.466]],["name/2379",[868,69.86]],["parent/2379",[864,4.466]],["name/2380",[869,69.86]],["parent/2380",[864,4.466]],["name/2381",[350,47.887]],["parent/2381",[864,4.466]],["name/2382",[353,44.558]],["parent/2382",[864,4.466]],["name/2383",[9,47.405]],["parent/2383",[864,4.466]],["name/2384",[866,69.86]],["parent/2384",[864,4.466]],["name/2385",[864,44.736]],["parent/2385",[864,4.466]],["name/2386",[17,53.765]],["parent/2386",[870,6.464]],["name/2387",[43,46.723]],["parent/2387",[870,6.464]],["name/2388",[77,57.492]],["parent/2388",[870,6.464]],["name/2389",[871,72.373]],["parent/2389",[872,7.56]],["name/2390",[873,72.373]],["parent/2390",[872,7.56]],["name/2391",[29,55.723]],["parent/2391",[870,6.464]],["name/2392",[96,57.492]],["parent/2392",[870,6.464]],["name/2393",[10,26.925]],["parent/2393",[874,8.07]],["name/2394",[871,72.373]],["parent/2394",[875,6.974]],["name/2395",[876,80.846]],["parent/2395",[875,6.974]],["name/2396",[873,72.373]],["parent/2396",[875,6.974]],["name/2397",[877,80.846]],["parent/2397",[875,6.974]],["name/2398",[871,72.373]],["parent/2398",[870,6.464]],["name/2399",[873,72.373]],["parent/2399",[870,6.464]],["name/2400",[878,69.86]],["parent/2400",[864,4.466]],["name/2401",[10,26.925]],["parent/2401",[879,8.07]],["name/2402",[445,36.034]],["parent/2402",[880,7.224]],["name/2403",[165,40.652]],["parent/2403",[880,7.224]],["name/2404",[881,80.846]],["parent/2404",[880,7.224]],["name/2405",[882,69.86]],["parent/2405",[864,4.466]],["name/2406",[10,26.925]],["parent/2406",[883,8.07]],["name/2407",[134,34.761]],["parent/2407",[884,8.07]],["name/2408",[885,69.86]],["parent/2408",[864,4.466]],["name/2409",[10,26.925]],["parent/2409",[886,8.07]],["name/2410",[445,36.034]],["parent/2410",[887,7.56]],["name/2411",[165,40.652]],["parent/2411",[887,7.56]],["name/2412",[888,69.86]],["parent/2412",[864,4.466]],["name/2413",[10,26.925]],["parent/2413",[889,8.07]],["name/2414",[134,34.761]],["parent/2414",[890,8.07]],["name/2415",[891,69.86]],["parent/2415",[864,4.466]],["name/2416",[892,69.86]],["parent/2416",[864,4.466]],["name/2417",[893,72.373]],["parent/2417",[864,4.466]],["name/2418",[878,69.86]],["parent/2418",[864,4.466]],["name/2419",[882,69.86]],["parent/2419",[864,4.466]],["name/2420",[885,69.86]],["parent/2420",[864,4.466]],["name/2421",[888,69.86]],["parent/2421",[864,4.466]],["name/2422",[891,69.86]],["parent/2422",[864,4.466]],["name/2423",[892,69.86]],["parent/2423",[864,4.466]],["name/2424",[893,72.373]],["parent/2424",[864,4.466]],["name/2425",[864,44.736]],["parent/2425",[864,4.466]],["name/2426",[43,46.723]],["parent/2426",[864,4.466]],["name/2427",[878,69.86]],["parent/2427",[864,4.466]],["name/2428",[882,69.86]],["parent/2428",[864,4.466]],["name/2429",[885,69.86]],["parent/2429",[864,4.466]],["name/2430",[888,69.86]],["parent/2430",[864,4.466]],["name/2431",[891,69.86]],["parent/2431",[864,4.466]],["name/2432",[892,69.86]],["parent/2432",[864,4.466]],["name/2433",[893,72.373]],["parent/2433",[864,4.466]],["name/2434",[864,44.736]],["parent/2434",[864,4.466]],["name/2435",[865,69.86]],["parent/2435",[864,4.466]],["name/2436",[867,69.86]],["parent/2436",[864,4.466]],["name/2437",[868,69.86]],["parent/2437",[864,4.466]],["name/2438",[869,69.86]],["parent/2438",[864,4.466]],["name/2439",[350,47.887]],["parent/2439",[864,4.466]],["name/2440",[353,44.558]],["parent/2440",[864,4.466]],["name/2441",[9,47.405]],["parent/2441",[864,4.466]],["name/2442",[866,69.86]],["parent/2442",[864,4.466]],["name/2443",[894,80.846]],["parent/2443",[864,4.466]],["name/2444",[891,69.86]],["parent/2444",[895,5.806]],["name/2445",[892,69.86]],["parent/2445",[895,5.806]],["name/2446",[878,69.86]],["parent/2446",[895,5.806]],["name/2447",[882,69.86]],["parent/2447",[895,5.806]],["name/2448",[885,69.86]],["parent/2448",[895,5.806]],["name/2449",[888,69.86]],["parent/2449",[895,5.806]],["name/2450",[865,69.86]],["parent/2450",[895,5.806]],["name/2451",[867,69.86]],["parent/2451",[895,5.806]],["name/2452",[868,69.86]],["parent/2452",[895,5.806]],["name/2453",[869,69.86]],["parent/2453",[895,5.806]],["name/2454",[350,47.887]],["parent/2454",[895,5.806]],["name/2455",[353,44.558]],["parent/2455",[895,5.806]],["name/2456",[9,47.405]],["parent/2456",[895,5.806]],["name/2457",[866,69.86]],["parent/2457",[895,5.806]],["name/2458",[896,45.103]],["parent/2458",[]],["name/2459",[43,46.723]],["parent/2459",[896,4.502]],["name/2460",[353,44.558]],["parent/2460",[896,4.502]],["name/2461",[897,69.86]],["parent/2461",[896,4.502]],["name/2462",[896,45.103]],["parent/2462",[896,4.502]],["name/2463",[353,44.558]],["parent/2463",[896,4.502]],["name/2464",[896,45.103]],["parent/2464",[896,4.502]],["name/2465",[897,69.86]],["parent/2465",[896,4.502]],["name/2466",[898,72.373]],["parent/2466",[896,4.502]],["name/2467",[17,53.765]],["parent/2467",[899,6.228]],["name/2468",[43,46.723]],["parent/2468",[899,6.228]],["name/2469",[77,57.492]],["parent/2469",[899,6.228]],["name/2470",[900,72.373]],["parent/2470",[901,6.974]],["name/2471",[902,72.373]],["parent/2471",[901,6.974]],["name/2472",[903,72.373]],["parent/2472",[901,6.974]],["name/2473",[904,72.373]],["parent/2473",[901,6.974]],["name/2474",[29,55.723]],["parent/2474",[899,6.228]],["name/2475",[96,57.492]],["parent/2475",[899,6.228]],["name/2476",[10,26.925]],["parent/2476",[905,8.07]],["name/2477",[900,72.373]],["parent/2477",[906,6.339]],["name/2478",[907,80.846]],["parent/2478",[906,6.339]],["name/2479",[902,72.373]],["parent/2479",[906,6.339]],["name/2480",[908,80.846]],["parent/2480",[906,6.339]],["name/2481",[903,72.373]],["parent/2481",[906,6.339]],["name/2482",[909,80.846]],["parent/2482",[906,6.339]],["name/2483",[904,72.373]],["parent/2483",[906,6.339]],["name/2484",[910,80.846]],["parent/2484",[906,6.339]],["name/2485",[900,72.373]],["parent/2485",[899,6.228]],["name/2486",[902,72.373]],["parent/2486",[899,6.228]],["name/2487",[903,72.373]],["parent/2487",[899,6.228]],["name/2488",[904,72.373]],["parent/2488",[899,6.228]],["name/2489",[911,69.86]],["parent/2489",[896,4.502]],["name/2490",[10,26.925]],["parent/2490",[912,8.07]],["name/2491",[445,36.034]],["parent/2491",[913,7.56]],["name/2492",[914,75.737]],["parent/2492",[913,7.56]],["name/2493",[915,69.86]],["parent/2493",[896,4.502]],["name/2494",[10,26.925]],["parent/2494",[916,8.07]],["name/2495",[144,60.477]],["parent/2495",[917,7.56]],["name/2496",[134,34.761]],["parent/2496",[917,7.56]],["name/2497",[918,69.86]],["parent/2497",[896,4.502]],["name/2498",[10,26.925]],["parent/2498",[919,8.07]],["name/2499",[445,36.034]],["parent/2499",[920,8.07]],["name/2500",[921,69.86]],["parent/2500",[896,4.502]],["name/2501",[10,26.925]],["parent/2501",[922,8.07]],["name/2502",[144,60.477]],["parent/2502",[923,7.56]],["name/2503",[134,34.761]],["parent/2503",[923,7.56]],["name/2504",[924,69.86]],["parent/2504",[896,4.502]],["name/2505",[10,26.925]],["parent/2505",[925,8.07]],["name/2506",[445,36.034]],["parent/2506",[926,8.07]],["name/2507",[927,69.86]],["parent/2507",[896,4.502]],["name/2508",[10,26.925]],["parent/2508",[928,8.07]],["name/2509",[144,60.477]],["parent/2509",[929,7.56]],["name/2510",[134,34.761]],["parent/2510",[929,7.56]],["name/2511",[930,69.86]],["parent/2511",[896,4.502]],["name/2512",[10,26.925]],["parent/2512",[931,8.07]],["name/2513",[445,36.034]],["parent/2513",[932,7.56]],["name/2514",[914,75.737]],["parent/2514",[932,7.56]],["name/2515",[933,69.86]],["parent/2515",[896,4.502]],["name/2516",[10,26.925]],["parent/2516",[934,8.07]],["name/2517",[144,60.477]],["parent/2517",[935,7.56]],["name/2518",[134,34.761]],["parent/2518",[935,7.56]],["name/2519",[936,69.86]],["parent/2519",[896,4.502]],["name/2520",[937,69.86]],["parent/2520",[896,4.502]],["name/2521",[938,72.373]],["parent/2521",[896,4.502]],["name/2522",[911,69.86]],["parent/2522",[896,4.502]],["name/2523",[915,69.86]],["parent/2523",[896,4.502]],["name/2524",[918,69.86]],["parent/2524",[896,4.502]],["name/2525",[921,69.86]],["parent/2525",[896,4.502]],["name/2526",[924,69.86]],["parent/2526",[896,4.502]],["name/2527",[927,69.86]],["parent/2527",[896,4.502]],["name/2528",[930,69.86]],["parent/2528",[896,4.502]],["name/2529",[933,69.86]],["parent/2529",[896,4.502]],["name/2530",[936,69.86]],["parent/2530",[896,4.502]],["name/2531",[937,69.86]],["parent/2531",[896,4.502]],["name/2532",[938,72.373]],["parent/2532",[896,4.502]],["name/2533",[898,72.373]],["parent/2533",[896,4.502]],["name/2534",[43,46.723]],["parent/2534",[896,4.502]],["name/2535",[911,69.86]],["parent/2535",[896,4.502]],["name/2536",[915,69.86]],["parent/2536",[896,4.502]],["name/2537",[918,69.86]],["parent/2537",[896,4.502]],["name/2538",[921,69.86]],["parent/2538",[896,4.502]],["name/2539",[924,69.86]],["parent/2539",[896,4.502]],["name/2540",[927,69.86]],["parent/2540",[896,4.502]],["name/2541",[930,69.86]],["parent/2541",[896,4.502]],["name/2542",[933,69.86]],["parent/2542",[896,4.502]],["name/2543",[936,69.86]],["parent/2543",[896,4.502]],["name/2544",[937,69.86]],["parent/2544",[896,4.502]],["name/2545",[938,72.373]],["parent/2545",[896,4.502]],["name/2546",[898,72.373]],["parent/2546",[896,4.502]],["name/2547",[353,44.558]],["parent/2547",[896,4.502]],["name/2548",[896,45.103]],["parent/2548",[896,4.502]],["name/2549",[897,69.86]],["parent/2549",[896,4.502]],["name/2550",[939,80.846]],["parent/2550",[896,4.502]],["name/2551",[936,69.86]],["parent/2551",[940,5.877]],["name/2552",[937,69.86]],["parent/2552",[940,5.877]],["name/2553",[911,69.86]],["parent/2553",[940,5.877]],["name/2554",[915,69.86]],["parent/2554",[940,5.877]],["name/2555",[918,69.86]],["parent/2555",[940,5.877]],["name/2556",[921,69.86]],["parent/2556",[940,5.877]],["name/2557",[924,69.86]],["parent/2557",[940,5.877]],["name/2558",[927,69.86]],["parent/2558",[940,5.877]],["name/2559",[930,69.86]],["parent/2559",[940,5.877]],["name/2560",[933,69.86]],["parent/2560",[940,5.877]],["name/2561",[353,44.558]],["parent/2561",[940,5.877]],["name/2562",[896,45.103]],["parent/2562",[940,5.877]],["name/2563",[897,69.86]],["parent/2563",[940,5.877]],["name/2564",[941,23.194]],["parent/2564",[]],["name/2565",[43,46.723]],["parent/2565",[941,2.315]],["name/2566",[319,52.914]],["parent/2566",[941,2.315]],["name/2567",[320,52.914]],["parent/2567",[941,2.315]],["name/2568",[321,56.867]],["parent/2568",[941,2.315]],["name/2569",[322,56.278]],["parent/2569",[941,2.315]],["name/2570",[323,56.867]],["parent/2570",[941,2.315]],["name/2571",[324,56.867]],["parent/2571",[941,2.315]],["name/2572",[325,56.867]],["parent/2572",[941,2.315]],["name/2573",[326,56.867]],["parent/2573",[941,2.315]],["name/2574",[327,56.867]],["parent/2574",[941,2.315]],["name/2575",[328,56.867]],["parent/2575",[941,2.315]],["name/2576",[329,56.867]],["parent/2576",[941,2.315]],["name/2577",[330,56.867]],["parent/2577",[941,2.315]],["name/2578",[331,56.867]],["parent/2578",[941,2.315]],["name/2579",[332,56.867]],["parent/2579",[941,2.315]],["name/2580",[333,56.867]],["parent/2580",[941,2.315]],["name/2581",[334,56.867]],["parent/2581",[941,2.315]],["name/2582",[335,56.867]],["parent/2582",[941,2.315]],["name/2583",[336,56.867]],["parent/2583",[941,2.315]],["name/2584",[337,56.867]],["parent/2584",[941,2.315]],["name/2585",[338,56.867]],["parent/2585",[941,2.315]],["name/2586",[688,59.643]],["parent/2586",[941,2.315]],["name/2587",[339,56.867]],["parent/2587",[941,2.315]],["name/2588",[340,56.867]],["parent/2588",[941,2.315]],["name/2589",[341,56.867]],["parent/2589",[941,2.315]],["name/2590",[342,56.867]],["parent/2590",[941,2.315]],["name/2591",[343,56.867]],["parent/2591",[941,2.315]],["name/2592",[344,56.867]],["parent/2592",[941,2.315]],["name/2593",[345,56.867]],["parent/2593",[941,2.315]],["name/2594",[346,56.867]],["parent/2594",[941,2.315]],["name/2595",[347,56.867]],["parent/2595",[941,2.315]],["name/2596",[942,69.86]],["parent/2596",[941,2.315]],["name/2597",[943,59.643]],["parent/2597",[941,2.315]],["name/2598",[944,59.643]],["parent/2598",[941,2.315]],["name/2599",[945,59.643]],["parent/2599",[941,2.315]],["name/2600",[946,59.643]],["parent/2600",[941,2.315]],["name/2601",[947,59.643]],["parent/2601",[941,2.315]],["name/2602",[948,59.643]],["parent/2602",[941,2.315]],["name/2603",[949,63.5]],["parent/2603",[941,2.315]],["name/2604",[950,63.5]],["parent/2604",[941,2.315]],["name/2605",[951,59.643]],["parent/2605",[941,2.315]],["name/2606",[952,59.643]],["parent/2606",[941,2.315]],["name/2607",[953,63.5]],["parent/2607",[941,2.315]],["name/2608",[954,59.643]],["parent/2608",[941,2.315]],["name/2609",[955,59.643]],["parent/2609",[941,2.315]],["name/2610",[956,63.5]],["parent/2610",[941,2.315]],["name/2611",[957,63.5]],["parent/2611",[941,2.315]],["name/2612",[958,63.5]],["parent/2612",[941,2.315]],["name/2613",[959,63.5]],["parent/2613",[941,2.315]],["name/2614",[960,59.643]],["parent/2614",[941,2.315]],["name/2615",[961,63.5]],["parent/2615",[941,2.315]],["name/2616",[962,63.5]],["parent/2616",[941,2.315]],["name/2617",[963,63.5]],["parent/2617",[941,2.315]],["name/2618",[964,69.86]],["parent/2618",[941,2.315]],["name/2619",[965,69.86]],["parent/2619",[941,2.315]],["name/2620",[966,69.86]],["parent/2620",[941,2.315]],["name/2621",[967,69.86]],["parent/2621",[941,2.315]],["name/2622",[968,69.86]],["parent/2622",[941,2.315]],["name/2623",[969,69.86]],["parent/2623",[941,2.315]],["name/2624",[970,69.86]],["parent/2624",[941,2.315]],["name/2625",[971,63.5]],["parent/2625",[941,2.315]],["name/2626",[972,63.5]],["parent/2626",[941,2.315]],["name/2627",[973,63.5]],["parent/2627",[941,2.315]],["name/2628",[974,63.5]],["parent/2628",[941,2.315]],["name/2629",[975,63.5]],["parent/2629",[941,2.315]],["name/2630",[976,63.5]],["parent/2630",[941,2.315]],["name/2631",[977,63.5]],["parent/2631",[941,2.315]],["name/2632",[978,63.5]],["parent/2632",[941,2.315]],["name/2633",[979,69.86]],["parent/2633",[941,2.315]],["name/2634",[980,69.86]],["parent/2634",[941,2.315]],["name/2635",[981,69.86]],["parent/2635",[941,2.315]],["name/2636",[982,69.86]],["parent/2636",[941,2.315]],["name/2637",[983,69.86]],["parent/2637",[941,2.315]],["name/2638",[984,69.86]],["parent/2638",[941,2.315]],["name/2639",[985,69.86]],["parent/2639",[941,2.315]],["name/2640",[986,69.86]],["parent/2640",[941,2.315]],["name/2641",[987,69.86]],["parent/2641",[941,2.315]],["name/2642",[988,69.86]],["parent/2642",[941,2.315]],["name/2643",[989,69.86]],["parent/2643",[941,2.315]],["name/2644",[990,69.86]],["parent/2644",[941,2.315]],["name/2645",[991,69.86]],["parent/2645",[941,2.315]],["name/2646",[353,44.558]],["parent/2646",[941,2.315]],["name/2647",[992,59.643]],["parent/2647",[941,2.315]],["name/2648",[993,69.86]],["parent/2648",[941,2.315]],["name/2649",[994,69.86]],["parent/2649",[941,2.315]],["name/2650",[995,69.86]],["parent/2650",[941,2.315]],["name/2651",[996,69.86]],["parent/2651",[941,2.315]],["name/2652",[997,69.86]],["parent/2652",[941,2.315]],["name/2653",[998,69.86]],["parent/2653",[941,2.315]],["name/2654",[999,69.86]],["parent/2654",[941,2.315]],["name/2655",[1000,69.86]],["parent/2655",[941,2.315]],["name/2656",[1001,69.86]],["parent/2656",[941,2.315]],["name/2657",[1002,69.86]],["parent/2657",[941,2.315]],["name/2658",[1003,69.86]],["parent/2658",[941,2.315]],["name/2659",[1004,69.86]],["parent/2659",[941,2.315]],["name/2660",[1005,54.696]],["parent/2660",[941,2.315]],["name/2661",[345,56.867]],["parent/2661",[941,2.315]],["name/2662",[346,56.867]],["parent/2662",[941,2.315]],["name/2663",[347,56.867]],["parent/2663",[941,2.315]],["name/2664",[942,69.86]],["parent/2664",[941,2.315]],["name/2665",[326,56.867]],["parent/2665",[941,2.315]],["name/2666",[963,63.5]],["parent/2666",[941,2.315]],["name/2667",[336,56.867]],["parent/2667",[941,2.315]],["name/2668",[337,56.867]],["parent/2668",[941,2.315]],["name/2669",[320,52.914]],["parent/2669",[941,2.315]],["name/2670",[966,69.86]],["parent/2670",[941,2.315]],["name/2671",[967,69.86]],["parent/2671",[941,2.315]],["name/2672",[965,69.86]],["parent/2672",[941,2.315]],["name/2673",[968,69.86]],["parent/2673",[941,2.315]],["name/2674",[969,69.86]],["parent/2674",[941,2.315]],["name/2675",[970,69.86]],["parent/2675",[941,2.315]],["name/2676",[338,56.867]],["parent/2676",[941,2.315]],["name/2677",[979,69.86]],["parent/2677",[941,2.315]],["name/2678",[980,69.86]],["parent/2678",[941,2.315]],["name/2679",[964,69.86]],["parent/2679",[941,2.315]],["name/2680",[982,69.86]],["parent/2680",[941,2.315]],["name/2681",[988,69.86]],["parent/2681",[941,2.315]],["name/2682",[989,69.86]],["parent/2682",[941,2.315]],["name/2683",[984,69.86]],["parent/2683",[941,2.315]],["name/2684",[985,69.86]],["parent/2684",[941,2.315]],["name/2685",[986,69.86]],["parent/2685",[941,2.315]],["name/2686",[990,69.86]],["parent/2686",[941,2.315]],["name/2687",[991,69.86]],["parent/2687",[941,2.315]],["name/2688",[327,56.867]],["parent/2688",[941,2.315]],["name/2689",[328,56.867]],["parent/2689",[941,2.315]],["name/2690",[353,44.558]],["parent/2690",[941,2.315]],["name/2691",[321,56.867]],["parent/2691",[941,2.315]],["name/2692",[688,59.643]],["parent/2692",[941,2.315]],["name/2693",[943,59.643]],["parent/2693",[941,2.315]],["name/2694",[960,59.643]],["parent/2694",[941,2.315]],["name/2695",[961,63.5]],["parent/2695",[941,2.315]],["name/2696",[953,63.5]],["parent/2696",[941,2.315]],["name/2697",[319,52.914]],["parent/2697",[941,2.315]],["name/2698",[959,63.5]],["parent/2698",[941,2.315]],["name/2699",[343,56.867]],["parent/2699",[941,2.315]],["name/2700",[958,63.5]],["parent/2700",[941,2.315]],["name/2701",[971,63.5]],["parent/2701",[941,2.315]],["name/2702",[972,63.5]],["parent/2702",[941,2.315]],["name/2703",[973,63.5]],["parent/2703",[941,2.315]],["name/2704",[974,63.5]],["parent/2704",[941,2.315]],["name/2705",[975,63.5]],["parent/2705",[941,2.315]],["name/2706",[976,63.5]],["parent/2706",[941,2.315]],["name/2707",[977,63.5]],["parent/2707",[941,2.315]],["name/2708",[978,63.5]],["parent/2708",[941,2.315]],["name/2709",[331,56.867]],["parent/2709",[941,2.315]],["name/2710",[324,56.867]],["parent/2710",[941,2.315]],["name/2711",[955,59.643]],["parent/2711",[941,2.315]],["name/2712",[992,59.643]],["parent/2712",[941,2.315]],["name/2713",[993,69.86]],["parent/2713",[941,2.315]],["name/2714",[981,69.86]],["parent/2714",[941,2.315]],["name/2715",[323,56.867]],["parent/2715",[941,2.315]],["name/2716",[329,56.867]],["parent/2716",[941,2.315]],["name/2717",[951,59.643]],["parent/2717",[941,2.315]],["name/2718",[962,63.5]],["parent/2718",[941,2.315]],["name/2719",[325,56.867]],["parent/2719",[941,2.315]],["name/2720",[344,56.867]],["parent/2720",[941,2.315]],["name/2721",[956,63.5]],["parent/2721",[941,2.315]],["name/2722",[957,63.5]],["parent/2722",[941,2.315]],["name/2723",[983,69.86]],["parent/2723",[941,2.315]],["name/2724",[341,56.867]],["parent/2724",[941,2.315]],["name/2725",[342,56.867]],["parent/2725",[941,2.315]],["name/2726",[339,56.867]],["parent/2726",[941,2.315]],["name/2727",[340,56.867]],["parent/2727",[941,2.315]],["name/2728",[994,69.86]],["parent/2728",[941,2.315]],["name/2729",[987,69.86]],["parent/2729",[941,2.315]],["name/2730",[948,59.643]],["parent/2730",[941,2.315]],["name/2731",[952,59.643]],["parent/2731",[941,2.315]],["name/2732",[947,59.643]],["parent/2732",[941,2.315]],["name/2733",[997,69.86]],["parent/2733",[941,2.315]],["name/2734",[998,69.86]],["parent/2734",[941,2.315]],["name/2735",[999,69.86]],["parent/2735",[941,2.315]],["name/2736",[1000,69.86]],["parent/2736",[941,2.315]],["name/2737",[995,69.86]],["parent/2737",[941,2.315]],["name/2738",[996,69.86]],["parent/2738",[941,2.315]],["name/2739",[1001,69.86]],["parent/2739",[941,2.315]],["name/2740",[950,63.5]],["parent/2740",[941,2.315]],["name/2741",[949,63.5]],["parent/2741",[941,2.315]],["name/2742",[1002,69.86]],["parent/2742",[941,2.315]],["name/2743",[1003,69.86]],["parent/2743",[941,2.315]],["name/2744",[1004,69.86]],["parent/2744",[941,2.315]],["name/2745",[1005,54.696]],["parent/2745",[941,2.315]],["name/2746",[334,56.867]],["parent/2746",[941,2.315]],["name/2747",[335,56.867]],["parent/2747",[941,2.315]],["name/2748",[330,56.867]],["parent/2748",[941,2.315]],["name/2749",[333,56.867]],["parent/2749",[941,2.315]],["name/2750",[332,56.867]],["parent/2750",[941,2.315]],["name/2751",[322,56.278]],["parent/2751",[941,2.315]],["name/2752",[954,59.643]],["parent/2752",[941,2.315]],["name/2753",[945,59.643]],["parent/2753",[941,2.315]],["name/2754",[944,59.643]],["parent/2754",[941,2.315]],["name/2755",[946,59.643]],["parent/2755",[941,2.315]],["name/2756",[941,23.194]],["parent/2756",[941,2.315]],["name/2757",[17,53.765]],["parent/2757",[1006,4.94]],["name/2758",[43,46.723]],["parent/2758",[1006,4.94]],["name/2759",[77,57.492]],["parent/2759",[1006,4.94]],["name/2760",[1007,72.373]],["parent/2760",[1008,5.097]],["name/2761",[1009,72.373]],["parent/2761",[1008,5.097]],["name/2762",[1010,72.373]],["parent/2762",[1008,5.097]],["name/2763",[1011,72.373]],["parent/2763",[1008,5.097]],["name/2764",[1012,72.373]],["parent/2764",[1008,5.097]],["name/2765",[1013,72.373]],["parent/2765",[1008,5.097]],["name/2766",[1014,72.373]],["parent/2766",[1008,5.097]],["name/2767",[1015,72.373]],["parent/2767",[1008,5.097]],["name/2768",[1016,72.373]],["parent/2768",[1008,5.097]],["name/2769",[1017,72.373]],["parent/2769",[1008,5.097]],["name/2770",[1018,72.373]],["parent/2770",[1008,5.097]],["name/2771",[1019,72.373]],["parent/2771",[1008,5.097]],["name/2772",[1020,72.373]],["parent/2772",[1008,5.097]],["name/2773",[1021,72.373]],["parent/2773",[1008,5.097]],["name/2774",[1022,72.373]],["parent/2774",[1008,5.097]],["name/2775",[1023,72.373]],["parent/2775",[1008,5.097]],["name/2776",[1024,72.373]],["parent/2776",[1008,5.097]],["name/2777",[1025,72.373]],["parent/2777",[1008,5.097]],["name/2778",[1026,72.373]],["parent/2778",[1008,5.097]],["name/2779",[1027,72.373]],["parent/2779",[1008,5.097]],["name/2780",[1028,72.373]],["parent/2780",[1008,5.097]],["name/2781",[1029,72.373]],["parent/2781",[1008,5.097]],["name/2782",[1030,72.373]],["parent/2782",[1008,5.097]],["name/2783",[94,66.182]],["parent/2783",[1008,5.097]],["name/2784",[1031,72.373]],["parent/2784",[1008,5.097]],["name/2785",[1032,72.373]],["parent/2785",[1008,5.097]],["name/2786",[1033,72.373]],["parent/2786",[1008,5.097]],["name/2787",[1034,72.373]],["parent/2787",[1008,5.097]],["name/2788",[1035,72.373]],["parent/2788",[1008,5.097]],["name/2789",[29,55.723]],["parent/2789",[1006,4.94]],["name/2790",[96,57.492]],["parent/2790",[1006,4.94]],["name/2791",[10,26.925]],["parent/2791",[1036,8.07]],["name/2792",[1007,72.373]],["parent/2792",[1037,4.413]],["name/2793",[1038,80.846]],["parent/2793",[1037,4.413]],["name/2794",[1009,72.373]],["parent/2794",[1037,4.413]],["name/2795",[1039,80.846]],["parent/2795",[1037,4.413]],["name/2796",[1010,72.373]],["parent/2796",[1037,4.413]],["name/2797",[1040,80.846]],["parent/2797",[1037,4.413]],["name/2798",[1011,72.373]],["parent/2798",[1037,4.413]],["name/2799",[1041,80.846]],["parent/2799",[1037,4.413]],["name/2800",[1012,72.373]],["parent/2800",[1037,4.413]],["name/2801",[1042,80.846]],["parent/2801",[1037,4.413]],["name/2802",[1013,72.373]],["parent/2802",[1037,4.413]],["name/2803",[1043,80.846]],["parent/2803",[1037,4.413]],["name/2804",[1014,72.373]],["parent/2804",[1037,4.413]],["name/2805",[1044,80.846]],["parent/2805",[1037,4.413]],["name/2806",[1015,72.373]],["parent/2806",[1037,4.413]],["name/2807",[1045,80.846]],["parent/2807",[1037,4.413]],["name/2808",[1016,72.373]],["parent/2808",[1037,4.413]],["name/2809",[1046,80.846]],["parent/2809",[1037,4.413]],["name/2810",[1017,72.373]],["parent/2810",[1037,4.413]],["name/2811",[1047,80.846]],["parent/2811",[1037,4.413]],["name/2812",[1018,72.373]],["parent/2812",[1037,4.413]],["name/2813",[1048,80.846]],["parent/2813",[1037,4.413]],["name/2814",[1019,72.373]],["parent/2814",[1037,4.413]],["name/2815",[1049,80.846]],["parent/2815",[1037,4.413]],["name/2816",[1020,72.373]],["parent/2816",[1037,4.413]],["name/2817",[1050,80.846]],["parent/2817",[1037,4.413]],["name/2818",[1021,72.373]],["parent/2818",[1037,4.413]],["name/2819",[1051,80.846]],["parent/2819",[1037,4.413]],["name/2820",[1022,72.373]],["parent/2820",[1037,4.413]],["name/2821",[1052,80.846]],["parent/2821",[1037,4.413]],["name/2822",[1023,72.373]],["parent/2822",[1037,4.413]],["name/2823",[1053,80.846]],["parent/2823",[1037,4.413]],["name/2824",[1024,72.373]],["parent/2824",[1037,4.413]],["name/2825",[1054,80.846]],["parent/2825",[1037,4.413]],["name/2826",[1025,72.373]],["parent/2826",[1037,4.413]],["name/2827",[1055,80.846]],["parent/2827",[1037,4.413]],["name/2828",[1026,72.373]],["parent/2828",[1037,4.413]],["name/2829",[1056,80.846]],["parent/2829",[1037,4.413]],["name/2830",[1027,72.373]],["parent/2830",[1037,4.413]],["name/2831",[1057,80.846]],["parent/2831",[1037,4.413]],["name/2832",[1028,72.373]],["parent/2832",[1037,4.413]],["name/2833",[1058,80.846]],["parent/2833",[1037,4.413]],["name/2834",[1029,72.373]],["parent/2834",[1037,4.413]],["name/2835",[1059,80.846]],["parent/2835",[1037,4.413]],["name/2836",[1030,72.373]],["parent/2836",[1037,4.413]],["name/2837",[1060,80.846]],["parent/2837",[1037,4.413]],["name/2838",[94,66.182]],["parent/2838",[1037,4.413]],["name/2839",[114,75.737]],["parent/2839",[1037,4.413]],["name/2840",[1031,72.373]],["parent/2840",[1037,4.413]],["name/2841",[1061,80.846]],["parent/2841",[1037,4.413]],["name/2842",[1032,72.373]],["parent/2842",[1037,4.413]],["name/2843",[1062,80.846]],["parent/2843",[1037,4.413]],["name/2844",[1033,72.373]],["parent/2844",[1037,4.413]],["name/2845",[1063,80.846]],["parent/2845",[1037,4.413]],["name/2846",[1034,72.373]],["parent/2846",[1037,4.413]],["name/2847",[1064,80.846]],["parent/2847",[1037,4.413]],["name/2848",[1035,72.373]],["parent/2848",[1037,4.413]],["name/2849",[1065,80.846]],["parent/2849",[1037,4.413]],["name/2850",[1007,72.373]],["parent/2850",[1006,4.94]],["name/2851",[1009,72.373]],["parent/2851",[1006,4.94]],["name/2852",[1010,72.373]],["parent/2852",[1006,4.94]],["name/2853",[1011,72.373]],["parent/2853",[1006,4.94]],["name/2854",[1012,72.373]],["parent/2854",[1006,4.94]],["name/2855",[1013,72.373]],["parent/2855",[1006,4.94]],["name/2856",[1014,72.373]],["parent/2856",[1006,4.94]],["name/2857",[1015,72.373]],["parent/2857",[1006,4.94]],["name/2858",[1016,72.373]],["parent/2858",[1006,4.94]],["name/2859",[1017,72.373]],["parent/2859",[1006,4.94]],["name/2860",[1018,72.373]],["parent/2860",[1006,4.94]],["name/2861",[1019,72.373]],["parent/2861",[1006,4.94]],["name/2862",[1020,72.373]],["parent/2862",[1006,4.94]],["name/2863",[1021,72.373]],["parent/2863",[1006,4.94]],["name/2864",[1022,72.373]],["parent/2864",[1006,4.94]],["name/2865",[1023,72.373]],["parent/2865",[1006,4.94]],["name/2866",[1024,72.373]],["parent/2866",[1006,4.94]],["name/2867",[1025,72.373]],["parent/2867",[1006,4.94]],["name/2868",[1026,72.373]],["parent/2868",[1006,4.94]],["name/2869",[1027,72.373]],["parent/2869",[1006,4.94]],["name/2870",[1028,72.373]],["parent/2870",[1006,4.94]],["name/2871",[1029,72.373]],["parent/2871",[1006,4.94]],["name/2872",[1030,72.373]],["parent/2872",[1006,4.94]],["name/2873",[94,66.182]],["parent/2873",[1006,4.94]],["name/2874",[1031,72.373]],["parent/2874",[1006,4.94]],["name/2875",[1032,72.373]],["parent/2875",[1006,4.94]],["name/2876",[1033,72.373]],["parent/2876",[1006,4.94]],["name/2877",[1034,72.373]],["parent/2877",[1006,4.94]],["name/2878",[1035,72.373]],["parent/2878",[1006,4.94]],["name/2879",[1066,69.86]],["parent/2879",[941,2.315]],["name/2880",[10,26.925]],["parent/2880",[1067,8.07]],["name/2881",[445,36.034]],["parent/2881",[1068,8.07]],["name/2882",[1069,69.86]],["parent/2882",[941,2.315]],["name/2883",[10,26.925]],["parent/2883",[1070,8.07]],["name/2884",[1071,54.22]],["parent/2884",[1072,7.56]],["name/2885",[134,34.761]],["parent/2885",[1072,7.56]],["name/2886",[1073,69.86]],["parent/2886",[941,2.315]],["name/2887",[10,26.925]],["parent/2887",[1074,8.07]],["name/2888",[445,36.034]],["parent/2888",[1075,8.07]],["name/2889",[1076,69.86]],["parent/2889",[941,2.315]],["name/2890",[10,26.925]],["parent/2890",[1077,8.07]],["name/2891",[1071,54.22]],["parent/2891",[1078,7.56]],["name/2892",[134,34.761]],["parent/2892",[1078,7.56]],["name/2893",[1079,69.86]],["parent/2893",[941,2.315]],["name/2894",[10,26.925]],["parent/2894",[1080,8.07]],["name/2895",[445,36.034]],["parent/2895",[1081,8.07]],["name/2896",[1082,69.86]],["parent/2896",[941,2.315]],["name/2897",[10,26.925]],["parent/2897",[1083,8.07]],["name/2898",[1071,54.22]],["parent/2898",[1084,7.56]],["name/2899",[134,34.761]],["parent/2899",[1084,7.56]],["name/2900",[1085,69.86]],["parent/2900",[941,2.315]],["name/2901",[10,26.925]],["parent/2901",[1086,8.07]],["name/2902",[445,36.034]],["parent/2902",[1087,8.07]],["name/2903",[1088,69.86]],["parent/2903",[941,2.315]],["name/2904",[10,26.925]],["parent/2904",[1089,8.07]],["name/2905",[1090,62.387]],["parent/2905",[1091,7.224]],["name/2906",[1071,54.22]],["parent/2906",[1091,7.224]],["name/2907",[134,34.761]],["parent/2907",[1091,7.224]],["name/2908",[1092,69.86]],["parent/2908",[941,2.315]],["name/2909",[10,26.925]],["parent/2909",[1093,8.07]],["name/2910",[445,36.034]],["parent/2910",[1094,8.07]],["name/2911",[1095,69.86]],["parent/2911",[941,2.315]],["name/2912",[10,26.925]],["parent/2912",[1096,8.07]],["name/2913",[577,63.5]],["parent/2913",[1097,7.224]],["name/2914",[1071,54.22]],["parent/2914",[1097,7.224]],["name/2915",[134,34.761]],["parent/2915",[1097,7.224]],["name/2916",[1098,69.86]],["parent/2916",[941,2.315]],["name/2917",[10,26.925]],["parent/2917",[1099,8.07]],["name/2918",[445,36.034]],["parent/2918",[1100,8.07]],["name/2919",[1101,69.86]],["parent/2919",[941,2.315]],["name/2920",[10,26.925]],["parent/2920",[1102,8.07]],["name/2921",[1090,62.387]],["parent/2921",[1103,7.224]],["name/2922",[1071,54.22]],["parent/2922",[1103,7.224]],["name/2923",[134,34.761]],["parent/2923",[1103,7.224]],["name/2924",[1104,69.86]],["parent/2924",[941,2.315]],["name/2925",[10,26.925]],["parent/2925",[1105,8.07]],["name/2926",[445,36.034]],["parent/2926",[1106,8.07]],["name/2927",[1107,69.86]],["parent/2927",[941,2.315]],["name/2928",[10,26.925]],["parent/2928",[1108,8.07]],["name/2929",[493,61.387]],["parent/2929",[1109,6.974]],["name/2930",[1090,62.387]],["parent/2930",[1109,6.974]],["name/2931",[1071,54.22]],["parent/2931",[1109,6.974]],["name/2932",[134,34.761]],["parent/2932",[1109,6.974]],["name/2933",[1110,69.86]],["parent/2933",[941,2.315]],["name/2934",[10,26.925]],["parent/2934",[1111,8.07]],["name/2935",[445,36.034]],["parent/2935",[1112,8.07]],["name/2936",[1113,69.86]],["parent/2936",[941,2.315]],["name/2937",[10,26.925]],["parent/2937",[1114,8.07]],["name/2938",[1071,54.22]],["parent/2938",[1115,7.56]],["name/2939",[134,34.761]],["parent/2939",[1115,7.56]],["name/2940",[1116,69.86]],["parent/2940",[941,2.315]],["name/2941",[10,26.925]],["parent/2941",[1117,8.07]],["name/2942",[445,36.034]],["parent/2942",[1118,8.07]],["name/2943",[1119,69.86]],["parent/2943",[941,2.315]],["name/2944",[10,26.925]],["parent/2944",[1120,8.07]],["name/2945",[1121,72.373]],["parent/2945",[1122,7.224]],["name/2946",[1071,54.22]],["parent/2946",[1122,7.224]],["name/2947",[134,34.761]],["parent/2947",[1122,7.224]],["name/2948",[1123,69.86]],["parent/2948",[941,2.315]],["name/2949",[10,26.925]],["parent/2949",[1124,8.07]],["name/2950",[445,36.034]],["parent/2950",[1125,8.07]],["name/2951",[1126,69.86]],["parent/2951",[941,2.315]],["name/2952",[10,26.925]],["parent/2952",[1127,8.07]],["name/2953",[1071,54.22]],["parent/2953",[1128,7.56]],["name/2954",[134,34.761]],["parent/2954",[1128,7.56]],["name/2955",[1129,69.86]],["parent/2955",[941,2.315]],["name/2956",[10,26.925]],["parent/2956",[1130,8.07]],["name/2957",[1131,80.846]],["parent/2957",[1132,6.464]],["name/2958",[1133,80.846]],["parent/2958",[1132,6.464]],["name/2959",[1134,80.846]],["parent/2959",[1132,6.464]],["name/2960",[322,56.278]],["parent/2960",[1132,6.464]],["name/2961",[445,36.034]],["parent/2961",[1132,6.464]],["name/2962",[1135,69.86]],["parent/2962",[1132,6.464]],["name/2963",[1136,72.373]],["parent/2963",[1132,6.464]],["name/2964",[1137,69.86]],["parent/2964",[941,2.315]],["name/2965",[10,26.925]],["parent/2965",[1138,8.07]],["name/2966",[1071,54.22]],["parent/2966",[1139,7.56]],["name/2967",[134,34.761]],["parent/2967",[1139,7.56]],["name/2968",[1140,69.86]],["parent/2968",[941,2.315]],["name/2969",[10,26.925]],["parent/2969",[1141,8.07]],["name/2970",[445,36.034]],["parent/2970",[1142,8.07]],["name/2971",[1143,69.86]],["parent/2971",[941,2.315]],["name/2972",[10,26.925]],["parent/2972",[1144,8.07]],["name/2973",[577,63.5]],["parent/2973",[1145,7.224]],["name/2974",[1071,54.22]],["parent/2974",[1145,7.224]],["name/2975",[134,34.761]],["parent/2975",[1145,7.224]],["name/2976",[1146,69.86]],["parent/2976",[941,2.315]],["name/2977",[10,26.925]],["parent/2977",[1147,8.07]],["name/2978",[445,36.034]],["parent/2978",[1148,8.07]],["name/2979",[1149,69.86]],["parent/2979",[941,2.315]],["name/2980",[10,26.925]],["parent/2980",[1150,8.07]],["name/2981",[1090,62.387]],["parent/2981",[1151,7.224]],["name/2982",[1071,54.22]],["parent/2982",[1151,7.224]],["name/2983",[134,34.761]],["parent/2983",[1151,7.224]],["name/2984",[1152,69.86]],["parent/2984",[941,2.315]],["name/2985",[10,26.925]],["parent/2985",[1153,8.07]],["name/2986",[445,36.034]],["parent/2986",[1154,8.07]],["name/2987",[1155,69.86]],["parent/2987",[941,2.315]],["name/2988",[10,26.925]],["parent/2988",[1156,8.07]],["name/2989",[493,61.387]],["parent/2989",[1157,6.974]],["name/2990",[1090,62.387]],["parent/2990",[1157,6.974]],["name/2991",[1071,54.22]],["parent/2991",[1157,6.974]],["name/2992",[134,34.761]],["parent/2992",[1157,6.974]],["name/2993",[1158,69.86]],["parent/2993",[941,2.315]],["name/2994",[10,26.925]],["parent/2994",[1159,8.07]],["name/2995",[445,36.034]],["parent/2995",[1160,8.07]],["name/2996",[1161,69.86]],["parent/2996",[941,2.315]],["name/2997",[10,26.925]],["parent/2997",[1162,8.07]],["name/2998",[1071,54.22]],["parent/2998",[1163,7.56]],["name/2999",[134,34.761]],["parent/2999",[1163,7.56]],["name/3000",[1164,69.86]],["parent/3000",[941,2.315]],["name/3001",[10,26.925]],["parent/3001",[1165,8.07]],["name/3002",[1166,80.846]],["parent/3002",[1167,7.224]],["name/3003",[1168,80.846]],["parent/3003",[1167,7.224]],["name/3004",[445,36.034]],["parent/3004",[1167,7.224]],["name/3005",[1169,69.86]],["parent/3005",[941,2.315]],["name/3006",[10,26.925]],["parent/3006",[1170,8.07]],["name/3007",[134,34.761]],["parent/3007",[1171,8.07]],["name/3008",[1172,69.86]],["parent/3008",[941,2.315]],["name/3009",[10,26.925]],["parent/3009",[1173,8.07]],["name/3010",[445,36.034]],["parent/3010",[1174,8.07]],["name/3011",[1175,69.86]],["parent/3011",[941,2.315]],["name/3012",[10,26.925]],["parent/3012",[1176,8.07]],["name/3013",[493,61.387]],["parent/3013",[1177,7.224]],["name/3014",[1090,62.387]],["parent/3014",[1177,7.224]],["name/3015",[134,34.761]],["parent/3015",[1177,7.224]],["name/3016",[1178,69.86]],["parent/3016",[941,2.315]],["name/3017",[10,26.925]],["parent/3017",[1179,8.07]],["name/3018",[445,36.034]],["parent/3018",[1180,8.07]],["name/3019",[1181,69.86]],["parent/3019",[941,2.315]],["name/3020",[10,26.925]],["parent/3020",[1182,8.07]],["name/3021",[1090,62.387]],["parent/3021",[1183,7.56]],["name/3022",[134,34.761]],["parent/3022",[1183,7.56]],["name/3023",[1184,69.86]],["parent/3023",[941,2.315]],["name/3024",[10,26.925]],["parent/3024",[1185,8.07]],["name/3025",[1186,80.846]],["parent/3025",[1187,6.974]],["name/3026",[1188,80.846]],["parent/3026",[1187,6.974]],["name/3027",[1189,80.846]],["parent/3027",[1187,6.974]],["name/3028",[445,36.034]],["parent/3028",[1187,6.974]],["name/3029",[1190,69.86]],["parent/3029",[941,2.315]],["name/3030",[10,26.925]],["parent/3030",[1191,8.07]],["name/3031",[134,34.761]],["parent/3031",[1192,8.07]],["name/3032",[1193,69.86]],["parent/3032",[941,2.315]],["name/3033",[10,26.925]],["parent/3033",[1194,8.07]],["name/3034",[445,36.034]],["parent/3034",[1195,8.07]],["name/3035",[1196,69.86]],["parent/3035",[941,2.315]],["name/3036",[10,26.925]],["parent/3036",[1197,8.07]],["name/3037",[134,34.761]],["parent/3037",[1198,8.07]],["name/3038",[1199,69.86]],["parent/3038",[941,2.315]],["name/3039",[10,26.925]],["parent/3039",[1200,8.07]],["name/3040",[445,36.034]],["parent/3040",[1201,8.07]],["name/3041",[1202,69.86]],["parent/3041",[941,2.315]],["name/3042",[10,26.925]],["parent/3042",[1203,8.07]],["name/3043",[134,34.761]],["parent/3043",[1204,8.07]],["name/3044",[1205,69.86]],["parent/3044",[941,2.315]],["name/3045",[10,26.925]],["parent/3045",[1206,8.07]],["name/3046",[445,36.034]],["parent/3046",[1207,8.07]],["name/3047",[1208,69.86]],["parent/3047",[941,2.315]],["name/3048",[10,26.925]],["parent/3048",[1209,8.07]],["name/3049",[134,34.761]],["parent/3049",[1210,8.07]],["name/3050",[1211,69.86]],["parent/3050",[941,2.315]],["name/3051",[10,26.925]],["parent/3051",[1212,8.07]],["name/3052",[445,36.034]],["parent/3052",[1213,8.07]],["name/3053",[1214,69.86]],["parent/3053",[941,2.315]],["name/3054",[10,26.925]],["parent/3054",[1215,8.07]],["name/3055",[1121,72.373]],["parent/3055",[1216,7.224]],["name/3056",[1071,54.22]],["parent/3056",[1216,7.224]],["name/3057",[134,34.761]],["parent/3057",[1216,7.224]],["name/3058",[267,63.5]],["parent/3058",[941,2.315]],["name/3059",[10,26.925]],["parent/3059",[1217,8.07]],["name/3060",[445,36.034]],["parent/3060",[1218,8.07]],["name/3061",[269,63.5]],["parent/3061",[941,2.315]],["name/3062",[10,26.925]],["parent/3062",[1219,8.07]],["name/3063",[134,34.761]],["parent/3063",[1220,8.07]],["name/3064",[1221,69.86]],["parent/3064",[941,2.315]],["name/3065",[10,26.925]],["parent/3065",[1222,8.07]],["name/3066",[445,36.034]],["parent/3066",[1223,8.07]],["name/3067",[1224,69.86]],["parent/3067",[941,2.315]],["name/3068",[10,26.925]],["parent/3068",[1225,8.07]],["name/3069",[1071,54.22]],["parent/3069",[1226,7.56]],["name/3070",[134,34.761]],["parent/3070",[1226,7.56]],["name/3071",[1227,69.86]],["parent/3071",[941,2.315]],["name/3072",[10,26.925]],["parent/3072",[1228,8.07]],["name/3073",[445,36.034]],["parent/3073",[1229,8.07]],["name/3074",[1230,69.86]],["parent/3074",[941,2.315]],["name/3075",[10,26.925]],["parent/3075",[1231,8.07]],["name/3076",[1121,72.373]],["parent/3076",[1232,7.224]],["name/3077",[1071,54.22]],["parent/3077",[1232,7.224]],["name/3078",[134,34.761]],["parent/3078",[1232,7.224]],["name/3079",[1233,69.86]],["parent/3079",[941,2.315]],["name/3080",[10,26.925]],["parent/3080",[1234,8.07]],["name/3081",[445,36.034]],["parent/3081",[1235,8.07]],["name/3082",[1236,69.86]],["parent/3082",[941,2.315]],["name/3083",[10,26.925]],["parent/3083",[1237,8.07]],["name/3084",[1071,54.22]],["parent/3084",[1238,7.56]],["name/3085",[134,34.761]],["parent/3085",[1238,7.56]],["name/3086",[1239,69.86]],["parent/3086",[941,2.315]],["name/3087",[10,26.925]],["parent/3087",[1240,8.07]],["name/3088",[445,36.034]],["parent/3088",[1241,8.07]],["name/3089",[1242,69.86]],["parent/3089",[941,2.315]],["name/3090",[10,26.925]],["parent/3090",[1243,8.07]],["name/3091",[1090,62.387]],["parent/3091",[1244,7.224]],["name/3092",[1071,54.22]],["parent/3092",[1244,7.224]],["name/3093",[134,34.761]],["parent/3093",[1244,7.224]],["name/3094",[1245,69.86]],["parent/3094",[941,2.315]],["name/3095",[10,26.925]],["parent/3095",[1246,8.07]],["name/3096",[445,36.034]],["parent/3096",[1247,8.07]],["name/3097",[1248,69.86]],["parent/3097",[941,2.315]],["name/3098",[10,26.925]],["parent/3098",[1249,8.07]],["name/3099",[493,61.387]],["parent/3099",[1250,6.974]],["name/3100",[1090,62.387]],["parent/3100",[1250,6.974]],["name/3101",[1071,54.22]],["parent/3101",[1250,6.974]],["name/3102",[134,34.761]],["parent/3102",[1250,6.974]],["name/3103",[1251,69.86]],["parent/3103",[941,2.315]],["name/3104",[1252,69.86]],["parent/3104",[941,2.315]],["name/3105",[1253,72.373]],["parent/3105",[941,2.315]],["name/3106",[1066,69.86]],["parent/3106",[941,2.315]],["name/3107",[1069,69.86]],["parent/3107",[941,2.315]],["name/3108",[1073,69.86]],["parent/3108",[941,2.315]],["name/3109",[1076,69.86]],["parent/3109",[941,2.315]],["name/3110",[1079,69.86]],["parent/3110",[941,2.315]],["name/3111",[1082,69.86]],["parent/3111",[941,2.315]],["name/3112",[1085,69.86]],["parent/3112",[941,2.315]],["name/3113",[1088,69.86]],["parent/3113",[941,2.315]],["name/3114",[1092,69.86]],["parent/3114",[941,2.315]],["name/3115",[1095,69.86]],["parent/3115",[941,2.315]],["name/3116",[1098,69.86]],["parent/3116",[941,2.315]],["name/3117",[1101,69.86]],["parent/3117",[941,2.315]],["name/3118",[1104,69.86]],["parent/3118",[941,2.315]],["name/3119",[1107,69.86]],["parent/3119",[941,2.315]],["name/3120",[1110,69.86]],["parent/3120",[941,2.315]],["name/3121",[1113,69.86]],["parent/3121",[941,2.315]],["name/3122",[1116,69.86]],["parent/3122",[941,2.315]],["name/3123",[1119,69.86]],["parent/3123",[941,2.315]],["name/3124",[1123,69.86]],["parent/3124",[941,2.315]],["name/3125",[1126,69.86]],["parent/3125",[941,2.315]],["name/3126",[1129,69.86]],["parent/3126",[941,2.315]],["name/3127",[1137,69.86]],["parent/3127",[941,2.315]],["name/3128",[1140,69.86]],["parent/3128",[941,2.315]],["name/3129",[1143,69.86]],["parent/3129",[941,2.315]],["name/3130",[1146,69.86]],["parent/3130",[941,2.315]],["name/3131",[1149,69.86]],["parent/3131",[941,2.315]],["name/3132",[1152,69.86]],["parent/3132",[941,2.315]],["name/3133",[1155,69.86]],["parent/3133",[941,2.315]],["name/3134",[1158,69.86]],["parent/3134",[941,2.315]],["name/3135",[1161,69.86]],["parent/3135",[941,2.315]],["name/3136",[1164,69.86]],["parent/3136",[941,2.315]],["name/3137",[1169,69.86]],["parent/3137",[941,2.315]],["name/3138",[1172,69.86]],["parent/3138",[941,2.315]],["name/3139",[1175,69.86]],["parent/3139",[941,2.315]],["name/3140",[1178,69.86]],["parent/3140",[941,2.315]],["name/3141",[1181,69.86]],["parent/3141",[941,2.315]],["name/3142",[1184,69.86]],["parent/3142",[941,2.315]],["name/3143",[1190,69.86]],["parent/3143",[941,2.315]],["name/3144",[1193,69.86]],["parent/3144",[941,2.315]],["name/3145",[1196,69.86]],["parent/3145",[941,2.315]],["name/3146",[1199,69.86]],["parent/3146",[941,2.315]],["name/3147",[1202,69.86]],["parent/3147",[941,2.315]],["name/3148",[1205,69.86]],["parent/3148",[941,2.315]],["name/3149",[1208,69.86]],["parent/3149",[941,2.315]],["name/3150",[1211,69.86]],["parent/3150",[941,2.315]],["name/3151",[1214,69.86]],["parent/3151",[941,2.315]],["name/3152",[267,63.5]],["parent/3152",[941,2.315]],["name/3153",[269,63.5]],["parent/3153",[941,2.315]],["name/3154",[1221,69.86]],["parent/3154",[941,2.315]],["name/3155",[1224,69.86]],["parent/3155",[941,2.315]],["name/3156",[1227,69.86]],["parent/3156",[941,2.315]],["name/3157",[1230,69.86]],["parent/3157",[941,2.315]],["name/3158",[1233,69.86]],["parent/3158",[941,2.315]],["name/3159",[1236,69.86]],["parent/3159",[941,2.315]],["name/3160",[1239,69.86]],["parent/3160",[941,2.315]],["name/3161",[1242,69.86]],["parent/3161",[941,2.315]],["name/3162",[1245,69.86]],["parent/3162",[941,2.315]],["name/3163",[1248,69.86]],["parent/3163",[941,2.315]],["name/3164",[1251,69.86]],["parent/3164",[941,2.315]],["name/3165",[1252,69.86]],["parent/3165",[941,2.315]],["name/3166",[1253,72.373]],["parent/3166",[941,2.315]],["name/3167",[941,23.194]],["parent/3167",[941,2.315]],["name/3168",[43,46.723]],["parent/3168",[941,2.315]],["name/3169",[1066,69.86]],["parent/3169",[941,2.315]],["name/3170",[1069,69.86]],["parent/3170",[941,2.315]],["name/3171",[1073,69.86]],["parent/3171",[941,2.315]],["name/3172",[1076,69.86]],["parent/3172",[941,2.315]],["name/3173",[1079,69.86]],["parent/3173",[941,2.315]],["name/3174",[1082,69.86]],["parent/3174",[941,2.315]],["name/3175",[1085,69.86]],["parent/3175",[941,2.315]],["name/3176",[1088,69.86]],["parent/3176",[941,2.315]],["name/3177",[1092,69.86]],["parent/3177",[941,2.315]],["name/3178",[1095,69.86]],["parent/3178",[941,2.315]],["name/3179",[1098,69.86]],["parent/3179",[941,2.315]],["name/3180",[1101,69.86]],["parent/3180",[941,2.315]],["name/3181",[1104,69.86]],["parent/3181",[941,2.315]],["name/3182",[1107,69.86]],["parent/3182",[941,2.315]],["name/3183",[1110,69.86]],["parent/3183",[941,2.315]],["name/3184",[1113,69.86]],["parent/3184",[941,2.315]],["name/3185",[1116,69.86]],["parent/3185",[941,2.315]],["name/3186",[1119,69.86]],["parent/3186",[941,2.315]],["name/3187",[1123,69.86]],["parent/3187",[941,2.315]],["name/3188",[1126,69.86]],["parent/3188",[941,2.315]],["name/3189",[1129,69.86]],["parent/3189",[941,2.315]],["name/3190",[1137,69.86]],["parent/3190",[941,2.315]],["name/3191",[1140,69.86]],["parent/3191",[941,2.315]],["name/3192",[1143,69.86]],["parent/3192",[941,2.315]],["name/3193",[1146,69.86]],["parent/3193",[941,2.315]],["name/3194",[1149,69.86]],["parent/3194",[941,2.315]],["name/3195",[1152,69.86]],["parent/3195",[941,2.315]],["name/3196",[1155,69.86]],["parent/3196",[941,2.315]],["name/3197",[1158,69.86]],["parent/3197",[941,2.315]],["name/3198",[1161,69.86]],["parent/3198",[941,2.315]],["name/3199",[1164,69.86]],["parent/3199",[941,2.315]],["name/3200",[1169,69.86]],["parent/3200",[941,2.315]],["name/3201",[1172,69.86]],["parent/3201",[941,2.315]],["name/3202",[1175,69.86]],["parent/3202",[941,2.315]],["name/3203",[1178,69.86]],["parent/3203",[941,2.315]],["name/3204",[1181,69.86]],["parent/3204",[941,2.315]],["name/3205",[1184,69.86]],["parent/3205",[941,2.315]],["name/3206",[1190,69.86]],["parent/3206",[941,2.315]],["name/3207",[1193,69.86]],["parent/3207",[941,2.315]],["name/3208",[1196,69.86]],["parent/3208",[941,2.315]],["name/3209",[1199,69.86]],["parent/3209",[941,2.315]],["name/3210",[1202,69.86]],["parent/3210",[941,2.315]],["name/3211",[1205,69.86]],["parent/3211",[941,2.315]],["name/3212",[1208,69.86]],["parent/3212",[941,2.315]],["name/3213",[1211,69.86]],["parent/3213",[941,2.315]],["name/3214",[1214,69.86]],["parent/3214",[941,2.315]],["name/3215",[267,63.5]],["parent/3215",[941,2.315]],["name/3216",[269,63.5]],["parent/3216",[941,2.315]],["name/3217",[1221,69.86]],["parent/3217",[941,2.315]],["name/3218",[1224,69.86]],["parent/3218",[941,2.315]],["name/3219",[1227,69.86]],["parent/3219",[941,2.315]],["name/3220",[1230,69.86]],["parent/3220",[941,2.315]],["name/3221",[1233,69.86]],["parent/3221",[941,2.315]],["name/3222",[1236,69.86]],["parent/3222",[941,2.315]],["name/3223",[1239,69.86]],["parent/3223",[941,2.315]],["name/3224",[1242,69.86]],["parent/3224",[941,2.315]],["name/3225",[1245,69.86]],["parent/3225",[941,2.315]],["name/3226",[1248,69.86]],["parent/3226",[941,2.315]],["name/3227",[1251,69.86]],["parent/3227",[941,2.315]],["name/3228",[1252,69.86]],["parent/3228",[941,2.315]],["name/3229",[1253,72.373]],["parent/3229",[941,2.315]],["name/3230",[941,23.194]],["parent/3230",[941,2.315]],["name/3231",[345,56.867]],["parent/3231",[941,2.315]],["name/3232",[346,56.867]],["parent/3232",[941,2.315]],["name/3233",[347,56.867]],["parent/3233",[941,2.315]],["name/3234",[942,69.86]],["parent/3234",[941,2.315]],["name/3235",[326,56.867]],["parent/3235",[941,2.315]],["name/3236",[963,63.5]],["parent/3236",[941,2.315]],["name/3237",[336,56.867]],["parent/3237",[941,2.315]],["name/3238",[337,56.867]],["parent/3238",[941,2.315]],["name/3239",[320,52.914]],["parent/3239",[941,2.315]],["name/3240",[966,69.86]],["parent/3240",[941,2.315]],["name/3241",[967,69.86]],["parent/3241",[941,2.315]],["name/3242",[965,69.86]],["parent/3242",[941,2.315]],["name/3243",[968,69.86]],["parent/3243",[941,2.315]],["name/3244",[969,69.86]],["parent/3244",[941,2.315]],["name/3245",[970,69.86]],["parent/3245",[941,2.315]],["name/3246",[338,56.867]],["parent/3246",[941,2.315]],["name/3247",[979,69.86]],["parent/3247",[941,2.315]],["name/3248",[980,69.86]],["parent/3248",[941,2.315]],["name/3249",[964,69.86]],["parent/3249",[941,2.315]],["name/3250",[982,69.86]],["parent/3250",[941,2.315]],["name/3251",[988,69.86]],["parent/3251",[941,2.315]],["name/3252",[989,69.86]],["parent/3252",[941,2.315]],["name/3253",[984,69.86]],["parent/3253",[941,2.315]],["name/3254",[985,69.86]],["parent/3254",[941,2.315]],["name/3255",[986,69.86]],["parent/3255",[941,2.315]],["name/3256",[990,69.86]],["parent/3256",[941,2.315]],["name/3257",[991,69.86]],["parent/3257",[941,2.315]],["name/3258",[327,56.867]],["parent/3258",[941,2.315]],["name/3259",[328,56.867]],["parent/3259",[941,2.315]],["name/3260",[353,44.558]],["parent/3260",[941,2.315]],["name/3261",[321,56.867]],["parent/3261",[941,2.315]],["name/3262",[688,59.643]],["parent/3262",[941,2.315]],["name/3263",[943,59.643]],["parent/3263",[941,2.315]],["name/3264",[960,59.643]],["parent/3264",[941,2.315]],["name/3265",[961,63.5]],["parent/3265",[941,2.315]],["name/3266",[953,63.5]],["parent/3266",[941,2.315]],["name/3267",[319,52.914]],["parent/3267",[941,2.315]],["name/3268",[959,63.5]],["parent/3268",[941,2.315]],["name/3269",[343,56.867]],["parent/3269",[941,2.315]],["name/3270",[958,63.5]],["parent/3270",[941,2.315]],["name/3271",[971,63.5]],["parent/3271",[941,2.315]],["name/3272",[972,63.5]],["parent/3272",[941,2.315]],["name/3273",[973,63.5]],["parent/3273",[941,2.315]],["name/3274",[974,63.5]],["parent/3274",[941,2.315]],["name/3275",[975,63.5]],["parent/3275",[941,2.315]],["name/3276",[976,63.5]],["parent/3276",[941,2.315]],["name/3277",[977,63.5]],["parent/3277",[941,2.315]],["name/3278",[978,63.5]],["parent/3278",[941,2.315]],["name/3279",[331,56.867]],["parent/3279",[941,2.315]],["name/3280",[324,56.867]],["parent/3280",[941,2.315]],["name/3281",[955,59.643]],["parent/3281",[941,2.315]],["name/3282",[992,59.643]],["parent/3282",[941,2.315]],["name/3283",[993,69.86]],["parent/3283",[941,2.315]],["name/3284",[981,69.86]],["parent/3284",[941,2.315]],["name/3285",[323,56.867]],["parent/3285",[941,2.315]],["name/3286",[329,56.867]],["parent/3286",[941,2.315]],["name/3287",[951,59.643]],["parent/3287",[941,2.315]],["name/3288",[962,63.5]],["parent/3288",[941,2.315]],["name/3289",[325,56.867]],["parent/3289",[941,2.315]],["name/3290",[344,56.867]],["parent/3290",[941,2.315]],["name/3291",[956,63.5]],["parent/3291",[941,2.315]],["name/3292",[957,63.5]],["parent/3292",[941,2.315]],["name/3293",[983,69.86]],["parent/3293",[941,2.315]],["name/3294",[341,56.867]],["parent/3294",[941,2.315]],["name/3295",[342,56.867]],["parent/3295",[941,2.315]],["name/3296",[339,56.867]],["parent/3296",[941,2.315]],["name/3297",[340,56.867]],["parent/3297",[941,2.315]],["name/3298",[994,69.86]],["parent/3298",[941,2.315]],["name/3299",[987,69.86]],["parent/3299",[941,2.315]],["name/3300",[948,59.643]],["parent/3300",[941,2.315]],["name/3301",[952,59.643]],["parent/3301",[941,2.315]],["name/3302",[947,59.643]],["parent/3302",[941,2.315]],["name/3303",[997,69.86]],["parent/3303",[941,2.315]],["name/3304",[998,69.86]],["parent/3304",[941,2.315]],["name/3305",[999,69.86]],["parent/3305",[941,2.315]],["name/3306",[1000,69.86]],["parent/3306",[941,2.315]],["name/3307",[995,69.86]],["parent/3307",[941,2.315]],["name/3308",[996,69.86]],["parent/3308",[941,2.315]],["name/3309",[1001,69.86]],["parent/3309",[941,2.315]],["name/3310",[950,63.5]],["parent/3310",[941,2.315]],["name/3311",[949,63.5]],["parent/3311",[941,2.315]],["name/3312",[1002,69.86]],["parent/3312",[941,2.315]],["name/3313",[1003,69.86]],["parent/3313",[941,2.315]],["name/3314",[1004,69.86]],["parent/3314",[941,2.315]],["name/3315",[1005,54.696]],["parent/3315",[941,2.315]],["name/3316",[334,56.867]],["parent/3316",[941,2.315]],["name/3317",[335,56.867]],["parent/3317",[941,2.315]],["name/3318",[330,56.867]],["parent/3318",[941,2.315]],["name/3319",[333,56.867]],["parent/3319",[941,2.315]],["name/3320",[332,56.867]],["parent/3320",[941,2.315]],["name/3321",[322,56.278]],["parent/3321",[941,2.315]],["name/3322",[954,59.643]],["parent/3322",[941,2.315]],["name/3323",[945,59.643]],["parent/3323",[941,2.315]],["name/3324",[944,59.643]],["parent/3324",[941,2.315]],["name/3325",[946,59.643]],["parent/3325",[941,2.315]],["name/3326",[1254,80.846]],["parent/3326",[941,2.315]],["name/3327",[1251,69.86]],["parent/3327",[1255,3.437]],["name/3328",[1252,69.86]],["parent/3328",[1255,3.437]],["name/3329",[1066,69.86]],["parent/3329",[1255,3.437]],["name/3330",[1069,69.86]],["parent/3330",[1255,3.437]],["name/3331",[1073,69.86]],["parent/3331",[1255,3.437]],["name/3332",[1076,69.86]],["parent/3332",[1255,3.437]],["name/3333",[1079,69.86]],["parent/3333",[1255,3.437]],["name/3334",[1082,69.86]],["parent/3334",[1255,3.437]],["name/3335",[1085,69.86]],["parent/3335",[1255,3.437]],["name/3336",[1088,69.86]],["parent/3336",[1255,3.437]],["name/3337",[1092,69.86]],["parent/3337",[1255,3.437]],["name/3338",[1095,69.86]],["parent/3338",[1255,3.437]],["name/3339",[1098,69.86]],["parent/3339",[1255,3.437]],["name/3340",[1101,69.86]],["parent/3340",[1255,3.437]],["name/3341",[1104,69.86]],["parent/3341",[1255,3.437]],["name/3342",[1107,69.86]],["parent/3342",[1255,3.437]],["name/3343",[1110,69.86]],["parent/3343",[1255,3.437]],["name/3344",[1113,69.86]],["parent/3344",[1255,3.437]],["name/3345",[1116,69.86]],["parent/3345",[1255,3.437]],["name/3346",[1119,69.86]],["parent/3346",[1255,3.437]],["name/3347",[1123,69.86]],["parent/3347",[1255,3.437]],["name/3348",[1126,69.86]],["parent/3348",[1255,3.437]],["name/3349",[1129,69.86]],["parent/3349",[1255,3.437]],["name/3350",[1137,69.86]],["parent/3350",[1255,3.437]],["name/3351",[1140,69.86]],["parent/3351",[1255,3.437]],["name/3352",[1143,69.86]],["parent/3352",[1255,3.437]],["name/3353",[1146,69.86]],["parent/3353",[1255,3.437]],["name/3354",[1149,69.86]],["parent/3354",[1255,3.437]],["name/3355",[1152,69.86]],["parent/3355",[1255,3.437]],["name/3356",[1155,69.86]],["parent/3356",[1255,3.437]],["name/3357",[1158,69.86]],["parent/3357",[1255,3.437]],["name/3358",[1161,69.86]],["parent/3358",[1255,3.437]],["name/3359",[1164,69.86]],["parent/3359",[1255,3.437]],["name/3360",[1169,69.86]],["parent/3360",[1255,3.437]],["name/3361",[1172,69.86]],["parent/3361",[1255,3.437]],["name/3362",[1175,69.86]],["parent/3362",[1255,3.437]],["name/3363",[1178,69.86]],["parent/3363",[1255,3.437]],["name/3364",[1181,69.86]],["parent/3364",[1255,3.437]],["name/3365",[1184,69.86]],["parent/3365",[1255,3.437]],["name/3366",[1190,69.86]],["parent/3366",[1255,3.437]],["name/3367",[1193,69.86]],["parent/3367",[1255,3.437]],["name/3368",[1196,69.86]],["parent/3368",[1255,3.437]],["name/3369",[1199,69.86]],["parent/3369",[1255,3.437]],["name/3370",[1202,69.86]],["parent/3370",[1255,3.437]],["name/3371",[1205,69.86]],["parent/3371",[1255,3.437]],["name/3372",[1208,69.86]],["parent/3372",[1255,3.437]],["name/3373",[1211,69.86]],["parent/3373",[1255,3.437]],["name/3374",[1214,69.86]],["parent/3374",[1255,3.437]],["name/3375",[267,63.5]],["parent/3375",[1255,3.437]],["name/3376",[269,63.5]],["parent/3376",[1255,3.437]],["name/3377",[1221,69.86]],["parent/3377",[1255,3.437]],["name/3378",[1224,69.86]],["parent/3378",[1255,3.437]],["name/3379",[1227,69.86]],["parent/3379",[1255,3.437]],["name/3380",[1230,69.86]],["parent/3380",[1255,3.437]],["name/3381",[1233,69.86]],["parent/3381",[1255,3.437]],["name/3382",[1236,69.86]],["parent/3382",[1255,3.437]],["name/3383",[1239,69.86]],["parent/3383",[1255,3.437]],["name/3384",[1242,69.86]],["parent/3384",[1255,3.437]],["name/3385",[1245,69.86]],["parent/3385",[1255,3.437]],["name/3386",[1248,69.86]],["parent/3386",[1255,3.437]],["name/3387",[345,56.867]],["parent/3387",[1255,3.437]],["name/3388",[346,56.867]],["parent/3388",[1255,3.437]],["name/3389",[347,56.867]],["parent/3389",[1255,3.437]],["name/3390",[942,69.86]],["parent/3390",[1255,3.437]],["name/3391",[326,56.867]],["parent/3391",[1255,3.437]],["name/3392",[963,63.5]],["parent/3392",[1255,3.437]],["name/3393",[336,56.867]],["parent/3393",[1255,3.437]],["name/3394",[337,56.867]],["parent/3394",[1255,3.437]],["name/3395",[320,52.914]],["parent/3395",[1255,3.437]],["name/3396",[966,69.86]],["parent/3396",[1255,3.437]],["name/3397",[967,69.86]],["parent/3397",[1255,3.437]],["name/3398",[965,69.86]],["parent/3398",[1255,3.437]],["name/3399",[968,69.86]],["parent/3399",[1255,3.437]],["name/3400",[969,69.86]],["parent/3400",[1255,3.437]],["name/3401",[970,69.86]],["parent/3401",[1255,3.437]],["name/3402",[338,56.867]],["parent/3402",[1255,3.437]],["name/3403",[979,69.86]],["parent/3403",[1255,3.437]],["name/3404",[980,69.86]],["parent/3404",[1255,3.437]],["name/3405",[964,69.86]],["parent/3405",[1255,3.437]],["name/3406",[982,69.86]],["parent/3406",[1255,3.437]],["name/3407",[988,69.86]],["parent/3407",[1255,3.437]],["name/3408",[989,69.86]],["parent/3408",[1255,3.437]],["name/3409",[984,69.86]],["parent/3409",[1255,3.437]],["name/3410",[985,69.86]],["parent/3410",[1255,3.437]],["name/3411",[986,69.86]],["parent/3411",[1255,3.437]],["name/3412",[990,69.86]],["parent/3412",[1255,3.437]],["name/3413",[991,69.86]],["parent/3413",[1255,3.437]],["name/3414",[327,56.867]],["parent/3414",[1255,3.437]],["name/3415",[328,56.867]],["parent/3415",[1255,3.437]],["name/3416",[353,44.558]],["parent/3416",[1255,3.437]],["name/3417",[321,56.867]],["parent/3417",[1255,3.437]],["name/3418",[688,59.643]],["parent/3418",[1255,3.437]],["name/3419",[943,59.643]],["parent/3419",[1255,3.437]],["name/3420",[960,59.643]],["parent/3420",[1255,3.437]],["name/3421",[961,63.5]],["parent/3421",[1255,3.437]],["name/3422",[953,63.5]],["parent/3422",[1255,3.437]],["name/3423",[319,52.914]],["parent/3423",[1255,3.437]],["name/3424",[959,63.5]],["parent/3424",[1255,3.437]],["name/3425",[343,56.867]],["parent/3425",[1255,3.437]],["name/3426",[958,63.5]],["parent/3426",[1255,3.437]],["name/3427",[971,63.5]],["parent/3427",[1255,3.437]],["name/3428",[972,63.5]],["parent/3428",[1255,3.437]],["name/3429",[973,63.5]],["parent/3429",[1255,3.437]],["name/3430",[974,63.5]],["parent/3430",[1255,3.437]],["name/3431",[975,63.5]],["parent/3431",[1255,3.437]],["name/3432",[976,63.5]],["parent/3432",[1255,3.437]],["name/3433",[977,63.5]],["parent/3433",[1255,3.437]],["name/3434",[978,63.5]],["parent/3434",[1255,3.437]],["name/3435",[331,56.867]],["parent/3435",[1255,3.437]],["name/3436",[324,56.867]],["parent/3436",[1255,3.437]],["name/3437",[955,59.643]],["parent/3437",[1255,3.437]],["name/3438",[992,59.643]],["parent/3438",[1255,3.437]],["name/3439",[993,69.86]],["parent/3439",[1255,3.437]],["name/3440",[981,69.86]],["parent/3440",[1255,3.437]],["name/3441",[323,56.867]],["parent/3441",[1255,3.437]],["name/3442",[329,56.867]],["parent/3442",[1255,3.437]],["name/3443",[951,59.643]],["parent/3443",[1255,3.437]],["name/3444",[962,63.5]],["parent/3444",[1255,3.437]],["name/3445",[325,56.867]],["parent/3445",[1255,3.437]],["name/3446",[344,56.867]],["parent/3446",[1255,3.437]],["name/3447",[956,63.5]],["parent/3447",[1255,3.437]],["name/3448",[957,63.5]],["parent/3448",[1255,3.437]],["name/3449",[983,69.86]],["parent/3449",[1255,3.437]],["name/3450",[341,56.867]],["parent/3450",[1255,3.437]],["name/3451",[342,56.867]],["parent/3451",[1255,3.437]],["name/3452",[339,56.867]],["parent/3452",[1255,3.437]],["name/3453",[340,56.867]],["parent/3453",[1255,3.437]],["name/3454",[994,69.86]],["parent/3454",[1255,3.437]],["name/3455",[987,69.86]],["parent/3455",[1255,3.437]],["name/3456",[948,59.643]],["parent/3456",[1255,3.437]],["name/3457",[952,59.643]],["parent/3457",[1255,3.437]],["name/3458",[947,59.643]],["parent/3458",[1255,3.437]],["name/3459",[997,69.86]],["parent/3459",[1255,3.437]],["name/3460",[998,69.86]],["parent/3460",[1255,3.437]],["name/3461",[999,69.86]],["parent/3461",[1255,3.437]],["name/3462",[1000,69.86]],["parent/3462",[1255,3.437]],["name/3463",[995,69.86]],["parent/3463",[1255,3.437]],["name/3464",[996,69.86]],["parent/3464",[1255,3.437]],["name/3465",[1001,69.86]],["parent/3465",[1255,3.437]],["name/3466",[950,63.5]],["parent/3466",[1255,3.437]],["name/3467",[949,63.5]],["parent/3467",[1255,3.437]],["name/3468",[1002,69.86]],["parent/3468",[1255,3.437]],["name/3469",[1003,69.86]],["parent/3469",[1255,3.437]],["name/3470",[1004,69.86]],["parent/3470",[1255,3.437]],["name/3471",[1005,54.696]],["parent/3471",[1255,3.437]],["name/3472",[334,56.867]],["parent/3472",[1255,3.437]],["name/3473",[335,56.867]],["parent/3473",[1255,3.437]],["name/3474",[330,56.867]],["parent/3474",[1255,3.437]],["name/3475",[333,56.867]],["parent/3475",[1255,3.437]],["name/3476",[332,56.867]],["parent/3476",[1255,3.437]],["name/3477",[322,56.278]],["parent/3477",[1255,3.437]],["name/3478",[954,59.643]],["parent/3478",[1255,3.437]],["name/3479",[945,59.643]],["parent/3479",[1255,3.437]],["name/3480",[944,59.643]],["parent/3480",[1255,3.437]],["name/3481",[946,59.643]],["parent/3481",[1255,3.437]],["name/3482",[1256,45.292]],["parent/3482",[]],["name/3483",[43,46.723]],["parent/3483",[1256,4.521]],["name/3484",[1257,69.86]],["parent/3484",[1256,4.521]],["name/3485",[1258,69.86]],["parent/3485",[1256,4.521]],["name/3486",[350,47.887]],["parent/3486",[1256,4.521]],["name/3487",[353,44.558]],["parent/3487",[1256,4.521]],["name/3488",[9,47.405]],["parent/3488",[1256,4.521]],["name/3489",[1259,69.86]],["parent/3489",[1256,4.521]],["name/3490",[1260,69.86]],["parent/3490",[1256,4.521]],["name/3491",[1258,69.86]],["parent/3491",[1256,4.521]],["name/3492",[350,47.887]],["parent/3492",[1256,4.521]],["name/3493",[353,44.558]],["parent/3493",[1256,4.521]],["name/3494",[9,47.405]],["parent/3494",[1256,4.521]],["name/3495",[1259,69.86]],["parent/3495",[1256,4.521]],["name/3496",[1260,69.86]],["parent/3496",[1256,4.521]],["name/3497",[1257,69.86]],["parent/3497",[1256,4.521]],["name/3498",[1256,45.292]],["parent/3498",[1256,4.521]],["name/3499",[17,53.765]],["parent/3499",[1261,6.464]],["name/3500",[43,46.723]],["parent/3500",[1261,6.464]],["name/3501",[77,57.492]],["parent/3501",[1261,6.464]],["name/3502",[1262,72.373]],["parent/3502",[1263,7.56]],["name/3503",[1264,72.373]],["parent/3503",[1263,7.56]],["name/3504",[29,55.723]],["parent/3504",[1261,6.464]],["name/3505",[96,57.492]],["parent/3505",[1261,6.464]],["name/3506",[10,26.925]],["parent/3506",[1265,8.07]],["name/3507",[1262,72.373]],["parent/3507",[1266,6.974]],["name/3508",[1267,80.846]],["parent/3508",[1266,6.974]],["name/3509",[1264,72.373]],["parent/3509",[1266,6.974]],["name/3510",[1268,80.846]],["parent/3510",[1266,6.974]],["name/3511",[1262,72.373]],["parent/3511",[1261,6.464]],["name/3512",[1264,72.373]],["parent/3512",[1261,6.464]],["name/3513",[1269,69.86]],["parent/3513",[1256,4.521]],["name/3514",[10,26.925]],["parent/3514",[1270,8.07]],["name/3515",[1271,75.737]],["parent/3515",[1272,6.974]],["name/3516",[23,69.86]],["parent/3516",[1272,6.974]],["name/3517",[445,36.034]],["parent/3517",[1272,6.974]],["name/3518",[165,40.652]],["parent/3518",[1272,6.974]],["name/3519",[1273,69.86]],["parent/3519",[1256,4.521]],["name/3520",[10,26.925]],["parent/3520",[1274,8.07]],["name/3521",[1275,80.846]],["parent/3521",[1276,7.56]],["name/3522",[134,34.761]],["parent/3522",[1276,7.56]],["name/3523",[1277,69.86]],["parent/3523",[1256,4.521]],["name/3524",[10,26.925]],["parent/3524",[1278,8.07]],["name/3525",[1279,80.846]],["parent/3525",[1280,6.464]],["name/3526",[1281,80.846]],["parent/3526",[1280,6.464]],["name/3527",[1282,80.846]],["parent/3527",[1280,6.464]],["name/3528",[1271,75.737]],["parent/3528",[1280,6.464]],["name/3529",[23,69.86]],["parent/3529",[1280,6.464]],["name/3530",[445,36.034]],["parent/3530",[1280,6.464]],["name/3531",[165,40.652]],["parent/3531",[1280,6.464]],["name/3532",[1283,69.86]],["parent/3532",[1256,4.521]],["name/3533",[10,26.925]],["parent/3533",[1284,8.07]],["name/3534",[134,34.761]],["parent/3534",[1285,8.07]],["name/3535",[1286,69.86]],["parent/3535",[1256,4.521]],["name/3536",[1287,69.86]],["parent/3536",[1256,4.521]],["name/3537",[1288,72.373]],["parent/3537",[1256,4.521]],["name/3538",[1269,69.86]],["parent/3538",[1256,4.521]],["name/3539",[1273,69.86]],["parent/3539",[1256,4.521]],["name/3540",[1277,69.86]],["parent/3540",[1256,4.521]],["name/3541",[1283,69.86]],["parent/3541",[1256,4.521]],["name/3542",[1286,69.86]],["parent/3542",[1256,4.521]],["name/3543",[1287,69.86]],["parent/3543",[1256,4.521]],["name/3544",[1288,72.373]],["parent/3544",[1256,4.521]],["name/3545",[1256,45.292]],["parent/3545",[1256,4.521]],["name/3546",[43,46.723]],["parent/3546",[1256,4.521]],["name/3547",[1269,69.86]],["parent/3547",[1256,4.521]],["name/3548",[1273,69.86]],["parent/3548",[1256,4.521]],["name/3549",[1277,69.86]],["parent/3549",[1256,4.521]],["name/3550",[1283,69.86]],["parent/3550",[1256,4.521]],["name/3551",[1286,69.86]],["parent/3551",[1256,4.521]],["name/3552",[1287,69.86]],["parent/3552",[1256,4.521]],["name/3553",[1288,72.373]],["parent/3553",[1256,4.521]],["name/3554",[1256,45.292]],["parent/3554",[1256,4.521]],["name/3555",[1258,69.86]],["parent/3555",[1256,4.521]],["name/3556",[350,47.887]],["parent/3556",[1256,4.521]],["name/3557",[353,44.558]],["parent/3557",[1256,4.521]],["name/3558",[9,47.405]],["parent/3558",[1256,4.521]],["name/3559",[1259,69.86]],["parent/3559",[1256,4.521]],["name/3560",[1260,69.86]],["parent/3560",[1256,4.521]],["name/3561",[1257,69.86]],["parent/3561",[1256,4.521]],["name/3562",[1289,80.846]],["parent/3562",[1256,4.521]],["name/3563",[1286,69.86]],["parent/3563",[1290,5.877]],["name/3564",[1287,69.86]],["parent/3564",[1290,5.877]],["name/3565",[1269,69.86]],["parent/3565",[1290,5.877]],["name/3566",[1273,69.86]],["parent/3566",[1290,5.877]],["name/3567",[1277,69.86]],["parent/3567",[1290,5.877]],["name/3568",[1283,69.86]],["parent/3568",[1290,5.877]],["name/3569",[1258,69.86]],["parent/3569",[1290,5.877]],["name/3570",[350,47.887]],["parent/3570",[1290,5.877]],["name/3571",[353,44.558]],["parent/3571",[1290,5.877]],["name/3572",[9,47.405]],["parent/3572",[1290,5.877]],["name/3573",[1259,69.86]],["parent/3573",[1290,5.877]],["name/3574",[1260,69.86]],["parent/3574",[1290,5.877]],["name/3575",[1257,69.86]],["parent/3575",[1290,5.877]],["name/3576",[1291,48.657]],["parent/3576",[]],["name/3577",[43,46.723]],["parent/3577",[1291,4.857]],["name/3578",[353,44.558]],["parent/3578",[1291,4.857]],["name/3579",[1292,69.86]],["parent/3579",[1291,4.857]],["name/3580",[1293,69.86]],["parent/3580",[1291,4.857]],["name/3581",[1294,69.86]],["parent/3581",[1291,4.857]],["name/3582",[353,44.558]],["parent/3582",[1291,4.857]],["name/3583",[1292,69.86]],["parent/3583",[1291,4.857]],["name/3584",[1293,69.86]],["parent/3584",[1291,4.857]],["name/3585",[1294,69.86]],["parent/3585",[1291,4.857]],["name/3586",[1291,48.657]],["parent/3586",[1291,4.857]],["name/3587",[17,53.765]],["parent/3587",[1295,6.607]],["name/3588",[43,46.723]],["parent/3588",[1295,6.607]],["name/3589",[77,57.492]],["parent/3589",[1295,6.607]],["name/3590",[1296,72.373]],["parent/3590",[1297,8.07]],["name/3591",[29,55.723]],["parent/3591",[1295,6.607]],["name/3592",[96,57.492]],["parent/3592",[1295,6.607]],["name/3593",[10,26.925]],["parent/3593",[1298,8.07]],["name/3594",[1296,72.373]],["parent/3594",[1299,7.56]],["name/3595",[1300,80.846]],["parent/3595",[1299,7.56]],["name/3596",[1296,72.373]],["parent/3596",[1295,6.607]],["name/3597",[1301,69.86]],["parent/3597",[1291,4.857]],["name/3598",[10,26.925]],["parent/3598",[1302,8.07]],["name/3599",[445,36.034]],["parent/3599",[1303,8.07]],["name/3600",[1304,69.86]],["parent/3600",[1291,4.857]],["name/3601",[10,26.925]],["parent/3601",[1305,8.07]],["name/3602",[134,34.761]],["parent/3602",[1306,8.07]],["name/3603",[1307,69.86]],["parent/3603",[1291,4.857]],["name/3604",[1308,69.86]],["parent/3604",[1291,4.857]],["name/3605",[1309,72.373]],["parent/3605",[1291,4.857]],["name/3606",[1301,69.86]],["parent/3606",[1291,4.857]],["name/3607",[1304,69.86]],["parent/3607",[1291,4.857]],["name/3608",[1307,69.86]],["parent/3608",[1291,4.857]],["name/3609",[1308,69.86]],["parent/3609",[1291,4.857]],["name/3610",[1309,72.373]],["parent/3610",[1291,4.857]],["name/3611",[1291,48.657]],["parent/3611",[1291,4.857]],["name/3612",[43,46.723]],["parent/3612",[1291,4.857]],["name/3613",[1301,69.86]],["parent/3613",[1291,4.857]],["name/3614",[1304,69.86]],["parent/3614",[1291,4.857]],["name/3615",[1307,69.86]],["parent/3615",[1291,4.857]],["name/3616",[1308,69.86]],["parent/3616",[1291,4.857]],["name/3617",[1309,72.373]],["parent/3617",[1291,4.857]],["name/3618",[1291,48.657]],["parent/3618",[1291,4.857]],["name/3619",[353,44.558]],["parent/3619",[1291,4.857]],["name/3620",[1292,69.86]],["parent/3620",[1291,4.857]],["name/3621",[1293,69.86]],["parent/3621",[1291,4.857]],["name/3622",[1294,69.86]],["parent/3622",[1291,4.857]],["name/3623",[1310,80.846]],["parent/3623",[1291,4.857]],["name/3624",[1307,69.86]],["parent/3624",[1311,6.339]],["name/3625",[1308,69.86]],["parent/3625",[1311,6.339]],["name/3626",[1301,69.86]],["parent/3626",[1311,6.339]],["name/3627",[1304,69.86]],["parent/3627",[1311,6.339]],["name/3628",[353,44.558]],["parent/3628",[1311,6.339]],["name/3629",[1292,69.86]],["parent/3629",[1311,6.339]],["name/3630",[1293,69.86]],["parent/3630",[1311,6.339]],["name/3631",[1294,69.86]],["parent/3631",[1311,6.339]],["name/3632",[43,46.723]],["parent/3632",[42,3.102]],["name/3633",[116,69.86]],["parent/3633",[42,3.102]],["name/3634",[117,69.86]],["parent/3634",[42,3.102]],["name/3635",[118,69.86]],["parent/3635",[42,3.102]],["name/3636",[119,69.86]],["parent/3636",[42,3.102]],["name/3637",[120,69.86]],["parent/3637",[42,3.102]],["name/3638",[121,69.86]],["parent/3638",[42,3.102]],["name/3639",[122,69.86]],["parent/3639",[42,3.102]],["name/3640",[123,69.86]],["parent/3640",[42,3.102]],["name/3641",[124,69.86]],["parent/3641",[42,3.102]],["name/3642",[125,69.86]],["parent/3642",[42,3.102]],["name/3643",[126,69.86]],["parent/3643",[42,3.102]],["name/3644",[127,69.86]],["parent/3644",[42,3.102]],["name/3645",[128,69.86]],["parent/3645",[42,3.102]],["name/3646",[129,69.86]],["parent/3646",[42,3.102]],["name/3647",[130,69.86]],["parent/3647",[42,3.102]],["name/3648",[132,69.86]],["parent/3648",[42,3.102]],["name/3649",[136,69.86]],["parent/3649",[42,3.102]],["name/3650",[147,69.86]],["parent/3650",[42,3.102]],["name/3651",[152,69.86]],["parent/3651",[42,3.102]],["name/3652",[155,69.86]],["parent/3652",[42,3.102]],["name/3653",[157,69.86]],["parent/3653",[42,3.102]],["name/3654",[160,69.86]],["parent/3654",[42,3.102]],["name/3655",[167,69.86]],["parent/3655",[42,3.102]],["name/3656",[169,69.86]],["parent/3656",[42,3.102]],["name/3657",[172,69.86]],["parent/3657",[42,3.102]],["name/3658",[180,69.86]],["parent/3658",[42,3.102]],["name/3659",[182,69.86]],["parent/3659",[42,3.102]],["name/3660",[185,69.86]],["parent/3660",[42,3.102]],["name/3661",[187,69.86]],["parent/3661",[42,3.102]],["name/3662",[190,69.86]],["parent/3662",[42,3.102]],["name/3663",[195,69.86]],["parent/3663",[42,3.102]],["name/3664",[197,69.86]],["parent/3664",[42,3.102]],["name/3665",[200,69.86]],["parent/3665",[42,3.102]],["name/3666",[204,69.86]],["parent/3666",[42,3.102]],["name/3667",[206,69.86]],["parent/3667",[42,3.102]],["name/3668",[209,69.86]],["parent/3668",[42,3.102]],["name/3669",[215,69.86]],["parent/3669",[42,3.102]],["name/3670",[217,69.86]],["parent/3670",[42,3.102]],["name/3671",[220,69.86]],["parent/3671",[42,3.102]],["name/3672",[225,69.86]],["parent/3672",[42,3.102]],["name/3673",[228,69.86]],["parent/3673",[42,3.102]],["name/3674",[231,69.86]],["parent/3674",[42,3.102]],["name/3675",[233,69.86]],["parent/3675",[42,3.102]],["name/3676",[236,69.86]],["parent/3676",[42,3.102]],["name/3677",[240,69.86]],["parent/3677",[42,3.102]],["name/3678",[243,69.86]],["parent/3678",[42,3.102]],["name/3679",[246,69.86]],["parent/3679",[42,3.102]],["name/3680",[248,69.86]],["parent/3680",[42,3.102]],["name/3681",[251,69.86]],["parent/3681",[42,3.102]],["name/3682",[253,69.86]],["parent/3682",[42,3.102]],["name/3683",[256,69.86]],["parent/3683",[42,3.102]],["name/3684",[261,69.86]],["parent/3684",[42,3.102]],["name/3685",[264,69.86]],["parent/3685",[42,3.102]],["name/3686",[267,63.5]],["parent/3686",[42,3.102]],["name/3687",[269,63.5]],["parent/3687",[42,3.102]],["name/3688",[272,69.86]],["parent/3688",[42,3.102]],["name/3689",[277,69.86]],["parent/3689",[42,3.102]],["name/3690",[279,69.86]],["parent/3690",[42,3.102]],["name/3691",[282,69.86]],["parent/3691",[42,3.102]],["name/3692",[285,69.86]],["parent/3692",[42,3.102]],["name/3693",[286,69.86]],["parent/3693",[42,3.102]],["name/3694",[287,72.373]],["parent/3694",[42,3.102]],["name/3695",[42,31.078]],["parent/3695",[42,3.102]],["name/3696",[69,69.86]],["parent/3696",[42,3.102]],["name/3697",[70,69.86]],["parent/3697",[42,3.102]],["name/3698",[71,69.86]],["parent/3698",[42,3.102]],["name/3699",[72,69.86]],["parent/3699",[42,3.102]],["name/3700",[73,69.86]],["parent/3700",[42,3.102]],["name/3701",[75,69.86]],["parent/3701",[42,3.102]],["name/3702",[74,69.86]],["parent/3702",[42,3.102]],["name/3703",[1312,80.846]],["parent/3703",[42,3.102]],["name/3704",[285,69.86]],["parent/3704",[1313,4.256]],["name/3705",[286,69.86]],["parent/3705",[1313,4.256]],["name/3706",[136,69.86]],["parent/3706",[1313,4.256]],["name/3707",[130,69.86]],["parent/3707",[1313,4.256]],["name/3708",[132,69.86]],["parent/3708",[1313,4.256]],["name/3709",[116,69.86]],["parent/3709",[1313,4.256]],["name/3710",[117,69.86]],["parent/3710",[1313,4.256]],["name/3711",[147,69.86]],["parent/3711",[1313,4.256]],["name/3712",[152,69.86]],["parent/3712",[1313,4.256]],["name/3713",[118,69.86]],["parent/3713",[1313,4.256]],["name/3714",[160,69.86]],["parent/3714",[1313,4.256]],["name/3715",[155,69.86]],["parent/3715",[1313,4.256]],["name/3716",[157,69.86]],["parent/3716",[1313,4.256]],["name/3717",[172,69.86]],["parent/3717",[1313,4.256]],["name/3718",[167,69.86]],["parent/3718",[1313,4.256]],["name/3719",[169,69.86]],["parent/3719",[1313,4.256]],["name/3720",[180,69.86]],["parent/3720",[1313,4.256]],["name/3721",[182,69.86]],["parent/3721",[1313,4.256]],["name/3722",[119,69.86]],["parent/3722",[1313,4.256]],["name/3723",[190,69.86]],["parent/3723",[1313,4.256]],["name/3724",[185,69.86]],["parent/3724",[1313,4.256]],["name/3725",[187,69.86]],["parent/3725",[1313,4.256]],["name/3726",[120,69.86]],["parent/3726",[1313,4.256]],["name/3727",[200,69.86]],["parent/3727",[1313,4.256]],["name/3728",[195,69.86]],["parent/3728",[1313,4.256]],["name/3729",[197,69.86]],["parent/3729",[1313,4.256]],["name/3730",[121,69.86]],["parent/3730",[1313,4.256]],["name/3731",[209,69.86]],["parent/3731",[1313,4.256]],["name/3732",[204,69.86]],["parent/3732",[1313,4.256]],["name/3733",[206,69.86]],["parent/3733",[1313,4.256]],["name/3734",[122,69.86]],["parent/3734",[1313,4.256]],["name/3735",[220,69.86]],["parent/3735",[1313,4.256]],["name/3736",[215,69.86]],["parent/3736",[1313,4.256]],["name/3737",[217,69.86]],["parent/3737",[1313,4.256]],["name/3738",[123,69.86]],["parent/3738",[1313,4.256]],["name/3739",[225,69.86]],["parent/3739",[1313,4.256]],["name/3740",[228,69.86]],["parent/3740",[1313,4.256]],["name/3741",[124,69.86]],["parent/3741",[1313,4.256]],["name/3742",[125,69.86]],["parent/3742",[1313,4.256]],["name/3743",[126,69.86]],["parent/3743",[1313,4.256]],["name/3744",[236,69.86]],["parent/3744",[1313,4.256]],["name/3745",[231,69.86]],["parent/3745",[1313,4.256]],["name/3746",[233,69.86]],["parent/3746",[1313,4.256]],["name/3747",[240,69.86]],["parent/3747",[1313,4.256]],["name/3748",[243,69.86]],["parent/3748",[1313,4.256]],["name/3749",[246,69.86]],["parent/3749",[1313,4.256]],["name/3750",[248,69.86]],["parent/3750",[1313,4.256]],["name/3751",[127,69.86]],["parent/3751",[1313,4.256]],["name/3752",[256,69.86]],["parent/3752",[1313,4.256]],["name/3753",[251,69.86]],["parent/3753",[1313,4.256]],["name/3754",[253,69.86]],["parent/3754",[1313,4.256]],["name/3755",[128,69.86]],["parent/3755",[1313,4.256]],["name/3756",[261,69.86]],["parent/3756",[1313,4.256]],["name/3757",[264,69.86]],["parent/3757",[1313,4.256]],["name/3758",[272,69.86]],["parent/3758",[1313,4.256]],["name/3759",[267,63.5]],["parent/3759",[1313,4.256]],["name/3760",[269,63.5]],["parent/3760",[1313,4.256]],["name/3761",[129,69.86]],["parent/3761",[1313,4.256]],["name/3762",[282,69.86]],["parent/3762",[1313,4.256]],["name/3763",[277,69.86]],["parent/3763",[1313,4.256]],["name/3764",[279,69.86]],["parent/3764",[1313,4.256]],["name/3765",[69,69.86]],["parent/3765",[1313,4.256]],["name/3766",[70,69.86]],["parent/3766",[1313,4.256]],["name/3767",[71,69.86]],["parent/3767",[1313,4.256]],["name/3768",[72,69.86]],["parent/3768",[1313,4.256]],["name/3769",[73,69.86]],["parent/3769",[1313,4.256]],["name/3770",[75,69.86]],["parent/3770",[1313,4.256]],["name/3771",[74,69.86]],["parent/3771",[1313,4.256]],["name/3772",[1314,31.078]],["parent/3772",[]],["name/3773",[43,46.723]],["parent/3773",[1314,3.102]],["name/3774",[319,52.914]],["parent/3774",[1314,3.102]],["name/3775",[320,52.914]],["parent/3775",[1314,3.102]],["name/3776",[321,56.867]],["parent/3776",[1314,3.102]],["name/3777",[322,56.278]],["parent/3777",[1314,3.102]],["name/3778",[323,56.867]],["parent/3778",[1314,3.102]],["name/3779",[324,56.867]],["parent/3779",[1314,3.102]],["name/3780",[325,56.867]],["parent/3780",[1314,3.102]],["name/3781",[326,56.867]],["parent/3781",[1314,3.102]],["name/3782",[327,56.867]],["parent/3782",[1314,3.102]],["name/3783",[328,56.867]],["parent/3783",[1314,3.102]],["name/3784",[329,56.867]],["parent/3784",[1314,3.102]],["name/3785",[330,56.867]],["parent/3785",[1314,3.102]],["name/3786",[331,56.867]],["parent/3786",[1314,3.102]],["name/3787",[332,56.867]],["parent/3787",[1314,3.102]],["name/3788",[333,56.867]],["parent/3788",[1314,3.102]],["name/3789",[334,56.867]],["parent/3789",[1314,3.102]],["name/3790",[335,56.867]],["parent/3790",[1314,3.102]],["name/3791",[336,56.867]],["parent/3791",[1314,3.102]],["name/3792",[337,56.867]],["parent/3792",[1314,3.102]],["name/3793",[338,56.867]],["parent/3793",[1314,3.102]],["name/3794",[688,59.643]],["parent/3794",[1314,3.102]],["name/3795",[339,56.867]],["parent/3795",[1314,3.102]],["name/3796",[340,56.867]],["parent/3796",[1314,3.102]],["name/3797",[341,56.867]],["parent/3797",[1314,3.102]],["name/3798",[342,56.867]],["parent/3798",[1314,3.102]],["name/3799",[343,56.867]],["parent/3799",[1314,3.102]],["name/3800",[344,56.867]],["parent/3800",[1314,3.102]],["name/3801",[345,56.867]],["parent/3801",[1314,3.102]],["name/3802",[346,56.867]],["parent/3802",[1314,3.102]],["name/3803",[347,56.867]],["parent/3803",[1314,3.102]],["name/3804",[350,47.887]],["parent/3804",[1314,3.102]],["name/3805",[353,44.558]],["parent/3805",[1314,3.102]],["name/3806",[9,47.405]],["parent/3806",[1314,3.102]],["name/3807",[971,63.5]],["parent/3807",[1314,3.102]],["name/3808",[972,63.5]],["parent/3808",[1314,3.102]],["name/3809",[973,63.5]],["parent/3809",[1314,3.102]],["name/3810",[974,63.5]],["parent/3810",[1314,3.102]],["name/3811",[975,63.5]],["parent/3811",[1314,3.102]],["name/3812",[976,63.5]],["parent/3812",[1314,3.102]],["name/3813",[977,63.5]],["parent/3813",[1314,3.102]],["name/3814",[978,63.5]],["parent/3814",[1314,3.102]],["name/3815",[1315,69.86]],["parent/3815",[1314,3.102]],["name/3816",[348,59.643]],["parent/3816",[1314,3.102]],["name/3817",[1316,69.86]],["parent/3817",[1314,3.102]],["name/3818",[354,59.643]],["parent/3818",[1314,3.102]],["name/3819",[355,59.643]],["parent/3819",[1314,3.102]],["name/3820",[356,59.643]],["parent/3820",[1314,3.102]],["name/3821",[360,59.643]],["parent/3821",[1314,3.102]],["name/3822",[361,59.643]],["parent/3822",[1314,3.102]],["name/3823",[362,59.643]],["parent/3823",[1314,3.102]],["name/3824",[345,56.867]],["parent/3824",[1314,3.102]],["name/3825",[346,56.867]],["parent/3825",[1314,3.102]],["name/3826",[347,56.867]],["parent/3826",[1314,3.102]],["name/3827",[326,56.867]],["parent/3827",[1314,3.102]],["name/3828",[336,56.867]],["parent/3828",[1314,3.102]],["name/3829",[337,56.867]],["parent/3829",[1314,3.102]],["name/3830",[320,52.914]],["parent/3830",[1314,3.102]],["name/3831",[338,56.867]],["parent/3831",[1314,3.102]],["name/3832",[350,47.887]],["parent/3832",[1314,3.102]],["name/3833",[327,56.867]],["parent/3833",[1314,3.102]],["name/3834",[328,56.867]],["parent/3834",[1314,3.102]],["name/3835",[353,44.558]],["parent/3835",[1314,3.102]],["name/3836",[321,56.867]],["parent/3836",[1314,3.102]],["name/3837",[688,59.643]],["parent/3837",[1314,3.102]],["name/3838",[9,47.405]],["parent/3838",[1314,3.102]],["name/3839",[319,52.914]],["parent/3839",[1314,3.102]],["name/3840",[343,56.867]],["parent/3840",[1314,3.102]],["name/3841",[971,63.5]],["parent/3841",[1314,3.102]],["name/3842",[972,63.5]],["parent/3842",[1314,3.102]],["name/3843",[973,63.5]],["parent/3843",[1314,3.102]],["name/3844",[974,63.5]],["parent/3844",[1314,3.102]],["name/3845",[975,63.5]],["parent/3845",[1314,3.102]],["name/3846",[976,63.5]],["parent/3846",[1314,3.102]],["name/3847",[977,63.5]],["parent/3847",[1314,3.102]],["name/3848",[978,63.5]],["parent/3848",[1314,3.102]],["name/3849",[331,56.867]],["parent/3849",[1314,3.102]],["name/3850",[1315,69.86]],["parent/3850",[1314,3.102]],["name/3851",[348,59.643]],["parent/3851",[1314,3.102]],["name/3852",[324,56.867]],["parent/3852",[1314,3.102]],["name/3853",[1316,69.86]],["parent/3853",[1314,3.102]],["name/3854",[323,56.867]],["parent/3854",[1314,3.102]],["name/3855",[354,59.643]],["parent/3855",[1314,3.102]],["name/3856",[355,59.643]],["parent/3856",[1314,3.102]],["name/3857",[356,59.643]],["parent/3857",[1314,3.102]],["name/3858",[329,56.867]],["parent/3858",[1314,3.102]],["name/3859",[325,56.867]],["parent/3859",[1314,3.102]],["name/3860",[344,56.867]],["parent/3860",[1314,3.102]],["name/3861",[341,56.867]],["parent/3861",[1314,3.102]],["name/3862",[342,56.867]],["parent/3862",[1314,3.102]],["name/3863",[339,56.867]],["parent/3863",[1314,3.102]],["name/3864",[340,56.867]],["parent/3864",[1314,3.102]],["name/3865",[334,56.867]],["parent/3865",[1314,3.102]],["name/3866",[335,56.867]],["parent/3866",[1314,3.102]],["name/3867",[330,56.867]],["parent/3867",[1314,3.102]],["name/3868",[333,56.867]],["parent/3868",[1314,3.102]],["name/3869",[332,56.867]],["parent/3869",[1314,3.102]],["name/3870",[322,56.278]],["parent/3870",[1314,3.102]],["name/3871",[360,59.643]],["parent/3871",[1314,3.102]],["name/3872",[361,59.643]],["parent/3872",[1314,3.102]],["name/3873",[362,59.643]],["parent/3873",[1314,3.102]],["name/3874",[1314,31.078]],["parent/3874",[1314,3.102]],["name/3875",[17,53.765]],["parent/3875",[1317,5.877]],["name/3876",[43,46.723]],["parent/3876",[1317,5.877]],["name/3877",[77,57.492]],["parent/3877",[1317,5.877]],["name/3878",[1318,72.373]],["parent/3878",[1319,6.339]],["name/3879",[1320,72.373]],["parent/3879",[1319,6.339]],["name/3880",[1321,72.373]],["parent/3880",[1319,6.339]],["name/3881",[1322,72.373]],["parent/3881",[1319,6.339]],["name/3882",[1323,72.373]],["parent/3882",[1319,6.339]],["name/3883",[1324,72.373]],["parent/3883",[1319,6.339]],["name/3884",[1325,72.373]],["parent/3884",[1319,6.339]],["name/3885",[1326,72.373]],["parent/3885",[1319,6.339]],["name/3886",[29,55.723]],["parent/3886",[1317,5.877]],["name/3887",[96,57.492]],["parent/3887",[1317,5.877]],["name/3888",[10,26.925]],["parent/3888",[1327,8.07]],["name/3889",[1318,72.373]],["parent/3889",[1328,5.677]],["name/3890",[1329,80.846]],["parent/3890",[1328,5.677]],["name/3891",[1320,72.373]],["parent/3891",[1328,5.677]],["name/3892",[1330,80.846]],["parent/3892",[1328,5.677]],["name/3893",[1321,72.373]],["parent/3893",[1328,5.677]],["name/3894",[1331,80.846]],["parent/3894",[1328,5.677]],["name/3895",[1322,72.373]],["parent/3895",[1328,5.677]],["name/3896",[1332,80.846]],["parent/3896",[1328,5.677]],["name/3897",[1323,72.373]],["parent/3897",[1328,5.677]],["name/3898",[1333,80.846]],["parent/3898",[1328,5.677]],["name/3899",[1324,72.373]],["parent/3899",[1328,5.677]],["name/3900",[1334,80.846]],["parent/3900",[1328,5.677]],["name/3901",[1325,72.373]],["parent/3901",[1328,5.677]],["name/3902",[1335,80.846]],["parent/3902",[1328,5.677]],["name/3903",[1326,72.373]],["parent/3903",[1328,5.677]],["name/3904",[1336,80.846]],["parent/3904",[1328,5.677]],["name/3905",[1318,72.373]],["parent/3905",[1317,5.877]],["name/3906",[1320,72.373]],["parent/3906",[1317,5.877]],["name/3907",[1321,72.373]],["parent/3907",[1317,5.877]],["name/3908",[1322,72.373]],["parent/3908",[1317,5.877]],["name/3909",[1323,72.373]],["parent/3909",[1317,5.877]],["name/3910",[1324,72.373]],["parent/3910",[1317,5.877]],["name/3911",[1325,72.373]],["parent/3911",[1317,5.877]],["name/3912",[1326,72.373]],["parent/3912",[1317,5.877]],["name/3913",[1337,69.86]],["parent/3913",[1314,3.102]],["name/3914",[10,26.925]],["parent/3914",[1338,8.07]],["name/3915",[445,36.034]],["parent/3915",[1339,7.56]],["name/3916",[165,40.652]],["parent/3916",[1339,7.56]],["name/3917",[1340,69.86]],["parent/3917",[1314,3.102]],["name/3918",[10,26.925]],["parent/3918",[1341,8.07]],["name/3919",[134,34.761]],["parent/3919",[1342,8.07]],["name/3920",[1343,69.86]],["parent/3920",[1314,3.102]],["name/3921",[10,26.925]],["parent/3921",[1344,8.07]],["name/3922",[445,36.034]],["parent/3922",[1345,7.56]],["name/3923",[165,40.652]],["parent/3923",[1345,7.56]],["name/3924",[1346,69.86]],["parent/3924",[1314,3.102]],["name/3925",[10,26.925]],["parent/3925",[1347,8.07]],["name/3926",[134,34.761]],["parent/3926",[1348,7.56]],["name/3927",[1349,64.751]],["parent/3927",[1348,7.56]],["name/3928",[1350,69.86]],["parent/3928",[1314,3.102]],["name/3929",[10,26.925]],["parent/3929",[1351,8.07]],["name/3930",[445,36.034]],["parent/3930",[1352,7.56]],["name/3931",[165,40.652]],["parent/3931",[1352,7.56]],["name/3932",[1353,69.86]],["parent/3932",[1314,3.102]],["name/3933",[10,26.925]],["parent/3933",[1354,8.07]],["name/3934",[1349,64.751]],["parent/3934",[1355,7.56]],["name/3935",[134,34.761]],["parent/3935",[1355,7.56]],["name/3936",[1356,69.86]],["parent/3936",[1314,3.102]],["name/3937",[10,26.925]],["parent/3937",[1357,8.07]],["name/3938",[445,36.034]],["parent/3938",[1358,7.56]],["name/3939",[165,40.652]],["parent/3939",[1358,7.56]],["name/3940",[1359,69.86]],["parent/3940",[1314,3.102]],["name/3941",[10,26.925]],["parent/3941",[1360,8.07]],["name/3942",[134,34.761]],["parent/3942",[1361,7.56]],["name/3943",[1349,64.751]],["parent/3943",[1361,7.56]],["name/3944",[1362,69.86]],["parent/3944",[1314,3.102]],["name/3945",[10,26.925]],["parent/3945",[1363,8.07]],["name/3946",[445,36.034]],["parent/3946",[1364,8.07]],["name/3947",[1365,69.86]],["parent/3947",[1314,3.102]],["name/3948",[10,26.925]],["parent/3948",[1366,8.07]],["name/3949",[134,34.761]],["parent/3949",[1367,7.56]],["name/3950",[1349,64.751]],["parent/3950",[1367,7.56]],["name/3951",[1368,69.86]],["parent/3951",[1314,3.102]],["name/3952",[10,26.925]],["parent/3952",[1369,8.07]],["name/3953",[445,36.034]],["parent/3953",[1370,7.56]],["name/3954",[165,40.652]],["parent/3954",[1370,7.56]],["name/3955",[1371,69.86]],["parent/3955",[1314,3.102]],["name/3956",[10,26.925]],["parent/3956",[1372,8.07]],["name/3957",[134,34.761]],["parent/3957",[1373,7.56]],["name/3958",[1349,64.751]],["parent/3958",[1373,7.56]],["name/3959",[1374,69.86]],["parent/3959",[1314,3.102]],["name/3960",[10,26.925]],["parent/3960",[1375,8.07]],["name/3961",[445,36.034]],["parent/3961",[1376,7.56]],["name/3962",[165,40.652]],["parent/3962",[1376,7.56]],["name/3963",[1377,69.86]],["parent/3963",[1314,3.102]],["name/3964",[10,26.925]],["parent/3964",[1378,8.07]],["name/3965",[577,63.5]],["parent/3965",[1379,7.224]],["name/3966",[134,34.761]],["parent/3966",[1379,7.224]],["name/3967",[1349,64.751]],["parent/3967",[1379,7.224]],["name/3968",[1380,69.86]],["parent/3968",[1314,3.102]],["name/3969",[10,26.925]],["parent/3969",[1381,8.07]],["name/3970",[445,36.034]],["parent/3970",[1382,7.56]],["name/3971",[165,40.652]],["parent/3971",[1382,7.56]],["name/3972",[1383,69.86]],["parent/3972",[1314,3.102]],["name/3973",[10,26.925]],["parent/3973",[1384,8.07]],["name/3974",[577,63.5]],["parent/3974",[1385,7.224]],["name/3975",[134,34.761]],["parent/3975",[1385,7.224]],["name/3976",[1349,64.751]],["parent/3976",[1385,7.224]],["name/3977",[1386,69.86]],["parent/3977",[1314,3.102]],["name/3978",[1387,69.86]],["parent/3978",[1314,3.102]],["name/3979",[1388,72.373]],["parent/3979",[1314,3.102]],["name/3980",[1337,69.86]],["parent/3980",[1314,3.102]],["name/3981",[1340,69.86]],["parent/3981",[1314,3.102]],["name/3982",[1343,69.86]],["parent/3982",[1314,3.102]],["name/3983",[1346,69.86]],["parent/3983",[1314,3.102]],["name/3984",[1350,69.86]],["parent/3984",[1314,3.102]],["name/3985",[1353,69.86]],["parent/3985",[1314,3.102]],["name/3986",[1356,69.86]],["parent/3986",[1314,3.102]],["name/3987",[1359,69.86]],["parent/3987",[1314,3.102]],["name/3988",[1362,69.86]],["parent/3988",[1314,3.102]],["name/3989",[1365,69.86]],["parent/3989",[1314,3.102]],["name/3990",[1368,69.86]],["parent/3990",[1314,3.102]],["name/3991",[1371,69.86]],["parent/3991",[1314,3.102]],["name/3992",[1374,69.86]],["parent/3992",[1314,3.102]],["name/3993",[1377,69.86]],["parent/3993",[1314,3.102]],["name/3994",[1380,69.86]],["parent/3994",[1314,3.102]],["name/3995",[1383,69.86]],["parent/3995",[1314,3.102]],["name/3996",[1386,69.86]],["parent/3996",[1314,3.102]],["name/3997",[1387,69.86]],["parent/3997",[1314,3.102]],["name/3998",[1388,72.373]],["parent/3998",[1314,3.102]],["name/3999",[1314,31.078]],["parent/3999",[1314,3.102]],["name/4000",[43,46.723]],["parent/4000",[1314,3.102]],["name/4001",[1337,69.86]],["parent/4001",[1314,3.102]],["name/4002",[1340,69.86]],["parent/4002",[1314,3.102]],["name/4003",[1343,69.86]],["parent/4003",[1314,3.102]],["name/4004",[1346,69.86]],["parent/4004",[1314,3.102]],["name/4005",[1350,69.86]],["parent/4005",[1314,3.102]],["name/4006",[1353,69.86]],["parent/4006",[1314,3.102]],["name/4007",[1356,69.86]],["parent/4007",[1314,3.102]],["name/4008",[1359,69.86]],["parent/4008",[1314,3.102]],["name/4009",[1362,69.86]],["parent/4009",[1314,3.102]],["name/4010",[1365,69.86]],["parent/4010",[1314,3.102]],["name/4011",[1368,69.86]],["parent/4011",[1314,3.102]],["name/4012",[1371,69.86]],["parent/4012",[1314,3.102]],["name/4013",[1374,69.86]],["parent/4013",[1314,3.102]],["name/4014",[1377,69.86]],["parent/4014",[1314,3.102]],["name/4015",[1380,69.86]],["parent/4015",[1314,3.102]],["name/4016",[1383,69.86]],["parent/4016",[1314,3.102]],["name/4017",[1386,69.86]],["parent/4017",[1314,3.102]],["name/4018",[1387,69.86]],["parent/4018",[1314,3.102]],["name/4019",[1388,72.373]],["parent/4019",[1314,3.102]],["name/4020",[1314,31.078]],["parent/4020",[1314,3.102]],["name/4021",[345,56.867]],["parent/4021",[1314,3.102]],["name/4022",[346,56.867]],["parent/4022",[1314,3.102]],["name/4023",[347,56.867]],["parent/4023",[1314,3.102]],["name/4024",[326,56.867]],["parent/4024",[1314,3.102]],["name/4025",[336,56.867]],["parent/4025",[1314,3.102]],["name/4026",[337,56.867]],["parent/4026",[1314,3.102]],["name/4027",[320,52.914]],["parent/4027",[1314,3.102]],["name/4028",[338,56.867]],["parent/4028",[1314,3.102]],["name/4029",[350,47.887]],["parent/4029",[1314,3.102]],["name/4030",[327,56.867]],["parent/4030",[1314,3.102]],["name/4031",[328,56.867]],["parent/4031",[1314,3.102]],["name/4032",[353,44.558]],["parent/4032",[1314,3.102]],["name/4033",[321,56.867]],["parent/4033",[1314,3.102]],["name/4034",[688,59.643]],["parent/4034",[1314,3.102]],["name/4035",[9,47.405]],["parent/4035",[1314,3.102]],["name/4036",[319,52.914]],["parent/4036",[1314,3.102]],["name/4037",[343,56.867]],["parent/4037",[1314,3.102]],["name/4038",[971,63.5]],["parent/4038",[1314,3.102]],["name/4039",[972,63.5]],["parent/4039",[1314,3.102]],["name/4040",[973,63.5]],["parent/4040",[1314,3.102]],["name/4041",[974,63.5]],["parent/4041",[1314,3.102]],["name/4042",[975,63.5]],["parent/4042",[1314,3.102]],["name/4043",[976,63.5]],["parent/4043",[1314,3.102]],["name/4044",[977,63.5]],["parent/4044",[1314,3.102]],["name/4045",[978,63.5]],["parent/4045",[1314,3.102]],["name/4046",[331,56.867]],["parent/4046",[1314,3.102]],["name/4047",[1315,69.86]],["parent/4047",[1314,3.102]],["name/4048",[348,59.643]],["parent/4048",[1314,3.102]],["name/4049",[324,56.867]],["parent/4049",[1314,3.102]],["name/4050",[1316,69.86]],["parent/4050",[1314,3.102]],["name/4051",[323,56.867]],["parent/4051",[1314,3.102]],["name/4052",[354,59.643]],["parent/4052",[1314,3.102]],["name/4053",[355,59.643]],["parent/4053",[1314,3.102]],["name/4054",[356,59.643]],["parent/4054",[1314,3.102]],["name/4055",[329,56.867]],["parent/4055",[1314,3.102]],["name/4056",[325,56.867]],["parent/4056",[1314,3.102]],["name/4057",[344,56.867]],["parent/4057",[1314,3.102]],["name/4058",[341,56.867]],["parent/4058",[1314,3.102]],["name/4059",[342,56.867]],["parent/4059",[1314,3.102]],["name/4060",[339,56.867]],["parent/4060",[1314,3.102]],["name/4061",[340,56.867]],["parent/4061",[1314,3.102]],["name/4062",[334,56.867]],["parent/4062",[1314,3.102]],["name/4063",[335,56.867]],["parent/4063",[1314,3.102]],["name/4064",[330,56.867]],["parent/4064",[1314,3.102]],["name/4065",[333,56.867]],["parent/4065",[1314,3.102]],["name/4066",[332,56.867]],["parent/4066",[1314,3.102]],["name/4067",[322,56.278]],["parent/4067",[1314,3.102]],["name/4068",[360,59.643]],["parent/4068",[1314,3.102]],["name/4069",[361,59.643]],["parent/4069",[1314,3.102]],["name/4070",[362,59.643]],["parent/4070",[1314,3.102]],["name/4071",[1389,80.846]],["parent/4071",[1314,3.102]],["name/4072",[1386,69.86]],["parent/4072",[1390,4.256]],["name/4073",[1387,69.86]],["parent/4073",[1390,4.256]],["name/4074",[1337,69.86]],["parent/4074",[1390,4.256]],["name/4075",[1340,69.86]],["parent/4075",[1390,4.256]],["name/4076",[1343,69.86]],["parent/4076",[1390,4.256]],["name/4077",[1346,69.86]],["parent/4077",[1390,4.256]],["name/4078",[1350,69.86]],["parent/4078",[1390,4.256]],["name/4079",[1353,69.86]],["parent/4079",[1390,4.256]],["name/4080",[1356,69.86]],["parent/4080",[1390,4.256]],["name/4081",[1359,69.86]],["parent/4081",[1390,4.256]],["name/4082",[1362,69.86]],["parent/4082",[1390,4.256]],["name/4083",[1365,69.86]],["parent/4083",[1390,4.256]],["name/4084",[1368,69.86]],["parent/4084",[1390,4.256]],["name/4085",[1371,69.86]],["parent/4085",[1390,4.256]],["name/4086",[1374,69.86]],["parent/4086",[1390,4.256]],["name/4087",[1377,69.86]],["parent/4087",[1390,4.256]],["name/4088",[1380,69.86]],["parent/4088",[1390,4.256]],["name/4089",[1383,69.86]],["parent/4089",[1390,4.256]],["name/4090",[345,56.867]],["parent/4090",[1390,4.256]],["name/4091",[346,56.867]],["parent/4091",[1390,4.256]],["name/4092",[347,56.867]],["parent/4092",[1390,4.256]],["name/4093",[326,56.867]],["parent/4093",[1390,4.256]],["name/4094",[336,56.867]],["parent/4094",[1390,4.256]],["name/4095",[337,56.867]],["parent/4095",[1390,4.256]],["name/4096",[320,52.914]],["parent/4096",[1390,4.256]],["name/4097",[338,56.867]],["parent/4097",[1390,4.256]],["name/4098",[350,47.887]],["parent/4098",[1390,4.256]],["name/4099",[327,56.867]],["parent/4099",[1390,4.256]],["name/4100",[328,56.867]],["parent/4100",[1390,4.256]],["name/4101",[353,44.558]],["parent/4101",[1390,4.256]],["name/4102",[321,56.867]],["parent/4102",[1390,4.256]],["name/4103",[688,59.643]],["parent/4103",[1390,4.256]],["name/4104",[9,47.405]],["parent/4104",[1390,4.256]],["name/4105",[319,52.914]],["parent/4105",[1390,4.256]],["name/4106",[343,56.867]],["parent/4106",[1390,4.256]],["name/4107",[971,63.5]],["parent/4107",[1390,4.256]],["name/4108",[972,63.5]],["parent/4108",[1390,4.256]],["name/4109",[973,63.5]],["parent/4109",[1390,4.256]],["name/4110",[974,63.5]],["parent/4110",[1390,4.256]],["name/4111",[975,63.5]],["parent/4111",[1390,4.256]],["name/4112",[976,63.5]],["parent/4112",[1390,4.256]],["name/4113",[977,63.5]],["parent/4113",[1390,4.256]],["name/4114",[978,63.5]],["parent/4114",[1390,4.256]],["name/4115",[331,56.867]],["parent/4115",[1390,4.256]],["name/4116",[1315,69.86]],["parent/4116",[1390,4.256]],["name/4117",[348,59.643]],["parent/4117",[1390,4.256]],["name/4118",[324,56.867]],["parent/4118",[1390,4.256]],["name/4119",[1316,69.86]],["parent/4119",[1390,4.256]],["name/4120",[323,56.867]],["parent/4120",[1390,4.256]],["name/4121",[354,59.643]],["parent/4121",[1390,4.256]],["name/4122",[355,59.643]],["parent/4122",[1390,4.256]],["name/4123",[356,59.643]],["parent/4123",[1390,4.256]],["name/4124",[329,56.867]],["parent/4124",[1390,4.256]],["name/4125",[325,56.867]],["parent/4125",[1390,4.256]],["name/4126",[344,56.867]],["parent/4126",[1390,4.256]],["name/4127",[341,56.867]],["parent/4127",[1390,4.256]],["name/4128",[342,56.867]],["parent/4128",[1390,4.256]],["name/4129",[339,56.867]],["parent/4129",[1390,4.256]],["name/4130",[340,56.867]],["parent/4130",[1390,4.256]],["name/4131",[334,56.867]],["parent/4131",[1390,4.256]],["name/4132",[335,56.867]],["parent/4132",[1390,4.256]],["name/4133",[330,56.867]],["parent/4133",[1390,4.256]],["name/4134",[333,56.867]],["parent/4134",[1390,4.256]],["name/4135",[332,56.867]],["parent/4135",[1390,4.256]],["name/4136",[322,56.278]],["parent/4136",[1390,4.256]],["name/4137",[360,59.643]],["parent/4137",[1390,4.256]],["name/4138",[361,59.643]],["parent/4138",[1390,4.256]],["name/4139",[362,59.643]],["parent/4139",[1390,4.256]],["name/4140",[1391,34.894]],["parent/4140",[]],["name/4141",[43,46.723]],["parent/4141",[1391,3.483]],["name/4142",[943,59.643]],["parent/4142",[1391,3.483]],["name/4143",[944,59.643]],["parent/4143",[1391,3.483]],["name/4144",[945,59.643]],["parent/4144",[1391,3.483]],["name/4145",[946,59.643]],["parent/4145",[1391,3.483]],["name/4146",[947,59.643]],["parent/4146",[1391,3.483]],["name/4147",[948,59.643]],["parent/4147",[1391,3.483]],["name/4148",[949,63.5]],["parent/4148",[1391,3.483]],["name/4149",[950,63.5]],["parent/4149",[1391,3.483]],["name/4150",[951,59.643]],["parent/4150",[1391,3.483]],["name/4151",[952,59.643]],["parent/4151",[1391,3.483]],["name/4152",[319,52.914]],["parent/4152",[1391,3.483]],["name/4153",[320,52.914]],["parent/4153",[1391,3.483]],["name/4154",[953,63.5]],["parent/4154",[1391,3.483]],["name/4155",[954,59.643]],["parent/4155",[1391,3.483]],["name/4156",[955,59.643]],["parent/4156",[1391,3.483]],["name/4157",[956,63.5]],["parent/4157",[1391,3.483]],["name/4158",[957,63.5]],["parent/4158",[1391,3.483]],["name/4159",[958,63.5]],["parent/4159",[1391,3.483]],["name/4160",[959,63.5]],["parent/4160",[1391,3.483]],["name/4161",[960,59.643]],["parent/4161",[1391,3.483]],["name/4162",[961,63.5]],["parent/4162",[1391,3.483]],["name/4163",[962,63.5]],["parent/4163",[1391,3.483]],["name/4164",[963,63.5]],["parent/4164",[1391,3.483]],["name/4165",[1392,69.86]],["parent/4165",[1391,3.483]],["name/4166",[1393,69.86]],["parent/4166",[1391,3.483]],["name/4167",[1394,69.86]],["parent/4167",[1391,3.483]],["name/4168",[350,47.887]],["parent/4168",[1391,3.483]],["name/4169",[353,44.558]],["parent/4169",[1391,3.483]],["name/4170",[9,47.405]],["parent/4170",[1391,3.483]],["name/4171",[1395,69.86]],["parent/4171",[1391,3.483]],["name/4172",[1005,54.696]],["parent/4172",[1391,3.483]],["name/4173",[963,63.5]],["parent/4173",[1391,3.483]],["name/4174",[1393,69.86]],["parent/4174",[1391,3.483]],["name/4175",[1394,69.86]],["parent/4175",[1391,3.483]],["name/4176",[320,52.914]],["parent/4176",[1391,3.483]],["name/4177",[350,47.887]],["parent/4177",[1391,3.483]],["name/4178",[353,44.558]],["parent/4178",[1391,3.483]],["name/4179",[943,59.643]],["parent/4179",[1391,3.483]],["name/4180",[960,59.643]],["parent/4180",[1391,3.483]],["name/4181",[961,63.5]],["parent/4181",[1391,3.483]],["name/4182",[9,47.405]],["parent/4182",[1391,3.483]],["name/4183",[953,63.5]],["parent/4183",[1391,3.483]],["name/4184",[319,52.914]],["parent/4184",[1391,3.483]],["name/4185",[959,63.5]],["parent/4185",[1391,3.483]],["name/4186",[958,63.5]],["parent/4186",[1391,3.483]],["name/4187",[955,59.643]],["parent/4187",[1391,3.483]],["name/4188",[1392,69.86]],["parent/4188",[1391,3.483]],["name/4189",[951,59.643]],["parent/4189",[1391,3.483]],["name/4190",[962,63.5]],["parent/4190",[1391,3.483]],["name/4191",[956,63.5]],["parent/4191",[1391,3.483]],["name/4192",[957,63.5]],["parent/4192",[1391,3.483]],["name/4193",[948,59.643]],["parent/4193",[1391,3.483]],["name/4194",[952,59.643]],["parent/4194",[1391,3.483]],["name/4195",[1395,69.86]],["parent/4195",[1391,3.483]],["name/4196",[947,59.643]],["parent/4196",[1391,3.483]],["name/4197",[950,63.5]],["parent/4197",[1391,3.483]],["name/4198",[949,63.5]],["parent/4198",[1391,3.483]],["name/4199",[1005,54.696]],["parent/4199",[1391,3.483]],["name/4200",[954,59.643]],["parent/4200",[1391,3.483]],["name/4201",[945,59.643]],["parent/4201",[1391,3.483]],["name/4202",[944,59.643]],["parent/4202",[1391,3.483]],["name/4203",[946,59.643]],["parent/4203",[1391,3.483]],["name/4204",[1391,34.894]],["parent/4204",[1391,3.483]],["name/4205",[17,53.765]],["parent/4205",[1396,6.228]],["name/4206",[43,46.723]],["parent/4206",[1396,6.228]],["name/4207",[77,57.492]],["parent/4207",[1396,6.228]],["name/4208",[1397,72.373]],["parent/4208",[1398,6.974]],["name/4209",[1399,72.373]],["parent/4209",[1398,6.974]],["name/4210",[1400,72.373]],["parent/4210",[1398,6.974]],["name/4211",[1401,72.373]],["parent/4211",[1398,6.974]],["name/4212",[29,55.723]],["parent/4212",[1396,6.228]],["name/4213",[96,57.492]],["parent/4213",[1396,6.228]],["name/4214",[10,26.925]],["parent/4214",[1402,8.07]],["name/4215",[1397,72.373]],["parent/4215",[1403,6.339]],["name/4216",[1404,80.846]],["parent/4216",[1403,6.339]],["name/4217",[1399,72.373]],["parent/4217",[1403,6.339]],["name/4218",[1405,80.846]],["parent/4218",[1403,6.339]],["name/4219",[1400,72.373]],["parent/4219",[1403,6.339]],["name/4220",[1406,80.846]],["parent/4220",[1403,6.339]],["name/4221",[1401,72.373]],["parent/4221",[1403,6.339]],["name/4222",[1407,80.846]],["parent/4222",[1403,6.339]],["name/4223",[1397,72.373]],["parent/4223",[1396,6.228]],["name/4224",[1399,72.373]],["parent/4224",[1396,6.228]],["name/4225",[1400,72.373]],["parent/4225",[1396,6.228]],["name/4226",[1401,72.373]],["parent/4226",[1396,6.228]],["name/4227",[1408,69.86]],["parent/4227",[1391,3.483]],["name/4228",[1409,69.86]],["parent/4228",[1391,3.483]],["name/4229",[1410,69.86]],["parent/4229",[1391,3.483]],["name/4230",[1411,69.86]],["parent/4230",[1391,3.483]],["name/4231",[1412,69.86]],["parent/4231",[1391,3.483]],["name/4232",[10,26.925]],["parent/4232",[1413,8.07]],["name/4233",[1414,69.86]],["parent/4233",[1415,6.974]],["name/4234",[1416,75.737]],["parent/4234",[1415,6.974]],["name/4235",[165,40.652]],["parent/4235",[1415,6.974]],["name/4236",[445,36.034]],["parent/4236",[1415,6.974]],["name/4237",[1417,69.86]],["parent/4237",[1391,3.483]],["name/4238",[10,26.925]],["parent/4238",[1418,8.07]],["name/4239",[134,34.761]],["parent/4239",[1419,8.07]],["name/4240",[1420,69.86]],["parent/4240",[1391,3.483]],["name/4241",[10,26.925]],["parent/4241",[1421,8.07]],["name/4242",[1416,75.737]],["parent/4242",[1422,7.224]],["name/4243",[165,40.652]],["parent/4243",[1422,7.224]],["name/4244",[445,36.034]],["parent/4244",[1422,7.224]],["name/4245",[1423,69.86]],["parent/4245",[1391,3.483]],["name/4246",[10,26.925]],["parent/4246",[1424,8.07]],["name/4247",[1425,75.737]],["parent/4247",[1426,7.56]],["name/4248",[134,34.761]],["parent/4248",[1426,7.56]],["name/4249",[1427,69.86]],["parent/4249",[1391,3.483]],["name/4250",[10,26.925]],["parent/4250",[1428,8.07]],["name/4251",[1429,75.737]],["parent/4251",[1430,6.339]],["name/4252",[1431,69.86]],["parent/4252",[1430,6.339]],["name/4253",[1432,72.373]],["parent/4253",[1430,6.339]],["name/4254",[1433,72.373]],["parent/4254",[1430,6.339]],["name/4255",[1434,72.373]],["parent/4255",[1430,6.339]],["name/4256",[1435,67.853]],["parent/4256",[1430,6.339]],["name/4257",[165,40.652]],["parent/4257",[1430,6.339]],["name/4258",[445,36.034]],["parent/4258",[1430,6.339]],["name/4259",[1436,69.86]],["parent/4259",[1391,3.483]],["name/4260",[10,26.925]],["parent/4260",[1437,8.07]],["name/4261",[134,34.761]],["parent/4261",[1438,7.56]],["name/4262",[1425,75.737]],["parent/4262",[1438,7.56]],["name/4263",[1439,69.86]],["parent/4263",[1391,3.483]],["name/4264",[10,26.925]],["parent/4264",[1440,8.07]],["name/4265",[1414,69.86]],["parent/4265",[1441,6.228]],["name/4266",[1429,75.737]],["parent/4266",[1441,6.228]],["name/4267",[1431,69.86]],["parent/4267",[1441,6.228]],["name/4268",[1432,72.373]],["parent/4268",[1441,6.228]],["name/4269",[1433,72.373]],["parent/4269",[1441,6.228]],["name/4270",[445,36.034]],["parent/4270",[1441,6.228]],["name/4271",[1434,72.373]],["parent/4271",[1441,6.228]],["name/4272",[165,40.652]],["parent/4272",[1441,6.228]],["name/4273",[1435,67.853]],["parent/4273",[1441,6.228]],["name/4274",[1442,69.86]],["parent/4274",[1391,3.483]],["name/4275",[10,26.925]],["parent/4275",[1443,8.07]],["name/4276",[134,34.761]],["parent/4276",[1444,8.07]],["name/4277",[1445,69.86]],["parent/4277",[1391,3.483]],["name/4278",[1446,69.86]],["parent/4278",[1391,3.483]],["name/4279",[1447,72.373]],["parent/4279",[1391,3.483]],["name/4280",[1408,69.86]],["parent/4280",[1391,3.483]],["name/4281",[1409,69.86]],["parent/4281",[1391,3.483]],["name/4282",[1410,69.86]],["parent/4282",[1391,3.483]],["name/4283",[1411,69.86]],["parent/4283",[1391,3.483]],["name/4284",[1412,69.86]],["parent/4284",[1391,3.483]],["name/4285",[1417,69.86]],["parent/4285",[1391,3.483]],["name/4286",[1420,69.86]],["parent/4286",[1391,3.483]],["name/4287",[1423,69.86]],["parent/4287",[1391,3.483]],["name/4288",[1427,69.86]],["parent/4288",[1391,3.483]],["name/4289",[1436,69.86]],["parent/4289",[1391,3.483]],["name/4290",[1439,69.86]],["parent/4290",[1391,3.483]],["name/4291",[1442,69.86]],["parent/4291",[1391,3.483]],["name/4292",[1445,69.86]],["parent/4292",[1391,3.483]],["name/4293",[1446,69.86]],["parent/4293",[1391,3.483]],["name/4294",[1447,72.373]],["parent/4294",[1391,3.483]],["name/4295",[1391,34.894]],["parent/4295",[1391,3.483]],["name/4296",[43,46.723]],["parent/4296",[1391,3.483]],["name/4297",[1408,69.86]],["parent/4297",[1391,3.483]],["name/4298",[1409,69.86]],["parent/4298",[1391,3.483]],["name/4299",[1410,69.86]],["parent/4299",[1391,3.483]],["name/4300",[1411,69.86]],["parent/4300",[1391,3.483]],["name/4301",[1412,69.86]],["parent/4301",[1391,3.483]],["name/4302",[1417,69.86]],["parent/4302",[1391,3.483]],["name/4303",[1420,69.86]],["parent/4303",[1391,3.483]],["name/4304",[1423,69.86]],["parent/4304",[1391,3.483]],["name/4305",[1427,69.86]],["parent/4305",[1391,3.483]],["name/4306",[1436,69.86]],["parent/4306",[1391,3.483]],["name/4307",[1439,69.86]],["parent/4307",[1391,3.483]],["name/4308",[1442,69.86]],["parent/4308",[1391,3.483]],["name/4309",[1445,69.86]],["parent/4309",[1391,3.483]],["name/4310",[1446,69.86]],["parent/4310",[1391,3.483]],["name/4311",[1447,72.373]],["parent/4311",[1391,3.483]],["name/4312",[1391,34.894]],["parent/4312",[1391,3.483]],["name/4313",[963,63.5]],["parent/4313",[1391,3.483]],["name/4314",[1393,69.86]],["parent/4314",[1391,3.483]],["name/4315",[1394,69.86]],["parent/4315",[1391,3.483]],["name/4316",[320,52.914]],["parent/4316",[1391,3.483]],["name/4317",[350,47.887]],["parent/4317",[1391,3.483]],["name/4318",[353,44.558]],["parent/4318",[1391,3.483]],["name/4319",[943,59.643]],["parent/4319",[1391,3.483]],["name/4320",[960,59.643]],["parent/4320",[1391,3.483]],["name/4321",[961,63.5]],["parent/4321",[1391,3.483]],["name/4322",[9,47.405]],["parent/4322",[1391,3.483]],["name/4323",[953,63.5]],["parent/4323",[1391,3.483]],["name/4324",[319,52.914]],["parent/4324",[1391,3.483]],["name/4325",[959,63.5]],["parent/4325",[1391,3.483]],["name/4326",[958,63.5]],["parent/4326",[1391,3.483]],["name/4327",[955,59.643]],["parent/4327",[1391,3.483]],["name/4328",[1392,69.86]],["parent/4328",[1391,3.483]],["name/4329",[951,59.643]],["parent/4329",[1391,3.483]],["name/4330",[962,63.5]],["parent/4330",[1391,3.483]],["name/4331",[956,63.5]],["parent/4331",[1391,3.483]],["name/4332",[957,63.5]],["parent/4332",[1391,3.483]],["name/4333",[948,59.643]],["parent/4333",[1391,3.483]],["name/4334",[952,59.643]],["parent/4334",[1391,3.483]],["name/4335",[1395,69.86]],["parent/4335",[1391,3.483]],["name/4336",[947,59.643]],["parent/4336",[1391,3.483]],["name/4337",[950,63.5]],["parent/4337",[1391,3.483]],["name/4338",[949,63.5]],["parent/4338",[1391,3.483]],["name/4339",[1005,54.696]],["parent/4339",[1391,3.483]],["name/4340",[954,59.643]],["parent/4340",[1391,3.483]],["name/4341",[945,59.643]],["parent/4341",[1391,3.483]],["name/4342",[944,59.643]],["parent/4342",[1391,3.483]],["name/4343",[946,59.643]],["parent/4343",[1391,3.483]],["name/4344",[1448,80.846]],["parent/4344",[1391,3.483]],["name/4345",[1445,69.86]],["parent/4345",[1449,4.664]],["name/4346",[1446,69.86]],["parent/4346",[1449,4.664]],["name/4347",[1408,69.86]],["parent/4347",[1449,4.664]],["name/4348",[1412,69.86]],["parent/4348",[1449,4.664]],["name/4349",[1417,69.86]],["parent/4349",[1449,4.664]],["name/4350",[1409,69.86]],["parent/4350",[1449,4.664]],["name/4351",[1420,69.86]],["parent/4351",[1449,4.664]],["name/4352",[1423,69.86]],["parent/4352",[1449,4.664]],["name/4353",[1410,69.86]],["parent/4353",[1449,4.664]],["name/4354",[1427,69.86]],["parent/4354",[1449,4.664]],["name/4355",[1436,69.86]],["parent/4355",[1449,4.664]],["name/4356",[1411,69.86]],["parent/4356",[1449,4.664]],["name/4357",[1439,69.86]],["parent/4357",[1449,4.664]],["name/4358",[1442,69.86]],["parent/4358",[1449,4.664]],["name/4359",[963,63.5]],["parent/4359",[1449,4.664]],["name/4360",[1393,69.86]],["parent/4360",[1449,4.664]],["name/4361",[1394,69.86]],["parent/4361",[1449,4.664]],["name/4362",[320,52.914]],["parent/4362",[1449,4.664]],["name/4363",[350,47.887]],["parent/4363",[1449,4.664]],["name/4364",[353,44.558]],["parent/4364",[1449,4.664]],["name/4365",[943,59.643]],["parent/4365",[1449,4.664]],["name/4366",[960,59.643]],["parent/4366",[1449,4.664]],["name/4367",[961,63.5]],["parent/4367",[1449,4.664]],["name/4368",[9,47.405]],["parent/4368",[1449,4.664]],["name/4369",[953,63.5]],["parent/4369",[1449,4.664]],["name/4370",[319,52.914]],["parent/4370",[1449,4.664]],["name/4371",[959,63.5]],["parent/4371",[1449,4.664]],["name/4372",[958,63.5]],["parent/4372",[1449,4.664]],["name/4373",[955,59.643]],["parent/4373",[1449,4.664]],["name/4374",[1392,69.86]],["parent/4374",[1449,4.664]],["name/4375",[951,59.643]],["parent/4375",[1449,4.664]],["name/4376",[962,63.5]],["parent/4376",[1449,4.664]],["name/4377",[956,63.5]],["parent/4377",[1449,4.664]],["name/4378",[957,63.5]],["parent/4378",[1449,4.664]],["name/4379",[948,59.643]],["parent/4379",[1449,4.664]],["name/4380",[952,59.643]],["parent/4380",[1449,4.664]],["name/4381",[1395,69.86]],["parent/4381",[1449,4.664]],["name/4382",[947,59.643]],["parent/4382",[1449,4.664]],["name/4383",[950,63.5]],["parent/4383",[1449,4.664]],["name/4384",[949,63.5]],["parent/4384",[1449,4.664]],["name/4385",[1005,54.696]],["parent/4385",[1449,4.664]],["name/4386",[954,59.643]],["parent/4386",[1449,4.664]],["name/4387",[945,59.643]],["parent/4387",[1449,4.664]],["name/4388",[944,59.643]],["parent/4388",[1449,4.664]],["name/4389",[946,59.643]],["parent/4389",[1449,4.664]],["name/4390",[1450,45.881]],["parent/4390",[]],["name/4391",[43,46.723]],["parent/4391",[1450,4.58]],["name/4392",[350,47.887]],["parent/4392",[1450,4.58]],["name/4393",[353,44.558]],["parent/4393",[1450,4.58]],["name/4394",[9,47.405]],["parent/4394",[1450,4.58]],["name/4395",[1451,69.86]],["parent/4395",[1450,4.58]],["name/4396",[1452,69.86]],["parent/4396",[1450,4.58]],["name/4397",[1005,54.696]],["parent/4397",[1450,4.58]],["name/4398",[350,47.887]],["parent/4398",[1450,4.58]],["name/4399",[353,44.558]],["parent/4399",[1450,4.58]],["name/4400",[9,47.405]],["parent/4400",[1450,4.58]],["name/4401",[1451,69.86]],["parent/4401",[1450,4.58]],["name/4402",[1452,69.86]],["parent/4402",[1450,4.58]],["name/4403",[1005,54.696]],["parent/4403",[1450,4.58]],["name/4404",[1450,45.881]],["parent/4404",[1450,4.58]],["name/4405",[17,53.765]],["parent/4405",[1453,6.464]],["name/4406",[43,46.723]],["parent/4406",[1453,6.464]],["name/4407",[77,57.492]],["parent/4407",[1453,6.464]],["name/4408",[1454,72.373]],["parent/4408",[1455,7.56]],["name/4409",[1456,72.373]],["parent/4409",[1455,7.56]],["name/4410",[29,55.723]],["parent/4410",[1453,6.464]],["name/4411",[96,57.492]],["parent/4411",[1453,6.464]],["name/4412",[10,26.925]],["parent/4412",[1457,8.07]],["name/4413",[1454,72.373]],["parent/4413",[1458,6.974]],["name/4414",[1459,80.846]],["parent/4414",[1458,6.974]],["name/4415",[1456,72.373]],["parent/4415",[1458,6.974]],["name/4416",[1460,80.846]],["parent/4416",[1458,6.974]],["name/4417",[1454,72.373]],["parent/4417",[1453,6.464]],["name/4418",[1456,72.373]],["parent/4418",[1453,6.464]],["name/4419",[1461,69.86]],["parent/4419",[1450,4.58]],["name/4420",[10,26.925]],["parent/4420",[1462,8.07]],["name/4421",[445,36.034]],["parent/4421",[1463,7.224]],["name/4422",[1414,69.86]],["parent/4422",[1463,7.224]],["name/4423",[165,40.652]],["parent/4423",[1463,7.224]],["name/4424",[1464,69.86]],["parent/4424",[1450,4.58]],["name/4425",[10,26.925]],["parent/4425",[1465,8.07]],["name/4426",[134,34.761]],["parent/4426",[1466,8.07]],["name/4427",[1467,69.86]],["parent/4427",[1450,4.58]],["name/4428",[10,26.925]],["parent/4428",[1468,8.07]],["name/4429",[445,36.034]],["parent/4429",[1469,6.974]],["name/4430",[1470,80.846]],["parent/4430",[1469,6.974]],["name/4431",[1471,80.846]],["parent/4431",[1469,6.974]],["name/4432",[1435,67.853]],["parent/4432",[1469,6.974]],["name/4433",[1472,69.86]],["parent/4433",[1450,4.58]],["name/4434",[10,26.925]],["parent/4434",[1473,8.07]],["name/4435",[1474,80.846]],["parent/4435",[1475,7.56]],["name/4436",[134,34.761]],["parent/4436",[1475,7.56]],["name/4437",[1476,69.86]],["parent/4437",[1450,4.58]],["name/4438",[1477,69.86]],["parent/4438",[1450,4.58]],["name/4439",[1478,72.373]],["parent/4439",[1450,4.58]],["name/4440",[1461,69.86]],["parent/4440",[1450,4.58]],["name/4441",[1464,69.86]],["parent/4441",[1450,4.58]],["name/4442",[1467,69.86]],["parent/4442",[1450,4.58]],["name/4443",[1472,69.86]],["parent/4443",[1450,4.58]],["name/4444",[1476,69.86]],["parent/4444",[1450,4.58]],["name/4445",[1477,69.86]],["parent/4445",[1450,4.58]],["name/4446",[1478,72.373]],["parent/4446",[1450,4.58]],["name/4447",[1450,45.881]],["parent/4447",[1450,4.58]],["name/4448",[43,46.723]],["parent/4448",[1450,4.58]],["name/4449",[1461,69.86]],["parent/4449",[1450,4.58]],["name/4450",[1464,69.86]],["parent/4450",[1450,4.58]],["name/4451",[1467,69.86]],["parent/4451",[1450,4.58]],["name/4452",[1472,69.86]],["parent/4452",[1450,4.58]],["name/4453",[1476,69.86]],["parent/4453",[1450,4.58]],["name/4454",[1477,69.86]],["parent/4454",[1450,4.58]],["name/4455",[1478,72.373]],["parent/4455",[1450,4.58]],["name/4456",[1450,45.881]],["parent/4456",[1450,4.58]],["name/4457",[350,47.887]],["parent/4457",[1450,4.58]],["name/4458",[353,44.558]],["parent/4458",[1450,4.58]],["name/4459",[9,47.405]],["parent/4459",[1450,4.58]],["name/4460",[1451,69.86]],["parent/4460",[1450,4.58]],["name/4461",[1452,69.86]],["parent/4461",[1450,4.58]],["name/4462",[1005,54.696]],["parent/4462",[1450,4.58]],["name/4463",[1479,80.846]],["parent/4463",[1450,4.58]],["name/4464",[1476,69.86]],["parent/4464",[1480,5.954]],["name/4465",[1477,69.86]],["parent/4465",[1480,5.954]],["name/4466",[1461,69.86]],["parent/4466",[1480,5.954]],["name/4467",[1464,69.86]],["parent/4467",[1480,5.954]],["name/4468",[1467,69.86]],["parent/4468",[1480,5.954]],["name/4469",[1472,69.86]],["parent/4469",[1480,5.954]],["name/4470",[350,47.887]],["parent/4470",[1480,5.954]],["name/4471",[353,44.558]],["parent/4471",[1480,5.954]],["name/4472",[9,47.405]],["parent/4472",[1480,5.954]],["name/4473",[1451,69.86]],["parent/4473",[1480,5.954]],["name/4474",[1452,69.86]],["parent/4474",[1480,5.954]],["name/4475",[1005,54.696]],["parent/4475",[1480,5.954]],["name/4476",[1481,35.099]],["parent/4476",[]],["name/4477",[43,46.723]],["parent/4477",[1481,3.504]],["name/4478",[1482,69.86]],["parent/4478",[1481,3.504]],["name/4479",[1483,69.86]],["parent/4479",[1481,3.504]],["name/4480",[1484,69.86]],["parent/4480",[1481,3.504]],["name/4481",[1485,69.86]],["parent/4481",[1481,3.504]],["name/4482",[1486,69.86]],["parent/4482",[1481,3.504]],["name/4483",[1487,69.86]],["parent/4483",[1481,3.504]],["name/4484",[319,52.914]],["parent/4484",[1481,3.504]],["name/4485",[320,52.914]],["parent/4485",[1481,3.504]],["name/4486",[1488,69.86]],["parent/4486",[1481,3.504]],["name/4487",[350,47.887]],["parent/4487",[1481,3.504]],["name/4488",[1489,69.86]],["parent/4488",[1481,3.504]],["name/4489",[353,44.558]],["parent/4489",[1481,3.504]],["name/4490",[943,59.643]],["parent/4490",[1481,3.504]],["name/4491",[944,59.643]],["parent/4491",[1481,3.504]],["name/4492",[945,59.643]],["parent/4492",[1481,3.504]],["name/4493",[960,59.643]],["parent/4493",[1481,3.504]],["name/4494",[9,47.405]],["parent/4494",[1481,3.504]],["name/4495",[955,59.643]],["parent/4495",[1481,3.504]],["name/4496",[992,59.643]],["parent/4496",[1481,3.504]],["name/4497",[951,59.643]],["parent/4497",[1481,3.504]],["name/4498",[948,59.643]],["parent/4498",[1481,3.504]],["name/4499",[952,59.643]],["parent/4499",[1481,3.504]],["name/4500",[1490,69.86]],["parent/4500",[1481,3.504]],["name/4501",[954,59.643]],["parent/4501",[1481,3.504]],["name/4502",[946,59.643]],["parent/4502",[1481,3.504]],["name/4503",[947,59.643]],["parent/4503",[1481,3.504]],["name/4504",[1491,69.86]],["parent/4504",[1481,3.504]],["name/4505",[1492,69.86]],["parent/4505",[1481,3.504]],["name/4506",[1493,69.86]],["parent/4506",[1481,3.504]],["name/4507",[1494,69.86]],["parent/4507",[1481,3.504]],["name/4508",[1495,69.86]],["parent/4508",[1481,3.504]],["name/4509",[1496,69.86]],["parent/4509",[1481,3.504]],["name/4510",[1497,69.86]],["parent/4510",[1481,3.504]],["name/4511",[1498,69.86]],["parent/4511",[1481,3.504]],["name/4512",[1005,54.696]],["parent/4512",[1481,3.504]],["name/4513",[1499,69.86]],["parent/4513",[1481,3.504]],["name/4514",[1485,69.86]],["parent/4514",[1481,3.504]],["name/4515",[1487,69.86]],["parent/4515",[1481,3.504]],["name/4516",[320,52.914]],["parent/4516",[1481,3.504]],["name/4517",[1488,69.86]],["parent/4517",[1481,3.504]],["name/4518",[350,47.887]],["parent/4518",[1481,3.504]],["name/4519",[1489,69.86]],["parent/4519",[1481,3.504]],["name/4520",[353,44.558]],["parent/4520",[1481,3.504]],["name/4521",[943,59.643]],["parent/4521",[1481,3.504]],["name/4522",[960,59.643]],["parent/4522",[1481,3.504]],["name/4523",[9,47.405]],["parent/4523",[1481,3.504]],["name/4524",[319,52.914]],["parent/4524",[1481,3.504]],["name/4525",[955,59.643]],["parent/4525",[1481,3.504]],["name/4526",[992,59.643]],["parent/4526",[1481,3.504]],["name/4527",[951,59.643]],["parent/4527",[1481,3.504]],["name/4528",[948,59.643]],["parent/4528",[1481,3.504]],["name/4529",[952,59.643]],["parent/4529",[1481,3.504]],["name/4530",[1490,69.86]],["parent/4530",[1481,3.504]],["name/4531",[1491,69.86]],["parent/4531",[1481,3.504]],["name/4532",[1493,69.86]],["parent/4532",[1481,3.504]],["name/4533",[1492,69.86]],["parent/4533",[1481,3.504]],["name/4534",[1496,69.86]],["parent/4534",[1481,3.504]],["name/4535",[1495,69.86]],["parent/4535",[1481,3.504]],["name/4536",[1498,69.86]],["parent/4536",[1481,3.504]],["name/4537",[947,59.643]],["parent/4537",[1481,3.504]],["name/4538",[1005,54.696]],["parent/4538",[1481,3.504]],["name/4539",[1486,69.86]],["parent/4539",[1481,3.504]],["name/4540",[1484,69.86]],["parent/4540",[1481,3.504]],["name/4541",[1497,69.86]],["parent/4541",[1481,3.504]],["name/4542",[1482,69.86]],["parent/4542",[1481,3.504]],["name/4543",[1483,69.86]],["parent/4543",[1481,3.504]],["name/4544",[1494,69.86]],["parent/4544",[1481,3.504]],["name/4545",[1499,69.86]],["parent/4545",[1481,3.504]],["name/4546",[954,59.643]],["parent/4546",[1481,3.504]],["name/4547",[945,59.643]],["parent/4547",[1481,3.504]],["name/4548",[944,59.643]],["parent/4548",[1481,3.504]],["name/4549",[946,59.643]],["parent/4549",[1481,3.504]],["name/4550",[1481,35.099]],["parent/4550",[1481,3.504]],["name/4551",[17,53.765]],["parent/4551",[1500,6.464]],["name/4552",[43,46.723]],["parent/4552",[1500,6.464]],["name/4553",[77,57.492]],["parent/4553",[1500,6.464]],["name/4554",[1501,72.373]],["parent/4554",[1502,7.56]],["name/4555",[1503,72.373]],["parent/4555",[1502,7.56]],["name/4556",[29,55.723]],["parent/4556",[1500,6.464]],["name/4557",[96,57.492]],["parent/4557",[1500,6.464]],["name/4558",[10,26.925]],["parent/4558",[1504,8.07]],["name/4559",[1501,72.373]],["parent/4559",[1505,6.974]],["name/4560",[1506,80.846]],["parent/4560",[1505,6.974]],["name/4561",[1503,72.373]],["parent/4561",[1505,6.974]],["name/4562",[1507,80.846]],["parent/4562",[1505,6.974]],["name/4563",[1501,72.373]],["parent/4563",[1500,6.464]],["name/4564",[1503,72.373]],["parent/4564",[1500,6.464]],["name/4565",[1508,69.86]],["parent/4565",[1481,3.504]],["name/4566",[1509,69.86]],["parent/4566",[1481,3.504]],["name/4567",[1510,69.86]],["parent/4567",[1481,3.504]],["name/4568",[10,26.925]],["parent/4568",[1511,8.07]],["name/4569",[445,36.034]],["parent/4569",[1512,6.339]],["name/4570",[1513,75.737]],["parent/4570",[1512,6.339]],["name/4571",[1135,69.86]],["parent/4571",[1512,6.339]],["name/4572",[1435,67.853]],["parent/4572",[1512,6.339]],["name/4573",[165,40.652]],["parent/4573",[1512,6.339]],["name/4574",[1431,69.86]],["parent/4574",[1512,6.339]],["name/4575",[1514,80.846]],["parent/4575",[1512,6.339]],["name/4576",[1515,80.846]],["parent/4576",[1512,6.339]],["name/4577",[1516,69.86]],["parent/4577",[1481,3.504]],["name/4578",[10,26.925]],["parent/4578",[1517,8.07]],["name/4579",[134,34.761]],["parent/4579",[1518,8.07]],["name/4580",[1519,69.86]],["parent/4580",[1481,3.504]],["name/4581",[10,26.925]],["parent/4581",[1520,8.07]],["name/4582",[1434,72.373]],["parent/4582",[1521,5.806]],["name/4583",[445,36.034]],["parent/4583",[1521,5.806]],["name/4584",[1513,75.737]],["parent/4584",[1521,5.806]],["name/4585",[1522,80.846]],["parent/4585",[1521,5.806]],["name/4586",[1523,80.846]],["parent/4586",[1521,5.806]],["name/4587",[1435,67.853]],["parent/4587",[1521,5.806]],["name/4588",[165,40.652]],["parent/4588",[1521,5.806]],["name/4589",[1431,69.86]],["parent/4589",[1521,5.806]],["name/4590",[1432,72.373]],["parent/4590",[1521,5.806]],["name/4591",[1433,72.373]],["parent/4591",[1521,5.806]],["name/4592",[1524,80.846]],["parent/4592",[1521,5.806]],["name/4593",[1525,80.846]],["parent/4593",[1521,5.806]],["name/4594",[1135,69.86]],["parent/4594",[1521,5.806]],["name/4595",[1136,72.373]],["parent/4595",[1521,5.806]],["name/4596",[1526,69.86]],["parent/4596",[1481,3.504]],["name/4597",[10,26.925]],["parent/4597",[1527,8.07]],["name/4598",[134,34.761]],["parent/4598",[1528,8.07]],["name/4599",[1529,69.86]],["parent/4599",[1481,3.504]],["name/4600",[1530,69.86]],["parent/4600",[1481,3.504]],["name/4601",[1531,72.373]],["parent/4601",[1481,3.504]],["name/4602",[1508,69.86]],["parent/4602",[1481,3.504]],["name/4603",[1509,69.86]],["parent/4603",[1481,3.504]],["name/4604",[1510,69.86]],["parent/4604",[1481,3.504]],["name/4605",[1516,69.86]],["parent/4605",[1481,3.504]],["name/4606",[1519,69.86]],["parent/4606",[1481,3.504]],["name/4607",[1526,69.86]],["parent/4607",[1481,3.504]],["name/4608",[1529,69.86]],["parent/4608",[1481,3.504]],["name/4609",[1530,69.86]],["parent/4609",[1481,3.504]],["name/4610",[1531,72.373]],["parent/4610",[1481,3.504]],["name/4611",[1481,35.099]],["parent/4611",[1481,3.504]],["name/4612",[43,46.723]],["parent/4612",[1481,3.504]],["name/4613",[1508,69.86]],["parent/4613",[1481,3.504]],["name/4614",[1509,69.86]],["parent/4614",[1481,3.504]],["name/4615",[1510,69.86]],["parent/4615",[1481,3.504]],["name/4616",[1516,69.86]],["parent/4616",[1481,3.504]],["name/4617",[1519,69.86]],["parent/4617",[1481,3.504]],["name/4618",[1526,69.86]],["parent/4618",[1481,3.504]],["name/4619",[1529,69.86]],["parent/4619",[1481,3.504]],["name/4620",[1530,69.86]],["parent/4620",[1481,3.504]],["name/4621",[1531,72.373]],["parent/4621",[1481,3.504]],["name/4622",[1481,35.099]],["parent/4622",[1481,3.504]],["name/4623",[1485,69.86]],["parent/4623",[1481,3.504]],["name/4624",[1487,69.86]],["parent/4624",[1481,3.504]],["name/4625",[320,52.914]],["parent/4625",[1481,3.504]],["name/4626",[1488,69.86]],["parent/4626",[1481,3.504]],["name/4627",[350,47.887]],["parent/4627",[1481,3.504]],["name/4628",[1489,69.86]],["parent/4628",[1481,3.504]],["name/4629",[353,44.558]],["parent/4629",[1481,3.504]],["name/4630",[943,59.643]],["parent/4630",[1481,3.504]],["name/4631",[960,59.643]],["parent/4631",[1481,3.504]],["name/4632",[9,47.405]],["parent/4632",[1481,3.504]],["name/4633",[319,52.914]],["parent/4633",[1481,3.504]],["name/4634",[955,59.643]],["parent/4634",[1481,3.504]],["name/4635",[992,59.643]],["parent/4635",[1481,3.504]],["name/4636",[951,59.643]],["parent/4636",[1481,3.504]],["name/4637",[948,59.643]],["parent/4637",[1481,3.504]],["name/4638",[952,59.643]],["parent/4638",[1481,3.504]],["name/4639",[1490,69.86]],["parent/4639",[1481,3.504]],["name/4640",[1491,69.86]],["parent/4640",[1481,3.504]],["name/4641",[1493,69.86]],["parent/4641",[1481,3.504]],["name/4642",[1492,69.86]],["parent/4642",[1481,3.504]],["name/4643",[1496,69.86]],["parent/4643",[1481,3.504]],["name/4644",[1495,69.86]],["parent/4644",[1481,3.504]],["name/4645",[1498,69.86]],["parent/4645",[1481,3.504]],["name/4646",[947,59.643]],["parent/4646",[1481,3.504]],["name/4647",[1005,54.696]],["parent/4647",[1481,3.504]],["name/4648",[1486,69.86]],["parent/4648",[1481,3.504]],["name/4649",[1484,69.86]],["parent/4649",[1481,3.504]],["name/4650",[1497,69.86]],["parent/4650",[1481,3.504]],["name/4651",[1482,69.86]],["parent/4651",[1481,3.504]],["name/4652",[1483,69.86]],["parent/4652",[1481,3.504]],["name/4653",[1494,69.86]],["parent/4653",[1481,3.504]],["name/4654",[1499,69.86]],["parent/4654",[1481,3.504]],["name/4655",[954,59.643]],["parent/4655",[1481,3.504]],["name/4656",[945,59.643]],["parent/4656",[1481,3.504]],["name/4657",[944,59.643]],["parent/4657",[1481,3.504]],["name/4658",[946,59.643]],["parent/4658",[1481,3.504]],["name/4659",[1532,80.846]],["parent/4659",[1481,3.504]],["name/4660",[1529,69.86]],["parent/4660",[1533,4.686]],["name/4661",[1530,69.86]],["parent/4661",[1533,4.686]],["name/4662",[1508,69.86]],["parent/4662",[1533,4.686]],["name/4663",[1510,69.86]],["parent/4663",[1533,4.686]],["name/4664",[1516,69.86]],["parent/4664",[1533,4.686]],["name/4665",[1509,69.86]],["parent/4665",[1533,4.686]],["name/4666",[1519,69.86]],["parent/4666",[1533,4.686]],["name/4667",[1526,69.86]],["parent/4667",[1533,4.686]],["name/4668",[1485,69.86]],["parent/4668",[1533,4.686]],["name/4669",[1487,69.86]],["parent/4669",[1533,4.686]],["name/4670",[320,52.914]],["parent/4670",[1533,4.686]],["name/4671",[1488,69.86]],["parent/4671",[1533,4.686]],["name/4672",[350,47.887]],["parent/4672",[1533,4.686]],["name/4673",[1489,69.86]],["parent/4673",[1533,4.686]],["name/4674",[353,44.558]],["parent/4674",[1533,4.686]],["name/4675",[943,59.643]],["parent/4675",[1533,4.686]],["name/4676",[960,59.643]],["parent/4676",[1533,4.686]],["name/4677",[9,47.405]],["parent/4677",[1533,4.686]],["name/4678",[319,52.914]],["parent/4678",[1533,4.686]],["name/4679",[955,59.643]],["parent/4679",[1533,4.686]],["name/4680",[992,59.643]],["parent/4680",[1533,4.686]],["name/4681",[951,59.643]],["parent/4681",[1533,4.686]],["name/4682",[948,59.643]],["parent/4682",[1533,4.686]],["name/4683",[952,59.643]],["parent/4683",[1533,4.686]],["name/4684",[1490,69.86]],["parent/4684",[1533,4.686]],["name/4685",[1491,69.86]],["parent/4685",[1533,4.686]],["name/4686",[1493,69.86]],["parent/4686",[1533,4.686]],["name/4687",[1492,69.86]],["parent/4687",[1533,4.686]],["name/4688",[1496,69.86]],["parent/4688",[1533,4.686]],["name/4689",[1495,69.86]],["parent/4689",[1533,4.686]],["name/4690",[1498,69.86]],["parent/4690",[1533,4.686]],["name/4691",[947,59.643]],["parent/4691",[1533,4.686]],["name/4692",[1005,54.696]],["parent/4692",[1533,4.686]],["name/4693",[1486,69.86]],["parent/4693",[1533,4.686]],["name/4694",[1484,69.86]],["parent/4694",[1533,4.686]],["name/4695",[1497,69.86]],["parent/4695",[1533,4.686]],["name/4696",[1482,69.86]],["parent/4696",[1533,4.686]],["name/4697",[1483,69.86]],["parent/4697",[1533,4.686]],["name/4698",[1494,69.86]],["parent/4698",[1533,4.686]],["name/4699",[1499,69.86]],["parent/4699",[1533,4.686]],["name/4700",[954,59.643]],["parent/4700",[1533,4.686]],["name/4701",[945,59.643]],["parent/4701",[1533,4.686]],["name/4702",[944,59.643]],["parent/4702",[1533,4.686]],["name/4703",[946,59.643]],["parent/4703",[1533,4.686]],["name/4704",[1534,48.657]],["parent/4704",[]],["name/4705",[43,46.723]],["parent/4705",[1534,4.857]],["name/4706",[350,47.887]],["parent/4706",[1534,4.857]],["name/4707",[353,44.558]],["parent/4707",[1534,4.857]],["name/4708",[9,47.405]],["parent/4708",[1534,4.857]],["name/4709",[1535,69.86]],["parent/4709",[1534,4.857]],["name/4710",[350,47.887]],["parent/4710",[1534,4.857]],["name/4711",[353,44.558]],["parent/4711",[1534,4.857]],["name/4712",[9,47.405]],["parent/4712",[1534,4.857]],["name/4713",[1535,69.86]],["parent/4713",[1534,4.857]],["name/4714",[1534,48.657]],["parent/4714",[1534,4.857]],["name/4715",[17,53.765]],["parent/4715",[1536,6.607]],["name/4716",[43,46.723]],["parent/4716",[1536,6.607]],["name/4717",[77,57.492]],["parent/4717",[1536,6.607]],["name/4718",[1537,72.373]],["parent/4718",[1538,8.07]],["name/4719",[29,55.723]],["parent/4719",[1536,6.607]],["name/4720",[96,57.492]],["parent/4720",[1536,6.607]],["name/4721",[10,26.925]],["parent/4721",[1539,8.07]],["name/4722",[1537,72.373]],["parent/4722",[1540,7.56]],["name/4723",[1541,80.846]],["parent/4723",[1540,7.56]],["name/4724",[1537,72.373]],["parent/4724",[1536,6.607]],["name/4725",[1542,69.86]],["parent/4725",[1534,4.857]],["name/4726",[10,26.925]],["parent/4726",[1543,8.07]],["name/4727",[1544,80.846]],["parent/4727",[1545,7.224]],["name/4728",[445,36.034]],["parent/4728",[1545,7.224]],["name/4729",[165,40.652]],["parent/4729",[1545,7.224]],["name/4730",[1546,69.86]],["parent/4730",[1534,4.857]],["name/4731",[10,26.925]],["parent/4731",[1547,8.07]],["name/4732",[134,34.761]],["parent/4732",[1548,8.07]],["name/4733",[1549,69.86]],["parent/4733",[1534,4.857]],["name/4734",[1550,69.86]],["parent/4734",[1534,4.857]],["name/4735",[1551,72.373]],["parent/4735",[1534,4.857]],["name/4736",[1542,69.86]],["parent/4736",[1534,4.857]],["name/4737",[1546,69.86]],["parent/4737",[1534,4.857]],["name/4738",[1549,69.86]],["parent/4738",[1534,4.857]],["name/4739",[1550,69.86]],["parent/4739",[1534,4.857]],["name/4740",[1551,72.373]],["parent/4740",[1534,4.857]],["name/4741",[1534,48.657]],["parent/4741",[1534,4.857]],["name/4742",[43,46.723]],["parent/4742",[1534,4.857]],["name/4743",[1542,69.86]],["parent/4743",[1534,4.857]],["name/4744",[1546,69.86]],["parent/4744",[1534,4.857]],["name/4745",[1549,69.86]],["parent/4745",[1534,4.857]],["name/4746",[1550,69.86]],["parent/4746",[1534,4.857]],["name/4747",[1551,72.373]],["parent/4747",[1534,4.857]],["name/4748",[1534,48.657]],["parent/4748",[1534,4.857]],["name/4749",[350,47.887]],["parent/4749",[1534,4.857]],["name/4750",[353,44.558]],["parent/4750",[1534,4.857]],["name/4751",[9,47.405]],["parent/4751",[1534,4.857]],["name/4752",[1535,69.86]],["parent/4752",[1534,4.857]],["name/4753",[1552,80.846]],["parent/4753",[1534,4.857]],["name/4754",[1549,69.86]],["parent/4754",[1553,6.339]],["name/4755",[1550,69.86]],["parent/4755",[1553,6.339]],["name/4756",[1542,69.86]],["parent/4756",[1553,6.339]],["name/4757",[1546,69.86]],["parent/4757",[1553,6.339]],["name/4758",[350,47.887]],["parent/4758",[1553,6.339]],["name/4759",[353,44.558]],["parent/4759",[1553,6.339]],["name/4760",[9,47.405]],["parent/4760",[1553,6.339]],["name/4761",[1535,69.86]],["parent/4761",[1553,6.339]],["name/4762",[1554,44.21]],["parent/4762",[]],["name/4763",[43,46.723]],["parent/4763",[1554,4.413]],["name/4764",[350,47.887]],["parent/4764",[1554,4.413]],["name/4765",[1555,67.853]],["parent/4765",[1554,4.413]],["name/4766",[353,44.558]],["parent/4766",[1554,4.413]],["name/4767",[9,47.405]],["parent/4767",[1554,4.413]],["name/4768",[992,59.643]],["parent/4768",[1554,4.413]],["name/4769",[1005,54.696]],["parent/4769",[1554,4.413]],["name/4770",[1556,69.86]],["parent/4770",[1554,4.413]],["name/4771",[1557,69.86]],["parent/4771",[1554,4.413]],["name/4772",[1558,69.86]],["parent/4772",[1554,4.413]],["name/4773",[350,47.887]],["parent/4773",[1554,4.413]],["name/4774",[1555,67.853]],["parent/4774",[1554,4.413]],["name/4775",[353,44.558]],["parent/4775",[1554,4.413]],["name/4776",[9,47.405]],["parent/4776",[1554,4.413]],["name/4777",[992,59.643]],["parent/4777",[1554,4.413]],["name/4778",[1005,54.696]],["parent/4778",[1554,4.413]],["name/4779",[1556,69.86]],["parent/4779",[1554,4.413]],["name/4780",[1557,69.86]],["parent/4780",[1554,4.413]],["name/4781",[1558,69.86]],["parent/4781",[1554,4.413]],["name/4782",[1554,44.21]],["parent/4782",[1554,4.413]],["name/4783",[17,53.765]],["parent/4783",[1559,6.464]],["name/4784",[43,46.723]],["parent/4784",[1559,6.464]],["name/4785",[77,57.492]],["parent/4785",[1559,6.464]],["name/4786",[1560,72.373]],["parent/4786",[1561,7.56]],["name/4787",[1562,72.373]],["parent/4787",[1561,7.56]],["name/4788",[29,55.723]],["parent/4788",[1559,6.464]],["name/4789",[96,57.492]],["parent/4789",[1559,6.464]],["name/4790",[10,26.925]],["parent/4790",[1563,8.07]],["name/4791",[1560,72.373]],["parent/4791",[1564,6.974]],["name/4792",[1565,80.846]],["parent/4792",[1564,6.974]],["name/4793",[1562,72.373]],["parent/4793",[1564,6.974]],["name/4794",[1566,80.846]],["parent/4794",[1564,6.974]],["name/4795",[1560,72.373]],["parent/4795",[1559,6.464]],["name/4796",[1562,72.373]],["parent/4796",[1559,6.464]],["name/4797",[1567,69.86]],["parent/4797",[1554,4.413]],["name/4798",[10,26.925]],["parent/4798",[1568,8.07]],["name/4799",[1414,69.86]],["parent/4799",[1569,7.224]],["name/4800",[445,36.034]],["parent/4800",[1569,7.224]],["name/4801",[165,40.652]],["parent/4801",[1569,7.224]],["name/4802",[1570,69.86]],["parent/4802",[1554,4.413]],["name/4803",[10,26.925]],["parent/4803",[1571,8.07]],["name/4804",[134,34.761]],["parent/4804",[1572,8.07]],["name/4805",[1573,69.86]],["parent/4805",[1554,4.413]],["name/4806",[10,26.925]],["parent/4806",[1574,8.07]],["name/4807",[1575,80.846]],["parent/4807",[1576,6.128]],["name/4808",[1555,67.853]],["parent/4808",[1576,6.128]],["name/4809",[1577,80.846]],["parent/4809",[1576,6.128]],["name/4810",[1578,80.846]],["parent/4810",[1576,6.128]],["name/4811",[1579,80.846]],["parent/4811",[1576,6.128]],["name/4812",[1580,80.846]],["parent/4812",[1576,6.128]],["name/4813",[445,36.034]],["parent/4813",[1576,6.128]],["name/4814",[165,40.652]],["parent/4814",[1576,6.128]],["name/4815",[1135,69.86]],["parent/4815",[1576,6.128]],["name/4816",[1136,72.373]],["parent/4816",[1576,6.128]],["name/4817",[1581,69.86]],["parent/4817",[1554,4.413]],["name/4818",[10,26.925]],["parent/4818",[1582,8.07]],["name/4819",[134,34.761]],["parent/4819",[1583,8.07]],["name/4820",[1584,69.86]],["parent/4820",[1554,4.413]],["name/4821",[1585,69.86]],["parent/4821",[1554,4.413]],["name/4822",[1586,72.373]],["parent/4822",[1554,4.413]],["name/4823",[1567,69.86]],["parent/4823",[1554,4.413]],["name/4824",[1570,69.86]],["parent/4824",[1554,4.413]],["name/4825",[1573,69.86]],["parent/4825",[1554,4.413]],["name/4826",[1581,69.86]],["parent/4826",[1554,4.413]],["name/4827",[1584,69.86]],["parent/4827",[1554,4.413]],["name/4828",[1585,69.86]],["parent/4828",[1554,4.413]],["name/4829",[1586,72.373]],["parent/4829",[1554,4.413]],["name/4830",[1554,44.21]],["parent/4830",[1554,4.413]],["name/4831",[43,46.723]],["parent/4831",[1554,4.413]],["name/4832",[1567,69.86]],["parent/4832",[1554,4.413]],["name/4833",[1570,69.86]],["parent/4833",[1554,4.413]],["name/4834",[1573,69.86]],["parent/4834",[1554,4.413]],["name/4835",[1581,69.86]],["parent/4835",[1554,4.413]],["name/4836",[1584,69.86]],["parent/4836",[1554,4.413]],["name/4837",[1585,69.86]],["parent/4837",[1554,4.413]],["name/4838",[1586,72.373]],["parent/4838",[1554,4.413]],["name/4839",[1554,44.21]],["parent/4839",[1554,4.413]],["name/4840",[350,47.887]],["parent/4840",[1554,4.413]],["name/4841",[1555,67.853]],["parent/4841",[1554,4.413]],["name/4842",[353,44.558]],["parent/4842",[1554,4.413]],["name/4843",[9,47.405]],["parent/4843",[1554,4.413]],["name/4844",[992,59.643]],["parent/4844",[1554,4.413]],["name/4845",[1005,54.696]],["parent/4845",[1554,4.413]],["name/4846",[1556,69.86]],["parent/4846",[1554,4.413]],["name/4847",[1557,69.86]],["parent/4847",[1554,4.413]],["name/4848",[1558,69.86]],["parent/4848",[1554,4.413]],["name/4849",[1587,80.846]],["parent/4849",[1554,4.413]],["name/4850",[1584,69.86]],["parent/4850",[1588,5.739]],["name/4851",[1585,69.86]],["parent/4851",[1588,5.739]],["name/4852",[1567,69.86]],["parent/4852",[1588,5.739]],["name/4853",[1570,69.86]],["parent/4853",[1588,5.739]],["name/4854",[1573,69.86]],["parent/4854",[1588,5.739]],["name/4855",[1581,69.86]],["parent/4855",[1588,5.739]],["name/4856",[350,47.887]],["parent/4856",[1588,5.739]],["name/4857",[1555,67.853]],["parent/4857",[1588,5.739]],["name/4858",[353,44.558]],["parent/4858",[1588,5.739]],["name/4859",[9,47.405]],["parent/4859",[1588,5.739]],["name/4860",[992,59.643]],["parent/4860",[1588,5.739]],["name/4861",[1005,54.696]],["parent/4861",[1588,5.739]],["name/4862",[1556,69.86]],["parent/4862",[1588,5.739]],["name/4863",[1557,69.86]],["parent/4863",[1588,5.739]],["name/4864",[1558,69.86]],["parent/4864",[1588,5.739]]],"invertedIndex":[["__type",{"_index":10,"name":{"9":{},"12":{},"14":{},"28":{},"39":{},"112":{},"179":{},"181":{},"184":{},"194":{},"206":{},"209":{},"211":{},"214":{},"222":{},"224":{},"227":{},"238":{},"240":{},"243":{},"245":{},"248":{},"256":{},"258":{},"261":{},"272":{},"274":{},"277":{},"290":{},"292":{},"295":{},"307":{},"316":{},"319":{},"321":{},"324":{},"335":{},"338":{},"341":{},"343":{},"346":{},"348":{},"351":{},"355":{},"361":{},"364":{},"366":{},"369":{},"377":{},"379":{},"382":{},"651":{},"766":{},"770":{},"774":{},"778":{},"782":{},"786":{},"790":{},"794":{},"798":{},"802":{},"806":{},"809":{},"813":{},"816":{},"820":{},"823":{},"828":{},"833":{},"836":{},"840":{},"844":{},"847":{},"851":{},"855":{},"859":{},"863":{},"867":{},"870":{},"874":{},"878":{},"883":{},"886":{},"890":{},"896":{},"899":{},"903":{},"908":{},"912":{},"917":{},"921":{},"926":{},"930":{},"935":{},"939":{},"944":{},"948":{},"953":{},"959":{},"962":{},"966":{},"970":{},"975":{},"979":{},"984":{},"988":{},"994":{},"998":{},"1002":{},"1006":{},"1010":{},"1015":{},"1020":{},"1025":{},"1030":{},"1034":{},"1039":{},"1044":{},"1047":{},"1052":{},"1056":{},"1061":{},"1067":{},"1072":{},"1076":{},"1550":{},"1665":{},"1669":{},"1673":{},"1677":{},"1681":{},"1685":{},"1689":{},"1693":{},"1697":{},"1701":{},"1705":{},"1708":{},"1712":{},"1715":{},"1719":{},"1722":{},"1727":{},"1733":{},"1736":{},"1740":{},"1744":{},"1747":{},"1751":{},"1755":{},"1759":{},"1763":{},"1767":{},"1770":{},"1774":{},"1778":{},"1783":{},"1786":{},"1790":{},"1796":{},"1799":{},"1803":{},"1808":{},"1812":{},"1817":{},"1821":{},"1826":{},"1830":{},"1835":{},"1839":{},"1844":{},"1848":{},"1853":{},"1859":{},"1862":{},"1866":{},"1870":{},"1875":{},"1879":{},"1884":{},"1888":{},"1894":{},"1898":{},"1902":{},"1906":{},"1910":{},"1915":{},"1920":{},"1925":{},"1930":{},"1934":{},"1939":{},"1944":{},"1947":{},"1952":{},"1956":{},"1961":{},"1967":{},"1972":{},"1976":{},"2330":{},"2335":{},"2338":{},"2393":{},"2401":{},"2406":{},"2409":{},"2413":{},"2476":{},"2490":{},"2494":{},"2498":{},"2501":{},"2505":{},"2508":{},"2512":{},"2516":{},"2791":{},"2880":{},"2883":{},"2887":{},"2890":{},"2894":{},"2897":{},"2901":{},"2904":{},"2909":{},"2912":{},"2917":{},"2920":{},"2925":{},"2928":{},"2934":{},"2937":{},"2941":{},"2944":{},"2949":{},"2952":{},"2956":{},"2965":{},"2969":{},"2972":{},"2977":{},"2980":{},"2985":{},"2988":{},"2994":{},"2997":{},"3001":{},"3006":{},"3009":{},"3012":{},"3017":{},"3020":{},"3024":{},"3030":{},"3033":{},"3036":{},"3039":{},"3042":{},"3045":{},"3048":{},"3051":{},"3054":{},"3059":{},"3062":{},"3065":{},"3068":{},"3072":{},"3075":{},"3080":{},"3083":{},"3087":{},"3090":{},"3095":{},"3098":{},"3506":{},"3514":{},"3520":{},"3524":{},"3533":{},"3593":{},"3598":{},"3601":{},"3888":{},"3914":{},"3918":{},"3921":{},"3925":{},"3929":{},"3933":{},"3937":{},"3941":{},"3945":{},"3948":{},"3952":{},"3956":{},"3960":{},"3964":{},"3969":{},"3973":{},"4214":{},"4232":{},"4238":{},"4241":{},"4246":{},"4250":{},"4260":{},"4264":{},"4275":{},"4412":{},"4420":{},"4425":{},"4428":{},"4434":{},"4558":{},"4568":{},"4578":{},"4581":{},"4597":{},"4721":{},"4726":{},"4731":{},"4790":{},"4798":{},"4803":{},"4806":{},"4818":{}},"parent":{}}],["addcoupontobasket",{"_index":364,"name":{"612":{},"652":{},"726":{},"1511":{},"1551":{},"1625":{}},"parent":{}}],["addcoupontobasketpathparameters",{"_index":447,"name":{"769":{},"1086":{},"1167":{},"1293":{},"1668":{},"1986":{},"2067":{},"2194":{}},"parent":{}}],["addcoupontobasketqueryparameters",{"_index":443,"name":{"765":{},"1085":{},"1166":{},"1292":{},"1664":{},"1985":{},"2066":{},"2193":{}},"parent":{}}],["addcoupontobasketrequired",{"_index":404,"name":{"653":{},"1552":{}},"parent":{}}],["addgiftcertificateitemtobasket",{"_index":366,"name":{"613":{},"654":{},"727":{},"1512":{},"1553":{},"1626":{}},"parent":{}}],["addgiftcertificateitemtobasketpathparameters",{"_index":454,"name":{"777":{},"1088":{},"1169":{},"1295":{},"1676":{},"1988":{},"2069":{},"2196":{}},"parent":{}}],["addgiftcertificateitemtobasketqueryparameters",{"_index":451,"name":{"773":{},"1087":{},"1168":{},"1294":{},"1672":{},"1987":{},"2068":{},"2195":{}},"parent":{}}],["addgiftcertificateitemtobasketrequired",{"_index":405,"name":{"655":{},"1554":{}},"parent":{}}],["additemtobasket",{"_index":367,"name":{"614":{},"656":{},"728":{},"1513":{},"1555":{},"1627":{}},"parent":{}}],["additemtobasketpathparameters",{"_index":460,"name":{"785":{},"1090":{},"1171":{},"1297":{},"1684":{},"1990":{},"2071":{},"2198":{}},"parent":{}}],["additemtobasketqueryparameters",{"_index":457,"name":{"781":{},"1089":{},"1170":{},"1296":{},"1680":{},"1989":{},"2070":{},"2197":{}},"parent":{}}],["additemtobasketrequired",{"_index":406,"name":{"657":{},"1556":{}},"parent":{}}],["addpaymentinstrumenttobasket",{"_index":368,"name":{"615":{},"658":{},"729":{},"1514":{},"1557":{},"1628":{}},"parent":{}}],["addpaymentinstrumenttobasketpathparameters",{"_index":466,"name":{"793":{},"1092":{},"1173":{},"1299":{},"1692":{},"1992":{},"2073":{},"2200":{}},"parent":{}}],["addpaymentinstrumenttobasketqueryparameters",{"_index":463,"name":{"789":{},"1091":{},"1172":{},"1298":{},"1688":{},"1991":{},"2072":{},"2199":{}},"parent":{}}],["addpaymentinstrumenttobasketrequired",{"_index":407,"name":{"659":{},"1558":{}},"parent":{}}],["addpriceadjustmenttobasket",{"_index":369,"name":{"616":{},"660":{},"730":{},"1515":{},"1559":{},"1629":{}},"parent":{}}],["addpriceadjustmenttobasketpathparameters",{"_index":472,"name":{"801":{},"1094":{},"1175":{},"1301":{},"1700":{},"1994":{},"2075":{},"2202":{}},"parent":{}}],["addpriceadjustmenttobasketqueryparameters",{"_index":469,"name":{"797":{},"1093":{},"1174":{},"1300":{},"1696":{},"1993":{},"2074":{},"2201":{}},"parent":{}}],["addpriceadjustmenttobasketrequired",{"_index":408,"name":{"661":{},"1560":{}},"parent":{}}],["addpricebookstobasket",{"_index":370,"name":{"617":{},"662":{},"731":{},"1516":{},"1561":{},"1630":{}},"parent":{}}],["addpricebookstobasketpathparameters",{"_index":478,"name":{"808":{},"1096":{},"1177":{},"1303":{},"1707":{},"1996":{},"2077":{},"2204":{}},"parent":{}}],["addpricebookstobasketqueryparameters",{"_index":475,"name":{"805":{},"1095":{},"1176":{},"1302":{},"1704":{},"1995":{},"2076":{},"2203":{}},"parent":{}}],["addpricebookstobasketrequired",{"_index":409,"name":{"663":{},"1562":{}},"parent":{}}],["addqueryparams",{"_index":47,"name":{"53":{}},"parent":{}}],["addressname",{"_index":1121,"name":{"2945":{},"3055":{},"3076":{}},"parent":{}}],["addtaxesforbasket",{"_index":371,"name":{"618":{},"664":{},"732":{},"1517":{},"1563":{},"1631":{}},"parent":{}}],["addtaxesforbasketitem",{"_index":372,"name":{"619":{},"666":{},"733":{},"1518":{},"1565":{},"1632":{}},"parent":{}}],["addtaxesforbasketitempathparameters",{"_index":490,"name":{"822":{},"1100":{},"1181":{},"1307":{},"1721":{},"2000":{},"2081":{},"2208":{}},"parent":{}}],["addtaxesforbasketitemqueryparameters",{"_index":487,"name":{"819":{},"1099":{},"1180":{},"1306":{},"1718":{},"1999":{},"2080":{},"2207":{}},"parent":{}}],["addtaxesforbasketitemrequired",{"_index":411,"name":{"667":{},"1566":{}},"parent":{}}],["addtaxesforbasketpathparameters",{"_index":484,"name":{"815":{},"1098":{},"1179":{},"1305":{},"1714":{},"1998":{},"2079":{},"2206":{}},"parent":{}}],["addtaxesforbasketqueryparameters",{"_index":481,"name":{"812":{},"1097":{},"1178":{},"1304":{},"1711":{},"1997":{},"2078":{},"2205":{}},"parent":{}}],["addtaxesforbasketrequired",{"_index":410,"name":{"665":{},"1564":{}},"parent":{}}],["agent_id",{"_index":222,"name":{"296":{}},"parent":{}}],["allimages",{"_index":1432,"name":{"4253":{},"4268":{},"4590":{}},"parent":{}}],["allvariationproperties",{"_index":1524,"name":{"4592":{}},"parent":{}}],["apiname",{"_index":313,"name":{"509":{}},"parent":{}}],["apipaths",{"_index":77,"name":{"92":{},"611":{},"1510":{},"2326":{},"2388":{},"2469":{},"2759":{},"3501":{},"3589":{},"3877":{},"4207":{},"4407":{},"4553":{},"4717":{},"4785":{}},"parent":{}}],["apiversion",{"_index":315,"name":{"510":{}},"parent":{}}],["aspectattributes",{"_index":1271,"name":{"3515":{},"3528":{}},"parent":{}}],["aspecttypeid",{"_index":1282,"name":{"3527":{}},"parent":{}}],["authenticatecustomer",{"_index":78,"name":{"93":{},"113":{},"147":{}},"parent":{}}],["authenticatecustomerbodytype",{"_index":136,"name":{"183":{},"404":{},"3649":{},"3706":{}},"parent":{}}],["authenticatecustomerpathparameters",{"_index":132,"name":{"180":{},"403":{},"3648":{},"3708":{}},"parent":{}}],["authenticatecustomerqueryparameters",{"_index":130,"name":{"178":{},"402":{},"3647":{},"3707":{}},"parent":{}}],["authenticatecustomerrequired",{"_index":99,"name":{"114":{}},"parent":{}}],["authenticationproviderid",{"_index":1168,"name":{"3003":{}},"parent":{}}],["authorize",{"_index":300,"name":{"464":{},"479":{}},"parent":{}}],["authorizecustomer",{"_index":80,"name":{"94":{},"115":{},"148":{}},"parent":{}}],["authorizecustomerpathparameters",{"_index":152,"name":{"205":{},"406":{},"3651":{},"3712":{}},"parent":{}}],["authorizecustomerqueryparameters",{"_index":147,"name":{"193":{},"405":{},"3650":{},"3711":{}},"parent":{}}],["authorizecustomerrequired",{"_index":100,"name":{"116":{}},"parent":{}}],["authorizecustomerresponsetypeenum",{"_index":116,"name":{"164":{},"388":{},"3633":{},"3709":{}},"parent":{}}],["authorizecustomerscopeenum",{"_index":117,"name":{"165":{},"389":{},"3634":{},"3710":{}},"parent":{}}],["authorizeidp",{"_index":301,"name":{"465":{},"480":{}},"parent":{}}],["authorizepasswordless",{"_index":306,"name":{"470":{},"485":{}},"parent":{}}],["authorizepasswordlesscustomer",{"_index":81,"name":{"95":{},"117":{},"149":{}},"parent":{}}],["authorizepasswordlesscustomerbodytype",{"_index":160,"name":{"213":{},"409":{},"3654":{},"3714":{}},"parent":{}}],["authorizepasswordlesscustomermodeenum",{"_index":118,"name":{"166":{},"390":{},"3635":{},"3713":{}},"parent":{}}],["authorizepasswordlesscustomerpathparameters",{"_index":157,"name":{"210":{},"408":{},"3653":{},"3716":{}},"parent":{}}],["authorizepasswordlesscustomerqueryparameters",{"_index":155,"name":{"208":{},"407":{},"3652":{},"3715":{}},"parent":{}}],["authorizepasswordlesscustomerrequired",{"_index":101,"name":{"118":{}},"parent":{}}],["baseuri",{"_index":19,"name":{"17":{},"25":{}},"parent":{}}],["baseuriparameters",{"_index":1,"name":{"1":{},"495":{}},"parent":{}}],["basket",{"_index":345,"name":{"544":{},"563":{},"1244":{},"1368":{},"1442":{},"1461":{},"2144":{},"2269":{},"2593":{},"2661":{},"3231":{},"3387":{},"3801":{},"3824":{},"4021":{},"4090":{}},"parent":{}}],["basketchanneltypeenum",{"_index":346,"name":{"545":{},"564":{},"1245":{},"1369":{},"1443":{},"1462":{},"2145":{},"2270":{},"2594":{},"2662":{},"3232":{},"3388":{},"3802":{},"3825":{},"4022":{},"4091":{}},"parent":{}}],["basketid",{"_index":450,"name":{"772":{},"780":{},"788":{},"796":{},"804":{},"811":{},"818":{},"826":{},"842":{},"849":{},"857":{},"865":{},"872":{},"881":{},"888":{},"905":{},"914":{},"924":{},"933":{},"942":{},"951":{},"968":{},"977":{},"986":{},"996":{},"1004":{},"1012":{},"1023":{},"1032":{},"1042":{},"1050":{},"1059":{},"1070":{},"1079":{},"1671":{},"1679":{},"1687":{},"1695":{},"1703":{},"1710":{},"1717":{},"1725":{},"1742":{},"1749":{},"1757":{},"1765":{},"1772":{},"1781":{},"1788":{},"1805":{},"1814":{},"1824":{},"1833":{},"1842":{},"1851":{},"1868":{},"1877":{},"1886":{},"1896":{},"1904":{},"1912":{},"1923":{},"1932":{},"1942":{},"1950":{},"1959":{},"1970":{},"1979":{}},"parent":{}}],["basketpaymentinstrumentrequest",{"_index":349,"name":{"548":{},"566":{},"1247":{},"1371":{},"1446":{},"1464":{},"2147":{},"2272":{}},"parent":{}}],["basketsresult",{"_index":942,"name":{"2596":{},"2664":{},"3234":{},"3390":{}},"parent":{}}],["baskettaxationenum",{"_index":347,"name":{"546":{},"565":{},"1246":{},"1370":{},"1444":{},"1463":{},"2146":{},"2271":{},"2595":{},"2663":{},"3233":{},"3389":{},"3803":{},"3826":{},"4023":{},"4092":{}},"parent":{}}],["bonusdiscountlineitem",{"_index":326,"name":{"525":{},"567":{},"1248":{},"1372":{},"1422":{},"1465":{},"2148":{},"2273":{},"2573":{},"2665":{},"3235":{},"3391":{},"3781":{},"3827":{},"4024":{},"4093":{}},"parent":{}}],["brandsuggestions",{"_index":1485,"name":{"4481":{},"4514":{},"4623":{},"4668":{}},"parent":{}}],["browserrequestinit",{"_index":32,"name":{"36":{}},"parent":{}}],["bundledproduct",{"_index":963,"name":{"2617":{},"2666":{},"3236":{},"3392":{},"4164":{},"4173":{},"4313":{},"4359":{}},"parent":{}}],["callback_uri",{"_index":166,"name":{"220":{},"268":{}},"parent":{}}],["callcustomendpoint",{"_index":310,"name":{"503":{},"515":{}},"parent":{}}],["campaignid",{"_index":1474,"name":{"4435":{}},"parent":{}}],["category",{"_index":1393,"name":{"4166":{},"4174":{},"4314":{},"4360":{}},"parent":{}}],["categoryid",{"_index":1279,"name":{"3525":{}},"parent":{}}],["categoryresult",{"_index":1394,"name":{"4167":{},"4175":{},"4315":{},"4361":{}},"parent":{}}],["categorysuggestions",{"_index":1487,"name":{"4483":{},"4515":{},"4624":{},"4669":{}},"parent":{}}],["channel_id",{"_index":145,"name":{"191":{},"202":{},"219":{},"235":{},"264":{},"280":{},"298":{},"309":{},"331":{},"336":{},"358":{},"374":{}},"parent":{}}],["client_id",{"_index":138,"name":{"185":{},"197":{},"234":{},"252":{},"266":{},"279":{},"297":{},"308":{},"330":{},"356":{},"370":{}},"parent":{}}],["clientconfig",{"_index":17,"name":{"15":{},"24":{},"90":{},"609":{},"1508":{},"2324":{},"2386":{},"2467":{},"2757":{},"3499":{},"3587":{},"3875":{},"4205":{},"4405":{},"4551":{},"4715":{},"4783":{}},"parent":{"16":{},"24":{},"36":{},"37":{},"38":{}}}],["clientconfig.clientconfig",{"_index":27,"name":{},"parent":{"25":{},"26":{},"27":{},"29":{},"30":{},"31":{},"32":{},"33":{},"34":{}}}],["clientconfig.clientconfig.defaults",{"_index":31,"name":{},"parent":{"35":{}}}],["clientconfig.clientconfig.headers",{"_index":28,"name":{},"parent":{"28":{}}}],["clientconfig.clientconfiginit",{"_index":20,"name":{},"parent":{"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{}}}],["clientconfig.fetchfunction",{"_index":34,"name":{},"parent":{"39":{}}}],["clientconfiginit",{"_index":18,"name":{"16":{}},"parent":{}}],["code",{"_index":176,"name":{"229":{},"278":{}},"parent":{}}],["code_challenge",{"_index":146,"name":{"192":{},"203":{},"267":{},"310":{}},"parent":{}}],["code_verifier",{"_index":178,"name":{"233":{},"253":{},"281":{},"299":{},"372":{}},"parent":{}}],["component",{"_index":1258,"name":{"3485":{},"3491":{},"3555":{},"3569":{}},"parent":{}}],["compositeparameters",{"_index":7,"name":{"6":{},"493":{}},"parent":{}}],["config",{"_index":35,"name":{"40":{}},"parent":{"41":{}}}],["consentstatus",{"_index":865,"name":{"2369":{},"2377":{},"2435":{},"2450":{}},"parent":{}}],["consentsubscription",{"_index":867,"name":{"2371":{},"2378":{},"2436":{},"2451":{}},"parent":{}}],["consentsubscriptionrequest",{"_index":868,"name":{"2372":{},"2379":{},"2437":{},"2452":{}},"parent":{}}],["consentsubscriptionresponse",{"_index":869,"name":{"2373":{},"2380":{},"2438":{},"2453":{}},"parent":{}}],["constructor",{"_index":29,"name":{"33":{},"51":{},"110":{},"453":{},"649":{},"1548":{},"2328":{},"2391":{},"2474":{},"2789":{},"3504":{},"3591":{},"3886":{},"4212":{},"4410":{},"4556":{},"4719":{},"4788":{}},"parent":{}}],["contenttypeheaderexists",{"_index":317,"name":{"514":{}},"parent":{}}],["countrycode",{"_index":1575,"name":{"4807":{}},"parent":{}}],["couponitem",{"_index":336,"name":{"535":{},"568":{},"1249":{},"1373":{},"1432":{},"1466":{},"2149":{},"2274":{},"2583":{},"2667":{},"3237":{},"3393":{},"3791":{},"3828":{},"4025":{},"4094":{}},"parent":{}}],["couponitemid",{"_index":558,"name":{"906":{},"1806":{}},"parent":{}}],["couponitemstatuscodeenum",{"_index":337,"name":{"536":{},"569":{},"1250":{},"1374":{},"1433":{},"1467":{},"2150":{},"2275":{},"2584":{},"2668":{},"3238":{},"3394":{},"3792":{},"3829":{},"4026":{},"4095":{}},"parent":{}}],["createbasket",{"_index":373,"name":{"620":{},"668":{},"734":{},"1519":{},"1567":{},"1633":{}},"parent":{}}],["createbasketpathparameters",{"_index":498,"name":{"832":{},"1102":{},"1183":{},"1310":{},"1732":{},"2002":{},"2083":{},"2211":{}},"parent":{}}],["createbasketqueryparameters",{"_index":494,"name":{"827":{},"1101":{},"1182":{},"1309":{},"1726":{},"2001":{},"2082":{},"2210":{}},"parent":{}}],["createbasketrequired",{"_index":412,"name":{"669":{},"1568":{}},"parent":{}}],["createbaskettaxmodeenum",{"_index":441,"name":{"763":{},"1083":{},"1164":{},"1308":{},"1662":{},"1983":{},"2064":{},"2209":{}},"parent":{}}],["createcodeverifier",{"_index":298,"name":{"462":{},"491":{}},"parent":{}}],["createcustomeraddress",{"_index":1007,"name":{"2760":{},"2792":{},"2850":{}},"parent":{}}],["createcustomeraddresspathparameters",{"_index":1069,"name":{"2882":{},"3107":{},"3170":{},"3330":{}},"parent":{}}],["createcustomeraddressqueryparameters",{"_index":1066,"name":{"2879":{},"3106":{},"3169":{},"3329":{}},"parent":{}}],["createcustomeraddressrequired",{"_index":1038,"name":{"2793":{}},"parent":{}}],["createcustomerpaymentinstrument",{"_index":1009,"name":{"2761":{},"2794":{},"2851":{}},"parent":{}}],["createcustomerpaymentinstrumentpathparameters",{"_index":1076,"name":{"2889":{},"3109":{},"3172":{},"3332":{}},"parent":{}}],["createcustomerpaymentinstrumentqueryparameters",{"_index":1073,"name":{"2886":{},"3108":{},"3171":{},"3331":{}},"parent":{}}],["createcustomerpaymentinstrumentrequired",{"_index":1039,"name":{"2795":{}},"parent":{}}],["createcustomerproductlist",{"_index":1010,"name":{"2762":{},"2796":{},"2852":{}},"parent":{}}],["createcustomerproductlistitem",{"_index":1011,"name":{"2763":{},"2798":{},"2853":{}},"parent":{}}],["createcustomerproductlistitempathparameters",{"_index":1088,"name":{"2903":{},"3113":{},"3176":{},"3336":{}},"parent":{}}],["createcustomerproductlistitemqueryparameters",{"_index":1085,"name":{"2900":{},"3112":{},"3175":{},"3335":{}},"parent":{}}],["createcustomerproductlistitemrequired",{"_index":1041,"name":{"2799":{}},"parent":{}}],["createcustomerproductlistpathparameters",{"_index":1082,"name":{"2896":{},"3111":{},"3174":{},"3334":{}},"parent":{}}],["createcustomerproductlistqueryparameters",{"_index":1079,"name":{"2893":{},"3110":{},"3173":{},"3333":{}},"parent":{}}],["createcustomerproductlistrequired",{"_index":1040,"name":{"2797":{}},"parent":{}}],["createdestinationbasket",{"_index":547,"name":{"892":{},"1792":{}},"parent":{}}],["createobjecturl",{"_index":64,"name":{"70":{}},"parent":{}}],["createorder",{"_index":1318,"name":{"3878":{},"3889":{},"3905":{}},"parent":{}}],["createorderpathparameters",{"_index":1340,"name":{"3917":{},"3981":{},"4002":{},"4075":{}},"parent":{}}],["createorderqueryparameters",{"_index":1337,"name":{"3913":{},"3980":{},"4001":{},"4074":{}},"parent":{}}],["createorderrequired",{"_index":1329,"name":{"3890":{}},"parent":{}}],["createpaymentinstrumentfororder",{"_index":1320,"name":{"3879":{},"3891":{},"3906":{}},"parent":{}}],["createpaymentinstrumentfororderpathparameters",{"_index":1346,"name":{"3924":{},"3983":{},"4004":{},"4077":{}},"parent":{}}],["createpaymentinstrumentfororderqueryparameters",{"_index":1343,"name":{"3920":{},"3982":{},"4003":{},"4076":{}},"parent":{}}],["createpaymentinstrumentfororderrequired",{"_index":1330,"name":{"3892":{}},"parent":{}}],["createshipmentforbasket",{"_index":374,"name":{"621":{},"670":{},"735":{},"1520":{},"1569":{},"1634":{}},"parent":{}}],["createshipmentforbasketpathparameters",{"_index":504,"name":{"839":{},"1104":{},"1185":{},"1312":{},"1739":{},"2004":{},"2085":{},"2213":{}},"parent":{}}],["createshipmentforbasketqueryparameters",{"_index":501,"name":{"835":{},"1103":{},"1184":{},"1311":{},"1735":{},"2003":{},"2084":{},"2212":{}},"parent":{}}],["createshipmentforbasketrequired",{"_index":413,"name":{"671":{},"1570":{}},"parent":{}}],["createshoppercontext",{"_index":900,"name":{"2470":{},"2477":{},"2485":{}},"parent":{}}],["createshoppercontextpathparameters",{"_index":915,"name":{"2493":{},"2523":{},"2536":{},"2554":{}},"parent":{}}],["createshoppercontextqueryparameters",{"_index":911,"name":{"2489":{},"2522":{},"2535":{},"2553":{}},"parent":{}}],["createshoppercontextrequired",{"_index":907,"name":{"2478":{}},"parent":{}}],["crosssites",{"_index":1131,"name":{"2957":{}},"parent":{}}],["currency",{"_index":1435,"name":{"4256":{},"4273":{},"4432":{},"4572":{},"4587":{}},"parent":{}}],["currencycode",{"_index":320,"name":{"519":{},"570":{},"1251":{},"1375":{},"1416":{},"1468":{},"2151":{},"2276":{},"2567":{},"2669":{},"3239":{},"3395":{},"3775":{},"3830":{},"4027":{},"4096":{},"4153":{},"4176":{},"4316":{},"4362":{},"4485":{},"4516":{},"4625":{},"4670":{}},"parent":{}}],["custom_api_default_base_uri",{"_index":36,"name":{"41":{}},"parent":{}}],["customer",{"_index":966,"name":{"2620":{},"2670":{},"3240":{},"3396":{}},"parent":{}}],["customeraddress",{"_index":965,"name":{"2619":{},"2672":{},"3242":{},"3398":{}},"parent":{}}],["customeraddressinfo",{"_index":968,"name":{"2622":{},"2673":{},"3243":{},"3399":{}},"parent":{}}],["customerauthtypeenum",{"_index":967,"name":{"2621":{},"2671":{},"3241":{},"3397":{}},"parent":{}}],["customerexternalprofile",{"_index":970,"name":{"2624":{},"2675":{},"3245":{},"3401":{}},"parent":{}}],["customerextprofilerequest",{"_index":969,"name":{"2623":{},"2674":{},"3244":{},"3400":{}},"parent":{}}],["customerid",{"_index":1071,"name":{"2884":{},"2891":{},"2898":{},"2906":{},"2914":{},"2922":{},"2931":{},"2938":{},"2946":{},"2953":{},"2966":{},"2974":{},"2982":{},"2991":{},"2998":{},"3056":{},"3069":{},"3077":{},"3084":{},"3092":{},"3101":{}},"parent":{}}],["customerinfo",{"_index":338,"name":{"537":{},"571":{},"1252":{},"1376":{},"1434":{},"1469":{},"2152":{},"2277":{},"2585":{},"2676":{},"3246":{},"3402":{},"3793":{},"3831":{},"4028":{},"4097":{}},"parent":{}}],["customerorderresult",{"_index":979,"name":{"2633":{},"2677":{},"3247":{},"3403":{}},"parent":{}}],["customerpaymentcardrequest",{"_index":980,"name":{"2634":{},"2678":{},"3248":{},"3404":{}},"parent":{}}],["customerpaymentinstrument",{"_index":964,"name":{"2618":{},"2679":{},"3249":{},"3405":{}},"parent":{}}],["customerpaymentinstrumentrequest",{"_index":982,"name":{"2636":{},"2680":{},"3250":{},"3406":{}},"parent":{}}],["customerproductlist",{"_index":988,"name":{"2642":{},"2681":{},"3251":{},"3407":{}},"parent":{}}],["customerproductlistitem",{"_index":984,"name":{"2638":{},"2683":{},"3253":{},"3409":{}},"parent":{}}],["customerproductlistitemtypeenum",{"_index":985,"name":{"2639":{},"2684":{},"3254":{},"3410":{}},"parent":{}}],["customerproductlistregistrant",{"_index":986,"name":{"2640":{},"2685":{},"3255":{},"3411":{}},"parent":{}}],["customerproductlistresult",{"_index":990,"name":{"2644":{},"2686":{},"3256":{},"3412":{}},"parent":{}}],["customerproductlisttypeenum",{"_index":989,"name":{"2643":{},"2682":{},"3252":{},"3408":{}},"parent":{}}],["customerregistration",{"_index":991,"name":{"2645":{},"2687":{},"3257":{},"3413":{}},"parent":{}}],["customparams",{"_index":309,"name":{"502":{},"508":{}},"parent":{}}],["customqueryparameters",{"_index":13,"name":{"11":{},"500":{}},"parent":{}}],["customrequestbody",{"_index":15,"name":{"13":{},"501":{}},"parent":{}}],["customsuggestions",{"_index":1488,"name":{"4486":{},"4517":{},"4626":{},"4671":{}},"parent":{}}],["defaultbaseuri",{"_index":43,"name":{"48":{},"91":{},"517":{},"610":{},"1163":{},"1414":{},"1509":{},"2063":{},"2316":{},"2325":{},"2349":{},"2368":{},"2387":{},"2426":{},"2459":{},"2468":{},"2534":{},"2565":{},"2758":{},"3168":{},"3483":{},"3500":{},"3546":{},"3577":{},"3588":{},"3612":{},"3632":{},"3773":{},"3876":{},"4000":{},"4141":{},"4206":{},"4296":{},"4391":{},"4406":{},"4448":{},"4477":{},"4552":{},"4612":{},"4705":{},"4716":{},"4742":{},"4763":{},"4784":{},"4831":{}},"parent":{}}],["defaultfallback",{"_index":350,"name":{"549":{},"572":{},"1253":{},"1377":{},"1447":{},"1470":{},"2153":{},"2278":{},"2374":{},"2381":{},"2439":{},"2454":{},"3486":{},"3492":{},"3556":{},"3570":{},"3804":{},"3832":{},"4029":{},"4098":{},"4168":{},"4177":{},"4317":{},"4363":{},"4392":{},"4398":{},"4457":{},"4470":{},"4487":{},"4518":{},"4627":{},"4672":{},"4706":{},"4710":{},"4749":{},"4758":{},"4764":{},"4773":{},"4840":{},"4856":{}},"parent":{}}],["defaults",{"_index":30,"name":{"34":{}},"parent":{}}],["deletebasket",{"_index":375,"name":{"622":{},"672":{},"736":{},"1521":{},"1571":{},"1635":{}},"parent":{}}],["deletebasketpathparameters",{"_index":510,"name":{"846":{},"1106":{},"1187":{},"1314":{},"1746":{},"2006":{},"2087":{},"2215":{}},"parent":{}}],["deletebasketqueryparameters",{"_index":507,"name":{"843":{},"1105":{},"1186":{},"1313":{},"1743":{},"2005":{},"2086":{},"2214":{}},"parent":{}}],["deletebasketrequired",{"_index":414,"name":{"673":{},"1572":{}},"parent":{}}],["deletecustomerpaymentinstrument",{"_index":1012,"name":{"2764":{},"2800":{},"2854":{}},"parent":{}}],["deletecustomerpaymentinstrumentpathparameters",{"_index":1095,"name":{"2911":{},"3115":{},"3178":{},"3338":{}},"parent":{}}],["deletecustomerpaymentinstrumentqueryparameters",{"_index":1092,"name":{"2908":{},"3114":{},"3177":{},"3337":{}},"parent":{}}],["deletecustomerpaymentinstrumentrequired",{"_index":1042,"name":{"2801":{}},"parent":{}}],["deletecustomerproductlist",{"_index":1013,"name":{"2765":{},"2802":{},"2855":{}},"parent":{}}],["deletecustomerproductlistitem",{"_index":1014,"name":{"2766":{},"2804":{},"2856":{}},"parent":{}}],["deletecustomerproductlistitempathparameters",{"_index":1107,"name":{"2927":{},"3119":{},"3182":{},"3342":{}},"parent":{}}],["deletecustomerproductlistitemqueryparameters",{"_index":1104,"name":{"2924":{},"3118":{},"3181":{},"3341":{}},"parent":{}}],["deletecustomerproductlistitemrequired",{"_index":1044,"name":{"2805":{}},"parent":{}}],["deletecustomerproductlistpathparameters",{"_index":1101,"name":{"2919":{},"3117":{},"3180":{},"3340":{}},"parent":{}}],["deletecustomerproductlistqueryparameters",{"_index":1098,"name":{"2916":{},"3116":{},"3179":{},"3339":{}},"parent":{}}],["deletecustomerproductlistrequired",{"_index":1043,"name":{"2803":{}},"parent":{}}],["deleteshoppercontext",{"_index":902,"name":{"2471":{},"2479":{},"2486":{}},"parent":{}}],["deleteshoppercontextpathparameters",{"_index":921,"name":{"2500":{},"2525":{},"2538":{},"2556":{}},"parent":{}}],["deleteshoppercontextqueryparameters",{"_index":918,"name":{"2497":{},"2524":{},"2537":{},"2555":{}},"parent":{}}],["deleteshoppercontextrequired",{"_index":908,"name":{"2480":{}},"parent":{}}],["discount",{"_index":327,"name":{"526":{},"573":{},"1254":{},"1378":{},"1423":{},"1471":{},"2154":{},"2279":{},"2574":{},"2688":{},"3258":{},"3414":{},"3782":{},"3833":{},"4030":{},"4099":{}},"parent":{}}],["discountrequest",{"_index":351,"name":{"550":{},"575":{},"1256":{},"1380":{},"1448":{},"1473":{},"2156":{},"2281":{}},"parent":{}}],["discountrequesttypeenum",{"_index":352,"name":{"551":{},"576":{},"1257":{},"1381":{},"1449":{},"1474":{},"2157":{},"2282":{}},"parent":{}}],["discounttypeenum",{"_index":328,"name":{"527":{},"574":{},"1255":{},"1379":{},"1424":{},"1472":{},"2155":{},"2280":{},"2575":{},"2689":{},"3259":{},"3415":{},"3783":{},"3834":{},"4031":{},"4100":{}},"parent":{}}],["distanceunit",{"_index":1555,"name":{"4765":{},"4774":{},"4808":{},"4841":{},"4857":{}},"parent":{}}],["dnt",{"_index":179,"name":{"236":{},"288":{},"304":{},"333":{}},"parent":{}}],["dofetch",{"_index":311,"name":{"504":{},"506":{}},"parent":{}}],["dwsgst",{"_index":213,"name":{"285":{}},"parent":{}}],["dwsid",{"_index":212,"name":{"282":{}},"parent":{}}],["dwsrst",{"_index":214,"name":{"286":{}},"parent":{}}],["einsteinsuggestedphrases",{"_index":1489,"name":{"4488":{},"4519":{},"4628":{},"4673":{}},"parent":{}}],["email",{"_index":1186,"name":{"3025":{}},"parent":{}}],["email_id",{"_index":239,"name":{"332":{}},"parent":{}}],["encodescapispecialcharacters",{"_index":312,"name":{"505":{},"507":{}},"parent":{}}],["enddate",{"_index":1471,"name":{"4431":{}},"parent":{}}],["endpointpath",{"_index":316,"name":{"511":{}},"parent":{}}],["error",{"_index":294,"name":{"458":{}},"parent":{}}],["errorresponse",{"_index":353,"name":{"552":{},"577":{},"1258":{},"1382":{},"1450":{},"1475":{},"2158":{},"2283":{},"2317":{},"2320":{},"2356":{},"2364":{},"2375":{},"2382":{},"2440":{},"2455":{},"2460":{},"2463":{},"2547":{},"2561":{},"2646":{},"2690":{},"3260":{},"3416":{},"3487":{},"3493":{},"3557":{},"3571":{},"3578":{},"3582":{},"3619":{},"3628":{},"3805":{},"3835":{},"4032":{},"4101":{},"4169":{},"4178":{},"4318":{},"4364":{},"4393":{},"4399":{},"4458":{},"4471":{},"4489":{},"4520":{},"4629":{},"4674":{},"4707":{},"4711":{},"4750":{},"4759":{},"4766":{},"4775":{},"4842":{},"4858":{}},"parent":{}}],["evaluatecontextwithclientip",{"_index":914,"name":{"2492":{},"2514":{}},"parent":{}}],["exchange",{"_index":609,"name":{"972":{},"1872":{}},"parent":{}}],["expand",{"_index":1431,"name":{"4252":{},"4267":{},"4574":{},"4589":{}},"parent":{}}],["externalid",{"_index":1166,"name":{"3002":{}},"parent":{}}],["fetch",{"_index":41,"name":{"46":{},"478":{}},"parent":{}}],["fetchfunction",{"_index":33,"name":{"38":{}},"parent":{}}],["fetchoptions",{"_index":24,"name":{"21":{},"30":{},"37":{}},"parent":{}}],["firstname",{"_index":1188,"name":{"3026":{}},"parent":{}}],["from",{"_index":1133,"name":{"2958":{}},"parent":{}}],["generatecodechallenge",{"_index":299,"name":{"463":{},"492":{}},"parent":{}}],["getaccesstoken",{"_index":82,"name":{"96":{},"119":{},"150":{}},"parent":{}}],["getaccesstokenbodytype",{"_index":172,"name":{"226":{},"412":{},"3657":{},"3717":{}},"parent":{}}],["getaccesstokenpathparameters",{"_index":169,"name":{"223":{},"411":{},"3656":{},"3719":{}},"parent":{}}],["getaccesstokenqueryparameters",{"_index":167,"name":{"221":{},"410":{},"3655":{},"3718":{}},"parent":{}}],["getaccesstokenrequired",{"_index":102,"name":{"120":{}},"parent":{}}],["getbasket",{"_index":376,"name":{"623":{},"674":{},"737":{},"1522":{},"1573":{},"1636":{}},"parent":{}}],["getbasketpathparameters",{"_index":516,"name":{"854":{},"1108":{},"1189":{},"1316":{},"1754":{},"2008":{},"2089":{},"2217":{}},"parent":{}}],["getbasketqueryparameters",{"_index":513,"name":{"850":{},"1107":{},"1188":{},"1315":{},"1750":{},"2007":{},"2088":{},"2216":{}},"parent":{}}],["getbasketrequired",{"_index":415,"name":{"675":{},"1574":{}},"parent":{}}],["getcategories",{"_index":1397,"name":{"4208":{},"4215":{},"4223":{}},"parent":{}}],["getcategorieslevelsenum",{"_index":1408,"name":{"4227":{},"4280":{},"4297":{},"4347":{}},"parent":{}}],["getcategoriespathparameters",{"_index":1417,"name":{"4237":{},"4285":{},"4302":{},"4349":{}},"parent":{}}],["getcategoriesqueryparameters",{"_index":1412,"name":{"4231":{},"4284":{},"4301":{},"4348":{}},"parent":{}}],["getcategoriesrequired",{"_index":1404,"name":{"4216":{}},"parent":{}}],["getcategory",{"_index":1399,"name":{"4209":{},"4217":{},"4224":{}},"parent":{}}],["getcategorylevelsenum",{"_index":1409,"name":{"4228":{},"4281":{},"4298":{},"4350":{}},"parent":{}}],["getcategorypathparameters",{"_index":1423,"name":{"4245":{},"4287":{},"4304":{},"4352":{}},"parent":{}}],["getcategoryqueryparameters",{"_index":1420,"name":{"4240":{},"4286":{},"4303":{},"4351":{}},"parent":{}}],["getcategoryrequired",{"_index":1405,"name":{"4218":{}},"parent":{}}],["getcodeandusidfromurl",{"_index":296,"name":{"460":{},"490":{}},"parent":{}}],["getconfigurations",{"_index":848,"name":{"2327":{},"2331":{},"2333":{}},"parent":{}}],["getconfigurationspathparameters",{"_index":856,"name":{"2337":{},"2344":{},"2351":{},"2363":{}},"parent":{}}],["getconfigurationsqueryparameters",{"_index":853,"name":{"2334":{},"2343":{},"2350":{},"2362":{}},"parent":{}}],["getconfigurationsrequired",{"_index":852,"name":{"2332":{}},"parent":{}}],["getcustomer",{"_index":1015,"name":{"2767":{},"2806":{},"2857":{}},"parent":{}}],["getcustomeraddress",{"_index":1016,"name":{"2768":{},"2808":{},"2858":{}},"parent":{}}],["getcustomeraddresspathparameters",{"_index":1119,"name":{"2943":{},"3123":{},"3186":{},"3346":{}},"parent":{}}],["getcustomeraddressqueryparameters",{"_index":1116,"name":{"2940":{},"3122":{},"3185":{},"3345":{}},"parent":{}}],["getcustomeraddressrequired",{"_index":1046,"name":{"2809":{}},"parent":{}}],["getcustomerbaskets",{"_index":1017,"name":{"2769":{},"2810":{},"2859":{}},"parent":{}}],["getcustomerbasketspathparameters",{"_index":1126,"name":{"2951":{},"3125":{},"3188":{},"3348":{}},"parent":{}}],["getcustomerbasketsqueryparameters",{"_index":1123,"name":{"2948":{},"3124":{},"3187":{},"3347":{}},"parent":{}}],["getcustomerbasketsrequired",{"_index":1047,"name":{"2811":{}},"parent":{}}],["getcustomerorders",{"_index":1018,"name":{"2770":{},"2812":{},"2860":{}},"parent":{}}],["getcustomerorderspathparameters",{"_index":1137,"name":{"2964":{},"3127":{},"3190":{},"3350":{}},"parent":{}}],["getcustomerordersqueryparameters",{"_index":1129,"name":{"2955":{},"3126":{},"3189":{},"3349":{}},"parent":{}}],["getcustomerordersrequired",{"_index":1048,"name":{"2813":{}},"parent":{}}],["getcustomerpathparameters",{"_index":1113,"name":{"2936":{},"3121":{},"3184":{},"3344":{}},"parent":{}}],["getcustomerpaymentinstrument",{"_index":1019,"name":{"2771":{},"2814":{},"2861":{}},"parent":{}}],["getcustomerpaymentinstrumentpathparameters",{"_index":1143,"name":{"2971":{},"3129":{},"3192":{},"3352":{}},"parent":{}}],["getcustomerpaymentinstrumentqueryparameters",{"_index":1140,"name":{"2968":{},"3128":{},"3191":{},"3351":{}},"parent":{}}],["getcustomerpaymentinstrumentrequired",{"_index":1049,"name":{"2815":{}},"parent":{}}],["getcustomerproductlist",{"_index":1020,"name":{"2772":{},"2816":{},"2862":{}},"parent":{}}],["getcustomerproductlistitem",{"_index":1021,"name":{"2773":{},"2818":{},"2863":{}},"parent":{}}],["getcustomerproductlistitempathparameters",{"_index":1155,"name":{"2987":{},"3133":{},"3196":{},"3356":{}},"parent":{}}],["getcustomerproductlistitemqueryparameters",{"_index":1152,"name":{"2984":{},"3132":{},"3195":{},"3355":{}},"parent":{}}],["getcustomerproductlistitemrequired",{"_index":1051,"name":{"2819":{}},"parent":{}}],["getcustomerproductlistpathparameters",{"_index":1149,"name":{"2979":{},"3131":{},"3194":{},"3354":{}},"parent":{}}],["getcustomerproductlistqueryparameters",{"_index":1146,"name":{"2976":{},"3130":{},"3193":{},"3353":{}},"parent":{}}],["getcustomerproductlistrequired",{"_index":1050,"name":{"2817":{}},"parent":{}}],["getcustomerproductlists",{"_index":1022,"name":{"2774":{},"2820":{},"2864":{}},"parent":{}}],["getcustomerproductlistspathparameters",{"_index":1161,"name":{"2996":{},"3135":{},"3198":{},"3358":{}},"parent":{}}],["getcustomerproductlistsqueryparameters",{"_index":1158,"name":{"2993":{},"3134":{},"3197":{},"3357":{}},"parent":{}}],["getcustomerproductlistsrequired",{"_index":1052,"name":{"2821":{}},"parent":{}}],["getcustomerqueryparameters",{"_index":1110,"name":{"2933":{},"3120":{},"3183":{},"3343":{}},"parent":{}}],["getcustomerrequired",{"_index":1045,"name":{"2807":{}},"parent":{}}],["getexternalprofile",{"_index":1023,"name":{"2775":{},"2822":{},"2865":{}},"parent":{}}],["getexternalprofilepathparameters",{"_index":1169,"name":{"3005":{},"3137":{},"3200":{},"3360":{}},"parent":{}}],["getexternalprofilequeryparameters",{"_index":1164,"name":{"3000":{},"3136":{},"3199":{},"3359":{}},"parent":{}}],["getexternalprofilerequired",{"_index":1053,"name":{"2823":{}},"parent":{}}],["getgiftcertificate",{"_index":1296,"name":{"3590":{},"3594":{},"3596":{}},"parent":{}}],["getgiftcertificatepathparameters",{"_index":1304,"name":{"3600":{},"3607":{},"3614":{},"3627":{}},"parent":{}}],["getgiftcertificatequeryparameters",{"_index":1301,"name":{"3597":{},"3606":{},"3613":{},"3626":{}},"parent":{}}],["getgiftcertificaterequired",{"_index":1300,"name":{"3595":{}},"parent":{}}],["getjwksuri",{"_index":83,"name":{"97":{},"121":{},"151":{}},"parent":{}}],["getjwksuripathparameters",{"_index":182,"name":{"239":{},"414":{},"3659":{},"3721":{}},"parent":{}}],["getjwksuriqueryparameters",{"_index":180,"name":{"237":{},"413":{},"3658":{},"3720":{}},"parent":{}}],["getjwksurirequired",{"_index":103,"name":{"122":{}},"parent":{}}],["getorder",{"_index":1321,"name":{"3880":{},"3893":{},"3907":{}},"parent":{}}],["getorderpathparameters",{"_index":1353,"name":{"3932":{},"3985":{},"4006":{},"4079":{}},"parent":{}}],["getorderqueryparameters",{"_index":1350,"name":{"3928":{},"3984":{},"4005":{},"4078":{}},"parent":{}}],["getorderrequired",{"_index":1331,"name":{"3894":{}},"parent":{}}],["getpage",{"_index":1262,"name":{"3502":{},"3507":{},"3511":{}},"parent":{}}],["getpagepathparameters",{"_index":1273,"name":{"3519":{},"3539":{},"3548":{},"3566":{}},"parent":{}}],["getpagequeryparameters",{"_index":1269,"name":{"3513":{},"3538":{},"3547":{},"3565":{}},"parent":{}}],["getpagerequired",{"_index":1267,"name":{"3508":{}},"parent":{}}],["getpages",{"_index":1264,"name":{"3503":{},"3509":{},"3512":{}},"parent":{}}],["getpagespathparameters",{"_index":1283,"name":{"3532":{},"3541":{},"3550":{},"3568":{}},"parent":{}}],["getpagesqueryparameters",{"_index":1277,"name":{"3523":{},"3540":{},"3549":{},"3567":{}},"parent":{}}],["getpagesrequired",{"_index":1268,"name":{"3510":{}},"parent":{}}],["getpasswordlessaccesstoken",{"_index":84,"name":{"98":{},"123":{},"152":{},"471":{},"486":{}},"parent":{}}],["getpasswordlessaccesstokenbodytype",{"_index":190,"name":{"247":{},"417":{},"3662":{},"3723":{}},"parent":{}}],["getpasswordlessaccesstokengranttypeenum",{"_index":119,"name":{"167":{},"391":{},"3636":{},"3722":{}},"parent":{}}],["getpasswordlessaccesstokenpathparameters",{"_index":187,"name":{"244":{},"416":{},"3661":{},"3725":{}},"parent":{}}],["getpasswordlessaccesstokenqueryparameters",{"_index":185,"name":{"242":{},"415":{},"3660":{},"3724":{}},"parent":{}}],["getpasswordlessaccesstokenrequired",{"_index":104,"name":{"124":{}},"parent":{}}],["getpasswordresettoken",{"_index":85,"name":{"99":{},"125":{},"153":{}},"parent":{}}],["getpasswordresettokenbodytype",{"_index":200,"name":{"260":{},"420":{},"3665":{},"3727":{}},"parent":{}}],["getpasswordresettokenmodeenum",{"_index":120,"name":{"168":{},"392":{},"3637":{},"3726":{}},"parent":{}}],["getpasswordresettokenpathparameters",{"_index":197,"name":{"257":{},"419":{},"3664":{},"3729":{}},"parent":{}}],["getpasswordresettokenqueryparameters",{"_index":195,"name":{"255":{},"418":{},"3663":{},"3728":{}},"parent":{}}],["getpasswordresettokenrequired",{"_index":105,"name":{"126":{}},"parent":{}}],["getpaymentmethodsforbasket",{"_index":377,"name":{"624":{},"676":{},"738":{},"1523":{},"1575":{},"1637":{}},"parent":{}}],["getpaymentmethodsforbasketpathparameters",{"_index":522,"name":{"862":{},"1110":{},"1191":{},"1318":{},"1762":{},"2010":{},"2091":{},"2219":{}},"parent":{}}],["getpaymentmethodsforbasketqueryparameters",{"_index":519,"name":{"858":{},"1109":{},"1190":{},"1317":{},"1758":{},"2009":{},"2090":{},"2218":{}},"parent":{}}],["getpaymentmethodsforbasketrequired",{"_index":416,"name":{"677":{},"1576":{}},"parent":{}}],["getpaymentmethodsfororder",{"_index":1322,"name":{"3881":{},"3895":{},"3908":{}},"parent":{}}],["getpaymentmethodsfororderpathparameters",{"_index":1359,"name":{"3940":{},"3987":{},"4008":{},"4081":{}},"parent":{}}],["getpaymentmethodsfororderqueryparameters",{"_index":1356,"name":{"3936":{},"3986":{},"4007":{},"4080":{}},"parent":{}}],["getpaymentmethodsfororderrequired",{"_index":1332,"name":{"3896":{}},"parent":{}}],["getpricebooksforbasket",{"_index":378,"name":{"625":{},"678":{},"739":{},"1524":{},"1577":{},"1638":{}},"parent":{}}],["getpricebooksforbasketpathparameters",{"_index":528,"name":{"869":{},"1112":{},"1193":{},"1320":{},"1769":{},"2012":{},"2093":{},"2221":{}},"parent":{}}],["getpricebooksforbasketqueryparameters",{"_index":525,"name":{"866":{},"1111":{},"1192":{},"1319":{},"1766":{},"2011":{},"2092":{},"2220":{}},"parent":{}}],["getpricebooksforbasketrequired",{"_index":417,"name":{"679":{},"1578":{}},"parent":{}}],["getproduct",{"_index":1400,"name":{"4210":{},"4219":{},"4225":{}},"parent":{}}],["getproductexpandenum",{"_index":1410,"name":{"4229":{},"4282":{},"4299":{},"4353":{}},"parent":{}}],["getproductlistitem",{"_index":1024,"name":{"2776":{},"2824":{},"2866":{}},"parent":{}}],["getproductlistitempathparameters",{"_index":1175,"name":{"3011":{},"3139":{},"3202":{},"3362":{}},"parent":{}}],["getproductlistitemqueryparameters",{"_index":1172,"name":{"3008":{},"3138":{},"3201":{},"3361":{}},"parent":{}}],["getproductlistitemrequired",{"_index":1054,"name":{"2825":{}},"parent":{}}],["getproductpathparameters",{"_index":1436,"name":{"4259":{},"4289":{},"4306":{},"4355":{}},"parent":{}}],["getproductqueryparameters",{"_index":1427,"name":{"4249":{},"4288":{},"4305":{},"4354":{}},"parent":{}}],["getproductrequired",{"_index":1406,"name":{"4220":{}},"parent":{}}],["getproducts",{"_index":1401,"name":{"4211":{},"4221":{},"4226":{}},"parent":{}}],["getproductsexpandenum",{"_index":1411,"name":{"4230":{},"4283":{},"4300":{},"4356":{}},"parent":{}}],["getproductspathparameters",{"_index":1442,"name":{"4274":{},"4291":{},"4308":{},"4358":{}},"parent":{}}],["getproductsqueryparameters",{"_index":1439,"name":{"4263":{},"4290":{},"4307":{},"4357":{}},"parent":{}}],["getproductsrequired",{"_index":1407,"name":{"4222":{}},"parent":{}}],["getpromotions",{"_index":1454,"name":{"4408":{},"4413":{},"4417":{}},"parent":{}}],["getpromotionsforcampaign",{"_index":1456,"name":{"4409":{},"4415":{},"4418":{}},"parent":{}}],["getpromotionsforcampaignpathparameters",{"_index":1472,"name":{"4433":{},"4443":{},"4452":{},"4469":{}},"parent":{}}],["getpromotionsforcampaignqueryparameters",{"_index":1467,"name":{"4427":{},"4442":{},"4451":{},"4468":{}},"parent":{}}],["getpromotionsforcampaignrequired",{"_index":1460,"name":{"4416":{}},"parent":{}}],["getpromotionspathparameters",{"_index":1464,"name":{"4424":{},"4441":{},"4450":{},"4467":{}},"parent":{}}],["getpromotionsqueryparameters",{"_index":1461,"name":{"4419":{},"4440":{},"4449":{},"4466":{}},"parent":{}}],["getpromotionsrequired",{"_index":1459,"name":{"4414":{}},"parent":{}}],["getpublicproductlist",{"_index":1025,"name":{"2777":{},"2826":{},"2867":{}},"parent":{}}],["getpublicproductlistpathparameters",{"_index":1181,"name":{"3019":{},"3141":{},"3204":{},"3364":{}},"parent":{}}],["getpublicproductlistqueryparameters",{"_index":1178,"name":{"3016":{},"3140":{},"3203":{},"3363":{}},"parent":{}}],["getpublicproductlistrequired",{"_index":1055,"name":{"2827":{}},"parent":{}}],["getpublicproductlistsbysearchterm",{"_index":1026,"name":{"2778":{},"2828":{},"2868":{}},"parent":{}}],["getpublicproductlistsbysearchtermpathparameters",{"_index":1190,"name":{"3029":{},"3143":{},"3206":{},"3366":{}},"parent":{}}],["getpublicproductlistsbysearchtermqueryparameters",{"_index":1184,"name":{"3023":{},"3142":{},"3205":{},"3365":{}},"parent":{}}],["getpublicproductlistsbysearchtermrequired",{"_index":1056,"name":{"2829":{}},"parent":{}}],["getresetpasswordtoken",{"_index":1027,"name":{"2779":{},"2830":{},"2869":{}},"parent":{}}],["getresetpasswordtokenpathparameters",{"_index":1196,"name":{"3035":{},"3145":{},"3208":{},"3368":{}},"parent":{}}],["getresetpasswordtokenqueryparameters",{"_index":1193,"name":{"3032":{},"3144":{},"3207":{},"3367":{}},"parent":{}}],["getresetpasswordtokenrequired",{"_index":1057,"name":{"2831":{}},"parent":{}}],["getsearchsuggestions",{"_index":1501,"name":{"4554":{},"4559":{},"4563":{}},"parent":{}}],["getsearchsuggestionsexpandenum",{"_index":1508,"name":{"4565":{},"4602":{},"4613":{},"4662":{}},"parent":{}}],["getsearchsuggestionspathparameters",{"_index":1516,"name":{"4577":{},"4605":{},"4616":{},"4664":{}},"parent":{}}],["getsearchsuggestionsqueryparameters",{"_index":1510,"name":{"4567":{},"4604":{},"4615":{},"4663":{}},"parent":{}}],["getsearchsuggestionsrequired",{"_index":1506,"name":{"4560":{}},"parent":{}}],["getsessionbridgeaccesstoken",{"_index":86,"name":{"100":{},"127":{},"154":{}},"parent":{}}],["getsessionbridgeaccesstokenbodytype",{"_index":209,"name":{"276":{},"423":{},"3668":{},"3731":{}},"parent":{}}],["getsessionbridgeaccesstokengranttypeenum",{"_index":121,"name":{"169":{},"393":{},"3638":{},"3730":{}},"parent":{}}],["getsessionbridgeaccesstokenpathparameters",{"_index":206,"name":{"273":{},"422":{},"3667":{},"3733":{}},"parent":{}}],["getsessionbridgeaccesstokenqueryparameters",{"_index":204,"name":{"271":{},"421":{},"3666":{},"3732":{}},"parent":{}}],["getsessionbridgeaccesstokenrequired",{"_index":106,"name":{"128":{}},"parent":{}}],["getshippingmethodsforshipment",{"_index":379,"name":{"626":{},"680":{},"740":{},"1525":{},"1579":{},"1639":{}},"parent":{}}],["getshippingmethodsforshipmentpathparameters",{"_index":534,"name":{"877":{},"1114":{},"1195":{},"1322":{},"1777":{},"2014":{},"2095":{},"2223":{}},"parent":{}}],["getshippingmethodsforshipmentqueryparameters",{"_index":531,"name":{"873":{},"1113":{},"1194":{},"1321":{},"1773":{},"2013":{},"2094":{},"2222":{}},"parent":{}}],["getshippingmethodsforshipmentrequired",{"_index":418,"name":{"681":{},"1580":{}},"parent":{}}],["getshoppercontext",{"_index":903,"name":{"2472":{},"2481":{},"2487":{}},"parent":{}}],["getshoppercontextpathparameters",{"_index":927,"name":{"2507":{},"2527":{},"2540":{},"2558":{}},"parent":{}}],["getshoppercontextqueryparameters",{"_index":924,"name":{"2504":{},"2526":{},"2539":{},"2557":{}},"parent":{}}],["getshoppercontextrequired",{"_index":909,"name":{"2482":{}},"parent":{}}],["getstores",{"_index":1560,"name":{"4786":{},"4791":{},"4795":{}},"parent":{}}],["getstorespathparameters",{"_index":1570,"name":{"4802":{},"4824":{},"4833":{},"4853":{}},"parent":{}}],["getstoresqueryparameters",{"_index":1567,"name":{"4797":{},"4823":{},"4832":{},"4852":{}},"parent":{}}],["getstoresrequired",{"_index":1565,"name":{"4792":{}},"parent":{}}],["getsubscriptions",{"_index":871,"name":{"2389":{},"2394":{},"2398":{}},"parent":{}}],["getsubscriptionspathparameters",{"_index":882,"name":{"2405":{},"2419":{},"2428":{},"2447":{}},"parent":{}}],["getsubscriptionsqueryparameters",{"_index":878,"name":{"2400":{},"2418":{},"2427":{},"2446":{}},"parent":{}}],["getsubscriptionsrequired",{"_index":876,"name":{"2395":{}},"parent":{}}],["gettaxesfrombasket",{"_index":380,"name":{"627":{},"682":{},"741":{},"1526":{},"1581":{},"1640":{}},"parent":{}}],["gettaxesfrombasketpathparameters",{"_index":541,"name":{"885":{},"1116":{},"1197":{},"1324":{},"1785":{},"2016":{},"2097":{},"2225":{}},"parent":{}}],["gettaxesfrombasketqueryparameters",{"_index":538,"name":{"882":{},"1115":{},"1196":{},"1323":{},"1782":{},"2015":{},"2096":{},"2224":{}},"parent":{}}],["gettaxesfrombasketrequired",{"_index":419,"name":{"683":{},"1582":{}},"parent":{}}],["gettaxesfromorder",{"_index":1323,"name":{"3882":{},"3897":{},"3909":{}},"parent":{}}],["gettaxesfromorderpathparameters",{"_index":1365,"name":{"3947":{},"3989":{},"4010":{},"4083":{}},"parent":{}}],["gettaxesfromorderqueryparameters",{"_index":1362,"name":{"3944":{},"3988":{},"4009":{},"4082":{}},"parent":{}}],["gettaxesfromorderrequired",{"_index":1333,"name":{"3898":{}},"parent":{}}],["gettrustedagentaccesstoken",{"_index":87,"name":{"101":{},"129":{},"155":{}},"parent":{}}],["gettrustedagentaccesstokenbodytype",{"_index":220,"name":{"294":{},"426":{},"3671":{},"3735":{}},"parent":{}}],["gettrustedagentaccesstokengranttypeenum",{"_index":122,"name":{"170":{},"394":{},"3639":{},"3734":{}},"parent":{}}],["gettrustedagentaccesstokenpathparameters",{"_index":217,"name":{"291":{},"425":{},"3670":{},"3737":{}},"parent":{}}],["gettrustedagentaccesstokenqueryparameters",{"_index":215,"name":{"289":{},"424":{},"3669":{},"3736":{}},"parent":{}}],["gettrustedagentaccesstokenrequired",{"_index":107,"name":{"130":{}},"parent":{}}],["gettrustedagentauthorizationtoken",{"_index":88,"name":{"102":{},"131":{},"156":{}},"parent":{}}],["gettrustedagentauthorizationtokenpathparameters",{"_index":228,"name":{"315":{},"428":{},"3673":{},"3740":{}},"parent":{}}],["gettrustedagentauthorizationtokenqueryparameters",{"_index":225,"name":{"306":{},"427":{},"3672":{},"3739":{}},"parent":{}}],["gettrustedagentauthorizationtokenrequired",{"_index":108,"name":{"132":{}},"parent":{}}],["gettrustedagentauthorizationtokenresponsetypeenum",{"_index":123,"name":{"171":{},"395":{},"3640":{},"3738":{}},"parent":{}}],["gettrustedsystemaccesstoken",{"_index":89,"name":{"103":{},"133":{},"157":{}},"parent":{}}],["gettrustedsystemaccesstokenbodytype",{"_index":236,"name":{"323":{},"431":{},"3676":{},"3744":{}},"parent":{}}],["gettrustedsystemaccesstokengranttypeenum",{"_index":124,"name":{"172":{},"396":{},"3641":{},"3741":{}},"parent":{}}],["gettrustedsystemaccesstokenhintenum",{"_index":125,"name":{"173":{},"397":{},"3642":{},"3742":{}},"parent":{}}],["gettrustedsystemaccesstokenidporiginenum",{"_index":126,"name":{"174":{},"398":{},"3643":{},"3743":{}},"parent":{}}],["gettrustedsystemaccesstokenpathparameters",{"_index":233,"name":{"320":{},"430":{},"3675":{},"3746":{}},"parent":{}}],["gettrustedsystemaccesstokenqueryparameters",{"_index":231,"name":{"318":{},"429":{},"3674":{},"3745":{}},"parent":{}}],["gettrustedsystemaccesstokenrequired",{"_index":109,"name":{"134":{}},"parent":{}}],["geturlmapping",{"_index":1537,"name":{"4718":{},"4722":{},"4724":{}},"parent":{}}],["geturlmappingpathparameters",{"_index":1546,"name":{"4730":{},"4737":{},"4744":{},"4757":{}},"parent":{}}],["geturlmappingqueryparameters",{"_index":1542,"name":{"4725":{},"4736":{},"4743":{},"4756":{}},"parent":{}}],["geturlmappingrequired",{"_index":1541,"name":{"4723":{}},"parent":{}}],["getuserinfo",{"_index":90,"name":{"104":{},"135":{},"158":{}},"parent":{}}],["getuserinfopathparameters",{"_index":243,"name":{"337":{},"433":{},"3678":{},"3748":{}},"parent":{}}],["getuserinfoqueryparameters",{"_index":240,"name":{"334":{},"432":{},"3677":{},"3747":{}},"parent":{}}],["getuserinforequired",{"_index":110,"name":{"136":{}},"parent":{}}],["getwellknownopenidconfiguration",{"_index":91,"name":{"105":{},"137":{},"159":{}},"parent":{}}],["getwellknownopenidconfigurationpathparameters",{"_index":248,"name":{"342":{},"435":{},"3680":{},"3750":{}},"parent":{}}],["getwellknownopenidconfigurationqueryparameters",{"_index":246,"name":{"340":{},"434":{},"3679":{},"3749":{}},"parent":{}}],["getwellknownopenidconfigurationrequired",{"_index":111,"name":{"138":{}},"parent":{}}],["giftcertificate",{"_index":1292,"name":{"3579":{},"3583":{},"3620":{},"3629":{}},"parent":{}}],["giftcertificateitem",{"_index":321,"name":{"520":{},"578":{},"1259":{},"1383":{},"1417":{},"1476":{},"2159":{},"2284":{},"2568":{},"2691":{},"3261":{},"3417":{},"3776":{},"3836":{},"4033":{},"4102":{}},"parent":{}}],["giftcertificateitemid",{"_index":565,"name":{"915":{},"1013":{},"1815":{},"1913":{}},"parent":{}}],["giftcertificaterequest",{"_index":1294,"name":{"3581":{},"3585":{},"3622":{},"3631":{}},"parent":{}}],["giftcertificatestatusenum",{"_index":1293,"name":{"3580":{},"3584":{},"3621":{},"3630":{}},"parent":{}}],["globalobject",{"_index":39,"name":{"44":{},"476":{}},"parent":{}}],["grant_type",{"_index":177,"name":{"231":{},"249":{},"283":{},"300":{},"326":{}},"parent":{}}],["granttype",{"_index":69,"name":{"75":{},"82":{},"3696":{},"3765":{}},"parent":{}}],["groupedtaxitem",{"_index":688,"name":{"1435":{},"1477":{},"2160":{},"2285":{},"2586":{},"2692":{},"3262":{},"3418":{},"3794":{},"3837":{},"4034":{},"4103":{}},"parent":{}}],["guestorderlookup",{"_index":1324,"name":{"3883":{},"3899":{},"3910":{}},"parent":{}}],["guestorderlookuppathparameters",{"_index":1371,"name":{"3955":{},"3991":{},"4012":{},"4085":{}},"parent":{}}],["guestorderlookupqueryparameters",{"_index":1368,"name":{"3951":{},"3990":{},"4011":{},"4084":{}},"parent":{}}],["guestorderlookuprequired",{"_index":1334,"name":{"3900":{}},"parent":{}}],["hasfetchavailable",{"_index":40,"name":{"45":{},"477":{}},"parent":{}}],["hash",{"_index":49,"name":{"55":{}},"parent":{}}],["headers",{"_index":22,"name":{"19":{},"27":{}},"parent":{}}],["helpers",{"_index":0,"name":{"0":{}},"parent":{"1":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"10":{},"11":{},"13":{},"42":{},"43":{},"44":{},"45":{},"46":{},"459":{},"460":{},"461":{},"462":{},"463":{},"464":{},"465":{},"466":{},"467":{},"468":{},"469":{},"470":{},"471":{},"472":{},"473":{},"474":{},"475":{},"476":{},"477":{},"478":{},"479":{},"480":{},"481":{},"482":{},"483":{},"484":{},"485":{},"486":{},"487":{},"488":{},"489":{},"490":{},"491":{},"492":{},"493":{},"494":{},"495":{},"496":{},"497":{},"498":{},"499":{},"500":{},"501":{},"502":{},"503":{},"504":{},"505":{},"506":{},"507":{},"508":{},"514":{},"515":{}}}],["helpers.baseuriparameters",{"_index":3,"name":{},"parent":{"2":{}}}],["helpers.customparams",{"_index":314,"name":{},"parent":{"509":{},"510":{},"511":{},"512":{},"513":{}}}],["helpers.customqueryparameters",{"_index":14,"name":{},"parent":{"12":{}}}],["helpers.customrequestbody",{"_index":16,"name":{},"parent":{"14":{}}}],["helpers.localecode",{"_index":11,"name":{},"parent":{"9":{}}}],["hint",{"_index":150,"name":{"201":{},"250":{},"270":{},"327":{},"359":{},"375":{}},"parent":{}}],["host",{"_index":50,"name":{"56":{}},"parent":{}}],["hostname",{"_index":51,"name":{"57":{}},"parent":{}}],["href",{"_index":52,"name":{"58":{}},"parent":{}}],["id",{"_index":1425,"name":{"4247":{},"4262":{}},"parent":{}}],["idp_name",{"_index":203,"name":{"269":{}},"parent":{}}],["idp_origin",{"_index":224,"name":{"302":{},"312":{},"329":{}},"parent":{}}],["ids",{"_index":1414,"name":{"4233":{},"4265":{},"4422":{},"4799":{}},"parent":{}}],["image",{"_index":943,"name":{"2597":{},"2693":{},"3263":{},"3419":{},"4142":{},"4179":{},"4319":{},"4365":{},"4490":{},"4521":{},"4630":{},"4675":{}},"parent":{}}],["imagegroup",{"_index":960,"name":{"2614":{},"2694":{},"3264":{},"3420":{},"4161":{},"4180":{},"4320":{},"4366":{},"4493":{},"4522":{},"4631":{},"4676":{}},"parent":{}}],["includedcustomproductproperties",{"_index":1514,"name":{"4575":{}},"parent":{}}],["includedcustomvariationproperties",{"_index":1525,"name":{"4593":{}},"parent":{}}],["includeeinsteinsuggestedphrases",{"_index":1515,"name":{"4576":{}},"parent":{}}],["introspecttoken",{"_index":92,"name":{"106":{},"139":{},"160":{}},"parent":{}}],["introspecttokenbodytype",{"_index":256,"name":{"350":{},"438":{},"3683":{},"3752":{}},"parent":{}}],["introspecttokenpathparameters",{"_index":253,"name":{"347":{},"437":{},"3682":{},"3754":{}},"parent":{}}],["introspecttokenqueryparameters",{"_index":251,"name":{"345":{},"436":{},"3681":{},"3753":{}},"parent":{}}],["introspecttokenrequired",{"_index":112,"name":{"140":{}},"parent":{}}],["introspecttokentokentypehintenum",{"_index":127,"name":{"175":{},"399":{},"3644":{},"3751":{}},"parent":{}}],["inventory",{"_index":961,"name":{"2615":{},"2695":{},"3265":{},"3421":{},"4162":{},"4181":{},"4321":{},"4367":{}},"parent":{}}],["inventoryids",{"_index":1429,"name":{"4251":{},"4266":{}},"parent":{}}],["isbrowser",{"_index":37,"name":{"42":{},"474":{}},"parent":{}}],["isnode",{"_index":38,"name":{"43":{},"475":{}},"parent":{}}],["itemid",{"_index":493,"name":{"825":{},"922":{},"1021":{},"1724":{},"1822":{},"1921":{},"2929":{},"2989":{},"3013":{},"3099":{}},"parent":{}}],["lastname",{"_index":1189,"name":{"3027":{}},"parent":{}}],["latitude",{"_index":1577,"name":{"4809":{}},"parent":{}}],["levels",{"_index":1416,"name":{"4234":{},"4242":{}},"parent":{}}],["limit",{"_index":1135,"name":{"2962":{},"4571":{},"4594":{},"4815":{}},"parent":{}}],["listid",{"_index":1090,"name":{"2905":{},"2921":{},"2930":{},"2981":{},"2990":{},"3014":{},"3021":{},"3091":{},"3100":{}},"parent":{}}],["locale",{"_index":165,"name":{"217":{},"265":{},"768":{},"776":{},"784":{},"792":{},"800":{},"831":{},"838":{},"853":{},"861":{},"876":{},"894":{},"901":{},"910":{},"919":{},"928":{},"937":{},"946":{},"957":{},"964":{},"973":{},"982":{},"990":{},"1000":{},"1008":{},"1018":{},"1028":{},"1037":{},"1054":{},"1065":{},"1074":{},"1667":{},"1675":{},"1683":{},"1691":{},"1699":{},"1731":{},"1738":{},"1753":{},"1761":{},"1776":{},"1794":{},"1801":{},"1810":{},"1819":{},"1828":{},"1837":{},"1846":{},"1857":{},"1864":{},"1873":{},"1882":{},"1890":{},"1900":{},"1908":{},"1918":{},"1928":{},"1937":{},"1954":{},"1965":{},"1974":{},"2403":{},"2411":{},"3518":{},"3531":{},"3916":{},"3923":{},"3931":{},"3939":{},"3954":{},"3962":{},"3971":{},"4235":{},"4243":{},"4257":{},"4272":{},"4423":{},"4573":{},"4588":{},"4729":{},"4801":{},"4814":{}},"parent":{}}],["localecode",{"_index":9,"name":{"8":{},"496":{},"553":{},"579":{},"1260":{},"1384":{},"1451":{},"1478":{},"2161":{},"2286":{},"2376":{},"2383":{},"2441":{},"2456":{},"3488":{},"3494":{},"3558":{},"3572":{},"3806":{},"3838":{},"4035":{},"4104":{},"4170":{},"4182":{},"4322":{},"4368":{},"4394":{},"4400":{},"4459":{},"4472":{},"4494":{},"4523":{},"4632":{},"4677":{},"4708":{},"4712":{},"4751":{},"4760":{},"4767":{},"4776":{},"4843":{},"4859":{}},"parent":{}}],["login_id",{"_index":194,"name":{"254":{},"284":{},"301":{},"311":{},"328":{}},"parent":{}}],["loginguestuser",{"_index":304,"name":{"468":{},"483":{}},"parent":{}}],["loginguestuserprivate",{"_index":303,"name":{"467":{},"482":{}},"parent":{}}],["loginidpuser",{"_index":302,"name":{"466":{},"481":{}},"parent":{}}],["loginregistereduserb2c",{"_index":305,"name":{"469":{},"484":{}},"parent":{}}],["logout",{"_index":308,"name":{"473":{},"488":{}},"parent":{}}],["logoutcustomer",{"_index":93,"name":{"107":{},"141":{},"161":{}},"parent":{}}],["logoutcustomerhintenum",{"_index":128,"name":{"176":{},"400":{},"3645":{},"3755":{}},"parent":{}}],["logoutcustomerpathparameters",{"_index":264,"name":{"360":{},"440":{},"3685":{},"3757":{}},"parent":{}}],["logoutcustomerqueryparameters",{"_index":261,"name":{"354":{},"439":{},"3684":{},"3756":{}},"parent":{}}],["logoutcustomerrequired",{"_index":113,"name":{"142":{}},"parent":{}}],["longitude",{"_index":1578,"name":{"4810":{}},"parent":{}}],["master",{"_index":953,"name":{"2607":{},"2696":{},"3266":{},"3422":{},"4154":{},"4183":{},"4323":{},"4369":{}},"parent":{}}],["maxdistance",{"_index":1579,"name":{"4811":{}},"parent":{}}],["merge",{"_index":596,"name":{"956":{},"1856":{}},"parent":{}}],["mergebasket",{"_index":381,"name":{"628":{},"684":{},"742":{},"1527":{},"1583":{},"1641":{}},"parent":{}}],["mergebasketpathparameters",{"_index":549,"name":{"895":{},"1118":{},"1199":{},"1327":{},"1795":{},"2018":{},"2099":{},"2228":{}},"parent":{}}],["mergebasketproductitemmergemodeenum",{"_index":442,"name":{"764":{},"1084":{},"1165":{},"1325":{},"1663":{},"1984":{},"2065":{},"2226":{}},"parent":{}}],["mergebasketqueryparameters",{"_index":544,"name":{"889":{},"1117":{},"1198":{},"1326":{},"1789":{},"2017":{},"2098":{},"2227":{}},"parent":{}}],["mergebasketrequired",{"_index":420,"name":{"685":{},"1584":{}},"parent":{}}],["message",{"_index":292,"name":{"456":{}},"parent":{}}],["mode",{"_index":164,"name":{"216":{},"263":{}},"parent":{}}],["modelconfiguration",{"_index":845,"name":{"2318":{},"2321":{},"2357":{},"2365":{}},"parent":{}}],["name",{"_index":291,"name":{"455":{}},"parent":{}}],["nanoid",{"_index":297,"name":{"461":{}},"parent":{}}],["new_password",{"_index":276,"name":{"373":{}},"parent":{}}],["novalue",{"_index":319,"name":{"518":{},"580":{},"1261":{},"1385":{},"1415":{},"1479":{},"2162":{},"2287":{},"2566":{},"2697":{},"3267":{},"3423":{},"3774":{},"3839":{},"4036":{},"4105":{},"4152":{},"4184":{},"4324":{},"4370":{},"4484":{},"4524":{},"4633":{},"4678":{}},"parent":{}}],["oauth2errorresponse",{"_index":70,"name":{"76":{},"83":{},"3697":{},"3766":{}},"parent":{}}],["offset",{"_index":1136,"name":{"2963":{},"4595":{},"4816":{}},"parent":{}}],["option",{"_index":959,"name":{"2613":{},"2698":{},"3268":{},"3424":{},"4160":{},"4185":{},"4325":{},"4371":{}},"parent":{}}],["optionitem",{"_index":343,"name":{"542":{},"581":{},"1262":{},"1386":{},"1440":{},"1480":{},"2163":{},"2288":{},"2591":{},"2699":{},"3269":{},"3425":{},"3799":{},"3840":{},"4037":{},"4106":{}},"parent":{}}],["optionvalue",{"_index":958,"name":{"2612":{},"2700":{},"3270":{},"3426":{},"4159":{},"4186":{},"4326":{},"4372":{}},"parent":{}}],["order",{"_index":971,"name":{"2625":{},"2701":{},"3271":{},"3427":{},"3807":{},"3841":{},"4038":{},"4107":{}},"parent":{}}],["orderaddress",{"_index":331,"name":{"530":{},"582":{},"1263":{},"1387":{},"1427":{},"1481":{},"2164":{},"2289":{},"2578":{},"2709":{},"3279":{},"3435":{},"3786":{},"3849":{},"4046":{},"4115":{}},"parent":{}}],["orderchanneltypeenum",{"_index":972,"name":{"2626":{},"2702":{},"3272":{},"3428":{},"3808":{},"3842":{},"4039":{},"4108":{}},"parent":{}}],["orderconfirmationstatusenum",{"_index":973,"name":{"2627":{},"2703":{},"3273":{},"3429":{},"3809":{},"3843":{},"4040":{},"4109":{}},"parent":{}}],["orderexportstatusenum",{"_index":974,"name":{"2628":{},"2704":{},"3274":{},"3430":{},"3810":{},"3844":{},"4041":{},"4110":{}},"parent":{}}],["orderlookuprequest",{"_index":1315,"name":{"3815":{},"3850":{},"4047":{},"4116":{}},"parent":{}}],["orderno",{"_index":1349,"name":{"3927":{},"3934":{},"3943":{},"3950":{},"3958":{},"3967":{},"3976":{}},"parent":{}}],["orderpaymentcardrequest",{"_index":348,"name":{"547":{},"583":{},"1264":{},"1388":{},"1445":{},"1482":{},"2165":{},"2290":{},"3816":{},"3851":{},"4048":{},"4117":{}},"parent":{}}],["orderpaymentinstrument",{"_index":324,"name":{"523":{},"584":{},"1265":{},"1389":{},"1420":{},"1483":{},"2166":{},"2291":{},"2571":{},"2710":{},"3280":{},"3436":{},"3779":{},"3852":{},"4049":{},"4118":{}},"parent":{}}],["orderpaymentinstrumentrequest",{"_index":1316,"name":{"3817":{},"3853":{},"4050":{},"4119":{}},"parent":{}}],["orderpaymentstatusenum",{"_index":975,"name":{"2629":{},"2705":{},"3275":{},"3431":{},"3811":{},"3845":{},"4042":{},"4111":{}},"parent":{}}],["ordershippingstatusenum",{"_index":976,"name":{"2630":{},"2706":{},"3276":{},"3432":{},"3812":{},"3846":{},"4043":{},"4112":{}},"parent":{}}],["orderstatusenum",{"_index":977,"name":{"2631":{},"2707":{},"3277":{},"3433":{},"3813":{},"3847":{},"4044":{},"4113":{}},"parent":{}}],["ordertaxationenum",{"_index":978,"name":{"2632":{},"2708":{},"3278":{},"3434":{},"3814":{},"3848":{},"4045":{},"4114":{}},"parent":{}}],["organizationid",{"_index":134,"name":{"182":{},"207":{},"212":{},"225":{},"241":{},"246":{},"259":{},"275":{},"293":{},"317":{},"322":{},"339":{},"344":{},"349":{},"362":{},"367":{},"380":{},"512":{},"771":{},"779":{},"787":{},"795":{},"803":{},"810":{},"817":{},"824":{},"834":{},"841":{},"848":{},"856":{},"864":{},"871":{},"879":{},"887":{},"897":{},"904":{},"913":{},"923":{},"932":{},"941":{},"950":{},"960":{},"967":{},"976":{},"985":{},"995":{},"1003":{},"1011":{},"1022":{},"1031":{},"1041":{},"1049":{},"1058":{},"1068":{},"1077":{},"1670":{},"1678":{},"1686":{},"1694":{},"1702":{},"1709":{},"1716":{},"1723":{},"1734":{},"1741":{},"1748":{},"1756":{},"1764":{},"1771":{},"1779":{},"1787":{},"1797":{},"1804":{},"1813":{},"1823":{},"1832":{},"1841":{},"1850":{},"1860":{},"1867":{},"1876":{},"1885":{},"1895":{},"1903":{},"1911":{},"1922":{},"1931":{},"1941":{},"1949":{},"1958":{},"1968":{},"1977":{},"2339":{},"2407":{},"2414":{},"2496":{},"2503":{},"2510":{},"2518":{},"2885":{},"2892":{},"2899":{},"2907":{},"2915":{},"2923":{},"2932":{},"2939":{},"2947":{},"2954":{},"2967":{},"2975":{},"2983":{},"2992":{},"2999":{},"3007":{},"3015":{},"3022":{},"3031":{},"3037":{},"3043":{},"3049":{},"3057":{},"3063":{},"3070":{},"3078":{},"3085":{},"3093":{},"3102":{},"3522":{},"3534":{},"3602":{},"3919":{},"3926":{},"3935":{},"3942":{},"3949":{},"3957":{},"3966":{},"3975":{},"4239":{},"4248":{},"4261":{},"4276":{},"4426":{},"4436":{},"4579":{},"4598":{},"4732":{},"4804":{},"4819":{}},"parent":{}}],["origin",{"_index":54,"name":{"60":{}},"parent":{}}],["overrideexisting",{"_index":595,"name":{"955":{},"1855":{}},"parent":{}}],["page",{"_index":1259,"name":{"3489":{},"3495":{},"3559":{},"3573":{}},"parent":{}}],["pageid",{"_index":1275,"name":{"3521":{}},"parent":{}}],["pagemetatag",{"_index":955,"name":{"2609":{},"2711":{},"3281":{},"3437":{},"4156":{},"4187":{},"4327":{},"4373":{},"4495":{},"4525":{},"4634":{},"4679":{}},"parent":{}}],["pageresult",{"_index":1260,"name":{"3490":{},"3496":{},"3560":{},"3574":{}},"parent":{}}],["paginatedresultbase",{"_index":992,"name":{"2647":{},"2712":{},"3282":{},"3438":{},"4496":{},"4526":{},"4635":{},"4680":{},"4768":{},"4777":{},"4844":{},"4860":{}},"parent":{}}],["parameters",{"_index":23,"name":{"20":{},"29":{},"3516":{},"3529":{}},"parent":{}}],["paramkeys",{"_index":96,"name":{"111":{},"650":{},"1549":{},"2329":{},"2392":{},"2475":{},"2790":{},"3505":{},"3592":{},"3887":{},"4213":{},"4411":{},"4557":{},"4720":{},"4789":{}},"parent":{}}],["password",{"_index":55,"name":{"61":{}},"parent":{}}],["passwordchangerequest",{"_index":993,"name":{"2648":{},"2713":{},"3283":{},"3439":{}},"parent":{}}],["pathname",{"_index":56,"name":{"62":{}},"parent":{}}],["pathparameters",{"_index":4,"name":{"3":{},"497":{}},"parent":{}}],["pathrecord",{"_index":1392,"name":{"4165":{},"4188":{},"4328":{},"4374":{}},"parent":{}}],["paymentbankaccountrequest",{"_index":981,"name":{"2635":{},"2714":{},"3284":{},"3440":{}},"parent":{}}],["paymentcard",{"_index":323,"name":{"522":{},"585":{},"1266":{},"1390":{},"1419":{},"1484":{},"2167":{},"2292":{},"2570":{},"2715":{},"3285":{},"3441":{},"3778":{},"3854":{},"4051":{},"4120":{}},"parent":{}}],["paymentcardspec",{"_index":354,"name":{"554":{},"586":{},"1267":{},"1391":{},"1452":{},"1485":{},"2168":{},"2293":{},"3818":{},"3855":{},"4052":{},"4121":{}},"parent":{}}],["paymentinstrumentid",{"_index":577,"name":{"931":{},"1040":{},"1831":{},"1940":{},"2913":{},"2973":{},"3965":{},"3974":{}},"parent":{}}],["paymentmethod",{"_index":355,"name":{"555":{},"587":{},"1268":{},"1392":{},"1453":{},"1486":{},"2169":{},"2294":{},"3819":{},"3856":{},"4053":{},"4122":{}},"parent":{}}],["paymentmethodresult",{"_index":356,"name":{"556":{},"588":{},"1269":{},"1393":{},"1454":{},"1487":{},"2170":{},"2295":{},"3820":{},"3857":{},"4054":{},"4123":{}},"parent":{}}],["perpricebook",{"_index":1433,"name":{"4254":{},"4269":{},"4591":{}},"parent":{}}],["port",{"_index":57,"name":{"63":{}},"parent":{}}],["postalcode",{"_index":1580,"name":{"4812":{}},"parent":{}}],["prettify",{"_index":6,"name":{"5":{}},"parent":{}}],["priceadjustment",{"_index":329,"name":{"528":{},"589":{},"1270":{},"1394":{},"1425":{},"1488":{},"2171":{},"2296":{},"2576":{},"2716":{},"3286":{},"3442":{},"3784":{},"3858":{},"4055":{},"4124":{}},"parent":{}}],["priceadjustmentid",{"_index":584,"name":{"940":{},"1048":{},"1840":{},"1948":{}},"parent":{}}],["priceadjustmentrequest",{"_index":357,"name":{"557":{},"590":{},"1271":{},"1395":{},"1455":{},"1489":{},"2172":{},"2297":{}},"parent":{}}],["priceadjustmentrequestlevelenum",{"_index":358,"name":{"558":{},"591":{},"1272":{},"1396":{},"1456":{},"1490":{},"2173":{},"2298":{}},"parent":{}}],["pricerange",{"_index":951,"name":{"2605":{},"2717":{},"3287":{},"3443":{},"4150":{},"4189":{},"4329":{},"4375":{},"4497":{},"4527":{},"4636":{},"4681":{}},"parent":{}}],["product",{"_index":962,"name":{"2616":{},"2718":{},"3288":{},"3444":{},"4163":{},"4190":{},"4330":{},"4376":{}},"parent":{}}],["productdetailslink",{"_index":325,"name":{"524":{},"592":{},"1273":{},"1397":{},"1421":{},"1491":{},"2174":{},"2299":{},"2572":{},"2719":{},"3289":{},"3445":{},"3780":{},"3859":{},"4056":{},"4125":{}},"parent":{}}],["productid",{"_index":1281,"name":{"3526":{}},"parent":{}}],["productitem",{"_index":344,"name":{"543":{},"593":{},"1274":{},"1398":{},"1441":{},"1492":{},"2175":{},"2300":{},"2592":{},"2720":{},"3290":{},"3446":{},"3800":{},"3860":{},"4057":{},"4126":{}},"parent":{}}],["productitemmergemode",{"_index":548,"name":{"893":{},"1793":{}},"parent":{}}],["productlink",{"_index":956,"name":{"2610":{},"2721":{},"3291":{},"3447":{},"4157":{},"4191":{},"4331":{},"4377":{}},"parent":{}}],["productlinktypeenum",{"_index":957,"name":{"2611":{},"2722":{},"3292":{},"3448":{},"4158":{},"4192":{},"4332":{},"4378":{}},"parent":{}}],["productlistevent",{"_index":983,"name":{"2637":{},"2723":{},"3293":{},"3449":{}},"parent":{}}],["productlistitemreference",{"_index":341,"name":{"540":{},"594":{},"1275":{},"1399":{},"1438":{},"1493":{},"2176":{},"2301":{},"2589":{},"2724":{},"3294":{},"3450":{},"3797":{},"3861":{},"4058":{},"4127":{}},"parent":{}}],["productlistitemreferencetypeenum",{"_index":342,"name":{"541":{},"595":{},"1276":{},"1400":{},"1439":{},"1494":{},"2177":{},"2302":{},"2590":{},"2725":{},"3295":{},"3451":{},"3798":{},"3862":{},"4059":{},"4128":{}},"parent":{}}],["productlistlink",{"_index":339,"name":{"538":{},"596":{},"1277":{},"1401":{},"1436":{},"1495":{},"2178":{},"2303":{},"2587":{},"2726":{},"3296":{},"3452":{},"3795":{},"3863":{},"4060":{},"4129":{}},"parent":{}}],["productlistlinktypeenum",{"_index":340,"name":{"539":{},"597":{},"1278":{},"1402":{},"1437":{},"1496":{},"2179":{},"2304":{},"2588":{},"2727":{},"3297":{},"3453":{},"3796":{},"3864":{},"4061":{},"4130":{}},"parent":{}}],["productlistregistrant",{"_index":994,"name":{"2649":{},"2728":{},"3298":{},"3454":{}},"parent":{}}],["productlistshippingaddress",{"_index":987,"name":{"2641":{},"2729":{},"3299":{},"3455":{}},"parent":{}}],["productpricetable",{"_index":948,"name":{"2602":{},"2730":{},"3300":{},"3456":{},"4147":{},"4193":{},"4333":{},"4379":{},"4498":{},"4528":{},"4637":{},"4682":{}},"parent":{}}],["productpromotion",{"_index":952,"name":{"2606":{},"2731":{},"3301":{},"3457":{},"4151":{},"4194":{},"4334":{},"4380":{},"4499":{},"4529":{},"4638":{},"4683":{}},"parent":{}}],["productref",{"_index":1490,"name":{"4500":{},"4530":{},"4639":{},"4684":{}},"parent":{}}],["productresult",{"_index":1395,"name":{"4171":{},"4195":{},"4335":{},"4381":{}},"parent":{}}],["productsearch",{"_index":1503,"name":{"4555":{},"4561":{},"4564":{}},"parent":{}}],["productsearchexpandenum",{"_index":1509,"name":{"4566":{},"4603":{},"4614":{},"4665":{}},"parent":{}}],["productsearchhit",{"_index":1491,"name":{"4504":{},"4531":{},"4640":{},"4685":{}},"parent":{}}],["productsearchpathparameters",{"_index":1526,"name":{"4596":{},"4607":{},"4618":{},"4667":{}},"parent":{}}],["productsearchqueryparameters",{"_index":1519,"name":{"4580":{},"4606":{},"4617":{},"4666":{}},"parent":{}}],["productsearchrefinement",{"_index":1493,"name":{"4506":{},"4532":{},"4641":{},"4686":{}},"parent":{}}],["productsearchrefinementvalue",{"_index":1492,"name":{"4505":{},"4533":{},"4642":{},"4687":{}},"parent":{}}],["productsearchrequired",{"_index":1507,"name":{"4562":{}},"parent":{}}],["productsearchresult",{"_index":1496,"name":{"4509":{},"4534":{},"4643":{},"4688":{}},"parent":{}}],["productsearchsortingoption",{"_index":1495,"name":{"4508":{},"4535":{},"4644":{},"4689":{}},"parent":{}}],["productsuggestions",{"_index":1498,"name":{"4511":{},"4536":{},"4645":{},"4690":{}},"parent":{}}],["producttype",{"_index":947,"name":{"2601":{},"2732":{},"3302":{},"3458":{},"4146":{},"4196":{},"4336":{},"4382":{},"4503":{},"4537":{},"4646":{},"4691":{}},"parent":{}}],["promotion",{"_index":1451,"name":{"4395":{},"4401":{},"4460":{},"4473":{}},"parent":{}}],["promotionresult",{"_index":1452,"name":{"4396":{},"4402":{},"4461":{},"4474":{}},"parent":{}}],["protocol",{"_index":58,"name":{"64":{}},"parent":{}}],["proxy",{"_index":21,"name":{"18":{},"26":{}},"parent":{}}],["publicproductlist",{"_index":997,"name":{"2652":{},"2733":{},"3303":{},"3459":{}},"parent":{}}],["publicproductlistinfo",{"_index":999,"name":{"2654":{},"2735":{},"3305":{},"3461":{}},"parent":{}}],["publicproductlistinfotypeenum",{"_index":1000,"name":{"2655":{},"2736":{},"3306":{},"3462":{}},"parent":{}}],["publicproductlistitem",{"_index":995,"name":{"2650":{},"2737":{},"3307":{},"3463":{}},"parent":{}}],["publicproductlistitemtypeenum",{"_index":996,"name":{"2651":{},"2738":{},"3308":{},"3464":{}},"parent":{}}],["publicproductlistresult",{"_index":1001,"name":{"2656":{},"2739":{},"3309":{},"3465":{}},"parent":{}}],["publicproductlisttypeenum",{"_index":998,"name":{"2653":{},"2734":{},"3304":{},"3460":{}},"parent":{}}],["pwd_action_token",{"_index":275,"name":{"371":{}},"parent":{}}],["pwdless_login_token",{"_index":193,"name":{"251":{}},"parent":{}}],["q",{"_index":1513,"name":{"4570":{},"4584":{}},"parent":{}}],["queryparameters",{"_index":5,"name":{"4":{},"498":{}},"parent":{}}],["recommendation",{"_index":950,"name":{"2604":{},"2740":{},"3310":{},"3466":{},"4149":{},"4197":{},"4337":{},"4383":{}},"parent":{}}],["recommendationtype",{"_index":949,"name":{"2603":{},"2741":{},"3311":{},"3467":{},"4148":{},"4198":{},"4338":{},"4384":{}},"parent":{}}],["redirect_uri",{"_index":141,"name":{"187":{},"195":{},"232":{},"313":{}},"parent":{}}],["refine",{"_index":1522,"name":{"4585":{}},"parent":{}}],["refresh_token",{"_index":174,"name":{"228":{},"357":{}},"parent":{}}],["refreshaccesstoken",{"_index":307,"name":{"472":{},"487":{}},"parent":{}}],["region",{"_index":1257,"name":{"3484":{},"3497":{},"3561":{},"3575":{}},"parent":{}}],["registercustomer",{"_index":1028,"name":{"2780":{},"2832":{},"2870":{}},"parent":{}}],["registercustomerpathparameters",{"_index":1202,"name":{"3041":{},"3147":{},"3210":{},"3370":{}},"parent":{}}],["registercustomerqueryparameters",{"_index":1199,"name":{"3038":{},"3146":{},"3209":{},"3369":{}},"parent":{}}],["registercustomerrequired",{"_index":1058,"name":{"2833":{}},"parent":{}}],["registerexternalprofile",{"_index":1029,"name":{"2781":{},"2834":{},"2871":{}},"parent":{}}],["registerexternalprofilepathparameters",{"_index":1208,"name":{"3047":{},"3149":{},"3212":{},"3372":{}},"parent":{}}],["registerexternalprofilequeryparameters",{"_index":1205,"name":{"3044":{},"3148":{},"3211":{},"3371":{}},"parent":{}}],["registerexternalprofilerequired",{"_index":1059,"name":{"2835":{}},"parent":{}}],["removecouponfrombasket",{"_index":382,"name":{"629":{},"686":{},"743":{},"1528":{},"1585":{},"1642":{}},"parent":{}}],["removecouponfrombasketpathparameters",{"_index":555,"name":{"902":{},"1120":{},"1201":{},"1329":{},"1802":{},"2020":{},"2101":{},"2230":{}},"parent":{}}],["removecouponfrombasketqueryparameters",{"_index":552,"name":{"898":{},"1119":{},"1200":{},"1328":{},"1798":{},"2019":{},"2100":{},"2229":{}},"parent":{}}],["removecouponfrombasketrequired",{"_index":421,"name":{"687":{},"1586":{}},"parent":{}}],["removecustomeraddress",{"_index":1030,"name":{"2782":{},"2836":{},"2872":{}},"parent":{}}],["removecustomeraddresspathparameters",{"_index":1214,"name":{"3053":{},"3151":{},"3214":{},"3374":{}},"parent":{}}],["removecustomeraddressqueryparameters",{"_index":1211,"name":{"3050":{},"3150":{},"3213":{},"3373":{}},"parent":{}}],["removecustomeraddressrequired",{"_index":1060,"name":{"2837":{}},"parent":{}}],["removeexternaltax",{"_index":616,"name":{"981":{},"992":{},"1016":{},"1027":{},"1035":{},"1063":{},"1881":{},"1892":{},"1916":{},"1927":{},"1935":{},"1963":{}},"parent":{}}],["removegiftcertificateitemfrombasket",{"_index":383,"name":{"630":{},"688":{},"744":{},"1529":{},"1587":{},"1643":{}},"parent":{}}],["removegiftcertificateitemfrombasketpathparameters",{"_index":562,"name":{"911":{},"1122":{},"1203":{},"1331":{},"1811":{},"2022":{},"2103":{},"2232":{}},"parent":{}}],["removegiftcertificateitemfrombasketqueryparameters",{"_index":559,"name":{"907":{},"1121":{},"1202":{},"1330":{},"1807":{},"2021":{},"2102":{},"2231":{}},"parent":{}}],["removegiftcertificateitemfrombasketrequired",{"_index":422,"name":{"689":{},"1588":{}},"parent":{}}],["removeitemfrombasket",{"_index":384,"name":{"631":{},"690":{},"745":{},"1530":{},"1589":{},"1644":{}},"parent":{}}],["removeitemfrombasketpathparameters",{"_index":569,"name":{"920":{},"1124":{},"1205":{},"1333":{},"1820":{},"2024":{},"2105":{},"2234":{}},"parent":{}}],["removeitemfrombasketqueryparameters",{"_index":566,"name":{"916":{},"1123":{},"1204":{},"1332":{},"1816":{},"2023":{},"2104":{},"2233":{}},"parent":{}}],["removeitemfrombasketrequired",{"_index":423,"name":{"691":{},"1590":{}},"parent":{}}],["removepaymentinstrumentfrombasket",{"_index":385,"name":{"632":{},"692":{},"746":{},"1531":{},"1591":{},"1645":{}},"parent":{}}],["removepaymentinstrumentfrombasketpathparameters",{"_index":575,"name":{"929":{},"1126":{},"1207":{},"1335":{},"1829":{},"2026":{},"2107":{},"2236":{}},"parent":{}}],["removepaymentinstrumentfrombasketqueryparameters",{"_index":572,"name":{"925":{},"1125":{},"1206":{},"1334":{},"1825":{},"2025":{},"2106":{},"2235":{}},"parent":{}}],["removepaymentinstrumentfrombasketrequired",{"_index":424,"name":{"693":{},"1592":{}},"parent":{}}],["removepaymentinstrumentfromorder",{"_index":1325,"name":{"3884":{},"3901":{},"3911":{}},"parent":{}}],["removepaymentinstrumentfromorderpathparameters",{"_index":1377,"name":{"3963":{},"3993":{},"4014":{},"4087":{}},"parent":{}}],["removepaymentinstrumentfromorderqueryparameters",{"_index":1374,"name":{"3959":{},"3992":{},"4013":{},"4086":{}},"parent":{}}],["removepaymentinstrumentfromorderrequired",{"_index":1335,"name":{"3902":{}},"parent":{}}],["removepriceadjustmentfrombasket",{"_index":386,"name":{"633":{},"694":{},"747":{},"1532":{},"1593":{},"1646":{}},"parent":{}}],["removepriceadjustmentfrombasketpathparameters",{"_index":582,"name":{"938":{},"1128":{},"1209":{},"1337":{},"1838":{},"2028":{},"2109":{},"2238":{}},"parent":{}}],["removepriceadjustmentfrombasketqueryparameters",{"_index":579,"name":{"934":{},"1127":{},"1208":{},"1336":{},"1834":{},"2027":{},"2108":{},"2237":{}},"parent":{}}],["removepriceadjustmentfrombasketrequired",{"_index":425,"name":{"695":{},"1594":{}},"parent":{}}],["removeshipmentfrombasket",{"_index":387,"name":{"634":{},"696":{},"748":{},"1533":{},"1595":{},"1647":{}},"parent":{}}],["removeshipmentfrombasketpathparameters",{"_index":589,"name":{"947":{},"1130":{},"1211":{},"1339":{},"1847":{},"2030":{},"2111":{},"2240":{}},"parent":{}}],["removeshipmentfrombasketqueryparameters",{"_index":586,"name":{"943":{},"1129":{},"1210":{},"1338":{},"1843":{},"2029":{},"2110":{},"2239":{}},"parent":{}}],["removeshipmentfrombasketrequired",{"_index":426,"name":{"697":{},"1596":{}},"parent":{}}],["rendertemplateuri",{"_index":48,"name":{"54":{}},"parent":{}}],["replaceorigin",{"_index":46,"name":{"52":{}},"parent":{}}],["requireparametersunlessallareoptional",{"_index":8,"name":{"7":{},"494":{}},"parent":{}}],["resetpassword",{"_index":94,"name":{"108":{},"143":{},"162":{},"2783":{},"2838":{},"2873":{}},"parent":{}}],["resetpasswordbodytype",{"_index":272,"name":{"368":{},"443":{},"3688":{},"3758":{}},"parent":{}}],["resetpasswordpathparameters",{"_index":269,"name":{"365":{},"442":{},"3061":{},"3153":{},"3216":{},"3376":{},"3687":{},"3760":{}},"parent":{}}],["resetpasswordqueryparameters",{"_index":267,"name":{"363":{},"441":{},"3058":{},"3152":{},"3215":{},"3375":{},"3686":{},"3759":{}},"parent":{}}],["resetpasswordrequest",{"_index":1002,"name":{"2657":{},"2742":{},"3312":{},"3468":{}},"parent":{}}],["resetpasswordrequired",{"_index":114,"name":{"144":{},"2839":{}},"parent":{}}],["resetpasswordtoken",{"_index":1003,"name":{"2658":{},"2743":{},"3313":{},"3469":{}},"parent":{}}],["resetpasswordtokenrequest",{"_index":1004,"name":{"2659":{},"2744":{},"3314":{},"3470":{}},"parent":{}}],["response",{"_index":290,"name":{"454":{}},"parent":{}}],["response_type",{"_index":140,"name":{"186":{},"196":{},"314":{}},"parent":{}}],["responseerror",{"_index":288,"name":{"451":{},"452":{}},"parent":{"452":{}}}],["responseerror.responseerror",{"_index":289,"name":{},"parent":{"453":{},"454":{},"455":{},"456":{},"457":{},"458":{}}}],["responsetype",{"_index":71,"name":{"77":{},"84":{},"3698":{},"3767":{}},"parent":{}}],["resultbase",{"_index":1005,"name":{"2660":{},"2745":{},"3315":{},"3471":{},"4172":{},"4199":{},"4339":{},"4385":{},"4397":{},"4403":{},"4462":{},"4475":{},"4512":{},"4538":{},"4647":{},"4692":{},"4769":{},"4778":{},"4845":{},"4861":{}},"parent":{}}],["revokeobjecturl",{"_index":65,"name":{"71":{}},"parent":{}}],["revoketoken",{"_index":95,"name":{"109":{},"145":{},"163":{}},"parent":{}}],["revoketokenbodytype",{"_index":282,"name":{"381":{},"446":{},"3691":{},"3762":{}},"parent":{}}],["revoketokenpathparameters",{"_index":279,"name":{"378":{},"445":{},"3690":{},"3764":{}},"parent":{}}],["revoketokenqueryparameters",{"_index":277,"name":{"376":{},"444":{},"3689":{},"3763":{}},"parent":{}}],["revoketokenrequired",{"_index":115,"name":{"146":{}},"parent":{}}],["revoketokentokentypehintenum",{"_index":129,"name":{"177":{},"401":{},"3646":{},"3761":{}},"parent":{}}],["scope",{"_index":143,"name":{"189":{},"198":{}},"parent":{}}],["search",{"_index":59,"name":{"65":{}},"parent":{}}],["searchparams",{"_index":60,"name":{"66":{}},"parent":{}}],["searchstores",{"_index":1562,"name":{"4787":{},"4793":{},"4796":{}},"parent":{}}],["searchstorespathparameters",{"_index":1581,"name":{"4817":{},"4826":{},"4835":{},"4855":{}},"parent":{}}],["searchstoresqueryparameters",{"_index":1573,"name":{"4805":{},"4825":{},"4834":{},"4854":{}},"parent":{}}],["searchstoresrequired",{"_index":1566,"name":{"4794":{}},"parent":{}}],["select",{"_index":1434,"name":{"4255":{},"4271":{},"4582":{}},"parent":{}}],["shipment",{"_index":334,"name":{"533":{},"598":{},"1279":{},"1403":{},"1430":{},"1497":{},"2180":{},"2305":{},"2581":{},"2746":{},"3316":{},"3472":{},"3789":{},"3865":{},"4062":{},"4131":{}},"parent":{}}],["shipmentid",{"_index":537,"name":{"880":{},"949":{},"1057":{},"1069":{},"1078":{},"1780":{},"1849":{},"1957":{},"1969":{},"1978":{}},"parent":{}}],["shipmentshippingstatusenum",{"_index":335,"name":{"534":{},"599":{},"1280":{},"1404":{},"1431":{},"1498":{},"2181":{},"2306":{},"2582":{},"2747":{},"3317":{},"3473":{},"3790":{},"3866":{},"4063":{},"4132":{}},"parent":{}}],["shippingitem",{"_index":330,"name":{"529":{},"600":{},"1281":{},"1405":{},"1426":{},"1499":{},"2182":{},"2307":{},"2577":{},"2748":{},"3318":{},"3474":{},"3785":{},"3867":{},"4064":{},"4133":{}},"parent":{}}],["shippingmethod",{"_index":333,"name":{"532":{},"601":{},"1282":{},"1406":{},"1429":{},"1500":{},"2183":{},"2308":{},"2580":{},"2749":{},"3319":{},"3475":{},"3788":{},"3868":{},"4065":{},"4134":{}},"parent":{}}],["shippingmethodresult",{"_index":359,"name":{"559":{},"602":{},"1283":{},"1407":{},"1457":{},"1501":{},"2184":{},"2309":{}},"parent":{}}],["shippingpromotion",{"_index":332,"name":{"531":{},"603":{},"1284":{},"1408":{},"1428":{},"1502":{},"2185":{},"2310":{},"2579":{},"2750":{},"3320":{},"3476":{},"3787":{},"3869":{},"4066":{},"4135":{}},"parent":{}}],["shopperbaskets",{"_index":318,"name":{"516":{},"608":{},"1162":{},"1243":{}},"parent":{"517":{},"518":{},"519":{},"520":{},"521":{},"522":{},"523":{},"524":{},"525":{},"526":{},"527":{},"528":{},"529":{},"530":{},"531":{},"532":{},"533":{},"534":{},"535":{},"536":{},"537":{},"538":{},"539":{},"540":{},"541":{},"542":{},"543":{},"544":{},"545":{},"546":{},"547":{},"548":{},"549":{},"550":{},"551":{},"552":{},"553":{},"554":{},"555":{},"556":{},"557":{},"558":{},"559":{},"560":{},"561":{},"562":{},"563":{},"564":{},"565":{},"566":{},"567":{},"568":{},"569":{},"570":{},"571":{},"572":{},"573":{},"574":{},"575":{},"576":{},"577":{},"578":{},"579":{},"580":{},"581":{},"582":{},"583":{},"584":{},"585":{},"586":{},"587":{},"588":{},"589":{},"590":{},"591":{},"592":{},"593":{},"594":{},"595":{},"596":{},"597":{},"598":{},"599":{},"600":{},"601":{},"602":{},"603":{},"604":{},"605":{},"606":{},"607":{},"608":{},"763":{},"764":{},"765":{},"769":{},"773":{},"777":{},"781":{},"785":{},"789":{},"793":{},"797":{},"801":{},"805":{},"808":{},"812":{},"815":{},"819":{},"822":{},"827":{},"832":{},"835":{},"839":{},"843":{},"846":{},"850":{},"854":{},"858":{},"862":{},"866":{},"869":{},"873":{},"877":{},"882":{},"885":{},"889":{},"895":{},"898":{},"902":{},"907":{},"911":{},"916":{},"920":{},"925":{},"929":{},"934":{},"938":{},"943":{},"947":{},"952":{},"958":{},"961":{},"965":{},"969":{},"974":{},"978":{},"983":{},"987":{},"993":{},"997":{},"1001":{},"1005":{},"1009":{},"1014":{},"1019":{},"1024":{},"1029":{},"1033":{},"1038":{},"1043":{},"1046":{},"1051":{},"1055":{},"1060":{},"1066":{},"1071":{},"1075":{},"1080":{},"1081":{},"1082":{},"1083":{},"1084":{},"1085":{},"1086":{},"1087":{},"1088":{},"1089":{},"1090":{},"1091":{},"1092":{},"1093":{},"1094":{},"1095":{},"1096":{},"1097":{},"1098":{},"1099":{},"1100":{},"1101":{},"1102":{},"1103":{},"1104":{},"1105":{},"1106":{},"1107":{},"1108":{},"1109":{},"1110":{},"1111":{},"1112":{},"1113":{},"1114":{},"1115":{},"1116":{},"1117":{},"1118":{},"1119":{},"1120":{},"1121":{},"1122":{},"1123":{},"1124":{},"1125":{},"1126":{},"1127":{},"1128":{},"1129":{},"1130":{},"1131":{},"1132":{},"1133":{},"1134":{},"1135":{},"1136":{},"1137":{},"1138":{},"1139":{},"1140":{},"1141":{},"1142":{},"1143":{},"1144":{},"1145":{},"1146":{},"1147":{},"1148":{},"1149":{},"1150":{},"1151":{},"1152":{},"1153":{},"1154":{},"1155":{},"1156":{},"1157":{},"1158":{},"1159":{},"1160":{},"1161":{},"1162":{},"1163":{},"1164":{},"1165":{},"1166":{},"1167":{},"1168":{},"1169":{},"1170":{},"1171":{},"1172":{},"1173":{},"1174":{},"1175":{},"1176":{},"1177":{},"1178":{},"1179":{},"1180":{},"1181":{},"1182":{},"1183":{},"1184":{},"1185":{},"1186":{},"1187":{},"1188":{},"1189":{},"1190":{},"1191":{},"1192":{},"1193":{},"1194":{},"1195":{},"1196":{},"1197":{},"1198":{},"1199":{},"1200":{},"1201":{},"1202":{},"1203":{},"1204":{},"1205":{},"1206":{},"1207":{},"1208":{},"1209":{},"1210":{},"1211":{},"1212":{},"1213":{},"1214":{},"1215":{},"1216":{},"1217":{},"1218":{},"1219":{},"1220":{},"1221":{},"1222":{},"1223":{},"1224":{},"1225":{},"1226":{},"1227":{},"1228":{},"1229":{},"1230":{},"1231":{},"1232":{},"1233":{},"1234":{},"1235":{},"1236":{},"1237":{},"1238":{},"1239":{},"1240":{},"1241":{},"1242":{},"1243":{},"1244":{},"1245":{},"1246":{},"1247":{},"1248":{},"1249":{},"1250":{},"1251":{},"1252":{},"1253":{},"1254":{},"1255":{},"1256":{},"1257":{},"1258":{},"1259":{},"1260":{},"1261":{},"1262":{},"1263":{},"1264":{},"1265":{},"1266":{},"1267":{},"1268":{},"1269":{},"1270":{},"1271":{},"1272":{},"1273":{},"1274":{},"1275":{},"1276":{},"1277":{},"1278":{},"1279":{},"1280":{},"1281":{},"1282":{},"1283":{},"1284":{},"1285":{},"1286":{},"1287":{},"1288":{},"1289":{}}}],["shopperbaskets.addcoupontobasketpathparameters",{"_index":448,"name":{},"parent":{"770":{}}}],["shopperbaskets.addcoupontobasketpathparameters.__type",{"_index":449,"name":{},"parent":{"771":{},"772":{}}}],["shopperbaskets.addcoupontobasketqueryparameters",{"_index":444,"name":{},"parent":{"766":{}}}],["shopperbaskets.addcoupontobasketqueryparameters.__type",{"_index":446,"name":{},"parent":{"767":{},"768":{}}}],["shopperbaskets.addgiftcertificateitemtobasketpathparameters",{"_index":455,"name":{},"parent":{"778":{}}}],["shopperbaskets.addgiftcertificateitemtobasketpathparameters.__type",{"_index":456,"name":{},"parent":{"779":{},"780":{}}}],["shopperbaskets.addgiftcertificateitemtobasketqueryparameters",{"_index":452,"name":{},"parent":{"774":{}}}],["shopperbaskets.addgiftcertificateitemtobasketqueryparameters.__type",{"_index":453,"name":{},"parent":{"775":{},"776":{}}}],["shopperbaskets.additemtobasketpathparameters",{"_index":461,"name":{},"parent":{"786":{}}}],["shopperbaskets.additemtobasketpathparameters.__type",{"_index":462,"name":{},"parent":{"787":{},"788":{}}}],["shopperbaskets.additemtobasketqueryparameters",{"_index":458,"name":{},"parent":{"782":{}}}],["shopperbaskets.additemtobasketqueryparameters.__type",{"_index":459,"name":{},"parent":{"783":{},"784":{}}}],["shopperbaskets.addpaymentinstrumenttobasketpathparameters",{"_index":467,"name":{},"parent":{"794":{}}}],["shopperbaskets.addpaymentinstrumenttobasketpathparameters.__type",{"_index":468,"name":{},"parent":{"795":{},"796":{}}}],["shopperbaskets.addpaymentinstrumenttobasketqueryparameters",{"_index":464,"name":{},"parent":{"790":{}}}],["shopperbaskets.addpaymentinstrumenttobasketqueryparameters.__type",{"_index":465,"name":{},"parent":{"791":{},"792":{}}}],["shopperbaskets.addpriceadjustmenttobasketpathparameters",{"_index":473,"name":{},"parent":{"802":{}}}],["shopperbaskets.addpriceadjustmenttobasketpathparameters.__type",{"_index":474,"name":{},"parent":{"803":{},"804":{}}}],["shopperbaskets.addpriceadjustmenttobasketqueryparameters",{"_index":470,"name":{},"parent":{"798":{}}}],["shopperbaskets.addpriceadjustmenttobasketqueryparameters.__type",{"_index":471,"name":{},"parent":{"799":{},"800":{}}}],["shopperbaskets.addpricebookstobasketpathparameters",{"_index":479,"name":{},"parent":{"809":{}}}],["shopperbaskets.addpricebookstobasketpathparameters.__type",{"_index":480,"name":{},"parent":{"810":{},"811":{}}}],["shopperbaskets.addpricebookstobasketqueryparameters",{"_index":476,"name":{},"parent":{"806":{}}}],["shopperbaskets.addpricebookstobasketqueryparameters.__type",{"_index":477,"name":{},"parent":{"807":{}}}],["shopperbaskets.addtaxesforbasketitempathparameters",{"_index":491,"name":{},"parent":{"823":{}}}],["shopperbaskets.addtaxesforbasketitempathparameters.__type",{"_index":492,"name":{},"parent":{"824":{},"825":{},"826":{}}}],["shopperbaskets.addtaxesforbasketitemqueryparameters",{"_index":488,"name":{},"parent":{"820":{}}}],["shopperbaskets.addtaxesforbasketitemqueryparameters.__type",{"_index":489,"name":{},"parent":{"821":{}}}],["shopperbaskets.addtaxesforbasketpathparameters",{"_index":485,"name":{},"parent":{"816":{}}}],["shopperbaskets.addtaxesforbasketpathparameters.__type",{"_index":486,"name":{},"parent":{"817":{},"818":{}}}],["shopperbaskets.addtaxesforbasketqueryparameters",{"_index":482,"name":{},"parent":{"813":{}}}],["shopperbaskets.addtaxesforbasketqueryparameters.__type",{"_index":483,"name":{},"parent":{"814":{}}}],["shopperbaskets.createbasketpathparameters",{"_index":499,"name":{},"parent":{"833":{}}}],["shopperbaskets.createbasketpathparameters.__type",{"_index":500,"name":{},"parent":{"834":{}}}],["shopperbaskets.createbasketqueryparameters",{"_index":495,"name":{},"parent":{"828":{}}}],["shopperbaskets.createbasketqueryparameters.__type",{"_index":496,"name":{},"parent":{"829":{},"830":{},"831":{}}}],["shopperbaskets.createshipmentforbasketpathparameters",{"_index":505,"name":{},"parent":{"840":{}}}],["shopperbaskets.createshipmentforbasketpathparameters.__type",{"_index":506,"name":{},"parent":{"841":{},"842":{}}}],["shopperbaskets.createshipmentforbasketqueryparameters",{"_index":502,"name":{},"parent":{"836":{}}}],["shopperbaskets.createshipmentforbasketqueryparameters.__type",{"_index":503,"name":{},"parent":{"837":{},"838":{}}}],["shopperbaskets.deletebasketpathparameters",{"_index":511,"name":{},"parent":{"847":{}}}],["shopperbaskets.deletebasketpathparameters.__type",{"_index":512,"name":{},"parent":{"848":{},"849":{}}}],["shopperbaskets.deletebasketqueryparameters",{"_index":508,"name":{},"parent":{"844":{}}}],["shopperbaskets.deletebasketqueryparameters.__type",{"_index":509,"name":{},"parent":{"845":{}}}],["shopperbaskets.getbasketpathparameters",{"_index":517,"name":{},"parent":{"855":{}}}],["shopperbaskets.getbasketpathparameters.__type",{"_index":518,"name":{},"parent":{"856":{},"857":{}}}],["shopperbaskets.getbasketqueryparameters",{"_index":514,"name":{},"parent":{"851":{}}}],["shopperbaskets.getbasketqueryparameters.__type",{"_index":515,"name":{},"parent":{"852":{},"853":{}}}],["shopperbaskets.getpaymentmethodsforbasketpathparameters",{"_index":523,"name":{},"parent":{"863":{}}}],["shopperbaskets.getpaymentmethodsforbasketpathparameters.__type",{"_index":524,"name":{},"parent":{"864":{},"865":{}}}],["shopperbaskets.getpaymentmethodsforbasketqueryparameters",{"_index":520,"name":{},"parent":{"859":{}}}],["shopperbaskets.getpaymentmethodsforbasketqueryparameters.__type",{"_index":521,"name":{},"parent":{"860":{},"861":{}}}],["shopperbaskets.getpricebooksforbasketpathparameters",{"_index":529,"name":{},"parent":{"870":{}}}],["shopperbaskets.getpricebooksforbasketpathparameters.__type",{"_index":530,"name":{},"parent":{"871":{},"872":{}}}],["shopperbaskets.getpricebooksforbasketqueryparameters",{"_index":526,"name":{},"parent":{"867":{}}}],["shopperbaskets.getpricebooksforbasketqueryparameters.__type",{"_index":527,"name":{},"parent":{"868":{}}}],["shopperbaskets.getshippingmethodsforshipmentpathparameters",{"_index":535,"name":{},"parent":{"878":{}}}],["shopperbaskets.getshippingmethodsforshipmentpathparameters.__type",{"_index":536,"name":{},"parent":{"879":{},"880":{},"881":{}}}],["shopperbaskets.getshippingmethodsforshipmentqueryparameters",{"_index":532,"name":{},"parent":{"874":{}}}],["shopperbaskets.getshippingmethodsforshipmentqueryparameters.__type",{"_index":533,"name":{},"parent":{"875":{},"876":{}}}],["shopperbaskets.gettaxesfrombasketpathparameters",{"_index":542,"name":{},"parent":{"886":{}}}],["shopperbaskets.gettaxesfrombasketpathparameters.__type",{"_index":543,"name":{},"parent":{"887":{},"888":{}}}],["shopperbaskets.gettaxesfrombasketqueryparameters",{"_index":539,"name":{},"parent":{"883":{}}}],["shopperbaskets.gettaxesfrombasketqueryparameters.__type",{"_index":540,"name":{},"parent":{"884":{}}}],["shopperbaskets.mergebasketpathparameters",{"_index":550,"name":{},"parent":{"896":{}}}],["shopperbaskets.mergebasketpathparameters.__type",{"_index":551,"name":{},"parent":{"897":{}}}],["shopperbaskets.mergebasketqueryparameters",{"_index":545,"name":{},"parent":{"890":{}}}],["shopperbaskets.mergebasketqueryparameters.__type",{"_index":546,"name":{},"parent":{"891":{},"892":{},"893":{},"894":{}}}],["shopperbaskets.removecouponfrombasketpathparameters",{"_index":556,"name":{},"parent":{"903":{}}}],["shopperbaskets.removecouponfrombasketpathparameters.__type",{"_index":557,"name":{},"parent":{"904":{},"905":{},"906":{}}}],["shopperbaskets.removecouponfrombasketqueryparameters",{"_index":553,"name":{},"parent":{"899":{}}}],["shopperbaskets.removecouponfrombasketqueryparameters.__type",{"_index":554,"name":{},"parent":{"900":{},"901":{}}}],["shopperbaskets.removegiftcertificateitemfrombasketpathparameters",{"_index":563,"name":{},"parent":{"912":{}}}],["shopperbaskets.removegiftcertificateitemfrombasketpathparameters.__type",{"_index":564,"name":{},"parent":{"913":{},"914":{},"915":{}}}],["shopperbaskets.removegiftcertificateitemfrombasketqueryparameters",{"_index":560,"name":{},"parent":{"908":{}}}],["shopperbaskets.removegiftcertificateitemfrombasketqueryparameters.__type",{"_index":561,"name":{},"parent":{"909":{},"910":{}}}],["shopperbaskets.removeitemfrombasketpathparameters",{"_index":570,"name":{},"parent":{"921":{}}}],["shopperbaskets.removeitemfrombasketpathparameters.__type",{"_index":571,"name":{},"parent":{"922":{},"923":{},"924":{}}}],["shopperbaskets.removeitemfrombasketqueryparameters",{"_index":567,"name":{},"parent":{"917":{}}}],["shopperbaskets.removeitemfrombasketqueryparameters.__type",{"_index":568,"name":{},"parent":{"918":{},"919":{}}}],["shopperbaskets.removepaymentinstrumentfrombasketpathparameters",{"_index":576,"name":{},"parent":{"930":{}}}],["shopperbaskets.removepaymentinstrumentfrombasketpathparameters.__type",{"_index":578,"name":{},"parent":{"931":{},"932":{},"933":{}}}],["shopperbaskets.removepaymentinstrumentfrombasketqueryparameters",{"_index":573,"name":{},"parent":{"926":{}}}],["shopperbaskets.removepaymentinstrumentfrombasketqueryparameters.__type",{"_index":574,"name":{},"parent":{"927":{},"928":{}}}],["shopperbaskets.removepriceadjustmentfrombasketpathparameters",{"_index":583,"name":{},"parent":{"939":{}}}],["shopperbaskets.removepriceadjustmentfrombasketpathparameters.__type",{"_index":585,"name":{},"parent":{"940":{},"941":{},"942":{}}}],["shopperbaskets.removepriceadjustmentfrombasketqueryparameters",{"_index":580,"name":{},"parent":{"935":{}}}],["shopperbaskets.removepriceadjustmentfrombasketqueryparameters.__type",{"_index":581,"name":{},"parent":{"936":{},"937":{}}}],["shopperbaskets.removeshipmentfrombasketpathparameters",{"_index":590,"name":{},"parent":{"948":{}}}],["shopperbaskets.removeshipmentfrombasketpathparameters.__type",{"_index":591,"name":{},"parent":{"949":{},"950":{},"951":{}}}],["shopperbaskets.removeshipmentfrombasketqueryparameters",{"_index":587,"name":{},"parent":{"944":{}}}],["shopperbaskets.removeshipmentfrombasketqueryparameters.__type",{"_index":588,"name":{},"parent":{"945":{},"946":{}}}],["shopperbaskets.shopperbaskets",{"_index":363,"name":{},"parent":{"609":{},"610":{},"611":{},"649":{},"650":{},"726":{},"727":{},"728":{},"729":{},"730":{},"731":{},"732":{},"733":{},"734":{},"735":{},"736":{},"737":{},"738":{},"739":{},"740":{},"741":{},"742":{},"743":{},"744":{},"745":{},"746":{},"747":{},"748":{},"749":{},"750":{},"751":{},"752":{},"753":{},"754":{},"755":{},"756":{},"757":{},"758":{},"759":{},"760":{},"761":{},"762":{}}}],["shopperbaskets.shopperbaskets.apipaths",{"_index":365,"name":{},"parent":{"612":{},"613":{},"614":{},"615":{},"616":{},"617":{},"618":{},"619":{},"620":{},"621":{},"622":{},"623":{},"624":{},"625":{},"626":{},"627":{},"628":{},"629":{},"630":{},"631":{},"632":{},"633":{},"634":{},"635":{},"636":{},"637":{},"638":{},"639":{},"640":{},"641":{},"642":{},"643":{},"644":{},"645":{},"646":{},"647":{},"648":{}}}],["shopperbaskets.shopperbaskets.paramkeys",{"_index":402,"name":{},"parent":{"651":{}}}],["shopperbaskets.shopperbaskets.paramkeys.__type",{"_index":403,"name":{},"parent":{"652":{},"653":{},"654":{},"655":{},"656":{},"657":{},"658":{},"659":{},"660":{},"661":{},"662":{},"663":{},"664":{},"665":{},"666":{},"667":{},"668":{},"669":{},"670":{},"671":{},"672":{},"673":{},"674":{},"675":{},"676":{},"677":{},"678":{},"679":{},"680":{},"681":{},"682":{},"683":{},"684":{},"685":{},"686":{},"687":{},"688":{},"689":{},"690":{},"691":{},"692":{},"693":{},"694":{},"695":{},"696":{},"697":{},"698":{},"699":{},"700":{},"701":{},"702":{},"703":{},"704":{},"705":{},"706":{},"707":{},"708":{},"709":{},"710":{},"711":{},"712":{},"713":{},"714":{},"715":{},"716":{},"717":{},"718":{},"719":{},"720":{},"721":{},"722":{},"723":{},"724":{},"725":{}}}],["shopperbaskets.shopperbasketstypes",{"_index":686,"name":{},"parent":{"1290":{},"1291":{},"1292":{},"1293":{},"1294":{},"1295":{},"1296":{},"1297":{},"1298":{},"1299":{},"1300":{},"1301":{},"1302":{},"1303":{},"1304":{},"1305":{},"1306":{},"1307":{},"1308":{},"1309":{},"1310":{},"1311":{},"1312":{},"1313":{},"1314":{},"1315":{},"1316":{},"1317":{},"1318":{},"1319":{},"1320":{},"1321":{},"1322":{},"1323":{},"1324":{},"1325":{},"1326":{},"1327":{},"1328":{},"1329":{},"1330":{},"1331":{},"1332":{},"1333":{},"1334":{},"1335":{},"1336":{},"1337":{},"1338":{},"1339":{},"1340":{},"1341":{},"1342":{},"1343":{},"1344":{},"1345":{},"1346":{},"1347":{},"1348":{},"1349":{},"1350":{},"1351":{},"1352":{},"1353":{},"1354":{},"1355":{},"1356":{},"1357":{},"1358":{},"1359":{},"1360":{},"1361":{},"1362":{},"1363":{},"1364":{},"1365":{},"1366":{},"1367":{},"1368":{},"1369":{},"1370":{},"1371":{},"1372":{},"1373":{},"1374":{},"1375":{},"1376":{},"1377":{},"1378":{},"1379":{},"1380":{},"1381":{},"1382":{},"1383":{},"1384":{},"1385":{},"1386":{},"1387":{},"1388":{},"1389":{},"1390":{},"1391":{},"1392":{},"1393":{},"1394":{},"1395":{},"1396":{},"1397":{},"1398":{},"1399":{},"1400":{},"1401":{},"1402":{},"1403":{},"1404":{},"1405":{},"1406":{},"1407":{},"1408":{},"1409":{},"1410":{},"1411":{},"1412":{}}}],["shopperbaskets.transferbasketpathparameters",{"_index":598,"name":{},"parent":{"959":{}}}],["shopperbaskets.transferbasketpathparameters.__type",{"_index":599,"name":{},"parent":{"960":{}}}],["shopperbaskets.transferbasketqueryparameters",{"_index":593,"name":{},"parent":{"953":{}}}],["shopperbaskets.transferbasketqueryparameters.__type",{"_index":594,"name":{},"parent":{"954":{},"955":{},"956":{},"957":{}}}],["shopperbaskets.updateasagentbasketpathparameters",{"_index":604,"name":{},"parent":{"966":{}}}],["shopperbaskets.updateasagentbasketpathparameters.__type",{"_index":605,"name":{},"parent":{"967":{},"968":{}}}],["shopperbaskets.updateasagentbasketqueryparameters",{"_index":601,"name":{},"parent":{"962":{}}}],["shopperbaskets.updateasagentbasketqueryparameters.__type",{"_index":602,"name":{},"parent":{"963":{},"964":{}}}],["shopperbaskets.updateasstorefrontbasketpathparameters",{"_index":611,"name":{},"parent":{"975":{}}}],["shopperbaskets.updateasstorefrontbasketpathparameters.__type",{"_index":612,"name":{},"parent":{"976":{},"977":{}}}],["shopperbaskets.updateasstorefrontbasketqueryparameters",{"_index":607,"name":{},"parent":{"970":{}}}],["shopperbaskets.updateasstorefrontbasketqueryparameters.__type",{"_index":608,"name":{},"parent":{"971":{},"972":{},"973":{}}}],["shopperbaskets.updatebasketpathparameters",{"_index":618,"name":{},"parent":{"984":{}}}],["shopperbaskets.updatebasketpathparameters.__type",{"_index":619,"name":{},"parent":{"985":{},"986":{}}}],["shopperbaskets.updatebasketqueryparameters",{"_index":614,"name":{},"parent":{"979":{}}}],["shopperbaskets.updatebasketqueryparameters.__type",{"_index":615,"name":{},"parent":{"980":{},"981":{},"982":{}}}],["shopperbaskets.updatebillingaddressforbasketpathparameters",{"_index":625,"name":{},"parent":{"994":{}}}],["shopperbaskets.updatebillingaddressforbasketpathparameters.__type",{"_index":626,"name":{},"parent":{"995":{},"996":{}}}],["shopperbaskets.updatebillingaddressforbasketqueryparameters",{"_index":621,"name":{},"parent":{"988":{}}}],["shopperbaskets.updatebillingaddressforbasketqueryparameters.__type",{"_index":622,"name":{},"parent":{"989":{},"990":{},"991":{},"992":{}}}],["shopperbaskets.updatecustomerforbasketpathparameters",{"_index":631,"name":{},"parent":{"1002":{}}}],["shopperbaskets.updatecustomerforbasketpathparameters.__type",{"_index":632,"name":{},"parent":{"1003":{},"1004":{}}}],["shopperbaskets.updatecustomerforbasketqueryparameters",{"_index":628,"name":{},"parent":{"998":{}}}],["shopperbaskets.updatecustomerforbasketqueryparameters.__type",{"_index":629,"name":{},"parent":{"999":{},"1000":{}}}],["shopperbaskets.updategiftcertificateiteminbasketpathparameters",{"_index":637,"name":{},"parent":{"1010":{}}}],["shopperbaskets.updategiftcertificateiteminbasketpathparameters.__type",{"_index":638,"name":{},"parent":{"1011":{},"1012":{},"1013":{}}}],["shopperbaskets.updategiftcertificateiteminbasketqueryparameters",{"_index":634,"name":{},"parent":{"1006":{}}}],["shopperbaskets.updategiftcertificateiteminbasketqueryparameters.__type",{"_index":635,"name":{},"parent":{"1007":{},"1008":{}}}],["shopperbaskets.updateiteminbasketpathparameters",{"_index":643,"name":{},"parent":{"1020":{}}}],["shopperbaskets.updateiteminbasketpathparameters.__type",{"_index":644,"name":{},"parent":{"1021":{},"1022":{},"1023":{}}}],["shopperbaskets.updateiteminbasketqueryparameters",{"_index":640,"name":{},"parent":{"1015":{}}}],["shopperbaskets.updateiteminbasketqueryparameters.__type",{"_index":641,"name":{},"parent":{"1016":{},"1017":{},"1018":{}}}],["shopperbaskets.updateitemsinbasketpathparameters",{"_index":649,"name":{},"parent":{"1030":{}}}],["shopperbaskets.updateitemsinbasketpathparameters.__type",{"_index":650,"name":{},"parent":{"1031":{},"1032":{}}}],["shopperbaskets.updateitemsinbasketqueryparameters",{"_index":646,"name":{},"parent":{"1025":{}}}],["shopperbaskets.updateitemsinbasketqueryparameters.__type",{"_index":647,"name":{},"parent":{"1026":{},"1027":{},"1028":{}}}],["shopperbaskets.updatepaymentinstrumentinbasketpathparameters",{"_index":655,"name":{},"parent":{"1039":{}}}],["shopperbaskets.updatepaymentinstrumentinbasketpathparameters.__type",{"_index":656,"name":{},"parent":{"1040":{},"1041":{},"1042":{}}}],["shopperbaskets.updatepaymentinstrumentinbasketqueryparameters",{"_index":652,"name":{},"parent":{"1034":{}}}],["shopperbaskets.updatepaymentinstrumentinbasketqueryparameters.__type",{"_index":653,"name":{},"parent":{"1035":{},"1036":{},"1037":{}}}],["shopperbaskets.updatepriceadjustmentinbasketpathparameters",{"_index":661,"name":{},"parent":{"1047":{}}}],["shopperbaskets.updatepriceadjustmentinbasketpathparameters.__type",{"_index":662,"name":{},"parent":{"1048":{},"1049":{},"1050":{}}}],["shopperbaskets.updatepriceadjustmentinbasketqueryparameters",{"_index":658,"name":{},"parent":{"1044":{}}}],["shopperbaskets.updatepriceadjustmentinbasketqueryparameters.__type",{"_index":659,"name":{},"parent":{"1045":{}}}],["shopperbaskets.updateshipmentforbasketpathparameters",{"_index":667,"name":{},"parent":{"1056":{}}}],["shopperbaskets.updateshipmentforbasketpathparameters.__type",{"_index":668,"name":{},"parent":{"1057":{},"1058":{},"1059":{}}}],["shopperbaskets.updateshipmentforbasketqueryparameters",{"_index":664,"name":{},"parent":{"1052":{}}}],["shopperbaskets.updateshipmentforbasketqueryparameters.__type",{"_index":665,"name":{},"parent":{"1053":{},"1054":{}}}],["shopperbaskets.updateshippingaddressforshipmentpathparameters",{"_index":674,"name":{},"parent":{"1067":{}}}],["shopperbaskets.updateshippingaddressforshipmentpathparameters.__type",{"_index":675,"name":{},"parent":{"1068":{},"1069":{},"1070":{}}}],["shopperbaskets.updateshippingaddressforshipmentqueryparameters",{"_index":670,"name":{},"parent":{"1061":{}}}],["shopperbaskets.updateshippingaddressforshipmentqueryparameters.__type",{"_index":672,"name":{},"parent":{"1062":{},"1063":{},"1064":{},"1065":{}}}],["shopperbaskets.updateshippingmethodforshipmentpathparameters",{"_index":680,"name":{},"parent":{"1076":{}}}],["shopperbaskets.updateshippingmethodforshipmentpathparameters.__type",{"_index":681,"name":{},"parent":{"1077":{},"1078":{},"1079":{}}}],["shopperbaskets.updateshippingmethodforshipmentqueryparameters",{"_index":677,"name":{},"parent":{"1072":{}}}],["shopperbaskets.updateshippingmethodforshipmentqueryparameters.__type",{"_index":678,"name":{},"parent":{"1073":{},"1074":{}}}],["shopperbasketsparameters",{"_index":684,"name":{"1082":{},"1161":{},"1242":{},"1982":{},"2061":{},"2142":{}},"parent":{}}],["shopperbasketspathparameters",{"_index":682,"name":{"1080":{},"1159":{},"1240":{},"1290":{},"1980":{},"2059":{},"2140":{},"2191":{}},"parent":{}}],["shopperbasketsqueryparameters",{"_index":683,"name":{"1081":{},"1160":{},"1241":{},"1291":{},"1981":{},"2060":{},"2141":{},"2192":{}},"parent":{}}],["shopperbasketstypes",{"_index":685,"name":{"1289":{}},"parent":{}}],["shopperbasketsv2",{"_index":687,"name":{"1413":{},"1507":{},"2062":{},"2143":{}},"parent":{"1414":{},"1415":{},"1416":{},"1417":{},"1418":{},"1419":{},"1420":{},"1421":{},"1422":{},"1423":{},"1424":{},"1425":{},"1426":{},"1427":{},"1428":{},"1429":{},"1430":{},"1431":{},"1432":{},"1433":{},"1434":{},"1435":{},"1436":{},"1437":{},"1438":{},"1439":{},"1440":{},"1441":{},"1442":{},"1443":{},"1444":{},"1445":{},"1446":{},"1447":{},"1448":{},"1449":{},"1450":{},"1451":{},"1452":{},"1453":{},"1454":{},"1455":{},"1456":{},"1457":{},"1458":{},"1459":{},"1460":{},"1461":{},"1462":{},"1463":{},"1464":{},"1465":{},"1466":{},"1467":{},"1468":{},"1469":{},"1470":{},"1471":{},"1472":{},"1473":{},"1474":{},"1475":{},"1476":{},"1477":{},"1478":{},"1479":{},"1480":{},"1481":{},"1482":{},"1483":{},"1484":{},"1485":{},"1486":{},"1487":{},"1488":{},"1489":{},"1490":{},"1491":{},"1492":{},"1493":{},"1494":{},"1495":{},"1496":{},"1497":{},"1498":{},"1499":{},"1500":{},"1501":{},"1502":{},"1503":{},"1504":{},"1505":{},"1506":{},"1507":{},"1662":{},"1663":{},"1664":{},"1668":{},"1672":{},"1676":{},"1680":{},"1684":{},"1688":{},"1692":{},"1696":{},"1700":{},"1704":{},"1707":{},"1711":{},"1714":{},"1718":{},"1721":{},"1726":{},"1732":{},"1735":{},"1739":{},"1743":{},"1746":{},"1750":{},"1754":{},"1758":{},"1762":{},"1766":{},"1769":{},"1773":{},"1777":{},"1782":{},"1785":{},"1789":{},"1795":{},"1798":{},"1802":{},"1807":{},"1811":{},"1816":{},"1820":{},"1825":{},"1829":{},"1834":{},"1838":{},"1843":{},"1847":{},"1852":{},"1858":{},"1861":{},"1865":{},"1869":{},"1874":{},"1878":{},"1883":{},"1887":{},"1893":{},"1897":{},"1901":{},"1905":{},"1909":{},"1914":{},"1919":{},"1924":{},"1929":{},"1933":{},"1938":{},"1943":{},"1946":{},"1951":{},"1955":{},"1960":{},"1966":{},"1971":{},"1975":{},"1980":{},"1981":{},"1982":{},"1983":{},"1984":{},"1985":{},"1986":{},"1987":{},"1988":{},"1989":{},"1990":{},"1991":{},"1992":{},"1993":{},"1994":{},"1995":{},"1996":{},"1997":{},"1998":{},"1999":{},"2000":{},"2001":{},"2002":{},"2003":{},"2004":{},"2005":{},"2006":{},"2007":{},"2008":{},"2009":{},"2010":{},"2011":{},"2012":{},"2013":{},"2014":{},"2015":{},"2016":{},"2017":{},"2018":{},"2019":{},"2020":{},"2021":{},"2022":{},"2023":{},"2024":{},"2025":{},"2026":{},"2027":{},"2028":{},"2029":{},"2030":{},"2031":{},"2032":{},"2033":{},"2034":{},"2035":{},"2036":{},"2037":{},"2038":{},"2039":{},"2040":{},"2041":{},"2042":{},"2043":{},"2044":{},"2045":{},"2046":{},"2047":{},"2048":{},"2049":{},"2050":{},"2051":{},"2052":{},"2053":{},"2054":{},"2055":{},"2056":{},"2057":{},"2058":{},"2059":{},"2060":{},"2061":{},"2062":{},"2063":{},"2064":{},"2065":{},"2066":{},"2067":{},"2068":{},"2069":{},"2070":{},"2071":{},"2072":{},"2073":{},"2074":{},"2075":{},"2076":{},"2077":{},"2078":{},"2079":{},"2080":{},"2081":{},"2082":{},"2083":{},"2084":{},"2085":{},"2086":{},"2087":{},"2088":{},"2089":{},"2090":{},"2091":{},"2092":{},"2093":{},"2094":{},"2095":{},"2096":{},"2097":{},"2098":{},"2099":{},"2100":{},"2101":{},"2102":{},"2103":{},"2104":{},"2105":{},"2106":{},"2107":{},"2108":{},"2109":{},"2110":{},"2111":{},"2112":{},"2113":{},"2114":{},"2115":{},"2116":{},"2117":{},"2118":{},"2119":{},"2120":{},"2121":{},"2122":{},"2123":{},"2124":{},"2125":{},"2126":{},"2127":{},"2128":{},"2129":{},"2130":{},"2131":{},"2132":{},"2133":{},"2134":{},"2135":{},"2136":{},"2137":{},"2138":{},"2139":{},"2140":{},"2141":{},"2142":{},"2143":{},"2144":{},"2145":{},"2146":{},"2147":{},"2148":{},"2149":{},"2150":{},"2151":{},"2152":{},"2153":{},"2154":{},"2155":{},"2156":{},"2157":{},"2158":{},"2159":{},"2160":{},"2161":{},"2162":{},"2163":{},"2164":{},"2165":{},"2166":{},"2167":{},"2168":{},"2169":{},"2170":{},"2171":{},"2172":{},"2173":{},"2174":{},"2175":{},"2176":{},"2177":{},"2178":{},"2179":{},"2180":{},"2181":{},"2182":{},"2183":{},"2184":{},"2185":{},"2186":{},"2187":{},"2188":{},"2189":{},"2190":{}}}],["shopperbasketsv2.addcoupontobasketpathparameters",{"_index":695,"name":{},"parent":{"1669":{}}}],["shopperbasketsv2.addcoupontobasketpathparameters.__type",{"_index":696,"name":{},"parent":{"1670":{},"1671":{}}}],["shopperbasketsv2.addcoupontobasketqueryparameters",{"_index":693,"name":{},"parent":{"1665":{}}}],["shopperbasketsv2.addcoupontobasketqueryparameters.__type",{"_index":694,"name":{},"parent":{"1666":{},"1667":{}}}],["shopperbasketsv2.addgiftcertificateitemtobasketpathparameters",{"_index":699,"name":{},"parent":{"1677":{}}}],["shopperbasketsv2.addgiftcertificateitemtobasketpathparameters.__type",{"_index":700,"name":{},"parent":{"1678":{},"1679":{}}}],["shopperbasketsv2.addgiftcertificateitemtobasketqueryparameters",{"_index":697,"name":{},"parent":{"1673":{}}}],["shopperbasketsv2.addgiftcertificateitemtobasketqueryparameters.__type",{"_index":698,"name":{},"parent":{"1674":{},"1675":{}}}],["shopperbasketsv2.additemtobasketpathparameters",{"_index":703,"name":{},"parent":{"1685":{}}}],["shopperbasketsv2.additemtobasketpathparameters.__type",{"_index":704,"name":{},"parent":{"1686":{},"1687":{}}}],["shopperbasketsv2.additemtobasketqueryparameters",{"_index":701,"name":{},"parent":{"1681":{}}}],["shopperbasketsv2.additemtobasketqueryparameters.__type",{"_index":702,"name":{},"parent":{"1682":{},"1683":{}}}],["shopperbasketsv2.addpaymentinstrumenttobasketpathparameters",{"_index":707,"name":{},"parent":{"1693":{}}}],["shopperbasketsv2.addpaymentinstrumenttobasketpathparameters.__type",{"_index":708,"name":{},"parent":{"1694":{},"1695":{}}}],["shopperbasketsv2.addpaymentinstrumenttobasketqueryparameters",{"_index":705,"name":{},"parent":{"1689":{}}}],["shopperbasketsv2.addpaymentinstrumenttobasketqueryparameters.__type",{"_index":706,"name":{},"parent":{"1690":{},"1691":{}}}],["shopperbasketsv2.addpriceadjustmenttobasketpathparameters",{"_index":711,"name":{},"parent":{"1701":{}}}],["shopperbasketsv2.addpriceadjustmenttobasketpathparameters.__type",{"_index":712,"name":{},"parent":{"1702":{},"1703":{}}}],["shopperbasketsv2.addpriceadjustmenttobasketqueryparameters",{"_index":709,"name":{},"parent":{"1697":{}}}],["shopperbasketsv2.addpriceadjustmenttobasketqueryparameters.__type",{"_index":710,"name":{},"parent":{"1698":{},"1699":{}}}],["shopperbasketsv2.addpricebookstobasketpathparameters",{"_index":715,"name":{},"parent":{"1708":{}}}],["shopperbasketsv2.addpricebookstobasketpathparameters.__type",{"_index":716,"name":{},"parent":{"1709":{},"1710":{}}}],["shopperbasketsv2.addpricebookstobasketqueryparameters",{"_index":713,"name":{},"parent":{"1705":{}}}],["shopperbasketsv2.addpricebookstobasketqueryparameters.__type",{"_index":714,"name":{},"parent":{"1706":{}}}],["shopperbasketsv2.addtaxesforbasketitempathparameters",{"_index":723,"name":{},"parent":{"1722":{}}}],["shopperbasketsv2.addtaxesforbasketitempathparameters.__type",{"_index":724,"name":{},"parent":{"1723":{},"1724":{},"1725":{}}}],["shopperbasketsv2.addtaxesforbasketitemqueryparameters",{"_index":721,"name":{},"parent":{"1719":{}}}],["shopperbasketsv2.addtaxesforbasketitemqueryparameters.__type",{"_index":722,"name":{},"parent":{"1720":{}}}],["shopperbasketsv2.addtaxesforbasketpathparameters",{"_index":719,"name":{},"parent":{"1715":{}}}],["shopperbasketsv2.addtaxesforbasketpathparameters.__type",{"_index":720,"name":{},"parent":{"1716":{},"1717":{}}}],["shopperbasketsv2.addtaxesforbasketqueryparameters",{"_index":717,"name":{},"parent":{"1712":{}}}],["shopperbasketsv2.addtaxesforbasketqueryparameters.__type",{"_index":718,"name":{},"parent":{"1713":{}}}],["shopperbasketsv2.createbasketpathparameters",{"_index":728,"name":{},"parent":{"1733":{}}}],["shopperbasketsv2.createbasketpathparameters.__type",{"_index":729,"name":{},"parent":{"1734":{}}}],["shopperbasketsv2.createbasketqueryparameters",{"_index":725,"name":{},"parent":{"1727":{}}}],["shopperbasketsv2.createbasketqueryparameters.__type",{"_index":726,"name":{},"parent":{"1728":{},"1729":{},"1730":{},"1731":{}}}],["shopperbasketsv2.createshipmentforbasketpathparameters",{"_index":732,"name":{},"parent":{"1740":{}}}],["shopperbasketsv2.createshipmentforbasketpathparameters.__type",{"_index":733,"name":{},"parent":{"1741":{},"1742":{}}}],["shopperbasketsv2.createshipmentforbasketqueryparameters",{"_index":730,"name":{},"parent":{"1736":{}}}],["shopperbasketsv2.createshipmentforbasketqueryparameters.__type",{"_index":731,"name":{},"parent":{"1737":{},"1738":{}}}],["shopperbasketsv2.deletebasketpathparameters",{"_index":736,"name":{},"parent":{"1747":{}}}],["shopperbasketsv2.deletebasketpathparameters.__type",{"_index":737,"name":{},"parent":{"1748":{},"1749":{}}}],["shopperbasketsv2.deletebasketqueryparameters",{"_index":734,"name":{},"parent":{"1744":{}}}],["shopperbasketsv2.deletebasketqueryparameters.__type",{"_index":735,"name":{},"parent":{"1745":{}}}],["shopperbasketsv2.getbasketpathparameters",{"_index":740,"name":{},"parent":{"1755":{}}}],["shopperbasketsv2.getbasketpathparameters.__type",{"_index":741,"name":{},"parent":{"1756":{},"1757":{}}}],["shopperbasketsv2.getbasketqueryparameters",{"_index":738,"name":{},"parent":{"1751":{}}}],["shopperbasketsv2.getbasketqueryparameters.__type",{"_index":739,"name":{},"parent":{"1752":{},"1753":{}}}],["shopperbasketsv2.getpaymentmethodsforbasketpathparameters",{"_index":744,"name":{},"parent":{"1763":{}}}],["shopperbasketsv2.getpaymentmethodsforbasketpathparameters.__type",{"_index":745,"name":{},"parent":{"1764":{},"1765":{}}}],["shopperbasketsv2.getpaymentmethodsforbasketqueryparameters",{"_index":742,"name":{},"parent":{"1759":{}}}],["shopperbasketsv2.getpaymentmethodsforbasketqueryparameters.__type",{"_index":743,"name":{},"parent":{"1760":{},"1761":{}}}],["shopperbasketsv2.getpricebooksforbasketpathparameters",{"_index":748,"name":{},"parent":{"1770":{}}}],["shopperbasketsv2.getpricebooksforbasketpathparameters.__type",{"_index":749,"name":{},"parent":{"1771":{},"1772":{}}}],["shopperbasketsv2.getpricebooksforbasketqueryparameters",{"_index":746,"name":{},"parent":{"1767":{}}}],["shopperbasketsv2.getpricebooksforbasketqueryparameters.__type",{"_index":747,"name":{},"parent":{"1768":{}}}],["shopperbasketsv2.getshippingmethodsforshipmentpathparameters",{"_index":752,"name":{},"parent":{"1778":{}}}],["shopperbasketsv2.getshippingmethodsforshipmentpathparameters.__type",{"_index":753,"name":{},"parent":{"1779":{},"1780":{},"1781":{}}}],["shopperbasketsv2.getshippingmethodsforshipmentqueryparameters",{"_index":750,"name":{},"parent":{"1774":{}}}],["shopperbasketsv2.getshippingmethodsforshipmentqueryparameters.__type",{"_index":751,"name":{},"parent":{"1775":{},"1776":{}}}],["shopperbasketsv2.gettaxesfrombasketpathparameters",{"_index":756,"name":{},"parent":{"1786":{}}}],["shopperbasketsv2.gettaxesfrombasketpathparameters.__type",{"_index":757,"name":{},"parent":{"1787":{},"1788":{}}}],["shopperbasketsv2.gettaxesfrombasketqueryparameters",{"_index":754,"name":{},"parent":{"1783":{}}}],["shopperbasketsv2.gettaxesfrombasketqueryparameters.__type",{"_index":755,"name":{},"parent":{"1784":{}}}],["shopperbasketsv2.mergebasketpathparameters",{"_index":760,"name":{},"parent":{"1796":{}}}],["shopperbasketsv2.mergebasketpathparameters.__type",{"_index":761,"name":{},"parent":{"1797":{}}}],["shopperbasketsv2.mergebasketqueryparameters",{"_index":758,"name":{},"parent":{"1790":{}}}],["shopperbasketsv2.mergebasketqueryparameters.__type",{"_index":759,"name":{},"parent":{"1791":{},"1792":{},"1793":{},"1794":{}}}],["shopperbasketsv2.removecouponfrombasketpathparameters",{"_index":764,"name":{},"parent":{"1803":{}}}],["shopperbasketsv2.removecouponfrombasketpathparameters.__type",{"_index":765,"name":{},"parent":{"1804":{},"1805":{},"1806":{}}}],["shopperbasketsv2.removecouponfrombasketqueryparameters",{"_index":762,"name":{},"parent":{"1799":{}}}],["shopperbasketsv2.removecouponfrombasketqueryparameters.__type",{"_index":763,"name":{},"parent":{"1800":{},"1801":{}}}],["shopperbasketsv2.removegiftcertificateitemfrombasketpathparameters",{"_index":768,"name":{},"parent":{"1812":{}}}],["shopperbasketsv2.removegiftcertificateitemfrombasketpathparameters.__type",{"_index":769,"name":{},"parent":{"1813":{},"1814":{},"1815":{}}}],["shopperbasketsv2.removegiftcertificateitemfrombasketqueryparameters",{"_index":766,"name":{},"parent":{"1808":{}}}],["shopperbasketsv2.removegiftcertificateitemfrombasketqueryparameters.__type",{"_index":767,"name":{},"parent":{"1809":{},"1810":{}}}],["shopperbasketsv2.removeitemfrombasketpathparameters",{"_index":772,"name":{},"parent":{"1821":{}}}],["shopperbasketsv2.removeitemfrombasketpathparameters.__type",{"_index":773,"name":{},"parent":{"1822":{},"1823":{},"1824":{}}}],["shopperbasketsv2.removeitemfrombasketqueryparameters",{"_index":770,"name":{},"parent":{"1817":{}}}],["shopperbasketsv2.removeitemfrombasketqueryparameters.__type",{"_index":771,"name":{},"parent":{"1818":{},"1819":{}}}],["shopperbasketsv2.removepaymentinstrumentfrombasketpathparameters",{"_index":776,"name":{},"parent":{"1830":{}}}],["shopperbasketsv2.removepaymentinstrumentfrombasketpathparameters.__type",{"_index":777,"name":{},"parent":{"1831":{},"1832":{},"1833":{}}}],["shopperbasketsv2.removepaymentinstrumentfrombasketqueryparameters",{"_index":774,"name":{},"parent":{"1826":{}}}],["shopperbasketsv2.removepaymentinstrumentfrombasketqueryparameters.__type",{"_index":775,"name":{},"parent":{"1827":{},"1828":{}}}],["shopperbasketsv2.removepriceadjustmentfrombasketpathparameters",{"_index":780,"name":{},"parent":{"1839":{}}}],["shopperbasketsv2.removepriceadjustmentfrombasketpathparameters.__type",{"_index":781,"name":{},"parent":{"1840":{},"1841":{},"1842":{}}}],["shopperbasketsv2.removepriceadjustmentfrombasketqueryparameters",{"_index":778,"name":{},"parent":{"1835":{}}}],["shopperbasketsv2.removepriceadjustmentfrombasketqueryparameters.__type",{"_index":779,"name":{},"parent":{"1836":{},"1837":{}}}],["shopperbasketsv2.removeshipmentfrombasketpathparameters",{"_index":784,"name":{},"parent":{"1848":{}}}],["shopperbasketsv2.removeshipmentfrombasketpathparameters.__type",{"_index":785,"name":{},"parent":{"1849":{},"1850":{},"1851":{}}}],["shopperbasketsv2.removeshipmentfrombasketqueryparameters",{"_index":782,"name":{},"parent":{"1844":{}}}],["shopperbasketsv2.removeshipmentfrombasketqueryparameters.__type",{"_index":783,"name":{},"parent":{"1845":{},"1846":{}}}],["shopperbasketsv2.shopperbasketsv2",{"_index":689,"name":{},"parent":{"1508":{},"1509":{},"1510":{},"1548":{},"1549":{},"1625":{},"1626":{},"1627":{},"1628":{},"1629":{},"1630":{},"1631":{},"1632":{},"1633":{},"1634":{},"1635":{},"1636":{},"1637":{},"1638":{},"1639":{},"1640":{},"1641":{},"1642":{},"1643":{},"1644":{},"1645":{},"1646":{},"1647":{},"1648":{},"1649":{},"1650":{},"1651":{},"1652":{},"1653":{},"1654":{},"1655":{},"1656":{},"1657":{},"1658":{},"1659":{},"1660":{},"1661":{}}}],["shopperbasketsv2.shopperbasketsv2.apipaths",{"_index":690,"name":{},"parent":{"1511":{},"1512":{},"1513":{},"1514":{},"1515":{},"1516":{},"1517":{},"1518":{},"1519":{},"1520":{},"1521":{},"1522":{},"1523":{},"1524":{},"1525":{},"1526":{},"1527":{},"1528":{},"1529":{},"1530":{},"1531":{},"1532":{},"1533":{},"1534":{},"1535":{},"1536":{},"1537":{},"1538":{},"1539":{},"1540":{},"1541":{},"1542":{},"1543":{},"1544":{},"1545":{},"1546":{},"1547":{}}}],["shopperbasketsv2.shopperbasketsv2.paramkeys",{"_index":691,"name":{},"parent":{"1550":{}}}],["shopperbasketsv2.shopperbasketsv2.paramkeys.__type",{"_index":692,"name":{},"parent":{"1551":{},"1552":{},"1553":{},"1554":{},"1555":{},"1556":{},"1557":{},"1558":{},"1559":{},"1560":{},"1561":{},"1562":{},"1563":{},"1564":{},"1565":{},"1566":{},"1567":{},"1568":{},"1569":{},"1570":{},"1571":{},"1572":{},"1573":{},"1574":{},"1575":{},"1576":{},"1577":{},"1578":{},"1579":{},"1580":{},"1581":{},"1582":{},"1583":{},"1584":{},"1585":{},"1586":{},"1587":{},"1588":{},"1589":{},"1590":{},"1591":{},"1592":{},"1593":{},"1594":{},"1595":{},"1596":{},"1597":{},"1598":{},"1599":{},"1600":{},"1601":{},"1602":{},"1603":{},"1604":{},"1605":{},"1606":{},"1607":{},"1608":{},"1609":{},"1610":{},"1611":{},"1612":{},"1613":{},"1614":{},"1615":{},"1616":{},"1617":{},"1618":{},"1619":{},"1620":{},"1621":{},"1622":{},"1623":{},"1624":{}}}],["shopperbasketsv2.shopperbasketsv2types",{"_index":843,"name":{},"parent":{"2191":{},"2192":{},"2193":{},"2194":{},"2195":{},"2196":{},"2197":{},"2198":{},"2199":{},"2200":{},"2201":{},"2202":{},"2203":{},"2204":{},"2205":{},"2206":{},"2207":{},"2208":{},"2209":{},"2210":{},"2211":{},"2212":{},"2213":{},"2214":{},"2215":{},"2216":{},"2217":{},"2218":{},"2219":{},"2220":{},"2221":{},"2222":{},"2223":{},"2224":{},"2225":{},"2226":{},"2227":{},"2228":{},"2229":{},"2230":{},"2231":{},"2232":{},"2233":{},"2234":{},"2235":{},"2236":{},"2237":{},"2238":{},"2239":{},"2240":{},"2241":{},"2242":{},"2243":{},"2244":{},"2245":{},"2246":{},"2247":{},"2248":{},"2249":{},"2250":{},"2251":{},"2252":{},"2253":{},"2254":{},"2255":{},"2256":{},"2257":{},"2258":{},"2259":{},"2260":{},"2261":{},"2262":{},"2263":{},"2264":{},"2265":{},"2266":{},"2267":{},"2268":{},"2269":{},"2270":{},"2271":{},"2272":{},"2273":{},"2274":{},"2275":{},"2276":{},"2277":{},"2278":{},"2279":{},"2280":{},"2281":{},"2282":{},"2283":{},"2284":{},"2285":{},"2286":{},"2287":{},"2288":{},"2289":{},"2290":{},"2291":{},"2292":{},"2293":{},"2294":{},"2295":{},"2296":{},"2297":{},"2298":{},"2299":{},"2300":{},"2301":{},"2302":{},"2303":{},"2304":{},"2305":{},"2306":{},"2307":{},"2308":{},"2309":{},"2310":{},"2311":{},"2312":{},"2313":{},"2314":{}}}],["shopperbasketsv2.transferbasketpathparameters",{"_index":788,"name":{},"parent":{"1859":{}}}],["shopperbasketsv2.transferbasketpathparameters.__type",{"_index":789,"name":{},"parent":{"1860":{}}}],["shopperbasketsv2.transferbasketqueryparameters",{"_index":786,"name":{},"parent":{"1853":{}}}],["shopperbasketsv2.transferbasketqueryparameters.__type",{"_index":787,"name":{},"parent":{"1854":{},"1855":{},"1856":{},"1857":{}}}],["shopperbasketsv2.updateasagentbasketpathparameters",{"_index":792,"name":{},"parent":{"1866":{}}}],["shopperbasketsv2.updateasagentbasketpathparameters.__type",{"_index":793,"name":{},"parent":{"1867":{},"1868":{}}}],["shopperbasketsv2.updateasagentbasketqueryparameters",{"_index":790,"name":{},"parent":{"1862":{}}}],["shopperbasketsv2.updateasagentbasketqueryparameters.__type",{"_index":791,"name":{},"parent":{"1863":{},"1864":{}}}],["shopperbasketsv2.updateasstorefrontbasketpathparameters",{"_index":796,"name":{},"parent":{"1875":{}}}],["shopperbasketsv2.updateasstorefrontbasketpathparameters.__type",{"_index":797,"name":{},"parent":{"1876":{},"1877":{}}}],["shopperbasketsv2.updateasstorefrontbasketqueryparameters",{"_index":794,"name":{},"parent":{"1870":{}}}],["shopperbasketsv2.updateasstorefrontbasketqueryparameters.__type",{"_index":795,"name":{},"parent":{"1871":{},"1872":{},"1873":{}}}],["shopperbasketsv2.updatebasketpathparameters",{"_index":800,"name":{},"parent":{"1884":{}}}],["shopperbasketsv2.updatebasketpathparameters.__type",{"_index":801,"name":{},"parent":{"1885":{},"1886":{}}}],["shopperbasketsv2.updatebasketqueryparameters",{"_index":798,"name":{},"parent":{"1879":{}}}],["shopperbasketsv2.updatebasketqueryparameters.__type",{"_index":799,"name":{},"parent":{"1880":{},"1881":{},"1882":{}}}],["shopperbasketsv2.updatebillingaddressforbasketpathparameters",{"_index":804,"name":{},"parent":{"1894":{}}}],["shopperbasketsv2.updatebillingaddressforbasketpathparameters.__type",{"_index":805,"name":{},"parent":{"1895":{},"1896":{}}}],["shopperbasketsv2.updatebillingaddressforbasketqueryparameters",{"_index":802,"name":{},"parent":{"1888":{}}}],["shopperbasketsv2.updatebillingaddressforbasketqueryparameters.__type",{"_index":803,"name":{},"parent":{"1889":{},"1890":{},"1891":{},"1892":{}}}],["shopperbasketsv2.updatecustomerforbasketpathparameters",{"_index":808,"name":{},"parent":{"1902":{}}}],["shopperbasketsv2.updatecustomerforbasketpathparameters.__type",{"_index":809,"name":{},"parent":{"1903":{},"1904":{}}}],["shopperbasketsv2.updatecustomerforbasketqueryparameters",{"_index":806,"name":{},"parent":{"1898":{}}}],["shopperbasketsv2.updatecustomerforbasketqueryparameters.__type",{"_index":807,"name":{},"parent":{"1899":{},"1900":{}}}],["shopperbasketsv2.updategiftcertificateiteminbasketpathparameters",{"_index":812,"name":{},"parent":{"1910":{}}}],["shopperbasketsv2.updategiftcertificateiteminbasketpathparameters.__type",{"_index":813,"name":{},"parent":{"1911":{},"1912":{},"1913":{}}}],["shopperbasketsv2.updategiftcertificateiteminbasketqueryparameters",{"_index":810,"name":{},"parent":{"1906":{}}}],["shopperbasketsv2.updategiftcertificateiteminbasketqueryparameters.__type",{"_index":811,"name":{},"parent":{"1907":{},"1908":{}}}],["shopperbasketsv2.updateiteminbasketpathparameters",{"_index":816,"name":{},"parent":{"1920":{}}}],["shopperbasketsv2.updateiteminbasketpathparameters.__type",{"_index":817,"name":{},"parent":{"1921":{},"1922":{},"1923":{}}}],["shopperbasketsv2.updateiteminbasketqueryparameters",{"_index":814,"name":{},"parent":{"1915":{}}}],["shopperbasketsv2.updateiteminbasketqueryparameters.__type",{"_index":815,"name":{},"parent":{"1916":{},"1917":{},"1918":{}}}],["shopperbasketsv2.updateitemsinbasketpathparameters",{"_index":820,"name":{},"parent":{"1930":{}}}],["shopperbasketsv2.updateitemsinbasketpathparameters.__type",{"_index":821,"name":{},"parent":{"1931":{},"1932":{}}}],["shopperbasketsv2.updateitemsinbasketqueryparameters",{"_index":818,"name":{},"parent":{"1925":{}}}],["shopperbasketsv2.updateitemsinbasketqueryparameters.__type",{"_index":819,"name":{},"parent":{"1926":{},"1927":{},"1928":{}}}],["shopperbasketsv2.updatepaymentinstrumentinbasketpathparameters",{"_index":824,"name":{},"parent":{"1939":{}}}],["shopperbasketsv2.updatepaymentinstrumentinbasketpathparameters.__type",{"_index":825,"name":{},"parent":{"1940":{},"1941":{},"1942":{}}}],["shopperbasketsv2.updatepaymentinstrumentinbasketqueryparameters",{"_index":822,"name":{},"parent":{"1934":{}}}],["shopperbasketsv2.updatepaymentinstrumentinbasketqueryparameters.__type",{"_index":823,"name":{},"parent":{"1935":{},"1936":{},"1937":{}}}],["shopperbasketsv2.updatepriceadjustmentinbasketpathparameters",{"_index":828,"name":{},"parent":{"1947":{}}}],["shopperbasketsv2.updatepriceadjustmentinbasketpathparameters.__type",{"_index":829,"name":{},"parent":{"1948":{},"1949":{},"1950":{}}}],["shopperbasketsv2.updatepriceadjustmentinbasketqueryparameters",{"_index":826,"name":{},"parent":{"1944":{}}}],["shopperbasketsv2.updatepriceadjustmentinbasketqueryparameters.__type",{"_index":827,"name":{},"parent":{"1945":{}}}],["shopperbasketsv2.updateshipmentforbasketpathparameters",{"_index":832,"name":{},"parent":{"1956":{}}}],["shopperbasketsv2.updateshipmentforbasketpathparameters.__type",{"_index":833,"name":{},"parent":{"1957":{},"1958":{},"1959":{}}}],["shopperbasketsv2.updateshipmentforbasketqueryparameters",{"_index":830,"name":{},"parent":{"1952":{}}}],["shopperbasketsv2.updateshipmentforbasketqueryparameters.__type",{"_index":831,"name":{},"parent":{"1953":{},"1954":{}}}],["shopperbasketsv2.updateshippingaddressforshipmentpathparameters",{"_index":836,"name":{},"parent":{"1967":{}}}],["shopperbasketsv2.updateshippingaddressforshipmentpathparameters.__type",{"_index":837,"name":{},"parent":{"1968":{},"1969":{},"1970":{}}}],["shopperbasketsv2.updateshippingaddressforshipmentqueryparameters",{"_index":834,"name":{},"parent":{"1961":{}}}],["shopperbasketsv2.updateshippingaddressforshipmentqueryparameters.__type",{"_index":835,"name":{},"parent":{"1962":{},"1963":{},"1964":{},"1965":{}}}],["shopperbasketsv2.updateshippingmethodforshipmentpathparameters",{"_index":840,"name":{},"parent":{"1976":{}}}],["shopperbasketsv2.updateshippingmethodforshipmentpathparameters.__type",{"_index":841,"name":{},"parent":{"1977":{},"1978":{},"1979":{}}}],["shopperbasketsv2.updateshippingmethodforshipmentqueryparameters",{"_index":838,"name":{},"parent":{"1972":{}}}],["shopperbasketsv2.updateshippingmethodforshipmentqueryparameters.__type",{"_index":839,"name":{},"parent":{"1973":{},"1974":{}}}],["shopperbasketsv2types",{"_index":842,"name":{"2190":{}},"parent":{}}],["shopperconfigurations",{"_index":844,"name":{"2315":{},"2323":{},"2348":{},"2355":{}},"parent":{"2316":{},"2317":{},"2318":{},"2319":{},"2320":{},"2321":{},"2322":{},"2323":{},"2334":{},"2337":{},"2340":{},"2341":{},"2342":{},"2343":{},"2344":{},"2345":{},"2346":{},"2347":{},"2348":{},"2349":{},"2350":{},"2351":{},"2352":{},"2353":{},"2354":{},"2355":{},"2356":{},"2357":{},"2358":{},"2359":{}}}],["shopperconfigurations.getconfigurationspathparameters",{"_index":857,"name":{},"parent":{"2338":{}}}],["shopperconfigurations.getconfigurationspathparameters.__type",{"_index":858,"name":{},"parent":{"2339":{}}}],["shopperconfigurations.getconfigurationsqueryparameters",{"_index":854,"name":{},"parent":{"2335":{}}}],["shopperconfigurations.getconfigurationsqueryparameters.__type",{"_index":855,"name":{},"parent":{"2336":{}}}],["shopperconfigurations.shopperconfigurations",{"_index":847,"name":{},"parent":{"2324":{},"2325":{},"2326":{},"2328":{},"2329":{},"2333":{}}}],["shopperconfigurations.shopperconfigurations.apipaths",{"_index":849,"name":{},"parent":{"2327":{}}}],["shopperconfigurations.shopperconfigurations.paramkeys",{"_index":850,"name":{},"parent":{"2330":{}}}],["shopperconfigurations.shopperconfigurations.paramkeys.__type",{"_index":851,"name":{},"parent":{"2331":{},"2332":{}}}],["shopperconfigurations.shopperconfigurationstypes",{"_index":863,"name":{},"parent":{"2360":{},"2361":{},"2362":{},"2363":{},"2364":{},"2365":{},"2366":{}}}],["shopperconfigurationsparameters",{"_index":861,"name":{"2342":{},"2347":{},"2354":{}},"parent":{}}],["shopperconfigurationspathparameters",{"_index":859,"name":{"2340":{},"2345":{},"2352":{},"2360":{}},"parent":{}}],["shopperconfigurationsqueryparameters",{"_index":860,"name":{"2341":{},"2346":{},"2353":{},"2361":{}},"parent":{}}],["shopperconfigurationstypes",{"_index":862,"name":{"2359":{}},"parent":{}}],["shopperconsents",{"_index":864,"name":{"2367":{},"2385":{},"2425":{},"2434":{}},"parent":{"2368":{},"2369":{},"2370":{},"2371":{},"2372":{},"2373":{},"2374":{},"2375":{},"2376":{},"2377":{},"2378":{},"2379":{},"2380":{},"2381":{},"2382":{},"2383":{},"2384":{},"2385":{},"2400":{},"2405":{},"2408":{},"2412":{},"2415":{},"2416":{},"2417":{},"2418":{},"2419":{},"2420":{},"2421":{},"2422":{},"2423":{},"2424":{},"2425":{},"2426":{},"2427":{},"2428":{},"2429":{},"2430":{},"2431":{},"2432":{},"2433":{},"2434":{},"2435":{},"2436":{},"2437":{},"2438":{},"2439":{},"2440":{},"2441":{},"2442":{},"2443":{}}}],["shopperconsents.getsubscriptionspathparameters",{"_index":883,"name":{},"parent":{"2406":{}}}],["shopperconsents.getsubscriptionspathparameters.__type",{"_index":884,"name":{},"parent":{"2407":{}}}],["shopperconsents.getsubscriptionsqueryparameters",{"_index":879,"name":{},"parent":{"2401":{}}}],["shopperconsents.getsubscriptionsqueryparameters.__type",{"_index":880,"name":{},"parent":{"2402":{},"2403":{},"2404":{}}}],["shopperconsents.shopperconsents",{"_index":870,"name":{},"parent":{"2386":{},"2387":{},"2388":{},"2391":{},"2392":{},"2398":{},"2399":{}}}],["shopperconsents.shopperconsents.apipaths",{"_index":872,"name":{},"parent":{"2389":{},"2390":{}}}],["shopperconsents.shopperconsents.paramkeys",{"_index":874,"name":{},"parent":{"2393":{}}}],["shopperconsents.shopperconsents.paramkeys.__type",{"_index":875,"name":{},"parent":{"2394":{},"2395":{},"2396":{},"2397":{}}}],["shopperconsents.shopperconsentstypes",{"_index":895,"name":{},"parent":{"2444":{},"2445":{},"2446":{},"2447":{},"2448":{},"2449":{},"2450":{},"2451":{},"2452":{},"2453":{},"2454":{},"2455":{},"2456":{},"2457":{}}}],["shopperconsents.updatesubscriptionpathparameters",{"_index":889,"name":{},"parent":{"2413":{}}}],["shopperconsents.updatesubscriptionpathparameters.__type",{"_index":890,"name":{},"parent":{"2414":{}}}],["shopperconsents.updatesubscriptionqueryparameters",{"_index":886,"name":{},"parent":{"2409":{}}}],["shopperconsents.updatesubscriptionqueryparameters.__type",{"_index":887,"name":{},"parent":{"2410":{},"2411":{}}}],["shopperconsentsparameters",{"_index":893,"name":{"2417":{},"2424":{},"2433":{}},"parent":{}}],["shopperconsentspathparameters",{"_index":891,"name":{"2415":{},"2422":{},"2431":{},"2444":{}},"parent":{}}],["shopperconsentsqueryparameters",{"_index":892,"name":{"2416":{},"2423":{},"2432":{},"2445":{}},"parent":{}}],["shopperconsentstypes",{"_index":894,"name":{"2443":{}},"parent":{}}],["shoppercontext",{"_index":896,"name":{"2458":{},"2462":{},"2464":{},"2548":{},"2562":{}},"parent":{"2459":{},"2460":{},"2461":{},"2462":{},"2463":{},"2464":{},"2465":{},"2466":{},"2489":{},"2493":{},"2497":{},"2500":{},"2504":{},"2507":{},"2511":{},"2515":{},"2519":{},"2520":{},"2521":{},"2522":{},"2523":{},"2524":{},"2525":{},"2526":{},"2527":{},"2528":{},"2529":{},"2530":{},"2531":{},"2532":{},"2533":{},"2534":{},"2535":{},"2536":{},"2537":{},"2538":{},"2539":{},"2540":{},"2541":{},"2542":{},"2543":{},"2544":{},"2545":{},"2546":{},"2547":{},"2548":{},"2549":{},"2550":{}}}],["shoppercontext.createshoppercontextpathparameters",{"_index":916,"name":{},"parent":{"2494":{}}}],["shoppercontext.createshoppercontextpathparameters.__type",{"_index":917,"name":{},"parent":{"2495":{},"2496":{}}}],["shoppercontext.createshoppercontextqueryparameters",{"_index":912,"name":{},"parent":{"2490":{}}}],["shoppercontext.createshoppercontextqueryparameters.__type",{"_index":913,"name":{},"parent":{"2491":{},"2492":{}}}],["shoppercontext.deleteshoppercontextpathparameters",{"_index":922,"name":{},"parent":{"2501":{}}}],["shoppercontext.deleteshoppercontextpathparameters.__type",{"_index":923,"name":{},"parent":{"2502":{},"2503":{}}}],["shoppercontext.deleteshoppercontextqueryparameters",{"_index":919,"name":{},"parent":{"2498":{}}}],["shoppercontext.deleteshoppercontextqueryparameters.__type",{"_index":920,"name":{},"parent":{"2499":{}}}],["shoppercontext.getshoppercontextpathparameters",{"_index":928,"name":{},"parent":{"2508":{}}}],["shoppercontext.getshoppercontextpathparameters.__type",{"_index":929,"name":{},"parent":{"2509":{},"2510":{}}}],["shoppercontext.getshoppercontextqueryparameters",{"_index":925,"name":{},"parent":{"2505":{}}}],["shoppercontext.getshoppercontextqueryparameters.__type",{"_index":926,"name":{},"parent":{"2506":{}}}],["shoppercontext.shoppercontexts",{"_index":899,"name":{},"parent":{"2467":{},"2468":{},"2469":{},"2474":{},"2475":{},"2485":{},"2486":{},"2487":{},"2488":{}}}],["shoppercontext.shoppercontexts.apipaths",{"_index":901,"name":{},"parent":{"2470":{},"2471":{},"2472":{},"2473":{}}}],["shoppercontext.shoppercontexts.paramkeys",{"_index":905,"name":{},"parent":{"2476":{}}}],["shoppercontext.shoppercontexts.paramkeys.__type",{"_index":906,"name":{},"parent":{"2477":{},"2478":{},"2479":{},"2480":{},"2481":{},"2482":{},"2483":{},"2484":{}}}],["shoppercontext.shoppercontextstypes",{"_index":940,"name":{},"parent":{"2551":{},"2552":{},"2553":{},"2554":{},"2555":{},"2556":{},"2557":{},"2558":{},"2559":{},"2560":{},"2561":{},"2562":{},"2563":{}}}],["shoppercontext.updateshoppercontextpathparameters",{"_index":934,"name":{},"parent":{"2516":{}}}],["shoppercontext.updateshoppercontextpathparameters.__type",{"_index":935,"name":{},"parent":{"2517":{},"2518":{}}}],["shoppercontext.updateshoppercontextqueryparameters",{"_index":931,"name":{},"parent":{"2512":{}}}],["shoppercontext.updateshoppercontextqueryparameters.__type",{"_index":932,"name":{},"parent":{"2513":{},"2514":{}}}],["shoppercontextgeolocation",{"_index":897,"name":{"2461":{},"2465":{},"2549":{},"2563":{}},"parent":{}}],["shoppercontextparameters",{"_index":938,"name":{"2521":{},"2532":{},"2545":{}},"parent":{}}],["shoppercontextpathparameters",{"_index":936,"name":{"2519":{},"2530":{},"2543":{},"2551":{}},"parent":{}}],["shoppercontextqueryparameters",{"_index":937,"name":{"2520":{},"2531":{},"2544":{},"2552":{}},"parent":{}}],["shoppercontexts",{"_index":898,"name":{"2466":{},"2533":{},"2546":{}},"parent":{}}],["shoppercontextstypes",{"_index":939,"name":{"2550":{}},"parent":{}}],["shoppercustomers",{"_index":941,"name":{"2564":{},"2756":{},"3167":{},"3230":{}},"parent":{"2565":{},"2566":{},"2567":{},"2568":{},"2569":{},"2570":{},"2571":{},"2572":{},"2573":{},"2574":{},"2575":{},"2576":{},"2577":{},"2578":{},"2579":{},"2580":{},"2581":{},"2582":{},"2583":{},"2584":{},"2585":{},"2586":{},"2587":{},"2588":{},"2589":{},"2590":{},"2591":{},"2592":{},"2593":{},"2594":{},"2595":{},"2596":{},"2597":{},"2598":{},"2599":{},"2600":{},"2601":{},"2602":{},"2603":{},"2604":{},"2605":{},"2606":{},"2607":{},"2608":{},"2609":{},"2610":{},"2611":{},"2612":{},"2613":{},"2614":{},"2615":{},"2616":{},"2617":{},"2618":{},"2619":{},"2620":{},"2621":{},"2622":{},"2623":{},"2624":{},"2625":{},"2626":{},"2627":{},"2628":{},"2629":{},"2630":{},"2631":{},"2632":{},"2633":{},"2634":{},"2635":{},"2636":{},"2637":{},"2638":{},"2639":{},"2640":{},"2641":{},"2642":{},"2643":{},"2644":{},"2645":{},"2646":{},"2647":{},"2648":{},"2649":{},"2650":{},"2651":{},"2652":{},"2653":{},"2654":{},"2655":{},"2656":{},"2657":{},"2658":{},"2659":{},"2660":{},"2661":{},"2662":{},"2663":{},"2664":{},"2665":{},"2666":{},"2667":{},"2668":{},"2669":{},"2670":{},"2671":{},"2672":{},"2673":{},"2674":{},"2675":{},"2676":{},"2677":{},"2678":{},"2679":{},"2680":{},"2681":{},"2682":{},"2683":{},"2684":{},"2685":{},"2686":{},"2687":{},"2688":{},"2689":{},"2690":{},"2691":{},"2692":{},"2693":{},"2694":{},"2695":{},"2696":{},"2697":{},"2698":{},"2699":{},"2700":{},"2701":{},"2702":{},"2703":{},"2704":{},"2705":{},"2706":{},"2707":{},"2708":{},"2709":{},"2710":{},"2711":{},"2712":{},"2713":{},"2714":{},"2715":{},"2716":{},"2717":{},"2718":{},"2719":{},"2720":{},"2721":{},"2722":{},"2723":{},"2724":{},"2725":{},"2726":{},"2727":{},"2728":{},"2729":{},"2730":{},"2731":{},"2732":{},"2733":{},"2734":{},"2735":{},"2736":{},"2737":{},"2738":{},"2739":{},"2740":{},"2741":{},"2742":{},"2743":{},"2744":{},"2745":{},"2746":{},"2747":{},"2748":{},"2749":{},"2750":{},"2751":{},"2752":{},"2753":{},"2754":{},"2755":{},"2756":{},"2879":{},"2882":{},"2886":{},"2889":{},"2893":{},"2896":{},"2900":{},"2903":{},"2908":{},"2911":{},"2916":{},"2919":{},"2924":{},"2927":{},"2933":{},"2936":{},"2940":{},"2943":{},"2948":{},"2951":{},"2955":{},"2964":{},"2968":{},"2971":{},"2976":{},"2979":{},"2984":{},"2987":{},"2993":{},"2996":{},"3000":{},"3005":{},"3008":{},"3011":{},"3016":{},"3019":{},"3023":{},"3029":{},"3032":{},"3035":{},"3038":{},"3041":{},"3044":{},"3047":{},"3050":{},"3053":{},"3058":{},"3061":{},"3064":{},"3067":{},"3071":{},"3074":{},"3079":{},"3082":{},"3086":{},"3089":{},"3094":{},"3097":{},"3103":{},"3104":{},"3105":{},"3106":{},"3107":{},"3108":{},"3109":{},"3110":{},"3111":{},"3112":{},"3113":{},"3114":{},"3115":{},"3116":{},"3117":{},"3118":{},"3119":{},"3120":{},"3121":{},"3122":{},"3123":{},"3124":{},"3125":{},"3126":{},"3127":{},"3128":{},"3129":{},"3130":{},"3131":{},"3132":{},"3133":{},"3134":{},"3135":{},"3136":{},"3137":{},"3138":{},"3139":{},"3140":{},"3141":{},"3142":{},"3143":{},"3144":{},"3145":{},"3146":{},"3147":{},"3148":{},"3149":{},"3150":{},"3151":{},"3152":{},"3153":{},"3154":{},"3155":{},"3156":{},"3157":{},"3158":{},"3159":{},"3160":{},"3161":{},"3162":{},"3163":{},"3164":{},"3165":{},"3166":{},"3167":{},"3168":{},"3169":{},"3170":{},"3171":{},"3172":{},"3173":{},"3174":{},"3175":{},"3176":{},"3177":{},"3178":{},"3179":{},"3180":{},"3181":{},"3182":{},"3183":{},"3184":{},"3185":{},"3186":{},"3187":{},"3188":{},"3189":{},"3190":{},"3191":{},"3192":{},"3193":{},"3194":{},"3195":{},"3196":{},"3197":{},"3198":{},"3199":{},"3200":{},"3201":{},"3202":{},"3203":{},"3204":{},"3205":{},"3206":{},"3207":{},"3208":{},"3209":{},"3210":{},"3211":{},"3212":{},"3213":{},"3214":{},"3215":{},"3216":{},"3217":{},"3218":{},"3219":{},"3220":{},"3221":{},"3222":{},"3223":{},"3224":{},"3225":{},"3226":{},"3227":{},"3228":{},"3229":{},"3230":{},"3231":{},"3232":{},"3233":{},"3234":{},"3235":{},"3236":{},"3237":{},"3238":{},"3239":{},"3240":{},"3241":{},"3242":{},"3243":{},"3244":{},"3245":{},"3246":{},"3247":{},"3248":{},"3249":{},"3250":{},"3251":{},"3252":{},"3253":{},"3254":{},"3255":{},"3256":{},"3257":{},"3258":{},"3259":{},"3260":{},"3261":{},"3262":{},"3263":{},"3264":{},"3265":{},"3266":{},"3267":{},"3268":{},"3269":{},"3270":{},"3271":{},"3272":{},"3273":{},"3274":{},"3275":{},"3276":{},"3277":{},"3278":{},"3279":{},"3280":{},"3281":{},"3282":{},"3283":{},"3284":{},"3285":{},"3286":{},"3287":{},"3288":{},"3289":{},"3290":{},"3291":{},"3292":{},"3293":{},"3294":{},"3295":{},"3296":{},"3297":{},"3298":{},"3299":{},"3300":{},"3301":{},"3302":{},"3303":{},"3304":{},"3305":{},"3306":{},"3307":{},"3308":{},"3309":{},"3310":{},"3311":{},"3312":{},"3313":{},"3314":{},"3315":{},"3316":{},"3317":{},"3318":{},"3319":{},"3320":{},"3321":{},"3322":{},"3323":{},"3324":{},"3325":{},"3326":{}}}],["shoppercustomers.createcustomeraddresspathparameters",{"_index":1070,"name":{},"parent":{"2883":{}}}],["shoppercustomers.createcustomeraddresspathparameters.__type",{"_index":1072,"name":{},"parent":{"2884":{},"2885":{}}}],["shoppercustomers.createcustomeraddressqueryparameters",{"_index":1067,"name":{},"parent":{"2880":{}}}],["shoppercustomers.createcustomeraddressqueryparameters.__type",{"_index":1068,"name":{},"parent":{"2881":{}}}],["shoppercustomers.createcustomerpaymentinstrumentpathparameters",{"_index":1077,"name":{},"parent":{"2890":{}}}],["shoppercustomers.createcustomerpaymentinstrumentpathparameters.__type",{"_index":1078,"name":{},"parent":{"2891":{},"2892":{}}}],["shoppercustomers.createcustomerpaymentinstrumentqueryparameters",{"_index":1074,"name":{},"parent":{"2887":{}}}],["shoppercustomers.createcustomerpaymentinstrumentqueryparameters.__type",{"_index":1075,"name":{},"parent":{"2888":{}}}],["shoppercustomers.createcustomerproductlistitempathparameters",{"_index":1089,"name":{},"parent":{"2904":{}}}],["shoppercustomers.createcustomerproductlistitempathparameters.__type",{"_index":1091,"name":{},"parent":{"2905":{},"2906":{},"2907":{}}}],["shoppercustomers.createcustomerproductlistitemqueryparameters",{"_index":1086,"name":{},"parent":{"2901":{}}}],["shoppercustomers.createcustomerproductlistitemqueryparameters.__type",{"_index":1087,"name":{},"parent":{"2902":{}}}],["shoppercustomers.createcustomerproductlistpathparameters",{"_index":1083,"name":{},"parent":{"2897":{}}}],["shoppercustomers.createcustomerproductlistpathparameters.__type",{"_index":1084,"name":{},"parent":{"2898":{},"2899":{}}}],["shoppercustomers.createcustomerproductlistqueryparameters",{"_index":1080,"name":{},"parent":{"2894":{}}}],["shoppercustomers.createcustomerproductlistqueryparameters.__type",{"_index":1081,"name":{},"parent":{"2895":{}}}],["shoppercustomers.deletecustomerpaymentinstrumentpathparameters",{"_index":1096,"name":{},"parent":{"2912":{}}}],["shoppercustomers.deletecustomerpaymentinstrumentpathparameters.__type",{"_index":1097,"name":{},"parent":{"2913":{},"2914":{},"2915":{}}}],["shoppercustomers.deletecustomerpaymentinstrumentqueryparameters",{"_index":1093,"name":{},"parent":{"2909":{}}}],["shoppercustomers.deletecustomerpaymentinstrumentqueryparameters.__type",{"_index":1094,"name":{},"parent":{"2910":{}}}],["shoppercustomers.deletecustomerproductlistitempathparameters",{"_index":1108,"name":{},"parent":{"2928":{}}}],["shoppercustomers.deletecustomerproductlistitempathparameters.__type",{"_index":1109,"name":{},"parent":{"2929":{},"2930":{},"2931":{},"2932":{}}}],["shoppercustomers.deletecustomerproductlistitemqueryparameters",{"_index":1105,"name":{},"parent":{"2925":{}}}],["shoppercustomers.deletecustomerproductlistitemqueryparameters.__type",{"_index":1106,"name":{},"parent":{"2926":{}}}],["shoppercustomers.deletecustomerproductlistpathparameters",{"_index":1102,"name":{},"parent":{"2920":{}}}],["shoppercustomers.deletecustomerproductlistpathparameters.__type",{"_index":1103,"name":{},"parent":{"2921":{},"2922":{},"2923":{}}}],["shoppercustomers.deletecustomerproductlistqueryparameters",{"_index":1099,"name":{},"parent":{"2917":{}}}],["shoppercustomers.deletecustomerproductlistqueryparameters.__type",{"_index":1100,"name":{},"parent":{"2918":{}}}],["shoppercustomers.getcustomeraddresspathparameters",{"_index":1120,"name":{},"parent":{"2944":{}}}],["shoppercustomers.getcustomeraddresspathparameters.__type",{"_index":1122,"name":{},"parent":{"2945":{},"2946":{},"2947":{}}}],["shoppercustomers.getcustomeraddressqueryparameters",{"_index":1117,"name":{},"parent":{"2941":{}}}],["shoppercustomers.getcustomeraddressqueryparameters.__type",{"_index":1118,"name":{},"parent":{"2942":{}}}],["shoppercustomers.getcustomerbasketspathparameters",{"_index":1127,"name":{},"parent":{"2952":{}}}],["shoppercustomers.getcustomerbasketspathparameters.__type",{"_index":1128,"name":{},"parent":{"2953":{},"2954":{}}}],["shoppercustomers.getcustomerbasketsqueryparameters",{"_index":1124,"name":{},"parent":{"2949":{}}}],["shoppercustomers.getcustomerbasketsqueryparameters.__type",{"_index":1125,"name":{},"parent":{"2950":{}}}],["shoppercustomers.getcustomerorderspathparameters",{"_index":1138,"name":{},"parent":{"2965":{}}}],["shoppercustomers.getcustomerorderspathparameters.__type",{"_index":1139,"name":{},"parent":{"2966":{},"2967":{}}}],["shoppercustomers.getcustomerordersqueryparameters",{"_index":1130,"name":{},"parent":{"2956":{}}}],["shoppercustomers.getcustomerordersqueryparameters.__type",{"_index":1132,"name":{},"parent":{"2957":{},"2958":{},"2959":{},"2960":{},"2961":{},"2962":{},"2963":{}}}],["shoppercustomers.getcustomerpathparameters",{"_index":1114,"name":{},"parent":{"2937":{}}}],["shoppercustomers.getcustomerpathparameters.__type",{"_index":1115,"name":{},"parent":{"2938":{},"2939":{}}}],["shoppercustomers.getcustomerpaymentinstrumentpathparameters",{"_index":1144,"name":{},"parent":{"2972":{}}}],["shoppercustomers.getcustomerpaymentinstrumentpathparameters.__type",{"_index":1145,"name":{},"parent":{"2973":{},"2974":{},"2975":{}}}],["shoppercustomers.getcustomerpaymentinstrumentqueryparameters",{"_index":1141,"name":{},"parent":{"2969":{}}}],["shoppercustomers.getcustomerpaymentinstrumentqueryparameters.__type",{"_index":1142,"name":{},"parent":{"2970":{}}}],["shoppercustomers.getcustomerproductlistitempathparameters",{"_index":1156,"name":{},"parent":{"2988":{}}}],["shoppercustomers.getcustomerproductlistitempathparameters.__type",{"_index":1157,"name":{},"parent":{"2989":{},"2990":{},"2991":{},"2992":{}}}],["shoppercustomers.getcustomerproductlistitemqueryparameters",{"_index":1153,"name":{},"parent":{"2985":{}}}],["shoppercustomers.getcustomerproductlistitemqueryparameters.__type",{"_index":1154,"name":{},"parent":{"2986":{}}}],["shoppercustomers.getcustomerproductlistpathparameters",{"_index":1150,"name":{},"parent":{"2980":{}}}],["shoppercustomers.getcustomerproductlistpathparameters.__type",{"_index":1151,"name":{},"parent":{"2981":{},"2982":{},"2983":{}}}],["shoppercustomers.getcustomerproductlistqueryparameters",{"_index":1147,"name":{},"parent":{"2977":{}}}],["shoppercustomers.getcustomerproductlistqueryparameters.__type",{"_index":1148,"name":{},"parent":{"2978":{}}}],["shoppercustomers.getcustomerproductlistspathparameters",{"_index":1162,"name":{},"parent":{"2997":{}}}],["shoppercustomers.getcustomerproductlistspathparameters.__type",{"_index":1163,"name":{},"parent":{"2998":{},"2999":{}}}],["shoppercustomers.getcustomerproductlistsqueryparameters",{"_index":1159,"name":{},"parent":{"2994":{}}}],["shoppercustomers.getcustomerproductlistsqueryparameters.__type",{"_index":1160,"name":{},"parent":{"2995":{}}}],["shoppercustomers.getcustomerqueryparameters",{"_index":1111,"name":{},"parent":{"2934":{}}}],["shoppercustomers.getcustomerqueryparameters.__type",{"_index":1112,"name":{},"parent":{"2935":{}}}],["shoppercustomers.getexternalprofilepathparameters",{"_index":1170,"name":{},"parent":{"3006":{}}}],["shoppercustomers.getexternalprofilepathparameters.__type",{"_index":1171,"name":{},"parent":{"3007":{}}}],["shoppercustomers.getexternalprofilequeryparameters",{"_index":1165,"name":{},"parent":{"3001":{}}}],["shoppercustomers.getexternalprofilequeryparameters.__type",{"_index":1167,"name":{},"parent":{"3002":{},"3003":{},"3004":{}}}],["shoppercustomers.getproductlistitempathparameters",{"_index":1176,"name":{},"parent":{"3012":{}}}],["shoppercustomers.getproductlistitempathparameters.__type",{"_index":1177,"name":{},"parent":{"3013":{},"3014":{},"3015":{}}}],["shoppercustomers.getproductlistitemqueryparameters",{"_index":1173,"name":{},"parent":{"3009":{}}}],["shoppercustomers.getproductlistitemqueryparameters.__type",{"_index":1174,"name":{},"parent":{"3010":{}}}],["shoppercustomers.getpublicproductlistpathparameters",{"_index":1182,"name":{},"parent":{"3020":{}}}],["shoppercustomers.getpublicproductlistpathparameters.__type",{"_index":1183,"name":{},"parent":{"3021":{},"3022":{}}}],["shoppercustomers.getpublicproductlistqueryparameters",{"_index":1179,"name":{},"parent":{"3017":{}}}],["shoppercustomers.getpublicproductlistqueryparameters.__type",{"_index":1180,"name":{},"parent":{"3018":{}}}],["shoppercustomers.getpublicproductlistsbysearchtermpathparameters",{"_index":1191,"name":{},"parent":{"3030":{}}}],["shoppercustomers.getpublicproductlistsbysearchtermpathparameters.__type",{"_index":1192,"name":{},"parent":{"3031":{}}}],["shoppercustomers.getpublicproductlistsbysearchtermqueryparameters",{"_index":1185,"name":{},"parent":{"3024":{}}}],["shoppercustomers.getpublicproductlistsbysearchtermqueryparameters.__type",{"_index":1187,"name":{},"parent":{"3025":{},"3026":{},"3027":{},"3028":{}}}],["shoppercustomers.getresetpasswordtokenpathparameters",{"_index":1197,"name":{},"parent":{"3036":{}}}],["shoppercustomers.getresetpasswordtokenpathparameters.__type",{"_index":1198,"name":{},"parent":{"3037":{}}}],["shoppercustomers.getresetpasswordtokenqueryparameters",{"_index":1194,"name":{},"parent":{"3033":{}}}],["shoppercustomers.getresetpasswordtokenqueryparameters.__type",{"_index":1195,"name":{},"parent":{"3034":{}}}],["shoppercustomers.registercustomerpathparameters",{"_index":1203,"name":{},"parent":{"3042":{}}}],["shoppercustomers.registercustomerpathparameters.__type",{"_index":1204,"name":{},"parent":{"3043":{}}}],["shoppercustomers.registercustomerqueryparameters",{"_index":1200,"name":{},"parent":{"3039":{}}}],["shoppercustomers.registercustomerqueryparameters.__type",{"_index":1201,"name":{},"parent":{"3040":{}}}],["shoppercustomers.registerexternalprofilepathparameters",{"_index":1209,"name":{},"parent":{"3048":{}}}],["shoppercustomers.registerexternalprofilepathparameters.__type",{"_index":1210,"name":{},"parent":{"3049":{}}}],["shoppercustomers.registerexternalprofilequeryparameters",{"_index":1206,"name":{},"parent":{"3045":{}}}],["shoppercustomers.registerexternalprofilequeryparameters.__type",{"_index":1207,"name":{},"parent":{"3046":{}}}],["shoppercustomers.removecustomeraddresspathparameters",{"_index":1215,"name":{},"parent":{"3054":{}}}],["shoppercustomers.removecustomeraddresspathparameters.__type",{"_index":1216,"name":{},"parent":{"3055":{},"3056":{},"3057":{}}}],["shoppercustomers.removecustomeraddressqueryparameters",{"_index":1212,"name":{},"parent":{"3051":{}}}],["shoppercustomers.removecustomeraddressqueryparameters.__type",{"_index":1213,"name":{},"parent":{"3052":{}}}],["shoppercustomers.resetpasswordpathparameters",{"_index":1219,"name":{},"parent":{"3062":{}}}],["shoppercustomers.resetpasswordpathparameters.__type",{"_index":1220,"name":{},"parent":{"3063":{}}}],["shoppercustomers.resetpasswordqueryparameters",{"_index":1217,"name":{},"parent":{"3059":{}}}],["shoppercustomers.resetpasswordqueryparameters.__type",{"_index":1218,"name":{},"parent":{"3060":{}}}],["shoppercustomers.shoppercustomers",{"_index":1006,"name":{},"parent":{"2757":{},"2758":{},"2759":{},"2789":{},"2790":{},"2850":{},"2851":{},"2852":{},"2853":{},"2854":{},"2855":{},"2856":{},"2857":{},"2858":{},"2859":{},"2860":{},"2861":{},"2862":{},"2863":{},"2864":{},"2865":{},"2866":{},"2867":{},"2868":{},"2869":{},"2870":{},"2871":{},"2872":{},"2873":{},"2874":{},"2875":{},"2876":{},"2877":{},"2878":{}}}],["shoppercustomers.shoppercustomers.apipaths",{"_index":1008,"name":{},"parent":{"2760":{},"2761":{},"2762":{},"2763":{},"2764":{},"2765":{},"2766":{},"2767":{},"2768":{},"2769":{},"2770":{},"2771":{},"2772":{},"2773":{},"2774":{},"2775":{},"2776":{},"2777":{},"2778":{},"2779":{},"2780":{},"2781":{},"2782":{},"2783":{},"2784":{},"2785":{},"2786":{},"2787":{},"2788":{}}}],["shoppercustomers.shoppercustomers.paramkeys",{"_index":1036,"name":{},"parent":{"2791":{}}}],["shoppercustomers.shoppercustomers.paramkeys.__type",{"_index":1037,"name":{},"parent":{"2792":{},"2793":{},"2794":{},"2795":{},"2796":{},"2797":{},"2798":{},"2799":{},"2800":{},"2801":{},"2802":{},"2803":{},"2804":{},"2805":{},"2806":{},"2807":{},"2808":{},"2809":{},"2810":{},"2811":{},"2812":{},"2813":{},"2814":{},"2815":{},"2816":{},"2817":{},"2818":{},"2819":{},"2820":{},"2821":{},"2822":{},"2823":{},"2824":{},"2825":{},"2826":{},"2827":{},"2828":{},"2829":{},"2830":{},"2831":{},"2832":{},"2833":{},"2834":{},"2835":{},"2836":{},"2837":{},"2838":{},"2839":{},"2840":{},"2841":{},"2842":{},"2843":{},"2844":{},"2845":{},"2846":{},"2847":{},"2848":{},"2849":{}}}],["shoppercustomers.shoppercustomerstypes",{"_index":1255,"name":{},"parent":{"3327":{},"3328":{},"3329":{},"3330":{},"3331":{},"3332":{},"3333":{},"3334":{},"3335":{},"3336":{},"3337":{},"3338":{},"3339":{},"3340":{},"3341":{},"3342":{},"3343":{},"3344":{},"3345":{},"3346":{},"3347":{},"3348":{},"3349":{},"3350":{},"3351":{},"3352":{},"3353":{},"3354":{},"3355":{},"3356":{},"3357":{},"3358":{},"3359":{},"3360":{},"3361":{},"3362":{},"3363":{},"3364":{},"3365":{},"3366":{},"3367":{},"3368":{},"3369":{},"3370":{},"3371":{},"3372":{},"3373":{},"3374":{},"3375":{},"3376":{},"3377":{},"3378":{},"3379":{},"3380":{},"3381":{},"3382":{},"3383":{},"3384":{},"3385":{},"3386":{},"3387":{},"3388":{},"3389":{},"3390":{},"3391":{},"3392":{},"3393":{},"3394":{},"3395":{},"3396":{},"3397":{},"3398":{},"3399":{},"3400":{},"3401":{},"3402":{},"3403":{},"3404":{},"3405":{},"3406":{},"3407":{},"3408":{},"3409":{},"3410":{},"3411":{},"3412":{},"3413":{},"3414":{},"3415":{},"3416":{},"3417":{},"3418":{},"3419":{},"3420":{},"3421":{},"3422":{},"3423":{},"3424":{},"3425":{},"3426":{},"3427":{},"3428":{},"3429":{},"3430":{},"3431":{},"3432":{},"3433":{},"3434":{},"3435":{},"3436":{},"3437":{},"3438":{},"3439":{},"3440":{},"3441":{},"3442":{},"3443":{},"3444":{},"3445":{},"3446":{},"3447":{},"3448":{},"3449":{},"3450":{},"3451":{},"3452":{},"3453":{},"3454":{},"3455":{},"3456":{},"3457":{},"3458":{},"3459":{},"3460":{},"3461":{},"3462":{},"3463":{},"3464":{},"3465":{},"3466":{},"3467":{},"3468":{},"3469":{},"3470":{},"3471":{},"3472":{},"3473":{},"3474":{},"3475":{},"3476":{},"3477":{},"3478":{},"3479":{},"3480":{},"3481":{}}}],["shoppercustomers.updatecustomeraddresspathparameters",{"_index":1231,"name":{},"parent":{"3075":{}}}],["shoppercustomers.updatecustomeraddresspathparameters.__type",{"_index":1232,"name":{},"parent":{"3076":{},"3077":{},"3078":{}}}],["shoppercustomers.updatecustomeraddressqueryparameters",{"_index":1228,"name":{},"parent":{"3072":{}}}],["shoppercustomers.updatecustomeraddressqueryparameters.__type",{"_index":1229,"name":{},"parent":{"3073":{}}}],["shoppercustomers.updatecustomerpasswordpathparameters",{"_index":1237,"name":{},"parent":{"3083":{}}}],["shoppercustomers.updatecustomerpasswordpathparameters.__type",{"_index":1238,"name":{},"parent":{"3084":{},"3085":{}}}],["shoppercustomers.updatecustomerpasswordqueryparameters",{"_index":1234,"name":{},"parent":{"3080":{}}}],["shoppercustomers.updatecustomerpasswordqueryparameters.__type",{"_index":1235,"name":{},"parent":{"3081":{}}}],["shoppercustomers.updatecustomerpathparameters",{"_index":1225,"name":{},"parent":{"3068":{}}}],["shoppercustomers.updatecustomerpathparameters.__type",{"_index":1226,"name":{},"parent":{"3069":{},"3070":{}}}],["shoppercustomers.updatecustomerproductlistitempathparameters",{"_index":1249,"name":{},"parent":{"3098":{}}}],["shoppercustomers.updatecustomerproductlistitempathparameters.__type",{"_index":1250,"name":{},"parent":{"3099":{},"3100":{},"3101":{},"3102":{}}}],["shoppercustomers.updatecustomerproductlistitemqueryparameters",{"_index":1246,"name":{},"parent":{"3095":{}}}],["shoppercustomers.updatecustomerproductlistitemqueryparameters.__type",{"_index":1247,"name":{},"parent":{"3096":{}}}],["shoppercustomers.updatecustomerproductlistpathparameters",{"_index":1243,"name":{},"parent":{"3090":{}}}],["shoppercustomers.updatecustomerproductlistpathparameters.__type",{"_index":1244,"name":{},"parent":{"3091":{},"3092":{},"3093":{}}}],["shoppercustomers.updatecustomerproductlistqueryparameters",{"_index":1240,"name":{},"parent":{"3087":{}}}],["shoppercustomers.updatecustomerproductlistqueryparameters.__type",{"_index":1241,"name":{},"parent":{"3088":{}}}],["shoppercustomers.updatecustomerqueryparameters",{"_index":1222,"name":{},"parent":{"3065":{}}}],["shoppercustomers.updatecustomerqueryparameters.__type",{"_index":1223,"name":{},"parent":{"3066":{}}}],["shoppercustomersparameters",{"_index":1253,"name":{"3105":{},"3166":{},"3229":{}},"parent":{}}],["shoppercustomerspathparameters",{"_index":1251,"name":{"3103":{},"3164":{},"3227":{},"3327":{}},"parent":{}}],["shoppercustomersqueryparameters",{"_index":1252,"name":{"3104":{},"3165":{},"3228":{},"3328":{}},"parent":{}}],["shoppercustomerstypes",{"_index":1254,"name":{"3326":{}},"parent":{}}],["shopperexperience",{"_index":1256,"name":{"3482":{},"3498":{},"3545":{},"3554":{}},"parent":{"3483":{},"3484":{},"3485":{},"3486":{},"3487":{},"3488":{},"3489":{},"3490":{},"3491":{},"3492":{},"3493":{},"3494":{},"3495":{},"3496":{},"3497":{},"3498":{},"3513":{},"3519":{},"3523":{},"3532":{},"3535":{},"3536":{},"3537":{},"3538":{},"3539":{},"3540":{},"3541":{},"3542":{},"3543":{},"3544":{},"3545":{},"3546":{},"3547":{},"3548":{},"3549":{},"3550":{},"3551":{},"3552":{},"3553":{},"3554":{},"3555":{},"3556":{},"3557":{},"3558":{},"3559":{},"3560":{},"3561":{},"3562":{}}}],["shopperexperience.getpagepathparameters",{"_index":1274,"name":{},"parent":{"3520":{}}}],["shopperexperience.getpagepathparameters.__type",{"_index":1276,"name":{},"parent":{"3521":{},"3522":{}}}],["shopperexperience.getpagequeryparameters",{"_index":1270,"name":{},"parent":{"3514":{}}}],["shopperexperience.getpagequeryparameters.__type",{"_index":1272,"name":{},"parent":{"3515":{},"3516":{},"3517":{},"3518":{}}}],["shopperexperience.getpagespathparameters",{"_index":1284,"name":{},"parent":{"3533":{}}}],["shopperexperience.getpagespathparameters.__type",{"_index":1285,"name":{},"parent":{"3534":{}}}],["shopperexperience.getpagesqueryparameters",{"_index":1278,"name":{},"parent":{"3524":{}}}],["shopperexperience.getpagesqueryparameters.__type",{"_index":1280,"name":{},"parent":{"3525":{},"3526":{},"3527":{},"3528":{},"3529":{},"3530":{},"3531":{}}}],["shopperexperience.shopperexperience",{"_index":1261,"name":{},"parent":{"3499":{},"3500":{},"3501":{},"3504":{},"3505":{},"3511":{},"3512":{}}}],["shopperexperience.shopperexperience.apipaths",{"_index":1263,"name":{},"parent":{"3502":{},"3503":{}}}],["shopperexperience.shopperexperience.paramkeys",{"_index":1265,"name":{},"parent":{"3506":{}}}],["shopperexperience.shopperexperience.paramkeys.__type",{"_index":1266,"name":{},"parent":{"3507":{},"3508":{},"3509":{},"3510":{}}}],["shopperexperience.shopperexperiencetypes",{"_index":1290,"name":{},"parent":{"3563":{},"3564":{},"3565":{},"3566":{},"3567":{},"3568":{},"3569":{},"3570":{},"3571":{},"3572":{},"3573":{},"3574":{},"3575":{}}}],["shopperexperienceparameters",{"_index":1288,"name":{"3537":{},"3544":{},"3553":{}},"parent":{}}],["shopperexperiencepathparameters",{"_index":1286,"name":{"3535":{},"3542":{},"3551":{},"3563":{}},"parent":{}}],["shopperexperiencequeryparameters",{"_index":1287,"name":{"3536":{},"3543":{},"3552":{},"3564":{}},"parent":{}}],["shopperexperiencetypes",{"_index":1289,"name":{"3562":{}},"parent":{}}],["shoppergiftcertificates",{"_index":1291,"name":{"3576":{},"3586":{},"3611":{},"3618":{}},"parent":{"3577":{},"3578":{},"3579":{},"3580":{},"3581":{},"3582":{},"3583":{},"3584":{},"3585":{},"3586":{},"3597":{},"3600":{},"3603":{},"3604":{},"3605":{},"3606":{},"3607":{},"3608":{},"3609":{},"3610":{},"3611":{},"3612":{},"3613":{},"3614":{},"3615":{},"3616":{},"3617":{},"3618":{},"3619":{},"3620":{},"3621":{},"3622":{},"3623":{}}}],["shoppergiftcertificates.getgiftcertificatepathparameters",{"_index":1305,"name":{},"parent":{"3601":{}}}],["shoppergiftcertificates.getgiftcertificatepathparameters.__type",{"_index":1306,"name":{},"parent":{"3602":{}}}],["shoppergiftcertificates.getgiftcertificatequeryparameters",{"_index":1302,"name":{},"parent":{"3598":{}}}],["shoppergiftcertificates.getgiftcertificatequeryparameters.__type",{"_index":1303,"name":{},"parent":{"3599":{}}}],["shoppergiftcertificates.shoppergiftcertificates",{"_index":1295,"name":{},"parent":{"3587":{},"3588":{},"3589":{},"3591":{},"3592":{},"3596":{}}}],["shoppergiftcertificates.shoppergiftcertificates.apipaths",{"_index":1297,"name":{},"parent":{"3590":{}}}],["shoppergiftcertificates.shoppergiftcertificates.paramkeys",{"_index":1298,"name":{},"parent":{"3593":{}}}],["shoppergiftcertificates.shoppergiftcertificates.paramkeys.__type",{"_index":1299,"name":{},"parent":{"3594":{},"3595":{}}}],["shoppergiftcertificates.shoppergiftcertificatestypes",{"_index":1311,"name":{},"parent":{"3624":{},"3625":{},"3626":{},"3627":{},"3628":{},"3629":{},"3630":{},"3631":{}}}],["shoppergiftcertificatesparameters",{"_index":1309,"name":{"3605":{},"3610":{},"3617":{}},"parent":{}}],["shoppergiftcertificatespathparameters",{"_index":1307,"name":{"3603":{},"3608":{},"3615":{},"3624":{}},"parent":{}}],["shoppergiftcertificatesqueryparameters",{"_index":1308,"name":{"3604":{},"3609":{},"3616":{},"3625":{}},"parent":{}}],["shoppergiftcertificatestypes",{"_index":1310,"name":{"3623":{}},"parent":{}}],["shopperlogin",{"_index":42,"name":{"47":{},"89":{},"450":{},"3695":{}},"parent":{"48":{},"75":{},"76":{},"77":{},"78":{},"79":{},"80":{},"81":{},"82":{},"83":{},"84":{},"85":{},"86":{},"87":{},"88":{},"89":{},"164":{},"165":{},"166":{},"167":{},"168":{},"169":{},"170":{},"171":{},"172":{},"173":{},"174":{},"175":{},"176":{},"177":{},"178":{},"180":{},"183":{},"193":{},"205":{},"208":{},"210":{},"213":{},"221":{},"223":{},"226":{},"237":{},"239":{},"242":{},"244":{},"247":{},"255":{},"257":{},"260":{},"271":{},"273":{},"276":{},"289":{},"291":{},"294":{},"306":{},"315":{},"318":{},"320":{},"323":{},"334":{},"337":{},"340":{},"342":{},"345":{},"347":{},"350":{},"354":{},"360":{},"363":{},"365":{},"368":{},"376":{},"378":{},"381":{},"385":{},"386":{},"387":{},"388":{},"389":{},"390":{},"391":{},"392":{},"393":{},"394":{},"395":{},"396":{},"397":{},"398":{},"399":{},"400":{},"401":{},"402":{},"403":{},"404":{},"405":{},"406":{},"407":{},"408":{},"409":{},"410":{},"411":{},"412":{},"413":{},"414":{},"415":{},"416":{},"417":{},"418":{},"419":{},"420":{},"421":{},"422":{},"423":{},"424":{},"425":{},"426":{},"427":{},"428":{},"429":{},"430":{},"431":{},"432":{},"433":{},"434":{},"435":{},"436":{},"437":{},"438":{},"439":{},"440":{},"441":{},"442":{},"443":{},"444":{},"445":{},"446":{},"447":{},"448":{},"449":{},"450":{},"3632":{},"3633":{},"3634":{},"3635":{},"3636":{},"3637":{},"3638":{},"3639":{},"3640":{},"3641":{},"3642":{},"3643":{},"3644":{},"3645":{},"3646":{},"3647":{},"3648":{},"3649":{},"3650":{},"3651":{},"3652":{},"3653":{},"3654":{},"3655":{},"3656":{},"3657":{},"3658":{},"3659":{},"3660":{},"3661":{},"3662":{},"3663":{},"3664":{},"3665":{},"3666":{},"3667":{},"3668":{},"3669":{},"3670":{},"3671":{},"3672":{},"3673":{},"3674":{},"3675":{},"3676":{},"3677":{},"3678":{},"3679":{},"3680":{},"3681":{},"3682":{},"3683":{},"3684":{},"3685":{},"3686":{},"3687":{},"3688":{},"3689":{},"3690":{},"3691":{},"3692":{},"3693":{},"3694":{},"3695":{},"3696":{},"3697":{},"3698":{},"3699":{},"3700":{},"3701":{},"3702":{},"3703":{}}}],["shopperlogin.authenticatecustomerbodytype",{"_index":137,"name":{},"parent":{"184":{}}}],["shopperlogin.authenticatecustomerbodytype.__type",{"_index":139,"name":{},"parent":{"185":{},"186":{},"187":{},"188":{},"189":{},"190":{},"191":{},"192":{}}}],["shopperlogin.authenticatecustomerpathparameters",{"_index":133,"name":{},"parent":{"181":{}}}],["shopperlogin.authenticatecustomerpathparameters.__type",{"_index":135,"name":{},"parent":{"182":{}}}],["shopperlogin.authenticatecustomerqueryparameters",{"_index":131,"name":{},"parent":{"179":{}}}],["shopperlogin.authorizecustomerpathparameters",{"_index":153,"name":{},"parent":{"206":{}}}],["shopperlogin.authorizecustomerpathparameters.__type",{"_index":154,"name":{},"parent":{"207":{}}}],["shopperlogin.authorizecustomerqueryparameters",{"_index":148,"name":{},"parent":{"194":{}}}],["shopperlogin.authorizecustomerqueryparameters.__type",{"_index":149,"name":{},"parent":{"195":{},"196":{},"197":{},"198":{},"199":{},"200":{},"201":{},"202":{},"203":{},"204":{}}}],["shopperlogin.authorizepasswordlesscustomerbodytype",{"_index":161,"name":{},"parent":{"214":{}}}],["shopperlogin.authorizepasswordlesscustomerbodytype.__type",{"_index":163,"name":{},"parent":{"215":{},"216":{},"217":{},"218":{},"219":{},"220":{}}}],["shopperlogin.authorizepasswordlesscustomerpathparameters",{"_index":158,"name":{},"parent":{"211":{}}}],["shopperlogin.authorizepasswordlesscustomerpathparameters.__type",{"_index":159,"name":{},"parent":{"212":{}}}],["shopperlogin.authorizepasswordlesscustomerqueryparameters",{"_index":156,"name":{},"parent":{"209":{}}}],["shopperlogin.getaccesstokenbodytype",{"_index":173,"name":{},"parent":{"227":{}}}],["shopperlogin.getaccesstokenbodytype.__type",{"_index":175,"name":{},"parent":{"228":{},"229":{},"230":{},"231":{},"232":{},"233":{},"234":{},"235":{},"236":{}}}],["shopperlogin.getaccesstokenpathparameters",{"_index":170,"name":{},"parent":{"224":{}}}],["shopperlogin.getaccesstokenpathparameters.__type",{"_index":171,"name":{},"parent":{"225":{}}}],["shopperlogin.getaccesstokenqueryparameters",{"_index":168,"name":{},"parent":{"222":{}}}],["shopperlogin.getjwksuripathparameters",{"_index":183,"name":{},"parent":{"240":{}}}],["shopperlogin.getjwksuripathparameters.__type",{"_index":184,"name":{},"parent":{"241":{}}}],["shopperlogin.getjwksuriqueryparameters",{"_index":181,"name":{},"parent":{"238":{}}}],["shopperlogin.getpasswordlessaccesstokenbodytype",{"_index":191,"name":{},"parent":{"248":{}}}],["shopperlogin.getpasswordlessaccesstokenbodytype.__type",{"_index":192,"name":{},"parent":{"249":{},"250":{},"251":{},"252":{},"253":{},"254":{}}}],["shopperlogin.getpasswordlessaccesstokenpathparameters",{"_index":188,"name":{},"parent":{"245":{}}}],["shopperlogin.getpasswordlessaccesstokenpathparameters.__type",{"_index":189,"name":{},"parent":{"246":{}}}],["shopperlogin.getpasswordlessaccesstokenqueryparameters",{"_index":186,"name":{},"parent":{"243":{}}}],["shopperlogin.getpasswordresettokenbodytype",{"_index":201,"name":{},"parent":{"261":{}}}],["shopperlogin.getpasswordresettokenbodytype.__type",{"_index":202,"name":{},"parent":{"262":{},"263":{},"264":{},"265":{},"266":{},"267":{},"268":{},"269":{},"270":{}}}],["shopperlogin.getpasswordresettokenpathparameters",{"_index":198,"name":{},"parent":{"258":{}}}],["shopperlogin.getpasswordresettokenpathparameters.__type",{"_index":199,"name":{},"parent":{"259":{}}}],["shopperlogin.getpasswordresettokenqueryparameters",{"_index":196,"name":{},"parent":{"256":{}}}],["shopperlogin.getsessionbridgeaccesstokenbodytype",{"_index":210,"name":{},"parent":{"277":{}}}],["shopperlogin.getsessionbridgeaccesstokenbodytype.__type",{"_index":211,"name":{},"parent":{"278":{},"279":{},"280":{},"281":{},"282":{},"283":{},"284":{},"285":{},"286":{},"287":{},"288":{}}}],["shopperlogin.getsessionbridgeaccesstokenpathparameters",{"_index":207,"name":{},"parent":{"274":{}}}],["shopperlogin.getsessionbridgeaccesstokenpathparameters.__type",{"_index":208,"name":{},"parent":{"275":{}}}],["shopperlogin.getsessionbridgeaccesstokenqueryparameters",{"_index":205,"name":{},"parent":{"272":{}}}],["shopperlogin.gettrustedagentaccesstokenbodytype",{"_index":221,"name":{},"parent":{"295":{}}}],["shopperlogin.gettrustedagentaccesstokenbodytype.__type",{"_index":223,"name":{},"parent":{"296":{},"297":{},"298":{},"299":{},"300":{},"301":{},"302":{},"303":{},"304":{},"305":{}}}],["shopperlogin.gettrustedagentaccesstokenpathparameters",{"_index":218,"name":{},"parent":{"292":{}}}],["shopperlogin.gettrustedagentaccesstokenpathparameters.__type",{"_index":219,"name":{},"parent":{"293":{}}}],["shopperlogin.gettrustedagentaccesstokenqueryparameters",{"_index":216,"name":{},"parent":{"290":{}}}],["shopperlogin.gettrustedagentauthorizationtokenpathparameters",{"_index":229,"name":{},"parent":{"316":{}}}],["shopperlogin.gettrustedagentauthorizationtokenpathparameters.__type",{"_index":230,"name":{},"parent":{"317":{}}}],["shopperlogin.gettrustedagentauthorizationtokenqueryparameters",{"_index":226,"name":{},"parent":{"307":{}}}],["shopperlogin.gettrustedagentauthorizationtokenqueryparameters.__type",{"_index":227,"name":{},"parent":{"308":{},"309":{},"310":{},"311":{},"312":{},"313":{},"314":{}}}],["shopperlogin.gettrustedsystemaccesstokenbodytype",{"_index":237,"name":{},"parent":{"324":{}}}],["shopperlogin.gettrustedsystemaccesstokenbodytype.__type",{"_index":238,"name":{},"parent":{"325":{},"326":{},"327":{},"328":{},"329":{},"330":{},"331":{},"332":{},"333":{}}}],["shopperlogin.gettrustedsystemaccesstokenpathparameters",{"_index":234,"name":{},"parent":{"321":{}}}],["shopperlogin.gettrustedsystemaccesstokenpathparameters.__type",{"_index":235,"name":{},"parent":{"322":{}}}],["shopperlogin.gettrustedsystemaccesstokenqueryparameters",{"_index":232,"name":{},"parent":{"319":{}}}],["shopperlogin.getuserinfopathparameters",{"_index":244,"name":{},"parent":{"338":{}}}],["shopperlogin.getuserinfopathparameters.__type",{"_index":245,"name":{},"parent":{"339":{}}}],["shopperlogin.getuserinfoqueryparameters",{"_index":241,"name":{},"parent":{"335":{}}}],["shopperlogin.getuserinfoqueryparameters.__type",{"_index":242,"name":{},"parent":{"336":{}}}],["shopperlogin.getwellknownopenidconfigurationpathparameters",{"_index":249,"name":{},"parent":{"343":{}}}],["shopperlogin.getwellknownopenidconfigurationpathparameters.__type",{"_index":250,"name":{},"parent":{"344":{}}}],["shopperlogin.getwellknownopenidconfigurationqueryparameters",{"_index":247,"name":{},"parent":{"341":{}}}],["shopperlogin.introspecttokenbodytype",{"_index":257,"name":{},"parent":{"351":{}}}],["shopperlogin.introspecttokenbodytype.__type",{"_index":259,"name":{},"parent":{"352":{},"353":{}}}],["shopperlogin.introspecttokenpathparameters",{"_index":254,"name":{},"parent":{"348":{}}}],["shopperlogin.introspecttokenpathparameters.__type",{"_index":255,"name":{},"parent":{"349":{}}}],["shopperlogin.introspecttokenqueryparameters",{"_index":252,"name":{},"parent":{"346":{}}}],["shopperlogin.logoutcustomerpathparameters",{"_index":265,"name":{},"parent":{"361":{}}}],["shopperlogin.logoutcustomerpathparameters.__type",{"_index":266,"name":{},"parent":{"362":{}}}],["shopperlogin.logoutcustomerqueryparameters",{"_index":262,"name":{},"parent":{"355":{}}}],["shopperlogin.logoutcustomerqueryparameters.__type",{"_index":263,"name":{},"parent":{"356":{},"357":{},"358":{},"359":{}}}],["shopperlogin.resetpasswordbodytype",{"_index":273,"name":{},"parent":{"369":{}}}],["shopperlogin.resetpasswordbodytype.__type",{"_index":274,"name":{},"parent":{"370":{},"371":{},"372":{},"373":{},"374":{},"375":{}}}],["shopperlogin.resetpasswordpathparameters",{"_index":270,"name":{},"parent":{"366":{}}}],["shopperlogin.resetpasswordpathparameters.__type",{"_index":271,"name":{},"parent":{"367":{}}}],["shopperlogin.resetpasswordqueryparameters",{"_index":268,"name":{},"parent":{"364":{}}}],["shopperlogin.revoketokenbodytype",{"_index":283,"name":{},"parent":{"382":{}}}],["shopperlogin.revoketokenbodytype.__type",{"_index":284,"name":{},"parent":{"383":{},"384":{}}}],["shopperlogin.revoketokenpathparameters",{"_index":280,"name":{},"parent":{"379":{}}}],["shopperlogin.revoketokenpathparameters.__type",{"_index":281,"name":{},"parent":{"380":{}}}],["shopperlogin.revoketokenqueryparameters",{"_index":278,"name":{},"parent":{"377":{}}}],["shopperlogin.shopperlogin",{"_index":76,"name":{},"parent":{"90":{},"91":{},"92":{},"110":{},"111":{},"147":{},"148":{},"149":{},"150":{},"151":{},"152":{},"153":{},"154":{},"155":{},"156":{},"157":{},"158":{},"159":{},"160":{},"161":{},"162":{},"163":{}}}],["shopperlogin.shopperlogin.apipaths",{"_index":79,"name":{},"parent":{"93":{},"94":{},"95":{},"96":{},"97":{},"98":{},"99":{},"100":{},"101":{},"102":{},"103":{},"104":{},"105":{},"106":{},"107":{},"108":{},"109":{}}}],["shopperlogin.shopperlogin.paramkeys",{"_index":97,"name":{},"parent":{"112":{}}}],["shopperlogin.shopperlogin.paramkeys.__type",{"_index":98,"name":{},"parent":{"113":{},"114":{},"115":{},"116":{},"117":{},"118":{},"119":{},"120":{},"121":{},"122":{},"123":{},"124":{},"125":{},"126":{},"127":{},"128":{},"129":{},"130":{},"131":{},"132":{},"133":{},"134":{},"135":{},"136":{},"137":{},"138":{},"139":{},"140":{},"141":{},"142":{},"143":{},"144":{},"145":{},"146":{}}}],["shopperlogin.shopperlogintypes",{"_index":1313,"name":{},"parent":{"3704":{},"3705":{},"3706":{},"3707":{},"3708":{},"3709":{},"3710":{},"3711":{},"3712":{},"3713":{},"3714":{},"3715":{},"3716":{},"3717":{},"3718":{},"3719":{},"3720":{},"3721":{},"3722":{},"3723":{},"3724":{},"3725":{},"3726":{},"3727":{},"3728":{},"3729":{},"3730":{},"3731":{},"3732":{},"3733":{},"3734":{},"3735":{},"3736":{},"3737":{},"3738":{},"3739":{},"3740":{},"3741":{},"3742":{},"3743":{},"3744":{},"3745":{},"3746":{},"3747":{},"3748":{},"3749":{},"3750":{},"3751":{},"3752":{},"3753":{},"3754":{},"3755":{},"3756":{},"3757":{},"3758":{},"3759":{},"3760":{},"3761":{},"3762":{},"3763":{},"3764":{},"3765":{},"3766":{},"3767":{},"3768":{},"3769":{},"3770":{},"3771":{}}}],["shopperloginparameters",{"_index":287,"name":{"387":{},"449":{},"3694":{}},"parent":{}}],["shopperloginpathparameters",{"_index":285,"name":{"385":{},"447":{},"3692":{},"3704":{}},"parent":{}}],["shopperloginqueryparameters",{"_index":286,"name":{"386":{},"448":{},"3693":{},"3705":{}},"parent":{}}],["shopperlogintypes",{"_index":1312,"name":{"3703":{}},"parent":{}}],["shopperorders",{"_index":1314,"name":{"3772":{},"3874":{},"3999":{},"4020":{}},"parent":{"3773":{},"3774":{},"3775":{},"3776":{},"3777":{},"3778":{},"3779":{},"3780":{},"3781":{},"3782":{},"3783":{},"3784":{},"3785":{},"3786":{},"3787":{},"3788":{},"3789":{},"3790":{},"3791":{},"3792":{},"3793":{},"3794":{},"3795":{},"3796":{},"3797":{},"3798":{},"3799":{},"3800":{},"3801":{},"3802":{},"3803":{},"3804":{},"3805":{},"3806":{},"3807":{},"3808":{},"3809":{},"3810":{},"3811":{},"3812":{},"3813":{},"3814":{},"3815":{},"3816":{},"3817":{},"3818":{},"3819":{},"3820":{},"3821":{},"3822":{},"3823":{},"3824":{},"3825":{},"3826":{},"3827":{},"3828":{},"3829":{},"3830":{},"3831":{},"3832":{},"3833":{},"3834":{},"3835":{},"3836":{},"3837":{},"3838":{},"3839":{},"3840":{},"3841":{},"3842":{},"3843":{},"3844":{},"3845":{},"3846":{},"3847":{},"3848":{},"3849":{},"3850":{},"3851":{},"3852":{},"3853":{},"3854":{},"3855":{},"3856":{},"3857":{},"3858":{},"3859":{},"3860":{},"3861":{},"3862":{},"3863":{},"3864":{},"3865":{},"3866":{},"3867":{},"3868":{},"3869":{},"3870":{},"3871":{},"3872":{},"3873":{},"3874":{},"3913":{},"3917":{},"3920":{},"3924":{},"3928":{},"3932":{},"3936":{},"3940":{},"3944":{},"3947":{},"3951":{},"3955":{},"3959":{},"3963":{},"3968":{},"3972":{},"3977":{},"3978":{},"3979":{},"3980":{},"3981":{},"3982":{},"3983":{},"3984":{},"3985":{},"3986":{},"3987":{},"3988":{},"3989":{},"3990":{},"3991":{},"3992":{},"3993":{},"3994":{},"3995":{},"3996":{},"3997":{},"3998":{},"3999":{},"4000":{},"4001":{},"4002":{},"4003":{},"4004":{},"4005":{},"4006":{},"4007":{},"4008":{},"4009":{},"4010":{},"4011":{},"4012":{},"4013":{},"4014":{},"4015":{},"4016":{},"4017":{},"4018":{},"4019":{},"4020":{},"4021":{},"4022":{},"4023":{},"4024":{},"4025":{},"4026":{},"4027":{},"4028":{},"4029":{},"4030":{},"4031":{},"4032":{},"4033":{},"4034":{},"4035":{},"4036":{},"4037":{},"4038":{},"4039":{},"4040":{},"4041":{},"4042":{},"4043":{},"4044":{},"4045":{},"4046":{},"4047":{},"4048":{},"4049":{},"4050":{},"4051":{},"4052":{},"4053":{},"4054":{},"4055":{},"4056":{},"4057":{},"4058":{},"4059":{},"4060":{},"4061":{},"4062":{},"4063":{},"4064":{},"4065":{},"4066":{},"4067":{},"4068":{},"4069":{},"4070":{},"4071":{}}}],["shopperorders.createorderpathparameters",{"_index":1341,"name":{},"parent":{"3918":{}}}],["shopperorders.createorderpathparameters.__type",{"_index":1342,"name":{},"parent":{"3919":{}}}],["shopperorders.createorderqueryparameters",{"_index":1338,"name":{},"parent":{"3914":{}}}],["shopperorders.createorderqueryparameters.__type",{"_index":1339,"name":{},"parent":{"3915":{},"3916":{}}}],["shopperorders.createpaymentinstrumentfororderpathparameters",{"_index":1347,"name":{},"parent":{"3925":{}}}],["shopperorders.createpaymentinstrumentfororderpathparameters.__type",{"_index":1348,"name":{},"parent":{"3926":{},"3927":{}}}],["shopperorders.createpaymentinstrumentfororderqueryparameters",{"_index":1344,"name":{},"parent":{"3921":{}}}],["shopperorders.createpaymentinstrumentfororderqueryparameters.__type",{"_index":1345,"name":{},"parent":{"3922":{},"3923":{}}}],["shopperorders.getorderpathparameters",{"_index":1354,"name":{},"parent":{"3933":{}}}],["shopperorders.getorderpathparameters.__type",{"_index":1355,"name":{},"parent":{"3934":{},"3935":{}}}],["shopperorders.getorderqueryparameters",{"_index":1351,"name":{},"parent":{"3929":{}}}],["shopperorders.getorderqueryparameters.__type",{"_index":1352,"name":{},"parent":{"3930":{},"3931":{}}}],["shopperorders.getpaymentmethodsfororderpathparameters",{"_index":1360,"name":{},"parent":{"3941":{}}}],["shopperorders.getpaymentmethodsfororderpathparameters.__type",{"_index":1361,"name":{},"parent":{"3942":{},"3943":{}}}],["shopperorders.getpaymentmethodsfororderqueryparameters",{"_index":1357,"name":{},"parent":{"3937":{}}}],["shopperorders.getpaymentmethodsfororderqueryparameters.__type",{"_index":1358,"name":{},"parent":{"3938":{},"3939":{}}}],["shopperorders.gettaxesfromorderpathparameters",{"_index":1366,"name":{},"parent":{"3948":{}}}],["shopperorders.gettaxesfromorderpathparameters.__type",{"_index":1367,"name":{},"parent":{"3949":{},"3950":{}}}],["shopperorders.gettaxesfromorderqueryparameters",{"_index":1363,"name":{},"parent":{"3945":{}}}],["shopperorders.gettaxesfromorderqueryparameters.__type",{"_index":1364,"name":{},"parent":{"3946":{}}}],["shopperorders.guestorderlookuppathparameters",{"_index":1372,"name":{},"parent":{"3956":{}}}],["shopperorders.guestorderlookuppathparameters.__type",{"_index":1373,"name":{},"parent":{"3957":{},"3958":{}}}],["shopperorders.guestorderlookupqueryparameters",{"_index":1369,"name":{},"parent":{"3952":{}}}],["shopperorders.guestorderlookupqueryparameters.__type",{"_index":1370,"name":{},"parent":{"3953":{},"3954":{}}}],["shopperorders.removepaymentinstrumentfromorderpathparameters",{"_index":1378,"name":{},"parent":{"3964":{}}}],["shopperorders.removepaymentinstrumentfromorderpathparameters.__type",{"_index":1379,"name":{},"parent":{"3965":{},"3966":{},"3967":{}}}],["shopperorders.removepaymentinstrumentfromorderqueryparameters",{"_index":1375,"name":{},"parent":{"3960":{}}}],["shopperorders.removepaymentinstrumentfromorderqueryparameters.__type",{"_index":1376,"name":{},"parent":{"3961":{},"3962":{}}}],["shopperorders.shopperorders",{"_index":1317,"name":{},"parent":{"3875":{},"3876":{},"3877":{},"3886":{},"3887":{},"3905":{},"3906":{},"3907":{},"3908":{},"3909":{},"3910":{},"3911":{},"3912":{}}}],["shopperorders.shopperorders.apipaths",{"_index":1319,"name":{},"parent":{"3878":{},"3879":{},"3880":{},"3881":{},"3882":{},"3883":{},"3884":{},"3885":{}}}],["shopperorders.shopperorders.paramkeys",{"_index":1327,"name":{},"parent":{"3888":{}}}],["shopperorders.shopperorders.paramkeys.__type",{"_index":1328,"name":{},"parent":{"3889":{},"3890":{},"3891":{},"3892":{},"3893":{},"3894":{},"3895":{},"3896":{},"3897":{},"3898":{},"3899":{},"3900":{},"3901":{},"3902":{},"3903":{},"3904":{}}}],["shopperorders.shopperorderstypes",{"_index":1390,"name":{},"parent":{"4072":{},"4073":{},"4074":{},"4075":{},"4076":{},"4077":{},"4078":{},"4079":{},"4080":{},"4081":{},"4082":{},"4083":{},"4084":{},"4085":{},"4086":{},"4087":{},"4088":{},"4089":{},"4090":{},"4091":{},"4092":{},"4093":{},"4094":{},"4095":{},"4096":{},"4097":{},"4098":{},"4099":{},"4100":{},"4101":{},"4102":{},"4103":{},"4104":{},"4105":{},"4106":{},"4107":{},"4108":{},"4109":{},"4110":{},"4111":{},"4112":{},"4113":{},"4114":{},"4115":{},"4116":{},"4117":{},"4118":{},"4119":{},"4120":{},"4121":{},"4122":{},"4123":{},"4124":{},"4125":{},"4126":{},"4127":{},"4128":{},"4129":{},"4130":{},"4131":{},"4132":{},"4133":{},"4134":{},"4135":{},"4136":{},"4137":{},"4138":{},"4139":{}}}],["shopperorders.updatepaymentinstrumentfororderpathparameters",{"_index":1384,"name":{},"parent":{"3973":{}}}],["shopperorders.updatepaymentinstrumentfororderpathparameters.__type",{"_index":1385,"name":{},"parent":{"3974":{},"3975":{},"3976":{}}}],["shopperorders.updatepaymentinstrumentfororderqueryparameters",{"_index":1381,"name":{},"parent":{"3969":{}}}],["shopperorders.updatepaymentinstrumentfororderqueryparameters.__type",{"_index":1382,"name":{},"parent":{"3970":{},"3971":{}}}],["shopperordersparameters",{"_index":1388,"name":{"3979":{},"3998":{},"4019":{}},"parent":{}}],["shopperorderspathparameters",{"_index":1386,"name":{"3977":{},"3996":{},"4017":{},"4072":{}},"parent":{}}],["shopperordersqueryparameters",{"_index":1387,"name":{"3978":{},"3997":{},"4018":{},"4073":{}},"parent":{}}],["shopperorderstypes",{"_index":1389,"name":{"4071":{}},"parent":{}}],["shopperproducts",{"_index":1391,"name":{"4140":{},"4204":{},"4295":{},"4312":{}},"parent":{"4141":{},"4142":{},"4143":{},"4144":{},"4145":{},"4146":{},"4147":{},"4148":{},"4149":{},"4150":{},"4151":{},"4152":{},"4153":{},"4154":{},"4155":{},"4156":{},"4157":{},"4158":{},"4159":{},"4160":{},"4161":{},"4162":{},"4163":{},"4164":{},"4165":{},"4166":{},"4167":{},"4168":{},"4169":{},"4170":{},"4171":{},"4172":{},"4173":{},"4174":{},"4175":{},"4176":{},"4177":{},"4178":{},"4179":{},"4180":{},"4181":{},"4182":{},"4183":{},"4184":{},"4185":{},"4186":{},"4187":{},"4188":{},"4189":{},"4190":{},"4191":{},"4192":{},"4193":{},"4194":{},"4195":{},"4196":{},"4197":{},"4198":{},"4199":{},"4200":{},"4201":{},"4202":{},"4203":{},"4204":{},"4227":{},"4228":{},"4229":{},"4230":{},"4231":{},"4237":{},"4240":{},"4245":{},"4249":{},"4259":{},"4263":{},"4274":{},"4277":{},"4278":{},"4279":{},"4280":{},"4281":{},"4282":{},"4283":{},"4284":{},"4285":{},"4286":{},"4287":{},"4288":{},"4289":{},"4290":{},"4291":{},"4292":{},"4293":{},"4294":{},"4295":{},"4296":{},"4297":{},"4298":{},"4299":{},"4300":{},"4301":{},"4302":{},"4303":{},"4304":{},"4305":{},"4306":{},"4307":{},"4308":{},"4309":{},"4310":{},"4311":{},"4312":{},"4313":{},"4314":{},"4315":{},"4316":{},"4317":{},"4318":{},"4319":{},"4320":{},"4321":{},"4322":{},"4323":{},"4324":{},"4325":{},"4326":{},"4327":{},"4328":{},"4329":{},"4330":{},"4331":{},"4332":{},"4333":{},"4334":{},"4335":{},"4336":{},"4337":{},"4338":{},"4339":{},"4340":{},"4341":{},"4342":{},"4343":{},"4344":{}}}],["shopperproducts.getcategoriespathparameters",{"_index":1418,"name":{},"parent":{"4238":{}}}],["shopperproducts.getcategoriespathparameters.__type",{"_index":1419,"name":{},"parent":{"4239":{}}}],["shopperproducts.getcategoriesqueryparameters",{"_index":1413,"name":{},"parent":{"4232":{}}}],["shopperproducts.getcategoriesqueryparameters.__type",{"_index":1415,"name":{},"parent":{"4233":{},"4234":{},"4235":{},"4236":{}}}],["shopperproducts.getcategorypathparameters",{"_index":1424,"name":{},"parent":{"4246":{}}}],["shopperproducts.getcategorypathparameters.__type",{"_index":1426,"name":{},"parent":{"4247":{},"4248":{}}}],["shopperproducts.getcategoryqueryparameters",{"_index":1421,"name":{},"parent":{"4241":{}}}],["shopperproducts.getcategoryqueryparameters.__type",{"_index":1422,"name":{},"parent":{"4242":{},"4243":{},"4244":{}}}],["shopperproducts.getproductpathparameters",{"_index":1437,"name":{},"parent":{"4260":{}}}],["shopperproducts.getproductpathparameters.__type",{"_index":1438,"name":{},"parent":{"4261":{},"4262":{}}}],["shopperproducts.getproductqueryparameters",{"_index":1428,"name":{},"parent":{"4250":{}}}],["shopperproducts.getproductqueryparameters.__type",{"_index":1430,"name":{},"parent":{"4251":{},"4252":{},"4253":{},"4254":{},"4255":{},"4256":{},"4257":{},"4258":{}}}],["shopperproducts.getproductspathparameters",{"_index":1443,"name":{},"parent":{"4275":{}}}],["shopperproducts.getproductspathparameters.__type",{"_index":1444,"name":{},"parent":{"4276":{}}}],["shopperproducts.getproductsqueryparameters",{"_index":1440,"name":{},"parent":{"4264":{}}}],["shopperproducts.getproductsqueryparameters.__type",{"_index":1441,"name":{},"parent":{"4265":{},"4266":{},"4267":{},"4268":{},"4269":{},"4270":{},"4271":{},"4272":{},"4273":{}}}],["shopperproducts.shopperproducts",{"_index":1396,"name":{},"parent":{"4205":{},"4206":{},"4207":{},"4212":{},"4213":{},"4223":{},"4224":{},"4225":{},"4226":{}}}],["shopperproducts.shopperproducts.apipaths",{"_index":1398,"name":{},"parent":{"4208":{},"4209":{},"4210":{},"4211":{}}}],["shopperproducts.shopperproducts.paramkeys",{"_index":1402,"name":{},"parent":{"4214":{}}}],["shopperproducts.shopperproducts.paramkeys.__type",{"_index":1403,"name":{},"parent":{"4215":{},"4216":{},"4217":{},"4218":{},"4219":{},"4220":{},"4221":{},"4222":{}}}],["shopperproducts.shopperproductstypes",{"_index":1449,"name":{},"parent":{"4345":{},"4346":{},"4347":{},"4348":{},"4349":{},"4350":{},"4351":{},"4352":{},"4353":{},"4354":{},"4355":{},"4356":{},"4357":{},"4358":{},"4359":{},"4360":{},"4361":{},"4362":{},"4363":{},"4364":{},"4365":{},"4366":{},"4367":{},"4368":{},"4369":{},"4370":{},"4371":{},"4372":{},"4373":{},"4374":{},"4375":{},"4376":{},"4377":{},"4378":{},"4379":{},"4380":{},"4381":{},"4382":{},"4383":{},"4384":{},"4385":{},"4386":{},"4387":{},"4388":{},"4389":{}}}],["shopperproductsparameters",{"_index":1447,"name":{"4279":{},"4294":{},"4311":{}},"parent":{}}],["shopperproductspathparameters",{"_index":1445,"name":{"4277":{},"4292":{},"4309":{},"4345":{}},"parent":{}}],["shopperproductsqueryparameters",{"_index":1446,"name":{"4278":{},"4293":{},"4310":{},"4346":{}},"parent":{}}],["shopperproductstypes",{"_index":1448,"name":{"4344":{}},"parent":{}}],["shopperpromotions",{"_index":1450,"name":{"4390":{},"4404":{},"4447":{},"4456":{}},"parent":{"4391":{},"4392":{},"4393":{},"4394":{},"4395":{},"4396":{},"4397":{},"4398":{},"4399":{},"4400":{},"4401":{},"4402":{},"4403":{},"4404":{},"4419":{},"4424":{},"4427":{},"4433":{},"4437":{},"4438":{},"4439":{},"4440":{},"4441":{},"4442":{},"4443":{},"4444":{},"4445":{},"4446":{},"4447":{},"4448":{},"4449":{},"4450":{},"4451":{},"4452":{},"4453":{},"4454":{},"4455":{},"4456":{},"4457":{},"4458":{},"4459":{},"4460":{},"4461":{},"4462":{},"4463":{}}}],["shopperpromotions.getpromotionsforcampaignpathparameters",{"_index":1473,"name":{},"parent":{"4434":{}}}],["shopperpromotions.getpromotionsforcampaignpathparameters.__type",{"_index":1475,"name":{},"parent":{"4435":{},"4436":{}}}],["shopperpromotions.getpromotionsforcampaignqueryparameters",{"_index":1468,"name":{},"parent":{"4428":{}}}],["shopperpromotions.getpromotionsforcampaignqueryparameters.__type",{"_index":1469,"name":{},"parent":{"4429":{},"4430":{},"4431":{},"4432":{}}}],["shopperpromotions.getpromotionspathparameters",{"_index":1465,"name":{},"parent":{"4425":{}}}],["shopperpromotions.getpromotionspathparameters.__type",{"_index":1466,"name":{},"parent":{"4426":{}}}],["shopperpromotions.getpromotionsqueryparameters",{"_index":1462,"name":{},"parent":{"4420":{}}}],["shopperpromotions.getpromotionsqueryparameters.__type",{"_index":1463,"name":{},"parent":{"4421":{},"4422":{},"4423":{}}}],["shopperpromotions.shopperpromotions",{"_index":1453,"name":{},"parent":{"4405":{},"4406":{},"4407":{},"4410":{},"4411":{},"4417":{},"4418":{}}}],["shopperpromotions.shopperpromotions.apipaths",{"_index":1455,"name":{},"parent":{"4408":{},"4409":{}}}],["shopperpromotions.shopperpromotions.paramkeys",{"_index":1457,"name":{},"parent":{"4412":{}}}],["shopperpromotions.shopperpromotions.paramkeys.__type",{"_index":1458,"name":{},"parent":{"4413":{},"4414":{},"4415":{},"4416":{}}}],["shopperpromotions.shopperpromotionstypes",{"_index":1480,"name":{},"parent":{"4464":{},"4465":{},"4466":{},"4467":{},"4468":{},"4469":{},"4470":{},"4471":{},"4472":{},"4473":{},"4474":{},"4475":{}}}],["shopperpromotionsparameters",{"_index":1478,"name":{"4439":{},"4446":{},"4455":{}},"parent":{}}],["shopperpromotionspathparameters",{"_index":1476,"name":{"4437":{},"4444":{},"4453":{},"4464":{}},"parent":{}}],["shopperpromotionsqueryparameters",{"_index":1477,"name":{"4438":{},"4445":{},"4454":{},"4465":{}},"parent":{}}],["shopperpromotionstypes",{"_index":1479,"name":{"4463":{}},"parent":{}}],["shoppersearch",{"_index":1481,"name":{"4476":{},"4550":{},"4611":{},"4622":{}},"parent":{"4477":{},"4478":{},"4479":{},"4480":{},"4481":{},"4482":{},"4483":{},"4484":{},"4485":{},"4486":{},"4487":{},"4488":{},"4489":{},"4490":{},"4491":{},"4492":{},"4493":{},"4494":{},"4495":{},"4496":{},"4497":{},"4498":{},"4499":{},"4500":{},"4501":{},"4502":{},"4503":{},"4504":{},"4505":{},"4506":{},"4507":{},"4508":{},"4509":{},"4510":{},"4511":{},"4512":{},"4513":{},"4514":{},"4515":{},"4516":{},"4517":{},"4518":{},"4519":{},"4520":{},"4521":{},"4522":{},"4523":{},"4524":{},"4525":{},"4526":{},"4527":{},"4528":{},"4529":{},"4530":{},"4531":{},"4532":{},"4533":{},"4534":{},"4535":{},"4536":{},"4537":{},"4538":{},"4539":{},"4540":{},"4541":{},"4542":{},"4543":{},"4544":{},"4545":{},"4546":{},"4547":{},"4548":{},"4549":{},"4550":{},"4565":{},"4566":{},"4567":{},"4577":{},"4580":{},"4596":{},"4599":{},"4600":{},"4601":{},"4602":{},"4603":{},"4604":{},"4605":{},"4606":{},"4607":{},"4608":{},"4609":{},"4610":{},"4611":{},"4612":{},"4613":{},"4614":{},"4615":{},"4616":{},"4617":{},"4618":{},"4619":{},"4620":{},"4621":{},"4622":{},"4623":{},"4624":{},"4625":{},"4626":{},"4627":{},"4628":{},"4629":{},"4630":{},"4631":{},"4632":{},"4633":{},"4634":{},"4635":{},"4636":{},"4637":{},"4638":{},"4639":{},"4640":{},"4641":{},"4642":{},"4643":{},"4644":{},"4645":{},"4646":{},"4647":{},"4648":{},"4649":{},"4650":{},"4651":{},"4652":{},"4653":{},"4654":{},"4655":{},"4656":{},"4657":{},"4658":{},"4659":{}}}],["shoppersearch.getsearchsuggestionspathparameters",{"_index":1517,"name":{},"parent":{"4578":{}}}],["shoppersearch.getsearchsuggestionspathparameters.__type",{"_index":1518,"name":{},"parent":{"4579":{}}}],["shoppersearch.getsearchsuggestionsqueryparameters",{"_index":1511,"name":{},"parent":{"4568":{}}}],["shoppersearch.getsearchsuggestionsqueryparameters.__type",{"_index":1512,"name":{},"parent":{"4569":{},"4570":{},"4571":{},"4572":{},"4573":{},"4574":{},"4575":{},"4576":{}}}],["shoppersearch.productsearchpathparameters",{"_index":1527,"name":{},"parent":{"4597":{}}}],["shoppersearch.productsearchpathparameters.__type",{"_index":1528,"name":{},"parent":{"4598":{}}}],["shoppersearch.productsearchqueryparameters",{"_index":1520,"name":{},"parent":{"4581":{}}}],["shoppersearch.productsearchqueryparameters.__type",{"_index":1521,"name":{},"parent":{"4582":{},"4583":{},"4584":{},"4585":{},"4586":{},"4587":{},"4588":{},"4589":{},"4590":{},"4591":{},"4592":{},"4593":{},"4594":{},"4595":{}}}],["shoppersearch.shoppersearch",{"_index":1500,"name":{},"parent":{"4551":{},"4552":{},"4553":{},"4556":{},"4557":{},"4563":{},"4564":{}}}],["shoppersearch.shoppersearch.apipaths",{"_index":1502,"name":{},"parent":{"4554":{},"4555":{}}}],["shoppersearch.shoppersearch.paramkeys",{"_index":1504,"name":{},"parent":{"4558":{}}}],["shoppersearch.shoppersearch.paramkeys.__type",{"_index":1505,"name":{},"parent":{"4559":{},"4560":{},"4561":{},"4562":{}}}],["shoppersearch.shoppersearchtypes",{"_index":1533,"name":{},"parent":{"4660":{},"4661":{},"4662":{},"4663":{},"4664":{},"4665":{},"4666":{},"4667":{},"4668":{},"4669":{},"4670":{},"4671":{},"4672":{},"4673":{},"4674":{},"4675":{},"4676":{},"4677":{},"4678":{},"4679":{},"4680":{},"4681":{},"4682":{},"4683":{},"4684":{},"4685":{},"4686":{},"4687":{},"4688":{},"4689":{},"4690":{},"4691":{},"4692":{},"4693":{},"4694":{},"4695":{},"4696":{},"4697":{},"4698":{},"4699":{},"4700":{},"4701":{},"4702":{},"4703":{}}}],["shoppersearchparameters",{"_index":1531,"name":{"4601":{},"4610":{},"4621":{}},"parent":{}}],["shoppersearchpathparameters",{"_index":1529,"name":{"4599":{},"4608":{},"4619":{},"4660":{}},"parent":{}}],["shoppersearchqueryparameters",{"_index":1530,"name":{"4600":{},"4609":{},"4620":{},"4661":{}},"parent":{}}],["shoppersearchtypes",{"_index":1532,"name":{"4659":{}},"parent":{}}],["shopperseo",{"_index":1534,"name":{"4704":{},"4714":{},"4741":{},"4748":{}},"parent":{"4705":{},"4706":{},"4707":{},"4708":{},"4709":{},"4710":{},"4711":{},"4712":{},"4713":{},"4714":{},"4725":{},"4730":{},"4733":{},"4734":{},"4735":{},"4736":{},"4737":{},"4738":{},"4739":{},"4740":{},"4741":{},"4742":{},"4743":{},"4744":{},"4745":{},"4746":{},"4747":{},"4748":{},"4749":{},"4750":{},"4751":{},"4752":{},"4753":{}}}],["shopperseo.geturlmappingpathparameters",{"_index":1547,"name":{},"parent":{"4731":{}}}],["shopperseo.geturlmappingpathparameters.__type",{"_index":1548,"name":{},"parent":{"4732":{}}}],["shopperseo.geturlmappingqueryparameters",{"_index":1543,"name":{},"parent":{"4726":{}}}],["shopperseo.geturlmappingqueryparameters.__type",{"_index":1545,"name":{},"parent":{"4727":{},"4728":{},"4729":{}}}],["shopperseo.shopperseo",{"_index":1536,"name":{},"parent":{"4715":{},"4716":{},"4717":{},"4719":{},"4720":{},"4724":{}}}],["shopperseo.shopperseo.apipaths",{"_index":1538,"name":{},"parent":{"4718":{}}}],["shopperseo.shopperseo.paramkeys",{"_index":1539,"name":{},"parent":{"4721":{}}}],["shopperseo.shopperseo.paramkeys.__type",{"_index":1540,"name":{},"parent":{"4722":{},"4723":{}}}],["shopperseo.shopperseotypes",{"_index":1553,"name":{},"parent":{"4754":{},"4755":{},"4756":{},"4757":{},"4758":{},"4759":{},"4760":{},"4761":{}}}],["shopperseoparameters",{"_index":1551,"name":{"4735":{},"4740":{},"4747":{}},"parent":{}}],["shopperseopathparameters",{"_index":1549,"name":{"4733":{},"4738":{},"4745":{},"4754":{}},"parent":{}}],["shopperseoqueryparameters",{"_index":1550,"name":{"4734":{},"4739":{},"4746":{},"4755":{}},"parent":{}}],["shopperseotypes",{"_index":1552,"name":{"4753":{}},"parent":{}}],["shopperstores",{"_index":1554,"name":{"4762":{},"4782":{},"4830":{},"4839":{}},"parent":{"4763":{},"4764":{},"4765":{},"4766":{},"4767":{},"4768":{},"4769":{},"4770":{},"4771":{},"4772":{},"4773":{},"4774":{},"4775":{},"4776":{},"4777":{},"4778":{},"4779":{},"4780":{},"4781":{},"4782":{},"4797":{},"4802":{},"4805":{},"4817":{},"4820":{},"4821":{},"4822":{},"4823":{},"4824":{},"4825":{},"4826":{},"4827":{},"4828":{},"4829":{},"4830":{},"4831":{},"4832":{},"4833":{},"4834":{},"4835":{},"4836":{},"4837":{},"4838":{},"4839":{},"4840":{},"4841":{},"4842":{},"4843":{},"4844":{},"4845":{},"4846":{},"4847":{},"4848":{},"4849":{}}}],["shopperstores.getstorespathparameters",{"_index":1571,"name":{},"parent":{"4803":{}}}],["shopperstores.getstorespathparameters.__type",{"_index":1572,"name":{},"parent":{"4804":{}}}],["shopperstores.getstoresqueryparameters",{"_index":1568,"name":{},"parent":{"4798":{}}}],["shopperstores.getstoresqueryparameters.__type",{"_index":1569,"name":{},"parent":{"4799":{},"4800":{},"4801":{}}}],["shopperstores.searchstorespathparameters",{"_index":1582,"name":{},"parent":{"4818":{}}}],["shopperstores.searchstorespathparameters.__type",{"_index":1583,"name":{},"parent":{"4819":{}}}],["shopperstores.searchstoresqueryparameters",{"_index":1574,"name":{},"parent":{"4806":{}}}],["shopperstores.searchstoresqueryparameters.__type",{"_index":1576,"name":{},"parent":{"4807":{},"4808":{},"4809":{},"4810":{},"4811":{},"4812":{},"4813":{},"4814":{},"4815":{},"4816":{}}}],["shopperstores.shopperstores",{"_index":1559,"name":{},"parent":{"4783":{},"4784":{},"4785":{},"4788":{},"4789":{},"4795":{},"4796":{}}}],["shopperstores.shopperstores.apipaths",{"_index":1561,"name":{},"parent":{"4786":{},"4787":{}}}],["shopperstores.shopperstores.paramkeys",{"_index":1563,"name":{},"parent":{"4790":{}}}],["shopperstores.shopperstores.paramkeys.__type",{"_index":1564,"name":{},"parent":{"4791":{},"4792":{},"4793":{},"4794":{}}}],["shopperstores.shopperstorestypes",{"_index":1588,"name":{},"parent":{"4850":{},"4851":{},"4852":{},"4853":{},"4854":{},"4855":{},"4856":{},"4857":{},"4858":{},"4859":{},"4860":{},"4861":{},"4862":{},"4863":{},"4864":{}}}],["shopperstoresparameters",{"_index":1586,"name":{"4822":{},"4829":{},"4838":{}},"parent":{}}],["shopperstorespathparameters",{"_index":1584,"name":{"4820":{},"4827":{},"4836":{},"4850":{}},"parent":{}}],["shopperstoresqueryparameters",{"_index":1585,"name":{"4821":{},"4828":{},"4837":{},"4851":{}},"parent":{}}],["shopperstorestypes",{"_index":1587,"name":{"4849":{}},"parent":{}}],["shortcode",{"_index":2,"name":{"2":{},"513":{}},"parent":{}}],["siteconfiguration",{"_index":846,"name":{"2319":{},"2322":{},"2358":{},"2366":{}},"parent":{}}],["siteid",{"_index":445,"name":{"767":{},"775":{},"783":{},"791":{},"799":{},"807":{},"814":{},"821":{},"829":{},"837":{},"845":{},"852":{},"860":{},"868":{},"875":{},"884":{},"891":{},"900":{},"909":{},"918":{},"927":{},"936":{},"945":{},"954":{},"963":{},"971":{},"980":{},"989":{},"999":{},"1007":{},"1017":{},"1026":{},"1036":{},"1045":{},"1053":{},"1064":{},"1073":{},"1666":{},"1674":{},"1682":{},"1690":{},"1698":{},"1706":{},"1713":{},"1720":{},"1728":{},"1737":{},"1745":{},"1752":{},"1760":{},"1768":{},"1775":{},"1784":{},"1791":{},"1800":{},"1809":{},"1818":{},"1827":{},"1836":{},"1845":{},"1854":{},"1863":{},"1871":{},"1880":{},"1889":{},"1899":{},"1907":{},"1917":{},"1926":{},"1936":{},"1945":{},"1953":{},"1964":{},"1973":{},"2336":{},"2402":{},"2410":{},"2491":{},"2499":{},"2506":{},"2513":{},"2881":{},"2888":{},"2895":{},"2902":{},"2910":{},"2918":{},"2926":{},"2935":{},"2942":{},"2950":{},"2961":{},"2970":{},"2978":{},"2986":{},"2995":{},"3004":{},"3010":{},"3018":{},"3028":{},"3034":{},"3040":{},"3046":{},"3052":{},"3060":{},"3066":{},"3073":{},"3081":{},"3088":{},"3096":{},"3517":{},"3530":{},"3599":{},"3915":{},"3922":{},"3930":{},"3938":{},"3946":{},"3953":{},"3961":{},"3970":{},"4236":{},"4244":{},"4258":{},"4270":{},"4421":{},"4429":{},"4569":{},"4583":{},"4728":{},"4800":{},"4813":{}},"parent":{}}],["sort",{"_index":1523,"name":{"4586":{}},"parent":{}}],["stack",{"_index":293,"name":{"457":{}},"parent":{}}],["startdate",{"_index":1470,"name":{"4430":{}},"parent":{}}],["state",{"_index":142,"name":{"188":{},"199":{},"305":{}},"parent":{}}],["status",{"_index":322,"name":{"521":{},"604":{},"1285":{},"1409":{},"1418":{},"1503":{},"2186":{},"2311":{},"2569":{},"2751":{},"2960":{},"3321":{},"3477":{},"3777":{},"3870":{},"4067":{},"4136":{}},"parent":{}}],["store",{"_index":1556,"name":{"4770":{},"4779":{},"4846":{},"4862":{}},"parent":{}}],["storeresult",{"_index":1557,"name":{"4771":{},"4780":{},"4847":{},"4863":{}},"parent":{}}],["stores",{"_index":1558,"name":{"4772":{},"4781":{},"4848":{},"4864":{}},"parent":{}}],["stringtobase64",{"_index":295,"name":{"459":{},"489":{}},"parent":{}}],["subscriptionchannel",{"_index":866,"name":{"2370":{},"2384":{},"2442":{},"2457":{}},"parent":{}}],["suggestedcategory",{"_index":1486,"name":{"4482":{},"4539":{},"4648":{},"4693":{}},"parent":{}}],["suggestedphrase",{"_index":1484,"name":{"4480":{},"4540":{},"4649":{},"4694":{}},"parent":{}}],["suggestedproduct",{"_index":1497,"name":{"4510":{},"4541":{},"4650":{},"4695":{}},"parent":{}}],["suggestedterm",{"_index":1482,"name":{"4478":{},"4542":{},"4651":{},"4696":{}},"parent":{}}],["suggestedterms",{"_index":1483,"name":{"4479":{},"4543":{},"4652":{},"4697":{}},"parent":{}}],["suggestion",{"_index":1494,"name":{"4507":{},"4544":{},"4653":{},"4698":{}},"parent":{}}],["suggestionresult",{"_index":1499,"name":{"4513":{},"4545":{},"4654":{},"4699":{}},"parent":{}}],["tags",{"_index":881,"name":{"2404":{}},"parent":{}}],["taxes",{"_index":362,"name":{"562":{},"607":{},"1288":{},"1412":{},"1460":{},"1506":{},"2189":{},"2314":{},"3823":{},"3873":{},"4070":{},"4139":{}},"parent":{}}],["taxitem",{"_index":360,"name":{"560":{},"605":{},"1286":{},"1410":{},"1458":{},"1504":{},"2187":{},"2312":{},"3821":{},"3871":{},"4068":{},"4137":{}},"parent":{}}],["taxitems",{"_index":361,"name":{"561":{},"606":{},"1287":{},"1411":{},"1459":{},"1505":{},"2188":{},"2313":{},"3822":{},"3872":{},"4069":{},"4138":{}},"parent":{}}],["taxmode",{"_index":497,"name":{"830":{},"1729":{}},"parent":{}}],["templateurl",{"_index":44,"name":{"49":{},"50":{}},"parent":{"50":{}}}],["templateurl.templateurl",{"_index":45,"name":{},"parent":{"51":{},"52":{},"53":{},"54":{},"55":{},"56":{},"57":{},"58":{},"59":{},"60":{},"61":{},"62":{},"63":{},"64":{},"65":{},"66":{},"67":{},"68":{},"69":{},"70":{},"71":{}}}],["temporary",{"_index":727,"name":{"1730":{}},"parent":{}}],["throwonbadresponse",{"_index":26,"name":{"23":{},"32":{}},"parent":{}}],["tojson",{"_index":62,"name":{"68":{}},"parent":{}}],["token",{"_index":258,"name":{"352":{},"383":{}},"parent":{}}],["token_type_hint",{"_index":260,"name":{"353":{},"384":{}},"parent":{}}],["tokenactionrequest",{"_index":72,"name":{"78":{},"85":{},"3699":{},"3768":{}},"parent":{}}],["tokenactionrequesttokentypehintenum",{"_index":73,"name":{"79":{},"86":{},"3700":{},"3769":{}},"parent":{}}],["tokenresponse",{"_index":75,"name":{"81":{},"87":{},"3701":{},"3770":{}},"parent":{}}],["tokentype",{"_index":74,"name":{"80":{},"88":{},"3702":{},"3771":{}},"parent":{}}],["tostring",{"_index":53,"name":{"59":{}},"parent":{}}],["transferbasket",{"_index":388,"name":{"635":{},"698":{},"749":{},"1534":{},"1597":{},"1648":{}},"parent":{}}],["transferbasketpathparameters",{"_index":597,"name":{"958":{},"1132":{},"1213":{},"1341":{},"1858":{},"2032":{},"2113":{},"2242":{}},"parent":{}}],["transferbasketqueryparameters",{"_index":592,"name":{"952":{},"1131":{},"1212":{},"1340":{},"1852":{},"2031":{},"2112":{},"2241":{}},"parent":{}}],["transferbasketrequired",{"_index":427,"name":{"699":{},"1598":{}},"parent":{}}],["transformrequest",{"_index":25,"name":{"22":{},"31":{},"35":{}},"parent":{}}],["ui_locales",{"_index":151,"name":{"204":{}},"parent":{}}],["until",{"_index":1134,"name":{"2959":{}},"parent":{}}],["updateasagentbasket",{"_index":389,"name":{"636":{},"700":{},"750":{},"1535":{},"1599":{},"1649":{}},"parent":{}}],["updateasagentbasketpathparameters",{"_index":603,"name":{"965":{},"1134":{},"1215":{},"1343":{},"1865":{},"2034":{},"2115":{},"2244":{}},"parent":{}}],["updateasagentbasketqueryparameters",{"_index":600,"name":{"961":{},"1133":{},"1214":{},"1342":{},"1861":{},"2033":{},"2114":{},"2243":{}},"parent":{}}],["updateasagentbasketrequired",{"_index":428,"name":{"701":{},"1600":{}},"parent":{}}],["updateasstorefrontbasket",{"_index":390,"name":{"637":{},"702":{},"751":{},"1536":{},"1601":{},"1650":{}},"parent":{}}],["updateasstorefrontbasketpathparameters",{"_index":610,"name":{"974":{},"1136":{},"1217":{},"1345":{},"1874":{},"2036":{},"2117":{},"2246":{}},"parent":{}}],["updateasstorefrontbasketqueryparameters",{"_index":606,"name":{"969":{},"1135":{},"1216":{},"1344":{},"1869":{},"2035":{},"2116":{},"2245":{}},"parent":{}}],["updateasstorefrontbasketrequired",{"_index":429,"name":{"703":{},"1602":{}},"parent":{}}],["updatebasket",{"_index":391,"name":{"638":{},"704":{},"752":{},"1537":{},"1603":{},"1651":{}},"parent":{}}],["updatebasketpathparameters",{"_index":617,"name":{"983":{},"1138":{},"1219":{},"1347":{},"1883":{},"2038":{},"2119":{},"2248":{}},"parent":{}}],["updatebasketqueryparameters",{"_index":613,"name":{"978":{},"1137":{},"1218":{},"1346":{},"1878":{},"2037":{},"2118":{},"2247":{}},"parent":{}}],["updatebasketrequired",{"_index":430,"name":{"705":{},"1604":{}},"parent":{}}],["updatebillingaddressforbasket",{"_index":392,"name":{"639":{},"706":{},"753":{},"1538":{},"1605":{},"1652":{}},"parent":{}}],["updatebillingaddressforbasketpathparameters",{"_index":624,"name":{"993":{},"1140":{},"1221":{},"1349":{},"1893":{},"2040":{},"2121":{},"2250":{}},"parent":{}}],["updatebillingaddressforbasketqueryparameters",{"_index":620,"name":{"987":{},"1139":{},"1220":{},"1348":{},"1887":{},"2039":{},"2120":{},"2249":{}},"parent":{}}],["updatebillingaddressforbasketrequired",{"_index":431,"name":{"707":{},"1606":{}},"parent":{}}],["updatecustomer",{"_index":1031,"name":{"2784":{},"2840":{},"2874":{}},"parent":{}}],["updatecustomeraddress",{"_index":1032,"name":{"2785":{},"2842":{},"2875":{}},"parent":{}}],["updatecustomeraddresspathparameters",{"_index":1230,"name":{"3074":{},"3157":{},"3220":{},"3380":{}},"parent":{}}],["updatecustomeraddressqueryparameters",{"_index":1227,"name":{"3071":{},"3156":{},"3219":{},"3379":{}},"parent":{}}],["updatecustomeraddressrequired",{"_index":1062,"name":{"2843":{}},"parent":{}}],["updatecustomerforbasket",{"_index":393,"name":{"640":{},"708":{},"754":{},"1539":{},"1607":{},"1653":{}},"parent":{}}],["updatecustomerforbasketpathparameters",{"_index":630,"name":{"1001":{},"1142":{},"1223":{},"1351":{},"1901":{},"2042":{},"2123":{},"2252":{}},"parent":{}}],["updatecustomerforbasketqueryparameters",{"_index":627,"name":{"997":{},"1141":{},"1222":{},"1350":{},"1897":{},"2041":{},"2122":{},"2251":{}},"parent":{}}],["updatecustomerforbasketrequired",{"_index":432,"name":{"709":{},"1608":{}},"parent":{}}],["updatecustomerpassword",{"_index":1033,"name":{"2786":{},"2844":{},"2876":{}},"parent":{}}],["updatecustomerpasswordpathparameters",{"_index":1236,"name":{"3082":{},"3159":{},"3222":{},"3382":{}},"parent":{}}],["updatecustomerpasswordqueryparameters",{"_index":1233,"name":{"3079":{},"3158":{},"3221":{},"3381":{}},"parent":{}}],["updatecustomerpasswordrequired",{"_index":1063,"name":{"2845":{}},"parent":{}}],["updatecustomerpathparameters",{"_index":1224,"name":{"3067":{},"3155":{},"3218":{},"3378":{}},"parent":{}}],["updatecustomerproductlist",{"_index":1034,"name":{"2787":{},"2846":{},"2877":{}},"parent":{}}],["updatecustomerproductlistitem",{"_index":1035,"name":{"2788":{},"2848":{},"2878":{}},"parent":{}}],["updatecustomerproductlistitempathparameters",{"_index":1248,"name":{"3097":{},"3163":{},"3226":{},"3386":{}},"parent":{}}],["updatecustomerproductlistitemqueryparameters",{"_index":1245,"name":{"3094":{},"3162":{},"3225":{},"3385":{}},"parent":{}}],["updatecustomerproductlistitemrequired",{"_index":1065,"name":{"2849":{}},"parent":{}}],["updatecustomerproductlistpathparameters",{"_index":1242,"name":{"3089":{},"3161":{},"3224":{},"3384":{}},"parent":{}}],["updatecustomerproductlistqueryparameters",{"_index":1239,"name":{"3086":{},"3160":{},"3223":{},"3383":{}},"parent":{}}],["updatecustomerproductlistrequired",{"_index":1064,"name":{"2847":{}},"parent":{}}],["updatecustomerqueryparameters",{"_index":1221,"name":{"3064":{},"3154":{},"3217":{},"3377":{}},"parent":{}}],["updatecustomerrequired",{"_index":1061,"name":{"2841":{}},"parent":{}}],["updategiftcertificateiteminbasket",{"_index":394,"name":{"641":{},"710":{},"755":{},"1540":{},"1609":{},"1654":{}},"parent":{}}],["updategiftcertificateiteminbasketpathparameters",{"_index":636,"name":{"1009":{},"1144":{},"1225":{},"1353":{},"1909":{},"2044":{},"2125":{},"2254":{}},"parent":{}}],["updategiftcertificateiteminbasketqueryparameters",{"_index":633,"name":{"1005":{},"1143":{},"1224":{},"1352":{},"1905":{},"2043":{},"2124":{},"2253":{}},"parent":{}}],["updategiftcertificateiteminbasketrequired",{"_index":433,"name":{"711":{},"1610":{}},"parent":{}}],["updateiteminbasket",{"_index":395,"name":{"642":{},"712":{},"756":{},"1541":{},"1611":{},"1655":{}},"parent":{}}],["updateiteminbasketpathparameters",{"_index":642,"name":{"1019":{},"1146":{},"1227":{},"1355":{},"1919":{},"2046":{},"2127":{},"2256":{}},"parent":{}}],["updateiteminbasketqueryparameters",{"_index":639,"name":{"1014":{},"1145":{},"1226":{},"1354":{},"1914":{},"2045":{},"2126":{},"2255":{}},"parent":{}}],["updateiteminbasketrequired",{"_index":434,"name":{"713":{},"1612":{}},"parent":{}}],["updateitemsinbasket",{"_index":396,"name":{"643":{},"714":{},"757":{},"1542":{},"1613":{},"1656":{}},"parent":{}}],["updateitemsinbasketpathparameters",{"_index":648,"name":{"1029":{},"1148":{},"1229":{},"1357":{},"1929":{},"2048":{},"2129":{},"2258":{}},"parent":{}}],["updateitemsinbasketqueryparameters",{"_index":645,"name":{"1024":{},"1147":{},"1228":{},"1356":{},"1924":{},"2047":{},"2128":{},"2257":{}},"parent":{}}],["updateitemsinbasketrequired",{"_index":435,"name":{"715":{},"1614":{}},"parent":{}}],["updatepaymentinstrumentfororder",{"_index":1326,"name":{"3885":{},"3903":{},"3912":{}},"parent":{}}],["updatepaymentinstrumentfororderpathparameters",{"_index":1383,"name":{"3972":{},"3995":{},"4016":{},"4089":{}},"parent":{}}],["updatepaymentinstrumentfororderqueryparameters",{"_index":1380,"name":{"3968":{},"3994":{},"4015":{},"4088":{}},"parent":{}}],["updatepaymentinstrumentfororderrequired",{"_index":1336,"name":{"3904":{}},"parent":{}}],["updatepaymentinstrumentinbasket",{"_index":397,"name":{"644":{},"716":{},"758":{},"1543":{},"1615":{},"1657":{}},"parent":{}}],["updatepaymentinstrumentinbasketpathparameters",{"_index":654,"name":{"1038":{},"1150":{},"1231":{},"1359":{},"1938":{},"2050":{},"2131":{},"2260":{}},"parent":{}}],["updatepaymentinstrumentinbasketqueryparameters",{"_index":651,"name":{"1033":{},"1149":{},"1230":{},"1358":{},"1933":{},"2049":{},"2130":{},"2259":{}},"parent":{}}],["updatepaymentinstrumentinbasketrequired",{"_index":436,"name":{"717":{},"1616":{}},"parent":{}}],["updatepriceadjustmentinbasket",{"_index":398,"name":{"645":{},"718":{},"759":{},"1544":{},"1617":{},"1658":{}},"parent":{}}],["updatepriceadjustmentinbasketpathparameters",{"_index":660,"name":{"1046":{},"1152":{},"1233":{},"1361":{},"1946":{},"2052":{},"2133":{},"2262":{}},"parent":{}}],["updatepriceadjustmentinbasketqueryparameters",{"_index":657,"name":{"1043":{},"1151":{},"1232":{},"1360":{},"1943":{},"2051":{},"2132":{},"2261":{}},"parent":{}}],["updatepriceadjustmentinbasketrequired",{"_index":437,"name":{"719":{},"1618":{}},"parent":{}}],["updateshipmentforbasket",{"_index":399,"name":{"646":{},"720":{},"760":{},"1545":{},"1619":{},"1659":{}},"parent":{}}],["updateshipmentforbasketpathparameters",{"_index":666,"name":{"1055":{},"1154":{},"1235":{},"1363":{},"1955":{},"2054":{},"2135":{},"2264":{}},"parent":{}}],["updateshipmentforbasketqueryparameters",{"_index":663,"name":{"1051":{},"1153":{},"1234":{},"1362":{},"1951":{},"2053":{},"2134":{},"2263":{}},"parent":{}}],["updateshipmentforbasketrequired",{"_index":438,"name":{"721":{},"1620":{}},"parent":{}}],["updateshippingaddressforshipment",{"_index":400,"name":{"647":{},"722":{},"761":{},"1546":{},"1621":{},"1660":{}},"parent":{}}],["updateshippingaddressforshipmentpathparameters",{"_index":673,"name":{"1066":{},"1156":{},"1237":{},"1365":{},"1966":{},"2056":{},"2137":{},"2266":{}},"parent":{}}],["updateshippingaddressforshipmentqueryparameters",{"_index":669,"name":{"1060":{},"1155":{},"1236":{},"1364":{},"1960":{},"2055":{},"2136":{},"2265":{}},"parent":{}}],["updateshippingaddressforshipmentrequired",{"_index":439,"name":{"723":{},"1622":{}},"parent":{}}],["updateshippingmethodforshipment",{"_index":401,"name":{"648":{},"724":{},"762":{},"1547":{},"1623":{},"1661":{}},"parent":{}}],["updateshippingmethodforshipmentpathparameters",{"_index":679,"name":{"1075":{},"1158":{},"1239":{},"1367":{},"1975":{},"2058":{},"2139":{},"2268":{}},"parent":{}}],["updateshippingmethodforshipmentqueryparameters",{"_index":676,"name":{"1071":{},"1157":{},"1238":{},"1366":{},"1971":{},"2057":{},"2138":{},"2267":{}},"parent":{}}],["updateshippingmethodforshipmentrequired",{"_index":440,"name":{"725":{},"1624":{}},"parent":{}}],["updateshoppercontext",{"_index":904,"name":{"2473":{},"2483":{},"2488":{}},"parent":{}}],["updateshoppercontextpathparameters",{"_index":933,"name":{"2515":{},"2529":{},"2542":{},"2560":{}},"parent":{}}],["updateshoppercontextqueryparameters",{"_index":930,"name":{"2511":{},"2528":{},"2541":{},"2559":{}},"parent":{}}],["updateshoppercontextrequired",{"_index":910,"name":{"2484":{}},"parent":{}}],["updatesubscription",{"_index":873,"name":{"2390":{},"2396":{},"2399":{}},"parent":{}}],["updatesubscriptionpathparameters",{"_index":888,"name":{"2412":{},"2421":{},"2430":{},"2449":{}},"parent":{}}],["updatesubscriptionqueryparameters",{"_index":885,"name":{"2408":{},"2420":{},"2429":{},"2448":{}},"parent":{}}],["updatesubscriptionrequired",{"_index":877,"name":{"2397":{}},"parent":{}}],["url",{"_index":63,"name":{"69":{}},"parent":{}}],["urlmapping",{"_index":1535,"name":{"4709":{},"4713":{},"4752":{},"4761":{}},"parent":{}}],["urlparameters",{"_index":12,"name":{"10":{},"499":{}},"parent":{}}],["urlsegment",{"_index":1544,"name":{"4727":{}},"parent":{}}],["useasbilling",{"_index":671,"name":{"1062":{},"1962":{}},"parent":{}}],["useasshipping",{"_index":623,"name":{"991":{},"1891":{}},"parent":{}}],["user_agent_header",{"_index":67,"name":{"73":{}},"parent":{}}],["user_agent_value",{"_index":68,"name":{"74":{}},"parent":{}}],["user_id",{"_index":162,"name":{"215":{},"262":{}},"parent":{}}],["username",{"_index":61,"name":{"67":{}},"parent":{}}],["usid",{"_index":144,"name":{"190":{},"200":{},"218":{},"230":{},"287":{},"303":{},"325":{},"2495":{},"2502":{},"2509":{},"2517":{}},"parent":{}}],["variant",{"_index":954,"name":{"2608":{},"2752":{},"3322":{},"3478":{},"4155":{},"4200":{},"4340":{},"4386":{},"4501":{},"4546":{},"4655":{},"4700":{}},"parent":{}}],["variationattribute",{"_index":945,"name":{"2599":{},"2753":{},"3323":{},"3479":{},"4144":{},"4201":{},"4341":{},"4387":{},"4492":{},"4547":{},"4656":{},"4701":{}},"parent":{}}],["variationattributevalue",{"_index":944,"name":{"2598":{},"2754":{},"3324":{},"3480":{},"4143":{},"4202":{},"4342":{},"4388":{},"4491":{},"4548":{},"4657":{},"4702":{}},"parent":{}}],["variationgroup",{"_index":946,"name":{"2600":{},"2755":{},"3325":{},"3481":{},"4145":{},"4203":{},"4343":{},"4389":{},"4502":{},"4549":{},"4658":{},"4703":{}},"parent":{}}],["version",{"_index":66,"name":{"72":{}},"parent":{"73":{},"74":{}}}]],"pipeline":[]}} \ No newline at end of file +{"kinds":{"1":"Module","2":"Namespace","32":"Variable","64":"Function","128":"Class","256":"Interface","512":"Constructor","1024":"Property","2048":"Method","65536":"Type literal","2097152":"Object literal","4194304":"Type alias","16777216":"Reference"},"rows":[{"id":0,"kind":1,"name":"helpers","url":"modules/helpers.html","classes":"tsd-kind-module"},{"id":1,"kind":256,"name":"BaseUriParameters","url":"interfaces/helpers.baseuriparameters-1.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"helpers"},{"id":2,"kind":1024,"name":"shortCode","url":"interfaces/helpers.baseuriparameters-1.html#shortcode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"helpers.BaseUriParameters"},{"id":3,"kind":256,"name":"PathParameters","url":"interfaces/helpers.pathparameters-1.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"helpers"},{"id":4,"kind":256,"name":"QueryParameters","url":"interfaces/helpers.queryparameters-1.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"helpers"},{"id":5,"kind":4194304,"name":"Prettify","url":"modules/helpers.html#prettify","classes":"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter tsd-is-not-exported","parent":"helpers"},{"id":6,"kind":4194304,"name":"CompositeParameters","url":"modules/helpers.html#compositeparameters-1","classes":"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter","parent":"helpers"},{"id":7,"kind":4194304,"name":"RequireParametersUnlessAllAreOptional","url":"modules/helpers.html#requireparametersunlessallareoptional-1","classes":"tsd-kind-type-alias tsd-parent-kind-module tsd-has-type-parameter","parent":"helpers"},{"id":8,"kind":4194304,"name":"LocaleCode","url":"modules/helpers.html#localecode-1","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"helpers"},{"id":9,"kind":65536,"name":"__type","url":"modules/helpers.html#localecode-1.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"helpers.LocaleCode"},{"id":10,"kind":4194304,"name":"UrlParameters","url":"modules/helpers.html#urlparameters-1","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"helpers"},{"id":11,"kind":4194304,"name":"CustomQueryParameters","url":"modules/helpers.html#customqueryparameters-1","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"helpers"},{"id":12,"kind":65536,"name":"__type","url":"modules/helpers.html#customqueryparameters-1.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"helpers.CustomQueryParameters"},{"id":13,"kind":4194304,"name":"CustomRequestBody","url":"modules/helpers.html#customrequestbody-1","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"helpers"},{"id":14,"kind":65536,"name":"__type","url":"modules/helpers.html#customrequestbody-1.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"helpers.CustomRequestBody"},{"id":15,"kind":1,"name":"clientConfig","url":"modules/clientconfig.html","classes":"tsd-kind-module"},{"id":16,"kind":256,"name":"ClientConfigInit","url":"interfaces/clientconfig.clientconfiginit.html","classes":"tsd-kind-interface tsd-parent-kind-module tsd-has-type-parameter","parent":"clientConfig"},{"id":17,"kind":1024,"name":"baseUri","url":"interfaces/clientconfig.clientconfiginit.html#baseuri","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"clientConfig.ClientConfigInit"},{"id":18,"kind":1024,"name":"proxy","url":"interfaces/clientconfig.clientconfiginit.html#proxy","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"clientConfig.ClientConfigInit"},{"id":19,"kind":1024,"name":"headers","url":"interfaces/clientconfig.clientconfiginit.html#headers","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"clientConfig.ClientConfigInit"},{"id":20,"kind":1024,"name":"parameters","url":"interfaces/clientconfig.clientconfiginit.html#parameters","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"clientConfig.ClientConfigInit"},{"id":21,"kind":1024,"name":"fetchOptions","url":"interfaces/clientconfig.clientconfiginit.html#fetchoptions","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"clientConfig.ClientConfigInit"},{"id":22,"kind":1024,"name":"fetch","url":"interfaces/clientconfig.clientconfiginit.html#fetch","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"clientConfig.ClientConfigInit"},{"id":23,"kind":1024,"name":"transformRequest","url":"interfaces/clientconfig.clientconfiginit.html#transformrequest","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"clientConfig.ClientConfigInit"},{"id":24,"kind":1024,"name":"throwOnBadResponse","url":"interfaces/clientconfig.clientconfiginit.html#throwonbadresponse","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"clientConfig.ClientConfigInit"},{"id":25,"kind":128,"name":"ClientConfig","url":"classes/clientconfig.clientconfig-1.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"clientConfig"},{"id":26,"kind":1024,"name":"baseUri","url":"classes/clientconfig.clientconfig-1.html#baseuri","classes":"tsd-kind-property tsd-parent-kind-class","parent":"clientConfig.ClientConfig"},{"id":27,"kind":1024,"name":"proxy","url":"classes/clientconfig.clientconfig-1.html#proxy","classes":"tsd-kind-property tsd-parent-kind-class","parent":"clientConfig.ClientConfig"},{"id":28,"kind":1024,"name":"headers","url":"classes/clientconfig.clientconfig-1.html#headers","classes":"tsd-kind-property tsd-parent-kind-class","parent":"clientConfig.ClientConfig"},{"id":29,"kind":65536,"name":"__type","url":"classes/clientconfig.clientconfig-1.html#headers.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"clientConfig.ClientConfig.headers"},{"id":30,"kind":1024,"name":"parameters","url":"classes/clientconfig.clientconfig-1.html#parameters","classes":"tsd-kind-property tsd-parent-kind-class","parent":"clientConfig.ClientConfig"},{"id":31,"kind":1024,"name":"fetchOptions","url":"classes/clientconfig.clientconfig-1.html#fetchoptions","classes":"tsd-kind-property tsd-parent-kind-class","parent":"clientConfig.ClientConfig"},{"id":32,"kind":1024,"name":"fetch","url":"classes/clientconfig.clientconfig-1.html#fetch","classes":"tsd-kind-property tsd-parent-kind-class","parent":"clientConfig.ClientConfig"},{"id":33,"kind":1024,"name":"transformRequest","url":"classes/clientconfig.clientconfig-1.html#transformrequest","classes":"tsd-kind-property tsd-parent-kind-class","parent":"clientConfig.ClientConfig"},{"id":34,"kind":1024,"name":"throwOnBadResponse","url":"classes/clientconfig.clientconfig-1.html#throwonbadresponse","classes":"tsd-kind-property tsd-parent-kind-class","parent":"clientConfig.ClientConfig"},{"id":35,"kind":512,"name":"constructor","url":"classes/clientconfig.clientconfig-1.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"clientConfig.ClientConfig"},{"id":36,"kind":2097152,"name":"defaults","url":"classes/clientconfig.clientconfig-1.html#defaults","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-static","parent":"clientConfig.ClientConfig"},{"id":37,"kind":64,"name":"transformRequest","url":"classes/clientconfig.clientconfig-1.html#defaults.transformrequest-1","classes":"tsd-kind-function tsd-parent-kind-object-literal","parent":"clientConfig.ClientConfig.defaults"},{"id":38,"kind":4194304,"name":"BrowserRequestInit","url":"modules/clientconfig.html#browserrequestinit","classes":"tsd-kind-type-alias tsd-parent-kind-module tsd-is-not-exported","parent":"clientConfig"},{"id":39,"kind":4194304,"name":"FetchOptions","url":"modules/clientconfig.html#fetchoptions","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"clientConfig"},{"id":40,"kind":4194304,"name":"FetchFunction","url":"modules/clientconfig.html#fetchfunction","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"clientConfig"},{"id":41,"kind":65536,"name":"__type","url":"modules/clientconfig.html#fetchfunction.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"clientConfig.FetchFunction"},{"id":42,"kind":1,"name":"config","url":"modules/config.html","classes":"tsd-kind-module"},{"id":43,"kind":32,"name":"CUSTOM_API_DEFAULT_BASE_URI","url":"modules/config.html#custom_api_default_base_uri","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"config"},{"id":44,"kind":32,"name":"isBrowser","url":"modules/helpers.html#isbrowser-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"helpers"},{"id":45,"kind":32,"name":"isNode","url":"modules/helpers.html#isnode-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"helpers"},{"id":46,"kind":32,"name":"globalObject","url":"modules/helpers.html#globalobject-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"helpers"},{"id":47,"kind":32,"name":"hasFetchAvailable","url":"modules/helpers.html#hasfetchavailable-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"helpers"},{"id":48,"kind":32,"name":"fetch","url":"modules/helpers.html#fetch-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"helpers"},{"id":49,"kind":1,"name":"shopperLogin","url":"modules/shopperlogin.html","classes":"tsd-kind-module"},{"id":50,"kind":32,"name":"defaultBaseUri","url":"modules/shopperlogin.html#defaultbaseuri-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"shopperLogin"},{"id":51,"kind":1,"name":"templateUrl","url":"modules/templateurl.html","classes":"tsd-kind-module"},{"id":52,"kind":128,"name":"TemplateURL","url":"classes/templateurl.templateurl-1.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"templateUrl"},{"id":53,"kind":512,"name":"constructor","url":"classes/templateurl.templateurl-1.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class tsd-is-overwrite","parent":"templateUrl.TemplateURL"},{"id":54,"kind":2048,"name":"replaceOrigin","url":"classes/templateurl.templateurl-1.html#replaceorigin","classes":"tsd-kind-method tsd-parent-kind-class","parent":"templateUrl.TemplateURL"},{"id":55,"kind":2048,"name":"addQueryParams","url":"classes/templateurl.templateurl-1.html#addqueryparams","classes":"tsd-kind-method tsd-parent-kind-class","parent":"templateUrl.TemplateURL"},{"id":56,"kind":2048,"name":"renderTemplateUri","url":"classes/templateurl.templateurl-1.html#rendertemplateuri","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-static","parent":"templateUrl.TemplateURL"},{"id":57,"kind":1024,"name":"hash","url":"classes/templateurl.templateurl-1.html#hash","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"templateUrl.TemplateURL"},{"id":58,"kind":1024,"name":"host","url":"classes/templateurl.templateurl-1.html#host","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"templateUrl.TemplateURL"},{"id":59,"kind":1024,"name":"hostname","url":"classes/templateurl.templateurl-1.html#hostname","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"templateUrl.TemplateURL"},{"id":60,"kind":1024,"name":"href","url":"classes/templateurl.templateurl-1.html#href","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"templateUrl.TemplateURL"},{"id":61,"kind":2048,"name":"toString","url":"classes/templateurl.templateurl-1.html#tostring","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"templateUrl.TemplateURL"},{"id":62,"kind":1024,"name":"origin","url":"classes/templateurl.templateurl-1.html#origin","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"templateUrl.TemplateURL"},{"id":63,"kind":1024,"name":"password","url":"classes/templateurl.templateurl-1.html#password","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"templateUrl.TemplateURL"},{"id":64,"kind":1024,"name":"pathname","url":"classes/templateurl.templateurl-1.html#pathname","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"templateUrl.TemplateURL"},{"id":65,"kind":1024,"name":"port","url":"classes/templateurl.templateurl-1.html#port","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"templateUrl.TemplateURL"},{"id":66,"kind":1024,"name":"protocol","url":"classes/templateurl.templateurl-1.html#protocol","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"templateUrl.TemplateURL"},{"id":67,"kind":1024,"name":"search","url":"classes/templateurl.templateurl-1.html#search","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"templateUrl.TemplateURL"},{"id":68,"kind":1024,"name":"searchParams","url":"classes/templateurl.templateurl-1.html#searchparams","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"templateUrl.TemplateURL"},{"id":69,"kind":1024,"name":"username","url":"classes/templateurl.templateurl-1.html#username","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"templateUrl.TemplateURL"},{"id":70,"kind":2048,"name":"toJSON","url":"classes/templateurl.templateurl-1.html#tojson","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-overwrite tsd-is-inherited","parent":"templateUrl.TemplateURL"},{"id":71,"kind":1024,"name":"URL","url":"classes/templateurl.templateurl-1.html#url","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"templateUrl.TemplateURL"},{"id":72,"kind":2048,"name":"createObjectURL","url":"classes/templateurl.templateurl-1.html#createobjecturl","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"templateUrl.TemplateURL"},{"id":73,"kind":2048,"name":"revokeObjectURL","url":"classes/templateurl.templateurl-1.html#revokeobjecturl","classes":"tsd-kind-method tsd-parent-kind-class tsd-is-inherited tsd-is-static","parent":"templateUrl.TemplateURL"},{"id":74,"kind":1,"name":"version","url":"modules/version.html","classes":"tsd-kind-module"},{"id":75,"kind":32,"name":"USER_AGENT_HEADER","url":"modules/version.html#user_agent_header","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"version"},{"id":76,"kind":32,"name":"USER_AGENT_VALUE","url":"modules/version.html#user_agent_value","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"version"},{"id":77,"kind":4194304,"name":"AuthenticatorAttestationResponseJsonClientDataJSONInner","url":"modules/shopperlogin.html#authenticatorattestationresponsejsonclientdatajsoninner-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":78,"kind":4194304,"name":"AuthenticatorAttestationResponseJsonAttestationObjectInner","url":"modules/shopperlogin.html#authenticatorattestationresponsejsonattestationobjectinner-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":79,"kind":4194304,"name":"AuthenticatorAttestationResponseJson","url":"modules/shopperlogin.html#authenticatorattestationresponsejson-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":80,"kind":4194304,"name":"AuthenticatorAssertionResponseJsonSignatureInner","url":"modules/shopperlogin.html#authenticatorassertionresponsejsonsignatureinner-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":81,"kind":4194304,"name":"AuthenticatorAssertionResponseJsonUserHandleInner","url":"modules/shopperlogin.html#authenticatorassertionresponsejsonuserhandleinner-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":82,"kind":4194304,"name":"AuthenticatorAssertionResponseJsonAuthenticatorDataInner","url":"modules/shopperlogin.html#authenticatorassertionresponsejsonauthenticatordatainner-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":83,"kind":4194304,"name":"AuthenticatorAssertionResponseJsonClientDataJSONInner","url":"modules/shopperlogin.html#authenticatorassertionresponsejsonclientdatajsoninner-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":84,"kind":4194304,"name":"AuthenticatorAssertionResponseJson","url":"modules/shopperlogin.html#authenticatorassertionresponsejson-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":85,"kind":4194304,"name":"PublicKeyCredentialJsonResponse","url":"modules/shopperlogin.html#publickeycredentialjsonresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":86,"kind":4194304,"name":"PublicKeyCredentialJson","url":"modules/shopperlogin.html#publickeycredentialjson-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":87,"kind":4194304,"name":"PublicKeyCredentialJsonTypeEnum","url":"modules/shopperlogin.html#publickeycredentialjsontypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":88,"kind":4194304,"name":"AuthenticateFinishRequest","url":"modules/shopperlogin.html#authenticatefinishrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":89,"kind":4194304,"name":"TokenType","url":"modules/shopperlogin.html#tokentype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":90,"kind":4194304,"name":"TokenResponse","url":"modules/shopperlogin.html#tokenresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":91,"kind":4194304,"name":"AuthenticateResult","url":"modules/shopperlogin.html#authenticateresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":92,"kind":4194304,"name":"GrantType","url":"modules/shopperlogin.html#granttype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":93,"kind":4194304,"name":"Oauth2ErrorResponse","url":"modules/shopperlogin.html#oauth2errorresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":94,"kind":4194304,"name":"PasskeyCredential","url":"modules/shopperlogin.html#passkeycredential-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":95,"kind":4194304,"name":"PasskeyUser","url":"modules/shopperlogin.html#passkeyuser-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":96,"kind":4194304,"name":"PublicKeyCredentialDescriptor","url":"modules/shopperlogin.html#publickeycredentialdescriptor-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":97,"kind":4194304,"name":"PublicKeyCredentialDescriptorTypeEnum","url":"modules/shopperlogin.html#publickeycredentialdescriptortypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":98,"kind":4194304,"name":"PublicKeyCredentialDescriptorTransportsEnum","url":"modules/shopperlogin.html#publickeycredentialdescriptortransportsenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":99,"kind":4194304,"name":"PublicKeyCredentialRequestOptions","url":"modules/shopperlogin.html#publickeycredentialrequestoptions-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":100,"kind":4194304,"name":"PublicKeyCredentialRequestOptionsUserVerificationEnum","url":"modules/shopperlogin.html#publickeycredentialrequestoptionsuserverificationenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":101,"kind":4194304,"name":"RegistrationFinishRequest","url":"modules/shopperlogin.html#registrationfinishrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":102,"kind":4194304,"name":"ResponseType","url":"modules/shopperlogin.html#responsetype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":103,"kind":4194304,"name":"TokenActionRequest","url":"modules/shopperlogin.html#tokenactionrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":104,"kind":4194304,"name":"TokenActionRequestTokenTypeHintEnum","url":"modules/shopperlogin.html#tokenactionrequesttokentypehintenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":105,"kind":16777216,"name":"AuthenticateFinishRequest","url":"modules/shopperlogin.html#authenticatefinishrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":106,"kind":16777216,"name":"AuthenticateResult","url":"modules/shopperlogin.html#authenticateresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":107,"kind":16777216,"name":"AuthenticatorAssertionResponseJson","url":"modules/shopperlogin.html#authenticatorassertionresponsejson","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":108,"kind":16777216,"name":"AuthenticatorAssertionResponseJsonAuthenticatorDataInner","url":"modules/shopperlogin.html#authenticatorassertionresponsejsonauthenticatordatainner","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":109,"kind":16777216,"name":"AuthenticatorAssertionResponseJsonClientDataJSONInner","url":"modules/shopperlogin.html#authenticatorassertionresponsejsonclientdatajsoninner","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":110,"kind":16777216,"name":"AuthenticatorAssertionResponseJsonSignatureInner","url":"modules/shopperlogin.html#authenticatorassertionresponsejsonsignatureinner","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":111,"kind":16777216,"name":"AuthenticatorAssertionResponseJsonUserHandleInner","url":"modules/shopperlogin.html#authenticatorassertionresponsejsonuserhandleinner","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":112,"kind":16777216,"name":"AuthenticatorAttestationResponseJson","url":"modules/shopperlogin.html#authenticatorattestationresponsejson","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":113,"kind":16777216,"name":"AuthenticatorAttestationResponseJsonAttestationObjectInner","url":"modules/shopperlogin.html#authenticatorattestationresponsejsonattestationobjectinner","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":114,"kind":16777216,"name":"AuthenticatorAttestationResponseJsonClientDataJSONInner","url":"modules/shopperlogin.html#authenticatorattestationresponsejsonclientdatajsoninner","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":115,"kind":16777216,"name":"GrantType","url":"modules/shopperlogin.html#granttype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":116,"kind":16777216,"name":"Oauth2ErrorResponse","url":"modules/shopperlogin.html#oauth2errorresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":117,"kind":16777216,"name":"PasskeyCredential","url":"modules/shopperlogin.html#passkeycredential","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":118,"kind":16777216,"name":"PasskeyUser","url":"modules/shopperlogin.html#passkeyuser","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":119,"kind":16777216,"name":"PublicKeyCredentialDescriptor","url":"modules/shopperlogin.html#publickeycredentialdescriptor","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":120,"kind":16777216,"name":"PublicKeyCredentialDescriptorTypeEnum","url":"modules/shopperlogin.html#publickeycredentialdescriptortypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":121,"kind":16777216,"name":"PublicKeyCredentialDescriptorTransportsEnum","url":"modules/shopperlogin.html#publickeycredentialdescriptortransportsenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":122,"kind":16777216,"name":"PublicKeyCredentialJson","url":"modules/shopperlogin.html#publickeycredentialjson","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":123,"kind":16777216,"name":"PublicKeyCredentialJsonTypeEnum","url":"modules/shopperlogin.html#publickeycredentialjsontypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":124,"kind":16777216,"name":"PublicKeyCredentialJsonResponse","url":"modules/shopperlogin.html#publickeycredentialjsonresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":125,"kind":16777216,"name":"PublicKeyCredentialRequestOptions","url":"modules/shopperlogin.html#publickeycredentialrequestoptions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":126,"kind":16777216,"name":"PublicKeyCredentialRequestOptionsUserVerificationEnum","url":"modules/shopperlogin.html#publickeycredentialrequestoptionsuserverificationenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":127,"kind":16777216,"name":"RegistrationFinishRequest","url":"modules/shopperlogin.html#registrationfinishrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":128,"kind":16777216,"name":"ResponseType","url":"modules/shopperlogin.html#responsetype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":129,"kind":16777216,"name":"TokenActionRequest","url":"modules/shopperlogin.html#tokenactionrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":130,"kind":16777216,"name":"TokenActionRequestTokenTypeHintEnum","url":"modules/shopperlogin.html#tokenactionrequesttokentypehintenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":131,"kind":16777216,"name":"TokenResponse","url":"modules/shopperlogin.html#tokenresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":132,"kind":16777216,"name":"TokenType","url":"modules/shopperlogin.html#tokentype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":133,"kind":128,"name":"ShopperLogin","url":"classes/shopperlogin.shopperlogin-3.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"shopperLogin"},{"id":134,"kind":1024,"name":"clientConfig","url":"classes/shopperlogin.shopperlogin-3.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class","parent":"shopperLogin.ShopperLogin"},{"id":135,"kind":1024,"name":"defaultBaseUri","url":"classes/shopperlogin.shopperlogin-3.html#defaultbaseuri","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperLogin.ShopperLogin"},{"id":136,"kind":2097152,"name":"apiPaths","url":"classes/shopperlogin.shopperlogin-3.html#apipaths","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-static","parent":"shopperLogin.ShopperLogin"},{"id":137,"kind":32,"name":"authenticateCustomer","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.authenticatecustomer-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":138,"kind":32,"name":"authorizeCustomer","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.authorizecustomer-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":139,"kind":32,"name":"authorizePasswordlessCustomer","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.authorizepasswordlesscustomer-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":140,"kind":32,"name":"authorizeWebauthnRegistration","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.authorizewebauthnregistration-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":141,"kind":32,"name":"deletePasskeyCredential","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.deletepasskeycredential-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":142,"kind":32,"name":"deletePasskeyUser","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.deletepasskeyuser-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":143,"kind":32,"name":"finishWebauthnAuthentication","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.finishwebauthnauthentication-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":144,"kind":32,"name":"finishWebauthnUserRegistration","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.finishwebauthnuserregistration-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":145,"kind":32,"name":"getAccessToken","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.getaccesstoken-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":146,"kind":32,"name":"getJwksUri","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.getjwksuri-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":147,"kind":32,"name":"getPasskeyUserByLoginId","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.getpasskeyuserbyloginid-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":148,"kind":32,"name":"getPasswordLessAccessToken","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.getpasswordlessaccesstoken-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":149,"kind":32,"name":"getPasswordResetToken","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.getpasswordresettoken-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":150,"kind":32,"name":"getSessionBridgeAccessToken","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.getsessionbridgeaccesstoken-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":151,"kind":32,"name":"getTrustedAgentAccessToken","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.gettrustedagentaccesstoken-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":152,"kind":32,"name":"getTrustedAgentAuthorizationToken","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.gettrustedagentauthorizationtoken-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":153,"kind":32,"name":"getTrustedSystemAccessToken","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.gettrustedsystemaccesstoken-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":154,"kind":32,"name":"getUserInfo","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.getuserinfo-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":155,"kind":32,"name":"getWellknownOpenidConfiguration","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.getwellknownopenidconfiguration-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":156,"kind":32,"name":"introspectToken","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.introspecttoken-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":157,"kind":32,"name":"logoutCustomer","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.logoutcustomer-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":158,"kind":32,"name":"resetPassword","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.resetpassword-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":159,"kind":32,"name":"revokeToken","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.revoketoken-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":160,"kind":32,"name":"startWebauthnAuthentication","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.startwebauthnauthentication-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":161,"kind":32,"name":"startWebauthnUserRegistration","url":"classes/shopperlogin.shopperlogin-3.html#apipaths.startwebauthnuserregistration-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperLogin.ShopperLogin.apiPaths"},{"id":162,"kind":512,"name":"constructor","url":"classes/shopperlogin.shopperlogin-3.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"shopperLogin.ShopperLogin"},{"id":163,"kind":1024,"name":"paramKeys","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperLogin.ShopperLogin"},{"id":164,"kind":65536,"name":"__type","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"shopperLogin.ShopperLogin.paramKeys"},{"id":165,"kind":32,"name":"authenticateCustomer","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.authenticatecustomer","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":166,"kind":32,"name":"authenticateCustomerRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.authenticatecustomerrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":167,"kind":32,"name":"authorizeCustomer","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.authorizecustomer","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":168,"kind":32,"name":"authorizeCustomerRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.authorizecustomerrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":169,"kind":32,"name":"authorizePasswordlessCustomer","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.authorizepasswordlesscustomer","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":170,"kind":32,"name":"authorizePasswordlessCustomerRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.authorizepasswordlesscustomerrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":171,"kind":32,"name":"authorizeWebauthnRegistration","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.authorizewebauthnregistration","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":172,"kind":32,"name":"authorizeWebauthnRegistrationRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.authorizewebauthnregistrationrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":173,"kind":32,"name":"deletePasskeyCredential","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.deletepasskeycredential","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":174,"kind":32,"name":"deletePasskeyCredentialRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.deletepasskeycredentialrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":175,"kind":32,"name":"deletePasskeyUser","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.deletepasskeyuser","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":176,"kind":32,"name":"deletePasskeyUserRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.deletepasskeyuserrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":177,"kind":32,"name":"finishWebauthnAuthentication","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.finishwebauthnauthentication","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":178,"kind":32,"name":"finishWebauthnAuthenticationRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.finishwebauthnauthenticationrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":179,"kind":32,"name":"finishWebauthnUserRegistration","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.finishwebauthnuserregistration","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":180,"kind":32,"name":"finishWebauthnUserRegistrationRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.finishwebauthnuserregistrationrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":181,"kind":32,"name":"getAccessToken","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.getaccesstoken","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":182,"kind":32,"name":"getAccessTokenRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.getaccesstokenrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":183,"kind":32,"name":"getJwksUri","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.getjwksuri","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":184,"kind":32,"name":"getJwksUriRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.getjwksurirequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":185,"kind":32,"name":"getPasskeyUserByLoginId","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.getpasskeyuserbyloginid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":186,"kind":32,"name":"getPasskeyUserByLoginIdRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.getpasskeyuserbyloginidrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":187,"kind":32,"name":"getPasswordLessAccessToken","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.getpasswordlessaccesstoken","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":188,"kind":32,"name":"getPasswordLessAccessTokenRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.getpasswordlessaccesstokenrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":189,"kind":32,"name":"getPasswordResetToken","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.getpasswordresettoken","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":190,"kind":32,"name":"getPasswordResetTokenRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.getpasswordresettokenrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":191,"kind":32,"name":"getSessionBridgeAccessToken","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.getsessionbridgeaccesstoken","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":192,"kind":32,"name":"getSessionBridgeAccessTokenRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.getsessionbridgeaccesstokenrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":193,"kind":32,"name":"getTrustedAgentAccessToken","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.gettrustedagentaccesstoken","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":194,"kind":32,"name":"getTrustedAgentAccessTokenRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.gettrustedagentaccesstokenrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":195,"kind":32,"name":"getTrustedAgentAuthorizationToken","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.gettrustedagentauthorizationtoken","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":196,"kind":32,"name":"getTrustedAgentAuthorizationTokenRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.gettrustedagentauthorizationtokenrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":197,"kind":32,"name":"getTrustedSystemAccessToken","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.gettrustedsystemaccesstoken","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":198,"kind":32,"name":"getTrustedSystemAccessTokenRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.gettrustedsystemaccesstokenrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":199,"kind":32,"name":"getUserInfo","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.getuserinfo","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":200,"kind":32,"name":"getUserInfoRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.getuserinforequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":201,"kind":32,"name":"getWellknownOpenidConfiguration","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.getwellknownopenidconfiguration","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":202,"kind":32,"name":"getWellknownOpenidConfigurationRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.getwellknownopenidconfigurationrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":203,"kind":32,"name":"introspectToken","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.introspecttoken","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":204,"kind":32,"name":"introspectTokenRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.introspecttokenrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":205,"kind":32,"name":"logoutCustomer","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.logoutcustomer","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":206,"kind":32,"name":"logoutCustomerRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.logoutcustomerrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":207,"kind":32,"name":"resetPassword","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.resetpassword","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":208,"kind":32,"name":"resetPasswordRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.resetpasswordrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":209,"kind":32,"name":"revokeToken","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.revoketoken","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":210,"kind":32,"name":"revokeTokenRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.revoketokenrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":211,"kind":32,"name":"startWebauthnAuthentication","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.startwebauthnauthentication","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":212,"kind":32,"name":"startWebauthnAuthenticationRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.startwebauthnauthenticationrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":213,"kind":32,"name":"startWebauthnUserRegistration","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.startwebauthnuserregistration","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":214,"kind":32,"name":"startWebauthnUserRegistrationRequired","url":"classes/shopperlogin.shopperlogin-3.html#paramkeys.__type.startwebauthnuserregistrationrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.ShopperLogin.paramKeys.__type"},{"id":215,"kind":2048,"name":"authenticateCustomer","url":"classes/shopperlogin.shopperlogin-3.html#authenticatecustomer-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":216,"kind":2048,"name":"authorizeCustomer","url":"classes/shopperlogin.shopperlogin-3.html#authorizecustomer-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":217,"kind":2048,"name":"authorizePasswordlessCustomer","url":"classes/shopperlogin.shopperlogin-3.html#authorizepasswordlesscustomer-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":218,"kind":2048,"name":"authorizeWebauthnRegistration","url":"classes/shopperlogin.shopperlogin-3.html#authorizewebauthnregistration-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":219,"kind":2048,"name":"deletePasskeyCredential","url":"classes/shopperlogin.shopperlogin-3.html#deletepasskeycredential-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":220,"kind":2048,"name":"deletePasskeyUser","url":"classes/shopperlogin.shopperlogin-3.html#deletepasskeyuser-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":221,"kind":2048,"name":"finishWebauthnAuthentication","url":"classes/shopperlogin.shopperlogin-3.html#finishwebauthnauthentication-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":222,"kind":2048,"name":"finishWebauthnUserRegistration","url":"classes/shopperlogin.shopperlogin-3.html#finishwebauthnuserregistration-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":223,"kind":2048,"name":"getAccessToken","url":"classes/shopperlogin.shopperlogin-3.html#getaccesstoken-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":224,"kind":2048,"name":"getJwksUri","url":"classes/shopperlogin.shopperlogin-3.html#getjwksuri-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":225,"kind":2048,"name":"getPasskeyUserByLoginId","url":"classes/shopperlogin.shopperlogin-3.html#getpasskeyuserbyloginid-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":226,"kind":2048,"name":"getPasswordLessAccessToken","url":"classes/shopperlogin.shopperlogin-3.html#getpasswordlessaccesstoken-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":227,"kind":2048,"name":"getPasswordResetToken","url":"classes/shopperlogin.shopperlogin-3.html#getpasswordresettoken-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":228,"kind":2048,"name":"getSessionBridgeAccessToken","url":"classes/shopperlogin.shopperlogin-3.html#getsessionbridgeaccesstoken-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":229,"kind":2048,"name":"getTrustedAgentAccessToken","url":"classes/shopperlogin.shopperlogin-3.html#gettrustedagentaccesstoken-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":230,"kind":2048,"name":"getTrustedAgentAuthorizationToken","url":"classes/shopperlogin.shopperlogin-3.html#gettrustedagentauthorizationtoken-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":231,"kind":2048,"name":"getTrustedSystemAccessToken","url":"classes/shopperlogin.shopperlogin-3.html#gettrustedsystemaccesstoken-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":232,"kind":2048,"name":"getUserInfo","url":"classes/shopperlogin.shopperlogin-3.html#getuserinfo-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":233,"kind":2048,"name":"getWellknownOpenidConfiguration","url":"classes/shopperlogin.shopperlogin-3.html#getwellknownopenidconfiguration-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":234,"kind":2048,"name":"introspectToken","url":"classes/shopperlogin.shopperlogin-3.html#introspecttoken-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":235,"kind":2048,"name":"logoutCustomer","url":"classes/shopperlogin.shopperlogin-3.html#logoutcustomer-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":236,"kind":2048,"name":"resetPassword","url":"classes/shopperlogin.shopperlogin-3.html#resetpassword-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":237,"kind":2048,"name":"revokeToken","url":"classes/shopperlogin.shopperlogin-3.html#revoketoken-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":238,"kind":2048,"name":"startWebauthnAuthentication","url":"classes/shopperlogin.shopperlogin-3.html#startwebauthnauthentication-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":239,"kind":2048,"name":"startWebauthnUserRegistration","url":"classes/shopperlogin.shopperlogin-3.html#startwebauthnuserregistration-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperLogin.ShopperLogin"},{"id":240,"kind":4194304,"name":"AuthorizeCustomerResponseTypeEnum","url":"modules/shopperlogin.html#authorizecustomerresponsetypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":241,"kind":4194304,"name":"AuthorizeCustomerScopeEnum","url":"modules/shopperlogin.html#authorizecustomerscopeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":242,"kind":4194304,"name":"AuthorizePasswordlessCustomerModeEnum","url":"modules/shopperlogin.html#authorizepasswordlesscustomermodeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":243,"kind":4194304,"name":"AuthorizeWebauthnRegistrationModeEnum","url":"modules/shopperlogin.html#authorizewebauthnregistrationmodeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":244,"kind":4194304,"name":"GetPasswordLessAccessTokenGrantTypeEnum","url":"modules/shopperlogin.html#getpasswordlessaccesstokengranttypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":245,"kind":4194304,"name":"GetPasswordResetTokenModeEnum","url":"modules/shopperlogin.html#getpasswordresettokenmodeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":246,"kind":4194304,"name":"GetSessionBridgeAccessTokenGrantTypeEnum","url":"modules/shopperlogin.html#getsessionbridgeaccesstokengranttypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":247,"kind":4194304,"name":"GetTrustedAgentAccessTokenGrantTypeEnum","url":"modules/shopperlogin.html#gettrustedagentaccesstokengranttypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":248,"kind":4194304,"name":"GetTrustedAgentAuthorizationTokenResponseTypeEnum","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenresponsetypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":249,"kind":4194304,"name":"GetTrustedSystemAccessTokenGrantTypeEnum","url":"modules/shopperlogin.html#gettrustedsystemaccesstokengranttypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":250,"kind":4194304,"name":"GetTrustedSystemAccessTokenHintEnum","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenhintenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":251,"kind":4194304,"name":"GetTrustedSystemAccessTokenIdpOriginEnum","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenidporiginenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":252,"kind":4194304,"name":"IntrospectTokenTokenTypeHintEnum","url":"modules/shopperlogin.html#introspecttokentokentypehintenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":253,"kind":4194304,"name":"LogoutCustomerHintEnum","url":"modules/shopperlogin.html#logoutcustomerhintenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":254,"kind":4194304,"name":"RevokeTokenTokenTypeHintEnum","url":"modules/shopperlogin.html#revoketokentokentypehintenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":255,"kind":4194304,"name":"authenticateCustomerQueryParameters","url":"modules/shopperlogin.html#authenticatecustomerqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":256,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#authenticatecustomerqueryparameters-2.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.authenticateCustomerQueryParameters"},{"id":257,"kind":4194304,"name":"authenticateCustomerPathParameters","url":"modules/shopperlogin.html#authenticatecustomerpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":258,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#authenticatecustomerpathparameters-2.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.authenticateCustomerPathParameters"},{"id":259,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#authenticatecustomerpathparameters-2.__type-1.organizationid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authenticateCustomerPathParameters.__type"},{"id":260,"kind":4194304,"name":"authenticateCustomerBodyType","url":"modules/shopperlogin.html#authenticatecustomerbodytype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":261,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#authenticatecustomerbodytype-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.authenticateCustomerBodyType"},{"id":262,"kind":32,"name":"client_id","url":"modules/shopperlogin.html#authenticatecustomerbodytype-2.__type.client_id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authenticateCustomerBodyType.__type"},{"id":263,"kind":32,"name":"response_type","url":"modules/shopperlogin.html#authenticatecustomerbodytype-2.__type.response_type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authenticateCustomerBodyType.__type"},{"id":264,"kind":32,"name":"redirect_uri","url":"modules/shopperlogin.html#authenticatecustomerbodytype-2.__type.redirect_uri","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authenticateCustomerBodyType.__type"},{"id":265,"kind":32,"name":"state","url":"modules/shopperlogin.html#authenticatecustomerbodytype-2.__type.state","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authenticateCustomerBodyType.__type"},{"id":266,"kind":32,"name":"scope","url":"modules/shopperlogin.html#authenticatecustomerbodytype-2.__type.scope","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authenticateCustomerBodyType.__type"},{"id":267,"kind":32,"name":"usid","url":"modules/shopperlogin.html#authenticatecustomerbodytype-2.__type.usid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authenticateCustomerBodyType.__type"},{"id":268,"kind":32,"name":"channel_id","url":"modules/shopperlogin.html#authenticatecustomerbodytype-2.__type.channel_id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authenticateCustomerBodyType.__type"},{"id":269,"kind":32,"name":"code_challenge","url":"modules/shopperlogin.html#authenticatecustomerbodytype-2.__type.code_challenge","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authenticateCustomerBodyType.__type"},{"id":270,"kind":4194304,"name":"authorizeCustomerQueryParameters","url":"modules/shopperlogin.html#authorizecustomerqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":271,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#authorizecustomerqueryparameters-2.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.authorizeCustomerQueryParameters"},{"id":272,"kind":32,"name":"redirect_uri","url":"modules/shopperlogin.html#authorizecustomerqueryparameters-2.__type-4.redirect_uri-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizeCustomerQueryParameters.__type"},{"id":273,"kind":32,"name":"response_type","url":"modules/shopperlogin.html#authorizecustomerqueryparameters-2.__type-4.response_type-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizeCustomerQueryParameters.__type"},{"id":274,"kind":32,"name":"client_id","url":"modules/shopperlogin.html#authorizecustomerqueryparameters-2.__type-4.client_id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizeCustomerQueryParameters.__type"},{"id":275,"kind":32,"name":"scope","url":"modules/shopperlogin.html#authorizecustomerqueryparameters-2.__type-4.scope-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizeCustomerQueryParameters.__type"},{"id":276,"kind":32,"name":"state","url":"modules/shopperlogin.html#authorizecustomerqueryparameters-2.__type-4.state-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizeCustomerQueryParameters.__type"},{"id":277,"kind":32,"name":"usid","url":"modules/shopperlogin.html#authorizecustomerqueryparameters-2.__type-4.usid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizeCustomerQueryParameters.__type"},{"id":278,"kind":32,"name":"hint","url":"modules/shopperlogin.html#authorizecustomerqueryparameters-2.__type-4.hint","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizeCustomerQueryParameters.__type"},{"id":279,"kind":32,"name":"channel_id","url":"modules/shopperlogin.html#authorizecustomerqueryparameters-2.__type-4.channel_id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizeCustomerQueryParameters.__type"},{"id":280,"kind":32,"name":"code_challenge","url":"modules/shopperlogin.html#authorizecustomerqueryparameters-2.__type-4.code_challenge-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizeCustomerQueryParameters.__type"},{"id":281,"kind":32,"name":"ui_locales","url":"modules/shopperlogin.html#authorizecustomerqueryparameters-2.__type-4.ui_locales","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizeCustomerQueryParameters.__type"},{"id":282,"kind":4194304,"name":"authorizeCustomerPathParameters","url":"modules/shopperlogin.html#authorizecustomerpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":283,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#authorizecustomerpathparameters-2.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.authorizeCustomerPathParameters"},{"id":284,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#authorizecustomerpathparameters-2.__type-3.organizationid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizeCustomerPathParameters.__type"},{"id":285,"kind":4194304,"name":"authorizePasswordlessCustomerQueryParameters","url":"modules/shopperlogin.html#authorizepasswordlesscustomerqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":286,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#authorizepasswordlesscustomerqueryparameters-2.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.authorizePasswordlessCustomerQueryParameters"},{"id":287,"kind":32,"name":"register_customer","url":"modules/shopperlogin.html#authorizepasswordlesscustomerqueryparameters-2.__type-7.register_customer","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizePasswordlessCustomerQueryParameters.__type"},{"id":288,"kind":4194304,"name":"authorizePasswordlessCustomerPathParameters","url":"modules/shopperlogin.html#authorizepasswordlesscustomerpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":289,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#authorizepasswordlesscustomerpathparameters-2.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.authorizePasswordlessCustomerPathParameters"},{"id":290,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#authorizepasswordlesscustomerpathparameters-2.__type-6.organizationid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizePasswordlessCustomerPathParameters.__type"},{"id":291,"kind":4194304,"name":"authorizePasswordlessCustomerBodyType","url":"modules/shopperlogin.html#authorizepasswordlesscustomerbodytype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":292,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#authorizepasswordlesscustomerbodytype-2.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.authorizePasswordlessCustomerBodyType"},{"id":293,"kind":32,"name":"user_id","url":"modules/shopperlogin.html#authorizepasswordlesscustomerbodytype-2.__type-5.user_id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizePasswordlessCustomerBodyType.__type"},{"id":294,"kind":32,"name":"mode","url":"modules/shopperlogin.html#authorizepasswordlesscustomerbodytype-2.__type-5.mode","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizePasswordlessCustomerBodyType.__type"},{"id":295,"kind":32,"name":"locale","url":"modules/shopperlogin.html#authorizepasswordlesscustomerbodytype-2.__type-5.locale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizePasswordlessCustomerBodyType.__type"},{"id":296,"kind":32,"name":"usid","url":"modules/shopperlogin.html#authorizepasswordlesscustomerbodytype-2.__type-5.usid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizePasswordlessCustomerBodyType.__type"},{"id":297,"kind":32,"name":"channel_id","url":"modules/shopperlogin.html#authorizepasswordlesscustomerbodytype-2.__type-5.channel_id-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizePasswordlessCustomerBodyType.__type"},{"id":298,"kind":32,"name":"callback_uri","url":"modules/shopperlogin.html#authorizepasswordlesscustomerbodytype-2.__type-5.callback_uri","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizePasswordlessCustomerBodyType.__type"},{"id":299,"kind":32,"name":"last_name","url":"modules/shopperlogin.html#authorizepasswordlesscustomerbodytype-2.__type-5.last_name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizePasswordlessCustomerBodyType.__type"},{"id":300,"kind":32,"name":"email","url":"modules/shopperlogin.html#authorizepasswordlesscustomerbodytype-2.__type-5.email","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizePasswordlessCustomerBodyType.__type"},{"id":301,"kind":32,"name":"first_name","url":"modules/shopperlogin.html#authorizepasswordlesscustomerbodytype-2.__type-5.first_name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizePasswordlessCustomerBodyType.__type"},{"id":302,"kind":32,"name":"phone_number","url":"modules/shopperlogin.html#authorizepasswordlesscustomerbodytype-2.__type-5.phone_number","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizePasswordlessCustomerBodyType.__type"},{"id":303,"kind":32,"name":"customer_no","url":"modules/shopperlogin.html#authorizepasswordlesscustomerbodytype-2.__type-5.customer_no","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizePasswordlessCustomerBodyType.__type"},{"id":304,"kind":4194304,"name":"authorizeWebauthnRegistrationQueryParameters","url":"modules/shopperlogin.html#authorizewebauthnregistrationqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":305,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#authorizewebauthnregistrationqueryparameters-2.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.authorizeWebauthnRegistrationQueryParameters"},{"id":306,"kind":4194304,"name":"authorizeWebauthnRegistrationPathParameters","url":"modules/shopperlogin.html#authorizewebauthnregistrationpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":307,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#authorizewebauthnregistrationpathparameters-2.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.authorizeWebauthnRegistrationPathParameters"},{"id":308,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#authorizewebauthnregistrationpathparameters-2.__type-9.organizationid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizeWebauthnRegistrationPathParameters.__type"},{"id":309,"kind":4194304,"name":"authorizeWebauthnRegistrationBodyType","url":"modules/shopperlogin.html#authorizewebauthnregistrationbodytype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":310,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#authorizewebauthnregistrationbodytype-2.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.authorizeWebauthnRegistrationBodyType"},{"id":311,"kind":32,"name":"user_id","url":"modules/shopperlogin.html#authorizewebauthnregistrationbodytype-2.__type-8.user_id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizeWebauthnRegistrationBodyType.__type"},{"id":312,"kind":32,"name":"mode","url":"modules/shopperlogin.html#authorizewebauthnregistrationbodytype-2.__type-8.mode-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizeWebauthnRegistrationBodyType.__type"},{"id":313,"kind":32,"name":"channel_id","url":"modules/shopperlogin.html#authorizewebauthnregistrationbodytype-2.__type-8.channel_id-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizeWebauthnRegistrationBodyType.__type"},{"id":314,"kind":32,"name":"locale","url":"modules/shopperlogin.html#authorizewebauthnregistrationbodytype-2.__type-8.locale-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizeWebauthnRegistrationBodyType.__type"},{"id":315,"kind":32,"name":"client_id","url":"modules/shopperlogin.html#authorizewebauthnregistrationbodytype-2.__type-8.client_id-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizeWebauthnRegistrationBodyType.__type"},{"id":316,"kind":32,"name":"code_challenge","url":"modules/shopperlogin.html#authorizewebauthnregistrationbodytype-2.__type-8.code_challenge-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizeWebauthnRegistrationBodyType.__type"},{"id":317,"kind":32,"name":"callback_uri","url":"modules/shopperlogin.html#authorizewebauthnregistrationbodytype-2.__type-8.callback_uri-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizeWebauthnRegistrationBodyType.__type"},{"id":318,"kind":32,"name":"idp_name","url":"modules/shopperlogin.html#authorizewebauthnregistrationbodytype-2.__type-8.idp_name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizeWebauthnRegistrationBodyType.__type"},{"id":319,"kind":32,"name":"hint","url":"modules/shopperlogin.html#authorizewebauthnregistrationbodytype-2.__type-8.hint-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.authorizeWebauthnRegistrationBodyType.__type"},{"id":320,"kind":4194304,"name":"deletePasskeyCredentialQueryParameters","url":"modules/shopperlogin.html#deletepasskeycredentialqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":321,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#deletepasskeycredentialqueryparameters-2.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.deletePasskeyCredentialQueryParameters"},{"id":322,"kind":32,"name":"channel_id","url":"modules/shopperlogin.html#deletepasskeycredentialqueryparameters-2.__type-12.channel_id-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.deletePasskeyCredentialQueryParameters.__type"},{"id":323,"kind":4194304,"name":"deletePasskeyCredentialPathParameters","url":"modules/shopperlogin.html#deletepasskeycredentialpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":324,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#deletepasskeycredentialpathparameters-2.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.deletePasskeyCredentialPathParameters"},{"id":325,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#deletepasskeycredentialpathparameters-2.__type-11.organizationid-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.deletePasskeyCredentialPathParameters.__type"},{"id":326,"kind":32,"name":"loginId","url":"modules/shopperlogin.html#deletepasskeycredentialpathparameters-2.__type-11.loginid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.deletePasskeyCredentialPathParameters.__type"},{"id":327,"kind":32,"name":"credentialId","url":"modules/shopperlogin.html#deletepasskeycredentialpathparameters-2.__type-11.credentialid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.deletePasskeyCredentialPathParameters.__type"},{"id":328,"kind":4194304,"name":"deletePasskeyUserQueryParameters","url":"modules/shopperlogin.html#deletepasskeyuserqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":329,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#deletepasskeyuserqueryparameters-2.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.deletePasskeyUserQueryParameters"},{"id":330,"kind":32,"name":"channel_id","url":"modules/shopperlogin.html#deletepasskeyuserqueryparameters-2.__type-14.channel_id-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.deletePasskeyUserQueryParameters.__type"},{"id":331,"kind":4194304,"name":"deletePasskeyUserPathParameters","url":"modules/shopperlogin.html#deletepasskeyuserpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":332,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#deletepasskeyuserpathparameters-2.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.deletePasskeyUserPathParameters"},{"id":333,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#deletepasskeyuserpathparameters-2.__type-13.organizationid-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.deletePasskeyUserPathParameters.__type"},{"id":334,"kind":32,"name":"loginId","url":"modules/shopperlogin.html#deletepasskeyuserpathparameters-2.__type-13.loginid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.deletePasskeyUserPathParameters.__type"},{"id":335,"kind":4194304,"name":"finishWebauthnAuthenticationQueryParameters","url":"modules/shopperlogin.html#finishwebauthnauthenticationqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":336,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#finishwebauthnauthenticationqueryparameters-2.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.finishWebauthnAuthenticationQueryParameters"},{"id":337,"kind":4194304,"name":"finishWebauthnAuthenticationPathParameters","url":"modules/shopperlogin.html#finishwebauthnauthenticationpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":338,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#finishwebauthnauthenticationpathparameters-2.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.finishWebauthnAuthenticationPathParameters"},{"id":339,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#finishwebauthnauthenticationpathparameters-2.__type-15.organizationid-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.finishWebauthnAuthenticationPathParameters.__type"},{"id":340,"kind":4194304,"name":"finishWebauthnUserRegistrationQueryParameters","url":"modules/shopperlogin.html#finishwebauthnuserregistrationqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":341,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#finishwebauthnuserregistrationqueryparameters-2.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.finishWebauthnUserRegistrationQueryParameters"},{"id":342,"kind":4194304,"name":"finishWebauthnUserRegistrationPathParameters","url":"modules/shopperlogin.html#finishwebauthnuserregistrationpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":343,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#finishwebauthnuserregistrationpathparameters-2.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.finishWebauthnUserRegistrationPathParameters"},{"id":344,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#finishwebauthnuserregistrationpathparameters-2.__type-17.organizationid-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.finishWebauthnUserRegistrationPathParameters.__type"},{"id":345,"kind":4194304,"name":"getAccessTokenQueryParameters","url":"modules/shopperlogin.html#getaccesstokenqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":346,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getaccesstokenqueryparameters-2.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getAccessTokenQueryParameters"},{"id":347,"kind":4194304,"name":"getAccessTokenPathParameters","url":"modules/shopperlogin.html#getaccesstokenpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":348,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getaccesstokenpathparameters-2.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getAccessTokenPathParameters"},{"id":349,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#getaccesstokenpathparameters-2.__type-20.organizationid-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getAccessTokenPathParameters.__type"},{"id":350,"kind":4194304,"name":"getAccessTokenBodyType","url":"modules/shopperlogin.html#getaccesstokenbodytype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":351,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getaccesstokenbodytype-2.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getAccessTokenBodyType"},{"id":352,"kind":32,"name":"refresh_token","url":"modules/shopperlogin.html#getaccesstokenbodytype-2.__type-19.refresh_token","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getAccessTokenBodyType.__type"},{"id":353,"kind":32,"name":"code","url":"modules/shopperlogin.html#getaccesstokenbodytype-2.__type-19.code","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getAccessTokenBodyType.__type"},{"id":354,"kind":32,"name":"usid","url":"modules/shopperlogin.html#getaccesstokenbodytype-2.__type-19.usid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getAccessTokenBodyType.__type"},{"id":355,"kind":32,"name":"grant_type","url":"modules/shopperlogin.html#getaccesstokenbodytype-2.__type-19.grant_type","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getAccessTokenBodyType.__type"},{"id":356,"kind":32,"name":"redirect_uri","url":"modules/shopperlogin.html#getaccesstokenbodytype-2.__type-19.redirect_uri-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getAccessTokenBodyType.__type"},{"id":357,"kind":32,"name":"code_verifier","url":"modules/shopperlogin.html#getaccesstokenbodytype-2.__type-19.code_verifier","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getAccessTokenBodyType.__type"},{"id":358,"kind":32,"name":"client_id","url":"modules/shopperlogin.html#getaccesstokenbodytype-2.__type-19.client_id-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getAccessTokenBodyType.__type"},{"id":359,"kind":32,"name":"channel_id","url":"modules/shopperlogin.html#getaccesstokenbodytype-2.__type-19.channel_id-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getAccessTokenBodyType.__type"},{"id":360,"kind":32,"name":"dnt","url":"modules/shopperlogin.html#getaccesstokenbodytype-2.__type-19.dnt","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getAccessTokenBodyType.__type"},{"id":361,"kind":4194304,"name":"getJwksUriQueryParameters","url":"modules/shopperlogin.html#getjwksuriqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":362,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getjwksuriqueryparameters-2.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getJwksUriQueryParameters"},{"id":363,"kind":4194304,"name":"getJwksUriPathParameters","url":"modules/shopperlogin.html#getjwksuripathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":364,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getjwksuripathparameters-2.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getJwksUriPathParameters"},{"id":365,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#getjwksuripathparameters-2.__type-22.organizationid-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getJwksUriPathParameters.__type"},{"id":366,"kind":4194304,"name":"getPasskeyUserByLoginIdQueryParameters","url":"modules/shopperlogin.html#getpasskeyuserbyloginidqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":367,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getpasskeyuserbyloginidqueryparameters-2.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getPasskeyUserByLoginIdQueryParameters"},{"id":368,"kind":32,"name":"channel_id","url":"modules/shopperlogin.html#getpasskeyuserbyloginidqueryparameters-2.__type-25.channel_id-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getPasskeyUserByLoginIdQueryParameters.__type"},{"id":369,"kind":4194304,"name":"getPasskeyUserByLoginIdPathParameters","url":"modules/shopperlogin.html#getpasskeyuserbyloginidpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":370,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getpasskeyuserbyloginidpathparameters-2.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getPasskeyUserByLoginIdPathParameters"},{"id":371,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#getpasskeyuserbyloginidpathparameters-2.__type-24.organizationid-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getPasskeyUserByLoginIdPathParameters.__type"},{"id":372,"kind":32,"name":"loginId","url":"modules/shopperlogin.html#getpasskeyuserbyloginidpathparameters-2.__type-24.loginid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getPasskeyUserByLoginIdPathParameters.__type"},{"id":373,"kind":4194304,"name":"getPasswordLessAccessTokenQueryParameters","url":"modules/shopperlogin.html#getpasswordlessaccesstokenqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":374,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getpasswordlessaccesstokenqueryparameters-2.__type-28","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getPasswordLessAccessTokenQueryParameters"},{"id":375,"kind":4194304,"name":"getPasswordLessAccessTokenPathParameters","url":"modules/shopperlogin.html#getpasswordlessaccesstokenpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":376,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getpasswordlessaccesstokenpathparameters-2.__type-27","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getPasswordLessAccessTokenPathParameters"},{"id":377,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#getpasswordlessaccesstokenpathparameters-2.__type-27.organizationid-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getPasswordLessAccessTokenPathParameters.__type"},{"id":378,"kind":4194304,"name":"getPasswordLessAccessTokenBodyType","url":"modules/shopperlogin.html#getpasswordlessaccesstokenbodytype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":379,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getpasswordlessaccesstokenbodytype-2.__type-26","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getPasswordLessAccessTokenBodyType"},{"id":380,"kind":32,"name":"grant_type","url":"modules/shopperlogin.html#getpasswordlessaccesstokenbodytype-2.__type-26.grant_type-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getPasswordLessAccessTokenBodyType.__type"},{"id":381,"kind":32,"name":"hint","url":"modules/shopperlogin.html#getpasswordlessaccesstokenbodytype-2.__type-26.hint-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getPasswordLessAccessTokenBodyType.__type"},{"id":382,"kind":32,"name":"pwdless_login_token","url":"modules/shopperlogin.html#getpasswordlessaccesstokenbodytype-2.__type-26.pwdless_login_token","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getPasswordLessAccessTokenBodyType.__type"},{"id":383,"kind":32,"name":"client_id","url":"modules/shopperlogin.html#getpasswordlessaccesstokenbodytype-2.__type-26.client_id-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getPasswordLessAccessTokenBodyType.__type"},{"id":384,"kind":32,"name":"code_verifier","url":"modules/shopperlogin.html#getpasswordlessaccesstokenbodytype-2.__type-26.code_verifier-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getPasswordLessAccessTokenBodyType.__type"},{"id":385,"kind":32,"name":"login_id","url":"modules/shopperlogin.html#getpasswordlessaccesstokenbodytype-2.__type-26.login_id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getPasswordLessAccessTokenBodyType.__type"},{"id":386,"kind":4194304,"name":"getPasswordResetTokenQueryParameters","url":"modules/shopperlogin.html#getpasswordresettokenqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":387,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getpasswordresettokenqueryparameters-2.__type-31","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getPasswordResetTokenQueryParameters"},{"id":388,"kind":4194304,"name":"getPasswordResetTokenPathParameters","url":"modules/shopperlogin.html#getpasswordresettokenpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":389,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getpasswordresettokenpathparameters-2.__type-30","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getPasswordResetTokenPathParameters"},{"id":390,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#getpasswordresettokenpathparameters-2.__type-30.organizationid-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getPasswordResetTokenPathParameters.__type"},{"id":391,"kind":4194304,"name":"getPasswordResetTokenBodyType","url":"modules/shopperlogin.html#getpasswordresettokenbodytype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":392,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getpasswordresettokenbodytype-2.__type-29","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getPasswordResetTokenBodyType"},{"id":393,"kind":32,"name":"user_id","url":"modules/shopperlogin.html#getpasswordresettokenbodytype-2.__type-29.user_id-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getPasswordResetTokenBodyType.__type"},{"id":394,"kind":32,"name":"mode","url":"modules/shopperlogin.html#getpasswordresettokenbodytype-2.__type-29.mode-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getPasswordResetTokenBodyType.__type"},{"id":395,"kind":32,"name":"channel_id","url":"modules/shopperlogin.html#getpasswordresettokenbodytype-2.__type-29.channel_id-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getPasswordResetTokenBodyType.__type"},{"id":396,"kind":32,"name":"locale","url":"modules/shopperlogin.html#getpasswordresettokenbodytype-2.__type-29.locale-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getPasswordResetTokenBodyType.__type"},{"id":397,"kind":32,"name":"client_id","url":"modules/shopperlogin.html#getpasswordresettokenbodytype-2.__type-29.client_id-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getPasswordResetTokenBodyType.__type"},{"id":398,"kind":32,"name":"code_challenge","url":"modules/shopperlogin.html#getpasswordresettokenbodytype-2.__type-29.code_challenge-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getPasswordResetTokenBodyType.__type"},{"id":399,"kind":32,"name":"callback_uri","url":"modules/shopperlogin.html#getpasswordresettokenbodytype-2.__type-29.callback_uri-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getPasswordResetTokenBodyType.__type"},{"id":400,"kind":32,"name":"idp_name","url":"modules/shopperlogin.html#getpasswordresettokenbodytype-2.__type-29.idp_name-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getPasswordResetTokenBodyType.__type"},{"id":401,"kind":32,"name":"hint","url":"modules/shopperlogin.html#getpasswordresettokenbodytype-2.__type-29.hint-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getPasswordResetTokenBodyType.__type"},{"id":402,"kind":4194304,"name":"getSessionBridgeAccessTokenQueryParameters","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":403,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenqueryparameters-2.__type-34","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getSessionBridgeAccessTokenQueryParameters"},{"id":404,"kind":4194304,"name":"getSessionBridgeAccessTokenPathParameters","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":405,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenpathparameters-2.__type-33","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getSessionBridgeAccessTokenPathParameters"},{"id":406,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenpathparameters-2.__type-33.organizationid-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getSessionBridgeAccessTokenPathParameters.__type"},{"id":407,"kind":4194304,"name":"getSessionBridgeAccessTokenBodyType","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenbodytype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":408,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenbodytype-2.__type-32","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getSessionBridgeAccessTokenBodyType"},{"id":409,"kind":32,"name":"code","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenbodytype-2.__type-32.code-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getSessionBridgeAccessTokenBodyType.__type"},{"id":410,"kind":32,"name":"client_id","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenbodytype-2.__type-32.client_id-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getSessionBridgeAccessTokenBodyType.__type"},{"id":411,"kind":32,"name":"channel_id","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenbodytype-2.__type-32.channel_id-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getSessionBridgeAccessTokenBodyType.__type"},{"id":412,"kind":32,"name":"code_verifier","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenbodytype-2.__type-32.code_verifier-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getSessionBridgeAccessTokenBodyType.__type"},{"id":413,"kind":32,"name":"dwsid","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenbodytype-2.__type-32.dwsid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getSessionBridgeAccessTokenBodyType.__type"},{"id":414,"kind":32,"name":"grant_type","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenbodytype-2.__type-32.grant_type-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getSessionBridgeAccessTokenBodyType.__type"},{"id":415,"kind":32,"name":"login_id","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenbodytype-2.__type-32.login_id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getSessionBridgeAccessTokenBodyType.__type"},{"id":416,"kind":32,"name":"dwsgst","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenbodytype-2.__type-32.dwsgst","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getSessionBridgeAccessTokenBodyType.__type"},{"id":417,"kind":32,"name":"dwsrst","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenbodytype-2.__type-32.dwsrst","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getSessionBridgeAccessTokenBodyType.__type"},{"id":418,"kind":32,"name":"usid","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenbodytype-2.__type-32.usid-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getSessionBridgeAccessTokenBodyType.__type"},{"id":419,"kind":32,"name":"dnt","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenbodytype-2.__type-32.dnt-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getSessionBridgeAccessTokenBodyType.__type"},{"id":420,"kind":4194304,"name":"getTrustedAgentAccessTokenQueryParameters","url":"modules/shopperlogin.html#gettrustedagentaccesstokenqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":421,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#gettrustedagentaccesstokenqueryparameters-2.__type-37","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getTrustedAgentAccessTokenQueryParameters"},{"id":422,"kind":4194304,"name":"getTrustedAgentAccessTokenPathParameters","url":"modules/shopperlogin.html#gettrustedagentaccesstokenpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":423,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#gettrustedagentaccesstokenpathparameters-2.__type-36","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getTrustedAgentAccessTokenPathParameters"},{"id":424,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#gettrustedagentaccesstokenpathparameters-2.__type-36.organizationid-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAccessTokenPathParameters.__type"},{"id":425,"kind":4194304,"name":"getTrustedAgentAccessTokenBodyType","url":"modules/shopperlogin.html#gettrustedagentaccesstokenbodytype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":426,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#gettrustedagentaccesstokenbodytype-2.__type-35","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getTrustedAgentAccessTokenBodyType"},{"id":427,"kind":32,"name":"agent_id","url":"modules/shopperlogin.html#gettrustedagentaccesstokenbodytype-2.__type-35.agent_id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAccessTokenBodyType.__type"},{"id":428,"kind":32,"name":"client_id","url":"modules/shopperlogin.html#gettrustedagentaccesstokenbodytype-2.__type-35.client_id-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAccessTokenBodyType.__type"},{"id":429,"kind":32,"name":"channel_id","url":"modules/shopperlogin.html#gettrustedagentaccesstokenbodytype-2.__type-35.channel_id-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAccessTokenBodyType.__type"},{"id":430,"kind":32,"name":"code_verifier","url":"modules/shopperlogin.html#gettrustedagentaccesstokenbodytype-2.__type-35.code_verifier-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAccessTokenBodyType.__type"},{"id":431,"kind":32,"name":"grant_type","url":"modules/shopperlogin.html#gettrustedagentaccesstokenbodytype-2.__type-35.grant_type-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAccessTokenBodyType.__type"},{"id":432,"kind":32,"name":"login_id","url":"modules/shopperlogin.html#gettrustedagentaccesstokenbodytype-2.__type-35.login_id-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAccessTokenBodyType.__type"},{"id":433,"kind":32,"name":"idp_origin","url":"modules/shopperlogin.html#gettrustedagentaccesstokenbodytype-2.__type-35.idp_origin","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAccessTokenBodyType.__type"},{"id":434,"kind":32,"name":"usid","url":"modules/shopperlogin.html#gettrustedagentaccesstokenbodytype-2.__type-35.usid-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAccessTokenBodyType.__type"},{"id":435,"kind":32,"name":"dnt","url":"modules/shopperlogin.html#gettrustedagentaccesstokenbodytype-2.__type-35.dnt-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAccessTokenBodyType.__type"},{"id":436,"kind":32,"name":"state","url":"modules/shopperlogin.html#gettrustedagentaccesstokenbodytype-2.__type-35.state-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAccessTokenBodyType.__type"},{"id":437,"kind":4194304,"name":"getTrustedAgentAuthorizationTokenQueryParameters","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":438,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenqueryparameters-2.__type-39","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getTrustedAgentAuthorizationTokenQueryParameters"},{"id":439,"kind":32,"name":"client_id","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenqueryparameters-2.__type-39.client_id-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAuthorizationTokenQueryParameters.__type"},{"id":440,"kind":32,"name":"channel_id","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenqueryparameters-2.__type-39.channel_id-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAuthorizationTokenQueryParameters.__type"},{"id":441,"kind":32,"name":"code_challenge","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenqueryparameters-2.__type-39.code_challenge-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAuthorizationTokenQueryParameters.__type"},{"id":442,"kind":32,"name":"login_id","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenqueryparameters-2.__type-39.login_id-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAuthorizationTokenQueryParameters.__type"},{"id":443,"kind":32,"name":"idp_origin","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenqueryparameters-2.__type-39.idp_origin-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAuthorizationTokenQueryParameters.__type"},{"id":444,"kind":32,"name":"redirect_uri","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenqueryparameters-2.__type-39.redirect_uri-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAuthorizationTokenQueryParameters.__type"},{"id":445,"kind":32,"name":"response_type","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenqueryparameters-2.__type-39.response_type-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAuthorizationTokenQueryParameters.__type"},{"id":446,"kind":4194304,"name":"getTrustedAgentAuthorizationTokenPathParameters","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":447,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenpathparameters-2.__type-38","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getTrustedAgentAuthorizationTokenPathParameters"},{"id":448,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenpathparameters-2.__type-38.organizationid-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedAgentAuthorizationTokenPathParameters.__type"},{"id":449,"kind":4194304,"name":"getTrustedSystemAccessTokenQueryParameters","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":450,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenqueryparameters-2.__type-42","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getTrustedSystemAccessTokenQueryParameters"},{"id":451,"kind":4194304,"name":"getTrustedSystemAccessTokenPathParameters","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":452,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenpathparameters-2.__type-41","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getTrustedSystemAccessTokenPathParameters"},{"id":453,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenpathparameters-2.__type-41.organizationid-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedSystemAccessTokenPathParameters.__type"},{"id":454,"kind":4194304,"name":"getTrustedSystemAccessTokenBodyType","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenbodytype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":455,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenbodytype-2.__type-40","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getTrustedSystemAccessTokenBodyType"},{"id":456,"kind":32,"name":"usid","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenbodytype-2.__type-40.usid-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedSystemAccessTokenBodyType.__type"},{"id":457,"kind":32,"name":"grant_type","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenbodytype-2.__type-40.grant_type-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedSystemAccessTokenBodyType.__type"},{"id":458,"kind":32,"name":"hint","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenbodytype-2.__type-40.hint-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedSystemAccessTokenBodyType.__type"},{"id":459,"kind":32,"name":"login_id","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenbodytype-2.__type-40.login_id-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedSystemAccessTokenBodyType.__type"},{"id":460,"kind":32,"name":"idp_origin","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenbodytype-2.__type-40.idp_origin-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedSystemAccessTokenBodyType.__type"},{"id":461,"kind":32,"name":"client_id","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenbodytype-2.__type-40.client_id-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedSystemAccessTokenBodyType.__type"},{"id":462,"kind":32,"name":"channel_id","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenbodytype-2.__type-40.channel_id-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedSystemAccessTokenBodyType.__type"},{"id":463,"kind":32,"name":"email_id","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenbodytype-2.__type-40.email_id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedSystemAccessTokenBodyType.__type"},{"id":464,"kind":32,"name":"dnt","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenbodytype-2.__type-40.dnt-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getTrustedSystemAccessTokenBodyType.__type"},{"id":465,"kind":4194304,"name":"getUserInfoQueryParameters","url":"modules/shopperlogin.html#getuserinfoqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":466,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getuserinfoqueryparameters-2.__type-44","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getUserInfoQueryParameters"},{"id":467,"kind":32,"name":"channel_id","url":"modules/shopperlogin.html#getuserinfoqueryparameters-2.__type-44.channel_id-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getUserInfoQueryParameters.__type"},{"id":468,"kind":4194304,"name":"getUserInfoPathParameters","url":"modules/shopperlogin.html#getuserinfopathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":469,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getuserinfopathparameters-2.__type-43","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getUserInfoPathParameters"},{"id":470,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#getuserinfopathparameters-2.__type-43.organizationid-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getUserInfoPathParameters.__type"},{"id":471,"kind":4194304,"name":"getWellknownOpenidConfigurationQueryParameters","url":"modules/shopperlogin.html#getwellknownopenidconfigurationqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":472,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getwellknownopenidconfigurationqueryparameters-2.__type-46","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getWellknownOpenidConfigurationQueryParameters"},{"id":473,"kind":4194304,"name":"getWellknownOpenidConfigurationPathParameters","url":"modules/shopperlogin.html#getwellknownopenidconfigurationpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":474,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#getwellknownopenidconfigurationpathparameters-2.__type-45","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.getWellknownOpenidConfigurationPathParameters"},{"id":475,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#getwellknownopenidconfigurationpathparameters-2.__type-45.organizationid-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.getWellknownOpenidConfigurationPathParameters.__type"},{"id":476,"kind":4194304,"name":"introspectTokenQueryParameters","url":"modules/shopperlogin.html#introspecttokenqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":477,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#introspecttokenqueryparameters-2.__type-49","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.introspectTokenQueryParameters"},{"id":478,"kind":4194304,"name":"introspectTokenPathParameters","url":"modules/shopperlogin.html#introspecttokenpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":479,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#introspecttokenpathparameters-2.__type-48","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.introspectTokenPathParameters"},{"id":480,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#introspecttokenpathparameters-2.__type-48.organizationid-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.introspectTokenPathParameters.__type"},{"id":481,"kind":4194304,"name":"introspectTokenBodyType","url":"modules/shopperlogin.html#introspecttokenbodytype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":482,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#introspecttokenbodytype-2.__type-47","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.introspectTokenBodyType"},{"id":483,"kind":32,"name":"token","url":"modules/shopperlogin.html#introspecttokenbodytype-2.__type-47.token","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.introspectTokenBodyType.__type"},{"id":484,"kind":32,"name":"token_type_hint","url":"modules/shopperlogin.html#introspecttokenbodytype-2.__type-47.token_type_hint","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.introspectTokenBodyType.__type"},{"id":485,"kind":4194304,"name":"logoutCustomerQueryParameters","url":"modules/shopperlogin.html#logoutcustomerqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":486,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#logoutcustomerqueryparameters-2.__type-51","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.logoutCustomerQueryParameters"},{"id":487,"kind":32,"name":"client_id","url":"modules/shopperlogin.html#logoutcustomerqueryparameters-2.__type-51.client_id-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.logoutCustomerQueryParameters.__type"},{"id":488,"kind":32,"name":"refresh_token","url":"modules/shopperlogin.html#logoutcustomerqueryparameters-2.__type-51.refresh_token-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.logoutCustomerQueryParameters.__type"},{"id":489,"kind":32,"name":"channel_id","url":"modules/shopperlogin.html#logoutcustomerqueryparameters-2.__type-51.channel_id-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.logoutCustomerQueryParameters.__type"},{"id":490,"kind":32,"name":"hint","url":"modules/shopperlogin.html#logoutcustomerqueryparameters-2.__type-51.hint-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.logoutCustomerQueryParameters.__type"},{"id":491,"kind":4194304,"name":"logoutCustomerPathParameters","url":"modules/shopperlogin.html#logoutcustomerpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":492,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#logoutcustomerpathparameters-2.__type-50","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.logoutCustomerPathParameters"},{"id":493,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#logoutcustomerpathparameters-2.__type-50.organizationid-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.logoutCustomerPathParameters.__type"},{"id":494,"kind":4194304,"name":"resetPasswordQueryParameters","url":"modules/shopperlogin.html#resetpasswordqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":495,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#resetpasswordqueryparameters-2.__type-54","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.resetPasswordQueryParameters"},{"id":496,"kind":4194304,"name":"resetPasswordPathParameters","url":"modules/shopperlogin.html#resetpasswordpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":497,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#resetpasswordpathparameters-2.__type-53","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.resetPasswordPathParameters"},{"id":498,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#resetpasswordpathparameters-2.__type-53.organizationid-21","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.resetPasswordPathParameters.__type"},{"id":499,"kind":4194304,"name":"resetPasswordBodyType","url":"modules/shopperlogin.html#resetpasswordbodytype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":500,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#resetpasswordbodytype-2.__type-52","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.resetPasswordBodyType"},{"id":501,"kind":32,"name":"client_id","url":"modules/shopperlogin.html#resetpasswordbodytype-2.__type-52.client_id-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.resetPasswordBodyType.__type"},{"id":502,"kind":32,"name":"pwd_action_token","url":"modules/shopperlogin.html#resetpasswordbodytype-2.__type-52.pwd_action_token","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.resetPasswordBodyType.__type"},{"id":503,"kind":32,"name":"code_verifier","url":"modules/shopperlogin.html#resetpasswordbodytype-2.__type-52.code_verifier-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.resetPasswordBodyType.__type"},{"id":504,"kind":32,"name":"new_password","url":"modules/shopperlogin.html#resetpasswordbodytype-2.__type-52.new_password","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.resetPasswordBodyType.__type"},{"id":505,"kind":32,"name":"channel_id","url":"modules/shopperlogin.html#resetpasswordbodytype-2.__type-52.channel_id-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.resetPasswordBodyType.__type"},{"id":506,"kind":32,"name":"hint","url":"modules/shopperlogin.html#resetpasswordbodytype-2.__type-52.hint-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.resetPasswordBodyType.__type"},{"id":507,"kind":32,"name":"user_id","url":"modules/shopperlogin.html#resetpasswordbodytype-2.__type-52.user_id-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.resetPasswordBodyType.__type"},{"id":508,"kind":4194304,"name":"revokeTokenQueryParameters","url":"modules/shopperlogin.html#revoketokenqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":509,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#revoketokenqueryparameters-2.__type-57","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.revokeTokenQueryParameters"},{"id":510,"kind":4194304,"name":"revokeTokenPathParameters","url":"modules/shopperlogin.html#revoketokenpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":511,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#revoketokenpathparameters-2.__type-56","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.revokeTokenPathParameters"},{"id":512,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#revoketokenpathparameters-2.__type-56.organizationid-22","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.revokeTokenPathParameters.__type"},{"id":513,"kind":4194304,"name":"revokeTokenBodyType","url":"modules/shopperlogin.html#revoketokenbodytype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":514,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#revoketokenbodytype-2.__type-55","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.revokeTokenBodyType"},{"id":515,"kind":32,"name":"token","url":"modules/shopperlogin.html#revoketokenbodytype-2.__type-55.token-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.revokeTokenBodyType.__type"},{"id":516,"kind":32,"name":"token_type_hint","url":"modules/shopperlogin.html#revoketokenbodytype-2.__type-55.token_type_hint-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.revokeTokenBodyType.__type"},{"id":517,"kind":4194304,"name":"startWebauthnAuthenticationQueryParameters","url":"modules/shopperlogin.html#startwebauthnauthenticationqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":518,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#startwebauthnauthenticationqueryparameters-2.__type-60","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.startWebauthnAuthenticationQueryParameters"},{"id":519,"kind":4194304,"name":"startWebauthnAuthenticationPathParameters","url":"modules/shopperlogin.html#startwebauthnauthenticationpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":520,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#startwebauthnauthenticationpathparameters-2.__type-59","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.startWebauthnAuthenticationPathParameters"},{"id":521,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#startwebauthnauthenticationpathparameters-2.__type-59.organizationid-23","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.startWebauthnAuthenticationPathParameters.__type"},{"id":522,"kind":4194304,"name":"startWebauthnAuthenticationBodyType","url":"modules/shopperlogin.html#startwebauthnauthenticationbodytype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":523,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#startwebauthnauthenticationbodytype-2.__type-58","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.startWebauthnAuthenticationBodyType"},{"id":524,"kind":32,"name":"tenant_id","url":"modules/shopperlogin.html#startwebauthnauthenticationbodytype-2.__type-58.tenant_id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.startWebauthnAuthenticationBodyType.__type"},{"id":525,"kind":32,"name":"client_id","url":"modules/shopperlogin.html#startwebauthnauthenticationbodytype-2.__type-58.client_id-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.startWebauthnAuthenticationBodyType.__type"},{"id":526,"kind":32,"name":"channel_id","url":"modules/shopperlogin.html#startwebauthnauthenticationbodytype-2.__type-58.channel_id-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.startWebauthnAuthenticationBodyType.__type"},{"id":527,"kind":32,"name":"user_id","url":"modules/shopperlogin.html#startwebauthnauthenticationbodytype-2.__type-58.user_id-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.startWebauthnAuthenticationBodyType.__type"},{"id":528,"kind":4194304,"name":"startWebauthnUserRegistrationQueryParameters","url":"modules/shopperlogin.html#startwebauthnuserregistrationqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":529,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#startwebauthnuserregistrationqueryparameters-2.__type-63","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.startWebauthnUserRegistrationQueryParameters"},{"id":530,"kind":4194304,"name":"startWebauthnUserRegistrationPathParameters","url":"modules/shopperlogin.html#startwebauthnuserregistrationpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":531,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#startwebauthnuserregistrationpathparameters-2.__type-62","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.startWebauthnUserRegistrationPathParameters"},{"id":532,"kind":32,"name":"organizationId","url":"modules/shopperlogin.html#startwebauthnuserregistrationpathparameters-2.__type-62.organizationid-24","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.startWebauthnUserRegistrationPathParameters.__type"},{"id":533,"kind":4194304,"name":"startWebauthnUserRegistrationBodyType","url":"modules/shopperlogin.html#startwebauthnuserregistrationbodytype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":534,"kind":65536,"name":"__type","url":"modules/shopperlogin.html#startwebauthnuserregistrationbodytype-2.__type-61","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperLogin.startWebauthnUserRegistrationBodyType"},{"id":535,"kind":32,"name":"client_id","url":"modules/shopperlogin.html#startwebauthnuserregistrationbodytype-2.__type-61.client_id-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.startWebauthnUserRegistrationBodyType.__type"},{"id":536,"kind":32,"name":"pwd_action_token","url":"modules/shopperlogin.html#startwebauthnuserregistrationbodytype-2.__type-61.pwd_action_token-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.startWebauthnUserRegistrationBodyType.__type"},{"id":537,"kind":32,"name":"user_id","url":"modules/shopperlogin.html#startwebauthnuserregistrationbodytype-2.__type-61.user_id-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.startWebauthnUserRegistrationBodyType.__type"},{"id":538,"kind":32,"name":"channel_id","url":"modules/shopperlogin.html#startwebauthnuserregistrationbodytype-2.__type-61.channel_id-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.startWebauthnUserRegistrationBodyType.__type"},{"id":539,"kind":32,"name":"display_name","url":"modules/shopperlogin.html#startwebauthnuserregistrationbodytype-2.__type-61.display_name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.startWebauthnUserRegistrationBodyType.__type"},{"id":540,"kind":32,"name":"nick_name","url":"modules/shopperlogin.html#startwebauthnuserregistrationbodytype-2.__type-61.nick_name","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperLogin.startWebauthnUserRegistrationBodyType.__type"},{"id":541,"kind":4194304,"name":"ShopperLoginPathParameters","url":"modules/shopperlogin.html#shopperloginpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":542,"kind":4194304,"name":"ShopperLoginQueryParameters","url":"modules/shopperlogin.html#shopperloginqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":543,"kind":4194304,"name":"ShopperLoginParameters","url":"modules/shopperlogin.html#shopperloginparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":544,"kind":4194304,"name":"AuthPathParameters","url":"modules/shopperlogin.html#authpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":545,"kind":4194304,"name":"AuthQueryParameters","url":"modules/shopperlogin.html#authqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":546,"kind":4194304,"name":"AuthParameters","url":"modules/shopperlogin.html#authparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperLogin"},{"id":547,"kind":16777216,"name":"AuthorizeCustomerResponseTypeEnum","url":"modules/shopperlogin.html#authorizecustomerresponsetypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":548,"kind":16777216,"name":"AuthorizeCustomerScopeEnum","url":"modules/shopperlogin.html#authorizecustomerscopeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":549,"kind":16777216,"name":"AuthorizePasswordlessCustomerModeEnum","url":"modules/shopperlogin.html#authorizepasswordlesscustomermodeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":550,"kind":16777216,"name":"AuthorizeWebauthnRegistrationModeEnum","url":"modules/shopperlogin.html#authorizewebauthnregistrationmodeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":551,"kind":16777216,"name":"GetPasswordLessAccessTokenGrantTypeEnum","url":"modules/shopperlogin.html#getpasswordlessaccesstokengranttypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":552,"kind":16777216,"name":"GetPasswordResetTokenModeEnum","url":"modules/shopperlogin.html#getpasswordresettokenmodeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":553,"kind":16777216,"name":"GetSessionBridgeAccessTokenGrantTypeEnum","url":"modules/shopperlogin.html#getsessionbridgeaccesstokengranttypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":554,"kind":16777216,"name":"GetTrustedAgentAccessTokenGrantTypeEnum","url":"modules/shopperlogin.html#gettrustedagentaccesstokengranttypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":555,"kind":16777216,"name":"GetTrustedAgentAuthorizationTokenResponseTypeEnum","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenresponsetypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":556,"kind":16777216,"name":"GetTrustedSystemAccessTokenGrantTypeEnum","url":"modules/shopperlogin.html#gettrustedsystemaccesstokengranttypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":557,"kind":16777216,"name":"GetTrustedSystemAccessTokenHintEnum","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenhintenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":558,"kind":16777216,"name":"GetTrustedSystemAccessTokenIdpOriginEnum","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenidporiginenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":559,"kind":16777216,"name":"IntrospectTokenTokenTypeHintEnum","url":"modules/shopperlogin.html#introspecttokentokentypehintenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":560,"kind":16777216,"name":"LogoutCustomerHintEnum","url":"modules/shopperlogin.html#logoutcustomerhintenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":561,"kind":16777216,"name":"RevokeTokenTokenTypeHintEnum","url":"modules/shopperlogin.html#revoketokentokentypehintenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":562,"kind":16777216,"name":"authenticateCustomerQueryParameters","url":"modules/shopperlogin.html#authenticatecustomerqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":563,"kind":16777216,"name":"authenticateCustomerPathParameters","url":"modules/shopperlogin.html#authenticatecustomerpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":564,"kind":16777216,"name":"authenticateCustomerBodyType","url":"modules/shopperlogin.html#authenticatecustomerbodytype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":565,"kind":16777216,"name":"authorizeCustomerQueryParameters","url":"modules/shopperlogin.html#authorizecustomerqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":566,"kind":16777216,"name":"authorizeCustomerPathParameters","url":"modules/shopperlogin.html#authorizecustomerpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":567,"kind":16777216,"name":"authorizePasswordlessCustomerQueryParameters","url":"modules/shopperlogin.html#authorizepasswordlesscustomerqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":568,"kind":16777216,"name":"authorizePasswordlessCustomerPathParameters","url":"modules/shopperlogin.html#authorizepasswordlesscustomerpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":569,"kind":16777216,"name":"authorizePasswordlessCustomerBodyType","url":"modules/shopperlogin.html#authorizepasswordlesscustomerbodytype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":570,"kind":16777216,"name":"authorizeWebauthnRegistrationQueryParameters","url":"modules/shopperlogin.html#authorizewebauthnregistrationqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":571,"kind":16777216,"name":"authorizeWebauthnRegistrationPathParameters","url":"modules/shopperlogin.html#authorizewebauthnregistrationpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":572,"kind":16777216,"name":"authorizeWebauthnRegistrationBodyType","url":"modules/shopperlogin.html#authorizewebauthnregistrationbodytype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":573,"kind":16777216,"name":"deletePasskeyCredentialQueryParameters","url":"modules/shopperlogin.html#deletepasskeycredentialqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":574,"kind":16777216,"name":"deletePasskeyCredentialPathParameters","url":"modules/shopperlogin.html#deletepasskeycredentialpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":575,"kind":16777216,"name":"deletePasskeyUserQueryParameters","url":"modules/shopperlogin.html#deletepasskeyuserqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":576,"kind":16777216,"name":"deletePasskeyUserPathParameters","url":"modules/shopperlogin.html#deletepasskeyuserpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":577,"kind":16777216,"name":"finishWebauthnAuthenticationQueryParameters","url":"modules/shopperlogin.html#finishwebauthnauthenticationqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":578,"kind":16777216,"name":"finishWebauthnAuthenticationPathParameters","url":"modules/shopperlogin.html#finishwebauthnauthenticationpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":579,"kind":16777216,"name":"finishWebauthnUserRegistrationQueryParameters","url":"modules/shopperlogin.html#finishwebauthnuserregistrationqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":580,"kind":16777216,"name":"finishWebauthnUserRegistrationPathParameters","url":"modules/shopperlogin.html#finishwebauthnuserregistrationpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":581,"kind":16777216,"name":"getAccessTokenQueryParameters","url":"modules/shopperlogin.html#getaccesstokenqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":582,"kind":16777216,"name":"getAccessTokenPathParameters","url":"modules/shopperlogin.html#getaccesstokenpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":583,"kind":16777216,"name":"getAccessTokenBodyType","url":"modules/shopperlogin.html#getaccesstokenbodytype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":584,"kind":16777216,"name":"getJwksUriQueryParameters","url":"modules/shopperlogin.html#getjwksuriqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":585,"kind":16777216,"name":"getJwksUriPathParameters","url":"modules/shopperlogin.html#getjwksuripathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":586,"kind":16777216,"name":"getPasskeyUserByLoginIdQueryParameters","url":"modules/shopperlogin.html#getpasskeyuserbyloginidqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":587,"kind":16777216,"name":"getPasskeyUserByLoginIdPathParameters","url":"modules/shopperlogin.html#getpasskeyuserbyloginidpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":588,"kind":16777216,"name":"getPasswordLessAccessTokenQueryParameters","url":"modules/shopperlogin.html#getpasswordlessaccesstokenqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":589,"kind":16777216,"name":"getPasswordLessAccessTokenPathParameters","url":"modules/shopperlogin.html#getpasswordlessaccesstokenpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":590,"kind":16777216,"name":"getPasswordLessAccessTokenBodyType","url":"modules/shopperlogin.html#getpasswordlessaccesstokenbodytype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":591,"kind":16777216,"name":"getPasswordResetTokenQueryParameters","url":"modules/shopperlogin.html#getpasswordresettokenqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":592,"kind":16777216,"name":"getPasswordResetTokenPathParameters","url":"modules/shopperlogin.html#getpasswordresettokenpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":593,"kind":16777216,"name":"getPasswordResetTokenBodyType","url":"modules/shopperlogin.html#getpasswordresettokenbodytype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":594,"kind":16777216,"name":"getSessionBridgeAccessTokenQueryParameters","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":595,"kind":16777216,"name":"getSessionBridgeAccessTokenPathParameters","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":596,"kind":16777216,"name":"getSessionBridgeAccessTokenBodyType","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenbodytype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":597,"kind":16777216,"name":"getTrustedAgentAccessTokenQueryParameters","url":"modules/shopperlogin.html#gettrustedagentaccesstokenqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":598,"kind":16777216,"name":"getTrustedAgentAccessTokenPathParameters","url":"modules/shopperlogin.html#gettrustedagentaccesstokenpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":599,"kind":16777216,"name":"getTrustedAgentAccessTokenBodyType","url":"modules/shopperlogin.html#gettrustedagentaccesstokenbodytype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":600,"kind":16777216,"name":"getTrustedAgentAuthorizationTokenQueryParameters","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":601,"kind":16777216,"name":"getTrustedAgentAuthorizationTokenPathParameters","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":602,"kind":16777216,"name":"getTrustedSystemAccessTokenQueryParameters","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":603,"kind":16777216,"name":"getTrustedSystemAccessTokenPathParameters","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":604,"kind":16777216,"name":"getTrustedSystemAccessTokenBodyType","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenbodytype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":605,"kind":16777216,"name":"getUserInfoQueryParameters","url":"modules/shopperlogin.html#getuserinfoqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":606,"kind":16777216,"name":"getUserInfoPathParameters","url":"modules/shopperlogin.html#getuserinfopathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":607,"kind":16777216,"name":"getWellknownOpenidConfigurationQueryParameters","url":"modules/shopperlogin.html#getwellknownopenidconfigurationqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":608,"kind":16777216,"name":"getWellknownOpenidConfigurationPathParameters","url":"modules/shopperlogin.html#getwellknownopenidconfigurationpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":609,"kind":16777216,"name":"introspectTokenQueryParameters","url":"modules/shopperlogin.html#introspecttokenqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":610,"kind":16777216,"name":"introspectTokenPathParameters","url":"modules/shopperlogin.html#introspecttokenpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":611,"kind":16777216,"name":"introspectTokenBodyType","url":"modules/shopperlogin.html#introspecttokenbodytype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":612,"kind":16777216,"name":"logoutCustomerQueryParameters","url":"modules/shopperlogin.html#logoutcustomerqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":613,"kind":16777216,"name":"logoutCustomerPathParameters","url":"modules/shopperlogin.html#logoutcustomerpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":614,"kind":16777216,"name":"resetPasswordQueryParameters","url":"modules/shopperlogin.html#resetpasswordqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":615,"kind":16777216,"name":"resetPasswordPathParameters","url":"modules/shopperlogin.html#resetpasswordpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":616,"kind":16777216,"name":"resetPasswordBodyType","url":"modules/shopperlogin.html#resetpasswordbodytype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":617,"kind":16777216,"name":"revokeTokenQueryParameters","url":"modules/shopperlogin.html#revoketokenqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":618,"kind":16777216,"name":"revokeTokenPathParameters","url":"modules/shopperlogin.html#revoketokenpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":619,"kind":16777216,"name":"revokeTokenBodyType","url":"modules/shopperlogin.html#revoketokenbodytype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":620,"kind":16777216,"name":"startWebauthnAuthenticationQueryParameters","url":"modules/shopperlogin.html#startwebauthnauthenticationqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":621,"kind":16777216,"name":"startWebauthnAuthenticationPathParameters","url":"modules/shopperlogin.html#startwebauthnauthenticationpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":622,"kind":16777216,"name":"startWebauthnAuthenticationBodyType","url":"modules/shopperlogin.html#startwebauthnauthenticationbodytype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":623,"kind":16777216,"name":"startWebauthnUserRegistrationQueryParameters","url":"modules/shopperlogin.html#startwebauthnuserregistrationqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":624,"kind":16777216,"name":"startWebauthnUserRegistrationPathParameters","url":"modules/shopperlogin.html#startwebauthnuserregistrationpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":625,"kind":16777216,"name":"startWebauthnUserRegistrationBodyType","url":"modules/shopperlogin.html#startwebauthnuserregistrationbodytype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":626,"kind":16777216,"name":"ShopperLoginPathParameters","url":"modules/shopperlogin.html#shopperloginpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":627,"kind":16777216,"name":"ShopperLoginQueryParameters","url":"modules/shopperlogin.html#shopperloginqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":628,"kind":16777216,"name":"ShopperLoginParameters","url":"modules/shopperlogin.html#shopperloginparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":629,"kind":16777216,"name":"AuthPathParameters","url":"modules/shopperlogin.html#authpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":630,"kind":16777216,"name":"AuthQueryParameters","url":"modules/shopperlogin.html#authqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":631,"kind":16777216,"name":"AuthParameters","url":"modules/shopperlogin.html#authparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":632,"kind":16777216,"name":"ShopperLogin","url":"modules/shopperlogin.html#shopperlogin-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":633,"kind":1,"name":"responseError","url":"modules/responseerror.html","classes":"tsd-kind-module"},{"id":634,"kind":128,"name":"ResponseError","url":"classes/responseerror.responseerror-1.html","classes":"tsd-kind-class tsd-parent-kind-module","parent":"responseError"},{"id":635,"kind":512,"name":"constructor","url":"classes/responseerror.responseerror-1.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"responseError.ResponseError"},{"id":636,"kind":1024,"name":"response","url":"classes/responseerror.responseerror-1.html#response","classes":"tsd-kind-property tsd-parent-kind-class","parent":"responseError.ResponseError"},{"id":637,"kind":1024,"name":"name","url":"classes/responseerror.responseerror-1.html#name","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"responseError.ResponseError"},{"id":638,"kind":1024,"name":"message","url":"classes/responseerror.responseerror-1.html#message","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"responseError.ResponseError"},{"id":639,"kind":1024,"name":"stack","url":"classes/responseerror.responseerror-1.html#stack","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-inherited","parent":"responseError.ResponseError"},{"id":640,"kind":1024,"name":"Error","url":"classes/responseerror.responseerror-1.html#error","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"responseError.ResponseError"},{"id":641,"kind":32,"name":"stringToBase64","url":"modules/helpers.html#stringtobase64-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"helpers"},{"id":642,"kind":64,"name":"getCodeAndUsidFromUrl","url":"modules/helpers.html#getcodeandusidfromurl-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":643,"kind":64,"name":"nanoid","url":"modules/helpers.html#nanoid","classes":"tsd-kind-function tsd-parent-kind-module tsd-is-not-exported","parent":"helpers"},{"id":644,"kind":64,"name":"createCodeVerifier","url":"modules/helpers.html#createcodeverifier-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":645,"kind":64,"name":"generateCodeChallenge","url":"modules/helpers.html#generatecodechallenge-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":646,"kind":64,"name":"authorize","url":"modules/helpers.html#authorize-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":647,"kind":64,"name":"authorizeIDP","url":"modules/helpers.html#authorizeidp-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":648,"kind":64,"name":"loginIDPUser","url":"modules/helpers.html#loginidpuser-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":649,"kind":64,"name":"loginGuestUserPrivate","url":"modules/helpers.html#loginguestuserprivate-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":650,"kind":64,"name":"loginGuestUser","url":"modules/helpers.html#loginguestuser-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":651,"kind":64,"name":"loginRegisteredUserB2C","url":"modules/helpers.html#loginregistereduserb2c-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":652,"kind":64,"name":"authorizePasswordless","url":"modules/helpers.html#authorizepasswordless-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":653,"kind":64,"name":"getPasswordLessAccessToken","url":"modules/helpers.html#getpasswordlessaccesstoken-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":654,"kind":64,"name":"refreshAccessToken","url":"modules/helpers.html#refreshaccesstoken-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":655,"kind":64,"name":"logout","url":"modules/helpers.html#logout-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":656,"kind":16777216,"name":"isBrowser","url":"modules/helpers.html#isbrowser","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":657,"kind":16777216,"name":"isNode","url":"modules/helpers.html#isnode","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":658,"kind":16777216,"name":"globalObject","url":"modules/helpers.html#globalobject","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":659,"kind":16777216,"name":"hasFetchAvailable","url":"modules/helpers.html#hasfetchavailable","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":660,"kind":16777216,"name":"fetch","url":"modules/helpers.html#fetch","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":661,"kind":16777216,"name":"authorize","url":"modules/helpers.html#authorize","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":662,"kind":16777216,"name":"authorizeIDP","url":"modules/helpers.html#authorizeidp","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":663,"kind":16777216,"name":"loginIDPUser","url":"modules/helpers.html#loginidpuser","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":664,"kind":16777216,"name":"loginGuestUserPrivate","url":"modules/helpers.html#loginguestuserprivate","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":665,"kind":16777216,"name":"loginGuestUser","url":"modules/helpers.html#loginguestuser","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":666,"kind":16777216,"name":"loginRegisteredUserB2C","url":"modules/helpers.html#loginregistereduserb2c","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":667,"kind":16777216,"name":"authorizePasswordless","url":"modules/helpers.html#authorizepasswordless","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":668,"kind":16777216,"name":"getPasswordLessAccessToken","url":"modules/helpers.html#getpasswordlessaccesstoken","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":669,"kind":16777216,"name":"refreshAccessToken","url":"modules/helpers.html#refreshaccesstoken","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":670,"kind":16777216,"name":"logout","url":"modules/helpers.html#logout","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":671,"kind":16777216,"name":"stringToBase64","url":"modules/helpers.html#stringtobase64","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":672,"kind":16777216,"name":"getCodeAndUsidFromUrl","url":"modules/helpers.html#getcodeandusidfromurl","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":673,"kind":16777216,"name":"createCodeVerifier","url":"modules/helpers.html#createcodeverifier","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":674,"kind":16777216,"name":"generateCodeChallenge","url":"modules/helpers.html#generatecodechallenge","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":675,"kind":16777216,"name":"CompositeParameters","url":"modules/helpers.html#compositeparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":676,"kind":16777216,"name":"RequireParametersUnlessAllAreOptional","url":"modules/helpers.html#requireparametersunlessallareoptional","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":677,"kind":16777216,"name":"BaseUriParameters","url":"modules/helpers.html#baseuriparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":678,"kind":16777216,"name":"LocaleCode","url":"modules/helpers.html#localecode","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":679,"kind":16777216,"name":"PathParameters","url":"modules/helpers.html#pathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":680,"kind":16777216,"name":"QueryParameters","url":"modules/helpers.html#queryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":681,"kind":16777216,"name":"UrlParameters","url":"modules/helpers.html#urlparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":682,"kind":16777216,"name":"CustomQueryParameters","url":"modules/helpers.html#customqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":683,"kind":16777216,"name":"CustomRequestBody","url":"modules/helpers.html#customrequestbody","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":684,"kind":16777216,"name":"CustomParams","url":"modules/helpers.html#customparams","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":685,"kind":16777216,"name":"callCustomEndpoint","url":"modules/helpers.html#callcustomendpoint","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":686,"kind":16777216,"name":"doFetch","url":"modules/helpers.html#dofetch","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":687,"kind":16777216,"name":"encodeSCAPISpecialCharacters","url":"modules/helpers.html#encodescapispecialcharacters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"helpers"},{"id":688,"kind":64,"name":"doFetch","url":"modules/helpers.html#dofetch-1","classes":"tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter","parent":"helpers"},{"id":689,"kind":64,"name":"encodeSCAPISpecialCharacters","url":"modules/helpers.html#encodescapispecialcharacters-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":690,"kind":256,"name":"CustomParams","url":"interfaces/helpers.customparams-1.html","classes":"tsd-kind-interface tsd-parent-kind-module","parent":"helpers"},{"id":691,"kind":1024,"name":"apiName","url":"interfaces/helpers.customparams-1.html#apiname","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"helpers.CustomParams"},{"id":692,"kind":1024,"name":"apiVersion","url":"interfaces/helpers.customparams-1.html#apiversion","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"helpers.CustomParams"},{"id":693,"kind":1024,"name":"endpointPath","url":"interfaces/helpers.customparams-1.html#endpointpath","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"helpers.CustomParams"},{"id":694,"kind":1024,"name":"organizationId","url":"interfaces/helpers.customparams-1.html#organizationid","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"helpers.CustomParams"},{"id":695,"kind":1024,"name":"shortCode","url":"interfaces/helpers.customparams-1.html#shortcode","classes":"tsd-kind-property tsd-parent-kind-interface","parent":"helpers.CustomParams"},{"id":696,"kind":64,"name":"contentTypeHeaderExists","url":"modules/helpers.html#contenttypeheaderexists","classes":"tsd-kind-function tsd-parent-kind-module tsd-is-not-exported","parent":"helpers"},{"id":697,"kind":64,"name":"callCustomEndpoint","url":"modules/helpers.html#callcustomendpoint-1","classes":"tsd-kind-function tsd-parent-kind-module","parent":"helpers"},{"id":698,"kind":1,"name":"shopperBaskets","url":"modules/shopperbaskets.html","classes":"tsd-kind-module"},{"id":699,"kind":32,"name":"defaultBaseUri","url":"modules/shopperbaskets.html#defaultbaseuri-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"shopperBaskets"},{"id":700,"kind":4194304,"name":"GiftCertificateItem","url":"modules/shopperbaskets.html#giftcertificateitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":701,"kind":4194304,"name":"Status","url":"modules/shopperbaskets.html#status-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":702,"kind":4194304,"name":"PaymentCard","url":"modules/shopperbaskets.html#paymentcard-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":703,"kind":4194304,"name":"OrderPaymentInstrument","url":"modules/shopperbaskets.html#orderpaymentinstrument-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":704,"kind":4194304,"name":"ProductDetailsLink","url":"modules/shopperbaskets.html#productdetailslink-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":705,"kind":4194304,"name":"BonusDiscountLineItem","url":"modules/shopperbaskets.html#bonusdiscountlineitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":706,"kind":4194304,"name":"Discount","url":"modules/shopperbaskets.html#discount-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":707,"kind":4194304,"name":"DiscountTypeEnum","url":"modules/shopperbaskets.html#discounttypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":708,"kind":4194304,"name":"PriceAdjustment","url":"modules/shopperbaskets.html#priceadjustment-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":709,"kind":4194304,"name":"ShippingItem","url":"modules/shopperbaskets.html#shippingitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":710,"kind":4194304,"name":"OrderAddress","url":"modules/shopperbaskets.html#orderaddress-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":711,"kind":4194304,"name":"ShippingPromotion","url":"modules/shopperbaskets.html#shippingpromotion-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":712,"kind":4194304,"name":"ShippingMethod","url":"modules/shopperbaskets.html#shippingmethod-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":713,"kind":4194304,"name":"Shipment","url":"modules/shopperbaskets.html#shipment-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":714,"kind":4194304,"name":"ShipmentShippingStatusEnum","url":"modules/shopperbaskets.html#shipmentshippingstatusenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":715,"kind":4194304,"name":"CouponItem","url":"modules/shopperbaskets.html#couponitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":716,"kind":4194304,"name":"CouponItemStatusCodeEnum","url":"modules/shopperbaskets.html#couponitemstatuscodeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":717,"kind":4194304,"name":"CustomerInfo","url":"modules/shopperbaskets.html#customerinfo-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":718,"kind":4194304,"name":"ProductListLink","url":"modules/shopperbaskets.html#productlistlink-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":719,"kind":4194304,"name":"ProductListLinkTypeEnum","url":"modules/shopperbaskets.html#productlistlinktypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":720,"kind":4194304,"name":"ProductListItemReference","url":"modules/shopperbaskets.html#productlistitemreference-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":721,"kind":4194304,"name":"ProductListItemReferenceTypeEnum","url":"modules/shopperbaskets.html#productlistitemreferencetypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":722,"kind":4194304,"name":"OptionItem","url":"modules/shopperbaskets.html#optionitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":723,"kind":4194304,"name":"ProductItem","url":"modules/shopperbaskets.html#productitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":724,"kind":4194304,"name":"Basket","url":"modules/shopperbaskets.html#basket-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":725,"kind":4194304,"name":"BasketChannelTypeEnum","url":"modules/shopperbaskets.html#basketchanneltypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":726,"kind":4194304,"name":"BasketTaxationEnum","url":"modules/shopperbaskets.html#baskettaxationenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":727,"kind":4194304,"name":"OrderPaymentCardRequest","url":"modules/shopperbaskets.html#orderpaymentcardrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":728,"kind":4194304,"name":"BasketPaymentInstrumentRequest","url":"modules/shopperbaskets.html#basketpaymentinstrumentrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":729,"kind":4194304,"name":"DiscountRequest","url":"modules/shopperbaskets.html#discountrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":730,"kind":4194304,"name":"DiscountRequestTypeEnum","url":"modules/shopperbaskets.html#discountrequesttypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":731,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperbaskets.html#errorresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":732,"kind":4194304,"name":"LocaleCode","url":"modules/shopperbaskets.html#localecode-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":733,"kind":4194304,"name":"PaymentCardSpec","url":"modules/shopperbaskets.html#paymentcardspec-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":734,"kind":4194304,"name":"PaymentMethod","url":"modules/shopperbaskets.html#paymentmethod-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":735,"kind":4194304,"name":"PaymentMethodResult","url":"modules/shopperbaskets.html#paymentmethodresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":736,"kind":4194304,"name":"PriceAdjustmentRequest","url":"modules/shopperbaskets.html#priceadjustmentrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":737,"kind":4194304,"name":"PriceAdjustmentRequestLevelEnum","url":"modules/shopperbaskets.html#priceadjustmentrequestlevelenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":738,"kind":4194304,"name":"ShippingMethodResult","url":"modules/shopperbaskets.html#shippingmethodresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":739,"kind":4194304,"name":"TaxItem","url":"modules/shopperbaskets.html#taxitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":740,"kind":4194304,"name":"TaxItems","url":"modules/shopperbaskets.html#taxitems-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":741,"kind":4194304,"name":"Taxes","url":"modules/shopperbaskets.html#taxes-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":742,"kind":16777216,"name":"Basket","url":"modules/shopperbaskets.html#basket","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":743,"kind":16777216,"name":"BasketChannelTypeEnum","url":"modules/shopperbaskets.html#basketchanneltypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":744,"kind":16777216,"name":"BasketTaxationEnum","url":"modules/shopperbaskets.html#baskettaxationenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":745,"kind":16777216,"name":"BasketPaymentInstrumentRequest","url":"modules/shopperbaskets.html#basketpaymentinstrumentrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":746,"kind":16777216,"name":"BonusDiscountLineItem","url":"modules/shopperbaskets.html#bonusdiscountlineitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":747,"kind":16777216,"name":"CouponItem","url":"modules/shopperbaskets.html#couponitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":748,"kind":16777216,"name":"CouponItemStatusCodeEnum","url":"modules/shopperbaskets.html#couponitemstatuscodeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":749,"kind":16777216,"name":"CustomerInfo","url":"modules/shopperbaskets.html#customerinfo","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":750,"kind":16777216,"name":"Discount","url":"modules/shopperbaskets.html#discount","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":751,"kind":16777216,"name":"DiscountTypeEnum","url":"modules/shopperbaskets.html#discounttypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":752,"kind":16777216,"name":"DiscountRequest","url":"modules/shopperbaskets.html#discountrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":753,"kind":16777216,"name":"DiscountRequestTypeEnum","url":"modules/shopperbaskets.html#discountrequesttypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":754,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperbaskets.html#errorresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":755,"kind":16777216,"name":"GiftCertificateItem","url":"modules/shopperbaskets.html#giftcertificateitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":756,"kind":16777216,"name":"LocaleCode","url":"modules/shopperbaskets.html#localecode","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":757,"kind":16777216,"name":"OptionItem","url":"modules/shopperbaskets.html#optionitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":758,"kind":16777216,"name":"OrderAddress","url":"modules/shopperbaskets.html#orderaddress","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":759,"kind":16777216,"name":"OrderPaymentCardRequest","url":"modules/shopperbaskets.html#orderpaymentcardrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":760,"kind":16777216,"name":"OrderPaymentInstrument","url":"modules/shopperbaskets.html#orderpaymentinstrument","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":761,"kind":16777216,"name":"PaymentCard","url":"modules/shopperbaskets.html#paymentcard","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":762,"kind":16777216,"name":"PaymentCardSpec","url":"modules/shopperbaskets.html#paymentcardspec","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":763,"kind":16777216,"name":"PaymentMethod","url":"modules/shopperbaskets.html#paymentmethod","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":764,"kind":16777216,"name":"PaymentMethodResult","url":"modules/shopperbaskets.html#paymentmethodresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":765,"kind":16777216,"name":"PriceAdjustment","url":"modules/shopperbaskets.html#priceadjustment","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":766,"kind":16777216,"name":"PriceAdjustmentRequest","url":"modules/shopperbaskets.html#priceadjustmentrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":767,"kind":16777216,"name":"PriceAdjustmentRequestLevelEnum","url":"modules/shopperbaskets.html#priceadjustmentrequestlevelenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":768,"kind":16777216,"name":"ProductDetailsLink","url":"modules/shopperbaskets.html#productdetailslink","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":769,"kind":16777216,"name":"ProductItem","url":"modules/shopperbaskets.html#productitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":770,"kind":16777216,"name":"ProductListItemReference","url":"modules/shopperbaskets.html#productlistitemreference","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":771,"kind":16777216,"name":"ProductListItemReferenceTypeEnum","url":"modules/shopperbaskets.html#productlistitemreferencetypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":772,"kind":16777216,"name":"ProductListLink","url":"modules/shopperbaskets.html#productlistlink","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":773,"kind":16777216,"name":"ProductListLinkTypeEnum","url":"modules/shopperbaskets.html#productlistlinktypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":774,"kind":16777216,"name":"Shipment","url":"modules/shopperbaskets.html#shipment","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":775,"kind":16777216,"name":"ShipmentShippingStatusEnum","url":"modules/shopperbaskets.html#shipmentshippingstatusenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":776,"kind":16777216,"name":"ShippingItem","url":"modules/shopperbaskets.html#shippingitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":777,"kind":16777216,"name":"ShippingMethod","url":"modules/shopperbaskets.html#shippingmethod","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":778,"kind":16777216,"name":"ShippingMethodResult","url":"modules/shopperbaskets.html#shippingmethodresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":779,"kind":16777216,"name":"ShippingPromotion","url":"modules/shopperbaskets.html#shippingpromotion","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":780,"kind":16777216,"name":"Status","url":"modules/shopperbaskets.html#status","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":781,"kind":16777216,"name":"TaxItem","url":"modules/shopperbaskets.html#taxitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":782,"kind":16777216,"name":"TaxItems","url":"modules/shopperbaskets.html#taxitems","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":783,"kind":16777216,"name":"Taxes","url":"modules/shopperbaskets.html#taxes","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":784,"kind":128,"name":"ShopperBaskets","url":"classes/shopperbaskets.shopperbaskets-3.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"shopperBaskets"},{"id":785,"kind":1024,"name":"clientConfig","url":"classes/shopperbaskets.shopperbaskets-3.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class","parent":"shopperBaskets.ShopperBaskets"},{"id":786,"kind":1024,"name":"defaultBaseUri","url":"classes/shopperbaskets.shopperbaskets-3.html#defaultbaseuri","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperBaskets.ShopperBaskets"},{"id":787,"kind":2097152,"name":"apiPaths","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-static","parent":"shopperBaskets.ShopperBaskets"},{"id":788,"kind":32,"name":"addCouponToBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.addcoupontobasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":789,"kind":32,"name":"addGiftCertificateItemToBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.addgiftcertificateitemtobasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":790,"kind":32,"name":"addItemToBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.additemtobasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":791,"kind":32,"name":"addPaymentInstrumentToBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.addpaymentinstrumenttobasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":792,"kind":32,"name":"addPriceAdjustmentToBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.addpriceadjustmenttobasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":793,"kind":32,"name":"addPriceBooksToBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.addpricebookstobasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":794,"kind":32,"name":"addTaxesForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.addtaxesforbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":795,"kind":32,"name":"addTaxesForBasketItem","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.addtaxesforbasketitem-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":796,"kind":32,"name":"createBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.createbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":797,"kind":32,"name":"createShipmentForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.createshipmentforbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":798,"kind":32,"name":"deleteBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.deletebasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":799,"kind":32,"name":"getBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.getbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":800,"kind":32,"name":"getPaymentMethodsForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.getpaymentmethodsforbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":801,"kind":32,"name":"getPriceBooksForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.getpricebooksforbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":802,"kind":32,"name":"getShippingMethodsForShipment","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.getshippingmethodsforshipment-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":803,"kind":32,"name":"getTaxesFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.gettaxesfrombasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":804,"kind":32,"name":"mergeBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.mergebasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":805,"kind":32,"name":"removeCouponFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.removecouponfrombasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":806,"kind":32,"name":"removeGiftCertificateItemFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.removegiftcertificateitemfrombasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":807,"kind":32,"name":"removeItemFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.removeitemfrombasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":808,"kind":32,"name":"removePaymentInstrumentFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.removepaymentinstrumentfrombasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":809,"kind":32,"name":"removePriceAdjustmentFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.removepriceadjustmentfrombasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":810,"kind":32,"name":"removeShipmentFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.removeshipmentfrombasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":811,"kind":32,"name":"transferBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.transferbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":812,"kind":32,"name":"updateAsAgentBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.updateasagentbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":813,"kind":32,"name":"updateAsStorefrontBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.updateasstorefrontbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":814,"kind":32,"name":"updateBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.updatebasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":815,"kind":32,"name":"updateBillingAddressForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.updatebillingaddressforbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":816,"kind":32,"name":"updateCustomerForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.updatecustomerforbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":817,"kind":32,"name":"updateGiftCertificateItemInBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.updategiftcertificateiteminbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":818,"kind":32,"name":"updateItemInBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.updateiteminbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":819,"kind":32,"name":"updateItemsInBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.updateitemsinbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":820,"kind":32,"name":"updatePaymentInstrumentInBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.updatepaymentinstrumentinbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":821,"kind":32,"name":"updatePriceAdjustmentInBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.updatepriceadjustmentinbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":822,"kind":32,"name":"updateShipmentForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.updateshipmentforbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":823,"kind":32,"name":"updateShippingAddressForShipment","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.updateshippingaddressforshipment-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":824,"kind":32,"name":"updateShippingMethodForShipment","url":"classes/shopperbaskets.shopperbaskets-3.html#apipaths.updateshippingmethodforshipment-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBaskets.ShopperBaskets.apiPaths"},{"id":825,"kind":512,"name":"constructor","url":"classes/shopperbaskets.shopperbaskets-3.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"shopperBaskets.ShopperBaskets"},{"id":826,"kind":1024,"name":"paramKeys","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperBaskets.ShopperBaskets"},{"id":827,"kind":65536,"name":"__type","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"shopperBaskets.ShopperBaskets.paramKeys"},{"id":828,"kind":32,"name":"addCouponToBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.addcoupontobasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":829,"kind":32,"name":"addCouponToBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.addcoupontobasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":830,"kind":32,"name":"addGiftCertificateItemToBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.addgiftcertificateitemtobasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":831,"kind":32,"name":"addGiftCertificateItemToBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.addgiftcertificateitemtobasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":832,"kind":32,"name":"addItemToBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.additemtobasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":833,"kind":32,"name":"addItemToBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.additemtobasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":834,"kind":32,"name":"addPaymentInstrumentToBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.addpaymentinstrumenttobasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":835,"kind":32,"name":"addPaymentInstrumentToBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.addpaymentinstrumenttobasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":836,"kind":32,"name":"addPriceAdjustmentToBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.addpriceadjustmenttobasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":837,"kind":32,"name":"addPriceAdjustmentToBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.addpriceadjustmenttobasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":838,"kind":32,"name":"addPriceBooksToBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.addpricebookstobasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":839,"kind":32,"name":"addPriceBooksToBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.addpricebookstobasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":840,"kind":32,"name":"addTaxesForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.addtaxesforbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":841,"kind":32,"name":"addTaxesForBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.addtaxesforbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":842,"kind":32,"name":"addTaxesForBasketItem","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.addtaxesforbasketitem","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":843,"kind":32,"name":"addTaxesForBasketItemRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.addtaxesforbasketitemrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":844,"kind":32,"name":"createBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.createbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":845,"kind":32,"name":"createBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.createbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":846,"kind":32,"name":"createShipmentForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.createshipmentforbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":847,"kind":32,"name":"createShipmentForBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.createshipmentforbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":848,"kind":32,"name":"deleteBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.deletebasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":849,"kind":32,"name":"deleteBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.deletebasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":850,"kind":32,"name":"getBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.getbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":851,"kind":32,"name":"getBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.getbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":852,"kind":32,"name":"getPaymentMethodsForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.getpaymentmethodsforbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":853,"kind":32,"name":"getPaymentMethodsForBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.getpaymentmethodsforbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":854,"kind":32,"name":"getPriceBooksForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.getpricebooksforbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":855,"kind":32,"name":"getPriceBooksForBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.getpricebooksforbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":856,"kind":32,"name":"getShippingMethodsForShipment","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.getshippingmethodsforshipment","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":857,"kind":32,"name":"getShippingMethodsForShipmentRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.getshippingmethodsforshipmentrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":858,"kind":32,"name":"getTaxesFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.gettaxesfrombasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":859,"kind":32,"name":"getTaxesFromBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.gettaxesfrombasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":860,"kind":32,"name":"mergeBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.mergebasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":861,"kind":32,"name":"mergeBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.mergebasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":862,"kind":32,"name":"removeCouponFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.removecouponfrombasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":863,"kind":32,"name":"removeCouponFromBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.removecouponfrombasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":864,"kind":32,"name":"removeGiftCertificateItemFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.removegiftcertificateitemfrombasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":865,"kind":32,"name":"removeGiftCertificateItemFromBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.removegiftcertificateitemfrombasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":866,"kind":32,"name":"removeItemFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.removeitemfrombasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":867,"kind":32,"name":"removeItemFromBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.removeitemfrombasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":868,"kind":32,"name":"removePaymentInstrumentFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.removepaymentinstrumentfrombasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":869,"kind":32,"name":"removePaymentInstrumentFromBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.removepaymentinstrumentfrombasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":870,"kind":32,"name":"removePriceAdjustmentFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.removepriceadjustmentfrombasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":871,"kind":32,"name":"removePriceAdjustmentFromBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.removepriceadjustmentfrombasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":872,"kind":32,"name":"removeShipmentFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.removeshipmentfrombasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":873,"kind":32,"name":"removeShipmentFromBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.removeshipmentfrombasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":874,"kind":32,"name":"transferBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.transferbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":875,"kind":32,"name":"transferBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.transferbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":876,"kind":32,"name":"updateAsAgentBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updateasagentbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":877,"kind":32,"name":"updateAsAgentBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updateasagentbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":878,"kind":32,"name":"updateAsStorefrontBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updateasstorefrontbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":879,"kind":32,"name":"updateAsStorefrontBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updateasstorefrontbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":880,"kind":32,"name":"updateBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updatebasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":881,"kind":32,"name":"updateBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updatebasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":882,"kind":32,"name":"updateBillingAddressForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updatebillingaddressforbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":883,"kind":32,"name":"updateBillingAddressForBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updatebillingaddressforbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":884,"kind":32,"name":"updateCustomerForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updatecustomerforbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":885,"kind":32,"name":"updateCustomerForBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updatecustomerforbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":886,"kind":32,"name":"updateGiftCertificateItemInBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updategiftcertificateiteminbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":887,"kind":32,"name":"updateGiftCertificateItemInBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updategiftcertificateiteminbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":888,"kind":32,"name":"updateItemInBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updateiteminbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":889,"kind":32,"name":"updateItemInBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updateiteminbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":890,"kind":32,"name":"updateItemsInBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updateitemsinbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":891,"kind":32,"name":"updateItemsInBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updateitemsinbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":892,"kind":32,"name":"updatePaymentInstrumentInBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updatepaymentinstrumentinbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":893,"kind":32,"name":"updatePaymentInstrumentInBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updatepaymentinstrumentinbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":894,"kind":32,"name":"updatePriceAdjustmentInBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updatepriceadjustmentinbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":895,"kind":32,"name":"updatePriceAdjustmentInBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updatepriceadjustmentinbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":896,"kind":32,"name":"updateShipmentForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updateshipmentforbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":897,"kind":32,"name":"updateShipmentForBasketRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updateshipmentforbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":898,"kind":32,"name":"updateShippingAddressForShipment","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updateshippingaddressforshipment","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":899,"kind":32,"name":"updateShippingAddressForShipmentRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updateshippingaddressforshipmentrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":900,"kind":32,"name":"updateShippingMethodForShipment","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updateshippingmethodforshipment","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":901,"kind":32,"name":"updateShippingMethodForShipmentRequired","url":"classes/shopperbaskets.shopperbaskets-3.html#paramkeys.__type.updateshippingmethodforshipmentrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.ShopperBaskets.paramKeys.__type"},{"id":902,"kind":2048,"name":"addCouponToBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#addcoupontobasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":903,"kind":2048,"name":"addGiftCertificateItemToBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#addgiftcertificateitemtobasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":904,"kind":2048,"name":"addItemToBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#additemtobasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":905,"kind":2048,"name":"addPaymentInstrumentToBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#addpaymentinstrumenttobasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":906,"kind":2048,"name":"addPriceAdjustmentToBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#addpriceadjustmenttobasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":907,"kind":2048,"name":"addPriceBooksToBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#addpricebookstobasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":908,"kind":2048,"name":"addTaxesForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#addtaxesforbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":909,"kind":2048,"name":"addTaxesForBasketItem","url":"classes/shopperbaskets.shopperbaskets-3.html#addtaxesforbasketitem-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":910,"kind":2048,"name":"createBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#createbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":911,"kind":2048,"name":"createShipmentForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#createshipmentforbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":912,"kind":2048,"name":"deleteBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#deletebasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":913,"kind":2048,"name":"getBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#getbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":914,"kind":2048,"name":"getPaymentMethodsForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#getpaymentmethodsforbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":915,"kind":2048,"name":"getPriceBooksForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#getpricebooksforbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":916,"kind":2048,"name":"getShippingMethodsForShipment","url":"classes/shopperbaskets.shopperbaskets-3.html#getshippingmethodsforshipment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":917,"kind":2048,"name":"getTaxesFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#gettaxesfrombasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":918,"kind":2048,"name":"mergeBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#mergebasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":919,"kind":2048,"name":"removeCouponFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#removecouponfrombasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":920,"kind":2048,"name":"removeGiftCertificateItemFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#removegiftcertificateitemfrombasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":921,"kind":2048,"name":"removeItemFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#removeitemfrombasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":922,"kind":2048,"name":"removePaymentInstrumentFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#removepaymentinstrumentfrombasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":923,"kind":2048,"name":"removePriceAdjustmentFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#removepriceadjustmentfrombasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":924,"kind":2048,"name":"removeShipmentFromBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#removeshipmentfrombasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":925,"kind":2048,"name":"transferBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#transferbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":926,"kind":2048,"name":"updateAsAgentBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#updateasagentbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":927,"kind":2048,"name":"updateAsStorefrontBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#updateasstorefrontbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":928,"kind":2048,"name":"updateBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#updatebasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":929,"kind":2048,"name":"updateBillingAddressForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#updatebillingaddressforbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":930,"kind":2048,"name":"updateCustomerForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#updatecustomerforbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":931,"kind":2048,"name":"updateGiftCertificateItemInBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#updategiftcertificateiteminbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":932,"kind":2048,"name":"updateItemInBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#updateiteminbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":933,"kind":2048,"name":"updateItemsInBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#updateitemsinbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":934,"kind":2048,"name":"updatePaymentInstrumentInBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#updatepaymentinstrumentinbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":935,"kind":2048,"name":"updatePriceAdjustmentInBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#updatepriceadjustmentinbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":936,"kind":2048,"name":"updateShipmentForBasket","url":"classes/shopperbaskets.shopperbaskets-3.html#updateshipmentforbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":937,"kind":2048,"name":"updateShippingAddressForShipment","url":"classes/shopperbaskets.shopperbaskets-3.html#updateshippingaddressforshipment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":938,"kind":2048,"name":"updateShippingMethodForShipment","url":"classes/shopperbaskets.shopperbaskets-3.html#updateshippingmethodforshipment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBaskets.ShopperBaskets"},{"id":939,"kind":4194304,"name":"CreateBasketTaxModeEnum","url":"modules/shopperbaskets.html#createbaskettaxmodeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":940,"kind":4194304,"name":"MergeBasketProductItemMergeModeEnum","url":"modules/shopperbaskets.html#mergebasketproductitemmergemodeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":941,"kind":4194304,"name":"addCouponToBasketQueryParameters","url":"modules/shopperbaskets.html#addcoupontobasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":942,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#addcoupontobasketqueryparameters-2.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.addCouponToBasketQueryParameters"},{"id":943,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#addcoupontobasketqueryparameters-2.__type-1.siteid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addCouponToBasketQueryParameters.__type"},{"id":944,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#addcoupontobasketqueryparameters-2.__type-1.locale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addCouponToBasketQueryParameters.__type"},{"id":945,"kind":4194304,"name":"addCouponToBasketPathParameters","url":"modules/shopperbaskets.html#addcoupontobasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":946,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#addcoupontobasketpathparameters-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.addCouponToBasketPathParameters"},{"id":947,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#addcoupontobasketpathparameters-2.__type.organizationid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addCouponToBasketPathParameters.__type"},{"id":948,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#addcoupontobasketpathparameters-2.__type.basketid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addCouponToBasketPathParameters.__type"},{"id":949,"kind":4194304,"name":"addGiftCertificateItemToBasketQueryParameters","url":"modules/shopperbaskets.html#addgiftcertificateitemtobasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":950,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#addgiftcertificateitemtobasketqueryparameters-2.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.addGiftCertificateItemToBasketQueryParameters"},{"id":951,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#addgiftcertificateitemtobasketqueryparameters-2.__type-3.siteid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addGiftCertificateItemToBasketQueryParameters.__type"},{"id":952,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#addgiftcertificateitemtobasketqueryparameters-2.__type-3.locale-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addGiftCertificateItemToBasketQueryParameters.__type"},{"id":953,"kind":4194304,"name":"addGiftCertificateItemToBasketPathParameters","url":"modules/shopperbaskets.html#addgiftcertificateitemtobasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":954,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#addgiftcertificateitemtobasketpathparameters-2.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.addGiftCertificateItemToBasketPathParameters"},{"id":955,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#addgiftcertificateitemtobasketpathparameters-2.__type-2.organizationid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addGiftCertificateItemToBasketPathParameters.__type"},{"id":956,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#addgiftcertificateitemtobasketpathparameters-2.__type-2.basketid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addGiftCertificateItemToBasketPathParameters.__type"},{"id":957,"kind":4194304,"name":"addItemToBasketQueryParameters","url":"modules/shopperbaskets.html#additemtobasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":958,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#additemtobasketqueryparameters-2.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.addItemToBasketQueryParameters"},{"id":959,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#additemtobasketqueryparameters-2.__type-5.siteid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addItemToBasketQueryParameters.__type"},{"id":960,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#additemtobasketqueryparameters-2.__type-5.locale-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addItemToBasketQueryParameters.__type"},{"id":961,"kind":4194304,"name":"addItemToBasketPathParameters","url":"modules/shopperbaskets.html#additemtobasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":962,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#additemtobasketpathparameters-2.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.addItemToBasketPathParameters"},{"id":963,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#additemtobasketpathparameters-2.__type-4.organizationid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addItemToBasketPathParameters.__type"},{"id":964,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#additemtobasketpathparameters-2.__type-4.basketid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addItemToBasketPathParameters.__type"},{"id":965,"kind":4194304,"name":"addPaymentInstrumentToBasketQueryParameters","url":"modules/shopperbaskets.html#addpaymentinstrumenttobasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":966,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#addpaymentinstrumenttobasketqueryparameters-2.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.addPaymentInstrumentToBasketQueryParameters"},{"id":967,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#addpaymentinstrumenttobasketqueryparameters-2.__type-7.siteid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addPaymentInstrumentToBasketQueryParameters.__type"},{"id":968,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#addpaymentinstrumenttobasketqueryparameters-2.__type-7.locale-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addPaymentInstrumentToBasketQueryParameters.__type"},{"id":969,"kind":4194304,"name":"addPaymentInstrumentToBasketPathParameters","url":"modules/shopperbaskets.html#addpaymentinstrumenttobasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":970,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#addpaymentinstrumenttobasketpathparameters-2.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.addPaymentInstrumentToBasketPathParameters"},{"id":971,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#addpaymentinstrumenttobasketpathparameters-2.__type-6.organizationid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addPaymentInstrumentToBasketPathParameters.__type"},{"id":972,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#addpaymentinstrumenttobasketpathparameters-2.__type-6.basketid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addPaymentInstrumentToBasketPathParameters.__type"},{"id":973,"kind":4194304,"name":"addPriceAdjustmentToBasketQueryParameters","url":"modules/shopperbaskets.html#addpriceadjustmenttobasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":974,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#addpriceadjustmenttobasketqueryparameters-2.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.addPriceAdjustmentToBasketQueryParameters"},{"id":975,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#addpriceadjustmenttobasketqueryparameters-2.__type-9.siteid-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addPriceAdjustmentToBasketQueryParameters.__type"},{"id":976,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#addpriceadjustmenttobasketqueryparameters-2.__type-9.locale-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addPriceAdjustmentToBasketQueryParameters.__type"},{"id":977,"kind":4194304,"name":"addPriceAdjustmentToBasketPathParameters","url":"modules/shopperbaskets.html#addpriceadjustmenttobasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":978,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#addpriceadjustmenttobasketpathparameters-2.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.addPriceAdjustmentToBasketPathParameters"},{"id":979,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#addpriceadjustmenttobasketpathparameters-2.__type-8.organizationid-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addPriceAdjustmentToBasketPathParameters.__type"},{"id":980,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#addpriceadjustmenttobasketpathparameters-2.__type-8.basketid-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addPriceAdjustmentToBasketPathParameters.__type"},{"id":981,"kind":4194304,"name":"addPriceBooksToBasketQueryParameters","url":"modules/shopperbaskets.html#addpricebookstobasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":982,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#addpricebookstobasketqueryparameters-2.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.addPriceBooksToBasketQueryParameters"},{"id":983,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#addpricebookstobasketqueryparameters-2.__type-11.siteid-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addPriceBooksToBasketQueryParameters.__type"},{"id":984,"kind":4194304,"name":"addPriceBooksToBasketPathParameters","url":"modules/shopperbaskets.html#addpricebookstobasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":985,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#addpricebookstobasketpathparameters-2.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.addPriceBooksToBasketPathParameters"},{"id":986,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#addpricebookstobasketpathparameters-2.__type-10.organizationid-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addPriceBooksToBasketPathParameters.__type"},{"id":987,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#addpricebookstobasketpathparameters-2.__type-10.basketid-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addPriceBooksToBasketPathParameters.__type"},{"id":988,"kind":4194304,"name":"addTaxesForBasketQueryParameters","url":"modules/shopperbaskets.html#addtaxesforbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":989,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#addtaxesforbasketqueryparameters-2.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.addTaxesForBasketQueryParameters"},{"id":990,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#addtaxesforbasketqueryparameters-2.__type-15.siteid-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addTaxesForBasketQueryParameters.__type"},{"id":991,"kind":4194304,"name":"addTaxesForBasketPathParameters","url":"modules/shopperbaskets.html#addtaxesforbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":992,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#addtaxesforbasketpathparameters-2.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.addTaxesForBasketPathParameters"},{"id":993,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#addtaxesforbasketpathparameters-2.__type-14.organizationid-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addTaxesForBasketPathParameters.__type"},{"id":994,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#addtaxesforbasketpathparameters-2.__type-14.basketid-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addTaxesForBasketPathParameters.__type"},{"id":995,"kind":4194304,"name":"addTaxesForBasketItemQueryParameters","url":"modules/shopperbaskets.html#addtaxesforbasketitemqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":996,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#addtaxesforbasketitemqueryparameters-2.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.addTaxesForBasketItemQueryParameters"},{"id":997,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#addtaxesforbasketitemqueryparameters-2.__type-13.siteid-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addTaxesForBasketItemQueryParameters.__type"},{"id":998,"kind":4194304,"name":"addTaxesForBasketItemPathParameters","url":"modules/shopperbaskets.html#addtaxesforbasketitempathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":999,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#addtaxesforbasketitempathparameters-2.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.addTaxesForBasketItemPathParameters"},{"id":1000,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#addtaxesforbasketitempathparameters-2.__type-12.organizationid-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addTaxesForBasketItemPathParameters.__type"},{"id":1001,"kind":32,"name":"itemId","url":"modules/shopperbaskets.html#addtaxesforbasketitempathparameters-2.__type-12.itemid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addTaxesForBasketItemPathParameters.__type"},{"id":1002,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#addtaxesforbasketitempathparameters-2.__type-12.basketid-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.addTaxesForBasketItemPathParameters.__type"},{"id":1003,"kind":4194304,"name":"createBasketQueryParameters","url":"modules/shopperbaskets.html#createbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1004,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#createbasketqueryparameters-2.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.createBasketQueryParameters"},{"id":1005,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#createbasketqueryparameters-2.__type-17.siteid-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.createBasketQueryParameters.__type"},{"id":1006,"kind":32,"name":"taxMode","url":"modules/shopperbaskets.html#createbasketqueryparameters-2.__type-17.taxmode","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.createBasketQueryParameters.__type"},{"id":1007,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#createbasketqueryparameters-2.__type-17.locale-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.createBasketQueryParameters.__type"},{"id":1008,"kind":4194304,"name":"createBasketPathParameters","url":"modules/shopperbaskets.html#createbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1009,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#createbasketpathparameters-2.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.createBasketPathParameters"},{"id":1010,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#createbasketpathparameters-2.__type-16.organizationid-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.createBasketPathParameters.__type"},{"id":1011,"kind":4194304,"name":"createShipmentForBasketQueryParameters","url":"modules/shopperbaskets.html#createshipmentforbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1012,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#createshipmentforbasketqueryparameters-2.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.createShipmentForBasketQueryParameters"},{"id":1013,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#createshipmentforbasketqueryparameters-2.__type-19.siteid-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.createShipmentForBasketQueryParameters.__type"},{"id":1014,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#createshipmentforbasketqueryparameters-2.__type-19.locale-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.createShipmentForBasketQueryParameters.__type"},{"id":1015,"kind":4194304,"name":"createShipmentForBasketPathParameters","url":"modules/shopperbaskets.html#createshipmentforbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1016,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#createshipmentforbasketpathparameters-2.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.createShipmentForBasketPathParameters"},{"id":1017,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#createshipmentforbasketpathparameters-2.__type-18.organizationid-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.createShipmentForBasketPathParameters.__type"},{"id":1018,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#createshipmentforbasketpathparameters-2.__type-18.basketid-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.createShipmentForBasketPathParameters.__type"},{"id":1019,"kind":4194304,"name":"deleteBasketQueryParameters","url":"modules/shopperbaskets.html#deletebasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1020,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#deletebasketqueryparameters-2.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.deleteBasketQueryParameters"},{"id":1021,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#deletebasketqueryparameters-2.__type-21.siteid-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.deleteBasketQueryParameters.__type"},{"id":1022,"kind":4194304,"name":"deleteBasketPathParameters","url":"modules/shopperbaskets.html#deletebasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1023,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#deletebasketpathparameters-2.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.deleteBasketPathParameters"},{"id":1024,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#deletebasketpathparameters-2.__type-20.organizationid-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.deleteBasketPathParameters.__type"},{"id":1025,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#deletebasketpathparameters-2.__type-20.basketid-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.deleteBasketPathParameters.__type"},{"id":1026,"kind":4194304,"name":"getBasketQueryParameters","url":"modules/shopperbaskets.html#getbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1027,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#getbasketqueryparameters-2.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.getBasketQueryParameters"},{"id":1028,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#getbasketqueryparameters-2.__type-23.siteid-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getBasketQueryParameters.__type"},{"id":1029,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#getbasketqueryparameters-2.__type-23.locale-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getBasketQueryParameters.__type"},{"id":1030,"kind":4194304,"name":"getBasketPathParameters","url":"modules/shopperbaskets.html#getbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1031,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#getbasketpathparameters-2.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.getBasketPathParameters"},{"id":1032,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#getbasketpathparameters-2.__type-22.organizationid-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getBasketPathParameters.__type"},{"id":1033,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#getbasketpathparameters-2.__type-22.basketid-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getBasketPathParameters.__type"},{"id":1034,"kind":4194304,"name":"getPaymentMethodsForBasketQueryParameters","url":"modules/shopperbaskets.html#getpaymentmethodsforbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1035,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#getpaymentmethodsforbasketqueryparameters-2.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.getPaymentMethodsForBasketQueryParameters"},{"id":1036,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#getpaymentmethodsforbasketqueryparameters-2.__type-25.siteid-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getPaymentMethodsForBasketQueryParameters.__type"},{"id":1037,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#getpaymentmethodsforbasketqueryparameters-2.__type-25.locale-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getPaymentMethodsForBasketQueryParameters.__type"},{"id":1038,"kind":4194304,"name":"getPaymentMethodsForBasketPathParameters","url":"modules/shopperbaskets.html#getpaymentmethodsforbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1039,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#getpaymentmethodsforbasketpathparameters-2.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.getPaymentMethodsForBasketPathParameters"},{"id":1040,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#getpaymentmethodsforbasketpathparameters-2.__type-24.organizationid-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getPaymentMethodsForBasketPathParameters.__type"},{"id":1041,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#getpaymentmethodsforbasketpathparameters-2.__type-24.basketid-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getPaymentMethodsForBasketPathParameters.__type"},{"id":1042,"kind":4194304,"name":"getPriceBooksForBasketQueryParameters","url":"modules/shopperbaskets.html#getpricebooksforbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1043,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#getpricebooksforbasketqueryparameters-2.__type-27","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.getPriceBooksForBasketQueryParameters"},{"id":1044,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#getpricebooksforbasketqueryparameters-2.__type-27.siteid-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getPriceBooksForBasketQueryParameters.__type"},{"id":1045,"kind":4194304,"name":"getPriceBooksForBasketPathParameters","url":"modules/shopperbaskets.html#getpricebooksforbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1046,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#getpricebooksforbasketpathparameters-2.__type-26","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.getPriceBooksForBasketPathParameters"},{"id":1047,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#getpricebooksforbasketpathparameters-2.__type-26.organizationid-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getPriceBooksForBasketPathParameters.__type"},{"id":1048,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#getpricebooksforbasketpathparameters-2.__type-26.basketid-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getPriceBooksForBasketPathParameters.__type"},{"id":1049,"kind":4194304,"name":"getShippingMethodsForShipmentQueryParameters","url":"modules/shopperbaskets.html#getshippingmethodsforshipmentqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1050,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#getshippingmethodsforshipmentqueryparameters-2.__type-29","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.getShippingMethodsForShipmentQueryParameters"},{"id":1051,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#getshippingmethodsforshipmentqueryparameters-2.__type-29.siteid-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getShippingMethodsForShipmentQueryParameters.__type"},{"id":1052,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#getshippingmethodsforshipmentqueryparameters-2.__type-29.locale-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getShippingMethodsForShipmentQueryParameters.__type"},{"id":1053,"kind":4194304,"name":"getShippingMethodsForShipmentPathParameters","url":"modules/shopperbaskets.html#getshippingmethodsforshipmentpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1054,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#getshippingmethodsforshipmentpathparameters-2.__type-28","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.getShippingMethodsForShipmentPathParameters"},{"id":1055,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#getshippingmethodsforshipmentpathparameters-2.__type-28.organizationid-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getShippingMethodsForShipmentPathParameters.__type"},{"id":1056,"kind":32,"name":"shipmentId","url":"modules/shopperbaskets.html#getshippingmethodsforshipmentpathparameters-2.__type-28.shipmentid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getShippingMethodsForShipmentPathParameters.__type"},{"id":1057,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#getshippingmethodsforshipmentpathparameters-2.__type-28.basketid-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getShippingMethodsForShipmentPathParameters.__type"},{"id":1058,"kind":4194304,"name":"getTaxesFromBasketQueryParameters","url":"modules/shopperbaskets.html#gettaxesfrombasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1059,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#gettaxesfrombasketqueryparameters-2.__type-31","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.getTaxesFromBasketQueryParameters"},{"id":1060,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#gettaxesfrombasketqueryparameters-2.__type-31.siteid-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getTaxesFromBasketQueryParameters.__type"},{"id":1061,"kind":4194304,"name":"getTaxesFromBasketPathParameters","url":"modules/shopperbaskets.html#gettaxesfrombasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1062,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#gettaxesfrombasketpathparameters-2.__type-30","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.getTaxesFromBasketPathParameters"},{"id":1063,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#gettaxesfrombasketpathparameters-2.__type-30.organizationid-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getTaxesFromBasketPathParameters.__type"},{"id":1064,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#gettaxesfrombasketpathparameters-2.__type-30.basketid-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.getTaxesFromBasketPathParameters.__type"},{"id":1065,"kind":4194304,"name":"mergeBasketQueryParameters","url":"modules/shopperbaskets.html#mergebasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1066,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#mergebasketqueryparameters-2.__type-33","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.mergeBasketQueryParameters"},{"id":1067,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#mergebasketqueryparameters-2.__type-33.siteid-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.mergeBasketQueryParameters.__type"},{"id":1068,"kind":32,"name":"createDestinationBasket","url":"modules/shopperbaskets.html#mergebasketqueryparameters-2.__type-33.createdestinationbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.mergeBasketQueryParameters.__type"},{"id":1069,"kind":32,"name":"productItemMergeMode","url":"modules/shopperbaskets.html#mergebasketqueryparameters-2.__type-33.productitemmergemode","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.mergeBasketQueryParameters.__type"},{"id":1070,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#mergebasketqueryparameters-2.__type-33.locale-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.mergeBasketQueryParameters.__type"},{"id":1071,"kind":4194304,"name":"mergeBasketPathParameters","url":"modules/shopperbaskets.html#mergebasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1072,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#mergebasketpathparameters-2.__type-32","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.mergeBasketPathParameters"},{"id":1073,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#mergebasketpathparameters-2.__type-32.organizationid-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.mergeBasketPathParameters.__type"},{"id":1074,"kind":4194304,"name":"removeCouponFromBasketQueryParameters","url":"modules/shopperbaskets.html#removecouponfrombasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1075,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#removecouponfrombasketqueryparameters-2.__type-35","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.removeCouponFromBasketQueryParameters"},{"id":1076,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#removecouponfrombasketqueryparameters-2.__type-35.siteid-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeCouponFromBasketQueryParameters.__type"},{"id":1077,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#removecouponfrombasketqueryparameters-2.__type-35.locale-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeCouponFromBasketQueryParameters.__type"},{"id":1078,"kind":4194304,"name":"removeCouponFromBasketPathParameters","url":"modules/shopperbaskets.html#removecouponfrombasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1079,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#removecouponfrombasketpathparameters-2.__type-34","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.removeCouponFromBasketPathParameters"},{"id":1080,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#removecouponfrombasketpathparameters-2.__type-34.organizationid-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeCouponFromBasketPathParameters.__type"},{"id":1081,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#removecouponfrombasketpathparameters-2.__type-34.basketid-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeCouponFromBasketPathParameters.__type"},{"id":1082,"kind":32,"name":"couponItemId","url":"modules/shopperbaskets.html#removecouponfrombasketpathparameters-2.__type-34.couponitemid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeCouponFromBasketPathParameters.__type"},{"id":1083,"kind":4194304,"name":"removeGiftCertificateItemFromBasketQueryParameters","url":"modules/shopperbaskets.html#removegiftcertificateitemfrombasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1084,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#removegiftcertificateitemfrombasketqueryparameters-2.__type-37","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.removeGiftCertificateItemFromBasketQueryParameters"},{"id":1085,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#removegiftcertificateitemfrombasketqueryparameters-2.__type-37.siteid-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeGiftCertificateItemFromBasketQueryParameters.__type"},{"id":1086,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#removegiftcertificateitemfrombasketqueryparameters-2.__type-37.locale-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeGiftCertificateItemFromBasketQueryParameters.__type"},{"id":1087,"kind":4194304,"name":"removeGiftCertificateItemFromBasketPathParameters","url":"modules/shopperbaskets.html#removegiftcertificateitemfrombasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1088,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#removegiftcertificateitemfrombasketpathparameters-2.__type-36","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.removeGiftCertificateItemFromBasketPathParameters"},{"id":1089,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#removegiftcertificateitemfrombasketpathparameters-2.__type-36.organizationid-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeGiftCertificateItemFromBasketPathParameters.__type"},{"id":1090,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#removegiftcertificateitemfrombasketpathparameters-2.__type-36.basketid-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeGiftCertificateItemFromBasketPathParameters.__type"},{"id":1091,"kind":32,"name":"giftCertificateItemId","url":"modules/shopperbaskets.html#removegiftcertificateitemfrombasketpathparameters-2.__type-36.giftcertificateitemid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeGiftCertificateItemFromBasketPathParameters.__type"},{"id":1092,"kind":4194304,"name":"removeItemFromBasketQueryParameters","url":"modules/shopperbaskets.html#removeitemfrombasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1093,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#removeitemfrombasketqueryparameters-2.__type-39","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.removeItemFromBasketQueryParameters"},{"id":1094,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#removeitemfrombasketqueryparameters-2.__type-39.siteid-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeItemFromBasketQueryParameters.__type"},{"id":1095,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#removeitemfrombasketqueryparameters-2.__type-39.locale-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeItemFromBasketQueryParameters.__type"},{"id":1096,"kind":4194304,"name":"removeItemFromBasketPathParameters","url":"modules/shopperbaskets.html#removeitemfrombasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1097,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#removeitemfrombasketpathparameters-2.__type-38","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.removeItemFromBasketPathParameters"},{"id":1098,"kind":32,"name":"itemId","url":"modules/shopperbaskets.html#removeitemfrombasketpathparameters-2.__type-38.itemid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeItemFromBasketPathParameters.__type"},{"id":1099,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#removeitemfrombasketpathparameters-2.__type-38.organizationid-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeItemFromBasketPathParameters.__type"},{"id":1100,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#removeitemfrombasketpathparameters-2.__type-38.basketid-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeItemFromBasketPathParameters.__type"},{"id":1101,"kind":4194304,"name":"removePaymentInstrumentFromBasketQueryParameters","url":"modules/shopperbaskets.html#removepaymentinstrumentfrombasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1102,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#removepaymentinstrumentfrombasketqueryparameters-2.__type-41","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.removePaymentInstrumentFromBasketQueryParameters"},{"id":1103,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#removepaymentinstrumentfrombasketqueryparameters-2.__type-41.siteid-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removePaymentInstrumentFromBasketQueryParameters.__type"},{"id":1104,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#removepaymentinstrumentfrombasketqueryparameters-2.__type-41.locale-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removePaymentInstrumentFromBasketQueryParameters.__type"},{"id":1105,"kind":4194304,"name":"removePaymentInstrumentFromBasketPathParameters","url":"modules/shopperbaskets.html#removepaymentinstrumentfrombasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1106,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#removepaymentinstrumentfrombasketpathparameters-2.__type-40","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.removePaymentInstrumentFromBasketPathParameters"},{"id":1107,"kind":32,"name":"paymentInstrumentId","url":"modules/shopperbaskets.html#removepaymentinstrumentfrombasketpathparameters-2.__type-40.paymentinstrumentid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removePaymentInstrumentFromBasketPathParameters.__type"},{"id":1108,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#removepaymentinstrumentfrombasketpathparameters-2.__type-40.organizationid-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removePaymentInstrumentFromBasketPathParameters.__type"},{"id":1109,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#removepaymentinstrumentfrombasketpathparameters-2.__type-40.basketid-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removePaymentInstrumentFromBasketPathParameters.__type"},{"id":1110,"kind":4194304,"name":"removePriceAdjustmentFromBasketQueryParameters","url":"modules/shopperbaskets.html#removepriceadjustmentfrombasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1111,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#removepriceadjustmentfrombasketqueryparameters-2.__type-43","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.removePriceAdjustmentFromBasketQueryParameters"},{"id":1112,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#removepriceadjustmentfrombasketqueryparameters-2.__type-43.siteid-21","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removePriceAdjustmentFromBasketQueryParameters.__type"},{"id":1113,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#removepriceadjustmentfrombasketqueryparameters-2.__type-43.locale-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removePriceAdjustmentFromBasketQueryParameters.__type"},{"id":1114,"kind":4194304,"name":"removePriceAdjustmentFromBasketPathParameters","url":"modules/shopperbaskets.html#removepriceadjustmentfrombasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1115,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#removepriceadjustmentfrombasketpathparameters-2.__type-42","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.removePriceAdjustmentFromBasketPathParameters"},{"id":1116,"kind":32,"name":"priceAdjustmentId","url":"modules/shopperbaskets.html#removepriceadjustmentfrombasketpathparameters-2.__type-42.priceadjustmentid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removePriceAdjustmentFromBasketPathParameters.__type"},{"id":1117,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#removepriceadjustmentfrombasketpathparameters-2.__type-42.organizationid-21","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removePriceAdjustmentFromBasketPathParameters.__type"},{"id":1118,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#removepriceadjustmentfrombasketpathparameters-2.__type-42.basketid-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removePriceAdjustmentFromBasketPathParameters.__type"},{"id":1119,"kind":4194304,"name":"removeShipmentFromBasketQueryParameters","url":"modules/shopperbaskets.html#removeshipmentfrombasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1120,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#removeshipmentfrombasketqueryparameters-2.__type-45","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.removeShipmentFromBasketQueryParameters"},{"id":1121,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#removeshipmentfrombasketqueryparameters-2.__type-45.siteid-22","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeShipmentFromBasketQueryParameters.__type"},{"id":1122,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#removeshipmentfrombasketqueryparameters-2.__type-45.locale-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeShipmentFromBasketQueryParameters.__type"},{"id":1123,"kind":4194304,"name":"removeShipmentFromBasketPathParameters","url":"modules/shopperbaskets.html#removeshipmentfrombasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1124,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#removeshipmentfrombasketpathparameters-2.__type-44","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.removeShipmentFromBasketPathParameters"},{"id":1125,"kind":32,"name":"shipmentId","url":"modules/shopperbaskets.html#removeshipmentfrombasketpathparameters-2.__type-44.shipmentid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeShipmentFromBasketPathParameters.__type"},{"id":1126,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#removeshipmentfrombasketpathparameters-2.__type-44.organizationid-22","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeShipmentFromBasketPathParameters.__type"},{"id":1127,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#removeshipmentfrombasketpathparameters-2.__type-44.basketid-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.removeShipmentFromBasketPathParameters.__type"},{"id":1128,"kind":4194304,"name":"transferBasketQueryParameters","url":"modules/shopperbaskets.html#transferbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1129,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#transferbasketqueryparameters-2.__type-47","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.transferBasketQueryParameters"},{"id":1130,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#transferbasketqueryparameters-2.__type-47.siteid-23","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.transferBasketQueryParameters.__type"},{"id":1131,"kind":32,"name":"overrideExisting","url":"modules/shopperbaskets.html#transferbasketqueryparameters-2.__type-47.overrideexisting","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.transferBasketQueryParameters.__type"},{"id":1132,"kind":32,"name":"merge","url":"modules/shopperbaskets.html#transferbasketqueryparameters-2.__type-47.merge","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.transferBasketQueryParameters.__type"},{"id":1133,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#transferbasketqueryparameters-2.__type-47.locale-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.transferBasketQueryParameters.__type"},{"id":1134,"kind":4194304,"name":"transferBasketPathParameters","url":"modules/shopperbaskets.html#transferbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1135,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#transferbasketpathparameters-2.__type-46","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.transferBasketPathParameters"},{"id":1136,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#transferbasketpathparameters-2.__type-46.organizationid-23","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.transferBasketPathParameters.__type"},{"id":1137,"kind":4194304,"name":"updateAsAgentBasketQueryParameters","url":"modules/shopperbaskets.html#updateasagentbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1138,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updateasagentbasketqueryparameters-2.__type-49","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateAsAgentBasketQueryParameters"},{"id":1139,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#updateasagentbasketqueryparameters-2.__type-49.siteid-24","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateAsAgentBasketQueryParameters.__type"},{"id":1140,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#updateasagentbasketqueryparameters-2.__type-49.locale-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateAsAgentBasketQueryParameters.__type"},{"id":1141,"kind":4194304,"name":"updateAsAgentBasketPathParameters","url":"modules/shopperbaskets.html#updateasagentbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1142,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updateasagentbasketpathparameters-2.__type-48","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateAsAgentBasketPathParameters"},{"id":1143,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#updateasagentbasketpathparameters-2.__type-48.organizationid-24","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateAsAgentBasketPathParameters.__type"},{"id":1144,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#updateasagentbasketpathparameters-2.__type-48.basketid-21","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateAsAgentBasketPathParameters.__type"},{"id":1145,"kind":4194304,"name":"updateAsStorefrontBasketQueryParameters","url":"modules/shopperbaskets.html#updateasstorefrontbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1146,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updateasstorefrontbasketqueryparameters-2.__type-51","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateAsStorefrontBasketQueryParameters"},{"id":1147,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#updateasstorefrontbasketqueryparameters-2.__type-51.siteid-25","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateAsStorefrontBasketQueryParameters.__type"},{"id":1148,"kind":32,"name":"exchange","url":"modules/shopperbaskets.html#updateasstorefrontbasketqueryparameters-2.__type-51.exchange","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateAsStorefrontBasketQueryParameters.__type"},{"id":1149,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#updateasstorefrontbasketqueryparameters-2.__type-51.locale-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateAsStorefrontBasketQueryParameters.__type"},{"id":1150,"kind":4194304,"name":"updateAsStorefrontBasketPathParameters","url":"modules/shopperbaskets.html#updateasstorefrontbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1151,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updateasstorefrontbasketpathparameters-2.__type-50","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateAsStorefrontBasketPathParameters"},{"id":1152,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#updateasstorefrontbasketpathparameters-2.__type-50.organizationid-25","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateAsStorefrontBasketPathParameters.__type"},{"id":1153,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#updateasstorefrontbasketpathparameters-2.__type-50.basketid-22","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateAsStorefrontBasketPathParameters.__type"},{"id":1154,"kind":4194304,"name":"updateBasketQueryParameters","url":"modules/shopperbaskets.html#updatebasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1155,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updatebasketqueryparameters-2.__type-53","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateBasketQueryParameters"},{"id":1156,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#updatebasketqueryparameters-2.__type-53.siteid-26","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateBasketQueryParameters.__type"},{"id":1157,"kind":32,"name":"removeExternalTax","url":"modules/shopperbaskets.html#updatebasketqueryparameters-2.__type-53.removeexternaltax","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateBasketQueryParameters.__type"},{"id":1158,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#updatebasketqueryparameters-2.__type-53.locale-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateBasketQueryParameters.__type"},{"id":1159,"kind":4194304,"name":"updateBasketPathParameters","url":"modules/shopperbaskets.html#updatebasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1160,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updatebasketpathparameters-2.__type-52","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateBasketPathParameters"},{"id":1161,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#updatebasketpathparameters-2.__type-52.organizationid-26","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateBasketPathParameters.__type"},{"id":1162,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#updatebasketpathparameters-2.__type-52.basketid-23","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateBasketPathParameters.__type"},{"id":1163,"kind":4194304,"name":"updateBillingAddressForBasketQueryParameters","url":"modules/shopperbaskets.html#updatebillingaddressforbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1164,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updatebillingaddressforbasketqueryparameters-2.__type-55","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateBillingAddressForBasketQueryParameters"},{"id":1165,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#updatebillingaddressforbasketqueryparameters-2.__type-55.siteid-27","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateBillingAddressForBasketQueryParameters.__type"},{"id":1166,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#updatebillingaddressforbasketqueryparameters-2.__type-55.locale-21","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateBillingAddressForBasketQueryParameters.__type"},{"id":1167,"kind":32,"name":"useAsShipping","url":"modules/shopperbaskets.html#updatebillingaddressforbasketqueryparameters-2.__type-55.useasshipping","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateBillingAddressForBasketQueryParameters.__type"},{"id":1168,"kind":32,"name":"removeExternalTax","url":"modules/shopperbaskets.html#updatebillingaddressforbasketqueryparameters-2.__type-55.removeexternaltax-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateBillingAddressForBasketQueryParameters.__type"},{"id":1169,"kind":4194304,"name":"updateBillingAddressForBasketPathParameters","url":"modules/shopperbaskets.html#updatebillingaddressforbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1170,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updatebillingaddressforbasketpathparameters-2.__type-54","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateBillingAddressForBasketPathParameters"},{"id":1171,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#updatebillingaddressforbasketpathparameters-2.__type-54.organizationid-27","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateBillingAddressForBasketPathParameters.__type"},{"id":1172,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#updatebillingaddressforbasketpathparameters-2.__type-54.basketid-24","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateBillingAddressForBasketPathParameters.__type"},{"id":1173,"kind":4194304,"name":"updateCustomerForBasketQueryParameters","url":"modules/shopperbaskets.html#updatecustomerforbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1174,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updatecustomerforbasketqueryparameters-2.__type-57","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateCustomerForBasketQueryParameters"},{"id":1175,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#updatecustomerforbasketqueryparameters-2.__type-57.siteid-28","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateCustomerForBasketQueryParameters.__type"},{"id":1176,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#updatecustomerforbasketqueryparameters-2.__type-57.locale-22","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateCustomerForBasketQueryParameters.__type"},{"id":1177,"kind":4194304,"name":"updateCustomerForBasketPathParameters","url":"modules/shopperbaskets.html#updatecustomerforbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1178,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updatecustomerforbasketpathparameters-2.__type-56","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateCustomerForBasketPathParameters"},{"id":1179,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#updatecustomerforbasketpathparameters-2.__type-56.organizationid-28","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateCustomerForBasketPathParameters.__type"},{"id":1180,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#updatecustomerforbasketpathparameters-2.__type-56.basketid-25","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateCustomerForBasketPathParameters.__type"},{"id":1181,"kind":4194304,"name":"updateGiftCertificateItemInBasketQueryParameters","url":"modules/shopperbaskets.html#updategiftcertificateiteminbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1182,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updategiftcertificateiteminbasketqueryparameters-2.__type-59","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateGiftCertificateItemInBasketQueryParameters"},{"id":1183,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#updategiftcertificateiteminbasketqueryparameters-2.__type-59.siteid-29","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateGiftCertificateItemInBasketQueryParameters.__type"},{"id":1184,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#updategiftcertificateiteminbasketqueryparameters-2.__type-59.locale-23","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateGiftCertificateItemInBasketQueryParameters.__type"},{"id":1185,"kind":4194304,"name":"updateGiftCertificateItemInBasketPathParameters","url":"modules/shopperbaskets.html#updategiftcertificateiteminbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1186,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updategiftcertificateiteminbasketpathparameters-2.__type-58","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateGiftCertificateItemInBasketPathParameters"},{"id":1187,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#updategiftcertificateiteminbasketpathparameters-2.__type-58.organizationid-29","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateGiftCertificateItemInBasketPathParameters.__type"},{"id":1188,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#updategiftcertificateiteminbasketpathparameters-2.__type-58.basketid-26","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateGiftCertificateItemInBasketPathParameters.__type"},{"id":1189,"kind":32,"name":"giftCertificateItemId","url":"modules/shopperbaskets.html#updategiftcertificateiteminbasketpathparameters-2.__type-58.giftcertificateitemid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateGiftCertificateItemInBasketPathParameters.__type"},{"id":1190,"kind":4194304,"name":"updateItemInBasketQueryParameters","url":"modules/shopperbaskets.html#updateiteminbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1191,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updateiteminbasketqueryparameters-2.__type-61","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateItemInBasketQueryParameters"},{"id":1192,"kind":32,"name":"removeExternalTax","url":"modules/shopperbaskets.html#updateiteminbasketqueryparameters-2.__type-61.removeexternaltax-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateItemInBasketQueryParameters.__type"},{"id":1193,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#updateiteminbasketqueryparameters-2.__type-61.siteid-30","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateItemInBasketQueryParameters.__type"},{"id":1194,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#updateiteminbasketqueryparameters-2.__type-61.locale-24","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateItemInBasketQueryParameters.__type"},{"id":1195,"kind":4194304,"name":"updateItemInBasketPathParameters","url":"modules/shopperbaskets.html#updateiteminbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1196,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updateiteminbasketpathparameters-2.__type-60","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateItemInBasketPathParameters"},{"id":1197,"kind":32,"name":"itemId","url":"modules/shopperbaskets.html#updateiteminbasketpathparameters-2.__type-60.itemid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateItemInBasketPathParameters.__type"},{"id":1198,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#updateiteminbasketpathparameters-2.__type-60.organizationid-30","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateItemInBasketPathParameters.__type"},{"id":1199,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#updateiteminbasketpathparameters-2.__type-60.basketid-27","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateItemInBasketPathParameters.__type"},{"id":1200,"kind":4194304,"name":"updateItemsInBasketQueryParameters","url":"modules/shopperbaskets.html#updateitemsinbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1201,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updateitemsinbasketqueryparameters-2.__type-63","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateItemsInBasketQueryParameters"},{"id":1202,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#updateitemsinbasketqueryparameters-2.__type-63.siteid-31","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateItemsInBasketQueryParameters.__type"},{"id":1203,"kind":32,"name":"removeExternalTax","url":"modules/shopperbaskets.html#updateitemsinbasketqueryparameters-2.__type-63.removeexternaltax-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateItemsInBasketQueryParameters.__type"},{"id":1204,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#updateitemsinbasketqueryparameters-2.__type-63.locale-25","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateItemsInBasketQueryParameters.__type"},{"id":1205,"kind":4194304,"name":"updateItemsInBasketPathParameters","url":"modules/shopperbaskets.html#updateitemsinbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1206,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updateitemsinbasketpathparameters-2.__type-62","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateItemsInBasketPathParameters"},{"id":1207,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#updateitemsinbasketpathparameters-2.__type-62.organizationid-31","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateItemsInBasketPathParameters.__type"},{"id":1208,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#updateitemsinbasketpathparameters-2.__type-62.basketid-28","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateItemsInBasketPathParameters.__type"},{"id":1209,"kind":4194304,"name":"updatePaymentInstrumentInBasketQueryParameters","url":"modules/shopperbaskets.html#updatepaymentinstrumentinbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1210,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updatepaymentinstrumentinbasketqueryparameters-2.__type-65","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updatePaymentInstrumentInBasketQueryParameters"},{"id":1211,"kind":32,"name":"removeExternalTax","url":"modules/shopperbaskets.html#updatepaymentinstrumentinbasketqueryparameters-2.__type-65.removeexternaltax-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updatePaymentInstrumentInBasketQueryParameters.__type"},{"id":1212,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#updatepaymentinstrumentinbasketqueryparameters-2.__type-65.siteid-32","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updatePaymentInstrumentInBasketQueryParameters.__type"},{"id":1213,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#updatepaymentinstrumentinbasketqueryparameters-2.__type-65.locale-26","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updatePaymentInstrumentInBasketQueryParameters.__type"},{"id":1214,"kind":4194304,"name":"updatePaymentInstrumentInBasketPathParameters","url":"modules/shopperbaskets.html#updatepaymentinstrumentinbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1215,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updatepaymentinstrumentinbasketpathparameters-2.__type-64","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updatePaymentInstrumentInBasketPathParameters"},{"id":1216,"kind":32,"name":"paymentInstrumentId","url":"modules/shopperbaskets.html#updatepaymentinstrumentinbasketpathparameters-2.__type-64.paymentinstrumentid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updatePaymentInstrumentInBasketPathParameters.__type"},{"id":1217,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#updatepaymentinstrumentinbasketpathparameters-2.__type-64.organizationid-32","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updatePaymentInstrumentInBasketPathParameters.__type"},{"id":1218,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#updatepaymentinstrumentinbasketpathparameters-2.__type-64.basketid-29","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updatePaymentInstrumentInBasketPathParameters.__type"},{"id":1219,"kind":4194304,"name":"updatePriceAdjustmentInBasketQueryParameters","url":"modules/shopperbaskets.html#updatepriceadjustmentinbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1220,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updatepriceadjustmentinbasketqueryparameters-2.__type-67","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updatePriceAdjustmentInBasketQueryParameters"},{"id":1221,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#updatepriceadjustmentinbasketqueryparameters-2.__type-67.siteid-33","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updatePriceAdjustmentInBasketQueryParameters.__type"},{"id":1222,"kind":4194304,"name":"updatePriceAdjustmentInBasketPathParameters","url":"modules/shopperbaskets.html#updatepriceadjustmentinbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1223,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updatepriceadjustmentinbasketpathparameters-2.__type-66","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updatePriceAdjustmentInBasketPathParameters"},{"id":1224,"kind":32,"name":"priceAdjustmentId","url":"modules/shopperbaskets.html#updatepriceadjustmentinbasketpathparameters-2.__type-66.priceadjustmentid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updatePriceAdjustmentInBasketPathParameters.__type"},{"id":1225,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#updatepriceadjustmentinbasketpathparameters-2.__type-66.organizationid-33","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updatePriceAdjustmentInBasketPathParameters.__type"},{"id":1226,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#updatepriceadjustmentinbasketpathparameters-2.__type-66.basketid-30","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updatePriceAdjustmentInBasketPathParameters.__type"},{"id":1227,"kind":4194304,"name":"updateShipmentForBasketQueryParameters","url":"modules/shopperbaskets.html#updateshipmentforbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1228,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updateshipmentforbasketqueryparameters-2.__type-69","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateShipmentForBasketQueryParameters"},{"id":1229,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#updateshipmentforbasketqueryparameters-2.__type-69.siteid-34","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateShipmentForBasketQueryParameters.__type"},{"id":1230,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#updateshipmentforbasketqueryparameters-2.__type-69.locale-27","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateShipmentForBasketQueryParameters.__type"},{"id":1231,"kind":4194304,"name":"updateShipmentForBasketPathParameters","url":"modules/shopperbaskets.html#updateshipmentforbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1232,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updateshipmentforbasketpathparameters-2.__type-68","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateShipmentForBasketPathParameters"},{"id":1233,"kind":32,"name":"shipmentId","url":"modules/shopperbaskets.html#updateshipmentforbasketpathparameters-2.__type-68.shipmentid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateShipmentForBasketPathParameters.__type"},{"id":1234,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#updateshipmentforbasketpathparameters-2.__type-68.organizationid-34","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateShipmentForBasketPathParameters.__type"},{"id":1235,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#updateshipmentforbasketpathparameters-2.__type-68.basketid-31","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateShipmentForBasketPathParameters.__type"},{"id":1236,"kind":4194304,"name":"updateShippingAddressForShipmentQueryParameters","url":"modules/shopperbaskets.html#updateshippingaddressforshipmentqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1237,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updateshippingaddressforshipmentqueryparameters-2.__type-71","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateShippingAddressForShipmentQueryParameters"},{"id":1238,"kind":32,"name":"useAsBilling","url":"modules/shopperbaskets.html#updateshippingaddressforshipmentqueryparameters-2.__type-71.useasbilling","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateShippingAddressForShipmentQueryParameters.__type"},{"id":1239,"kind":32,"name":"removeExternalTax","url":"modules/shopperbaskets.html#updateshippingaddressforshipmentqueryparameters-2.__type-71.removeexternaltax-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateShippingAddressForShipmentQueryParameters.__type"},{"id":1240,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#updateshippingaddressforshipmentqueryparameters-2.__type-71.siteid-35","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateShippingAddressForShipmentQueryParameters.__type"},{"id":1241,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#updateshippingaddressforshipmentqueryparameters-2.__type-71.locale-28","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateShippingAddressForShipmentQueryParameters.__type"},{"id":1242,"kind":4194304,"name":"updateShippingAddressForShipmentPathParameters","url":"modules/shopperbaskets.html#updateshippingaddressforshipmentpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1243,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updateshippingaddressforshipmentpathparameters-2.__type-70","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateShippingAddressForShipmentPathParameters"},{"id":1244,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#updateshippingaddressforshipmentpathparameters-2.__type-70.organizationid-35","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateShippingAddressForShipmentPathParameters.__type"},{"id":1245,"kind":32,"name":"shipmentId","url":"modules/shopperbaskets.html#updateshippingaddressforshipmentpathparameters-2.__type-70.shipmentid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateShippingAddressForShipmentPathParameters.__type"},{"id":1246,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#updateshippingaddressforshipmentpathparameters-2.__type-70.basketid-32","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateShippingAddressForShipmentPathParameters.__type"},{"id":1247,"kind":4194304,"name":"updateShippingMethodForShipmentQueryParameters","url":"modules/shopperbaskets.html#updateshippingmethodforshipmentqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1248,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updateshippingmethodforshipmentqueryparameters-2.__type-73","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateShippingMethodForShipmentQueryParameters"},{"id":1249,"kind":32,"name":"siteId","url":"modules/shopperbaskets.html#updateshippingmethodforshipmentqueryparameters-2.__type-73.siteid-36","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateShippingMethodForShipmentQueryParameters.__type"},{"id":1250,"kind":32,"name":"locale","url":"modules/shopperbaskets.html#updateshippingmethodforshipmentqueryparameters-2.__type-73.locale-29","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateShippingMethodForShipmentQueryParameters.__type"},{"id":1251,"kind":4194304,"name":"updateShippingMethodForShipmentPathParameters","url":"modules/shopperbaskets.html#updateshippingmethodforshipmentpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1252,"kind":65536,"name":"__type","url":"modules/shopperbaskets.html#updateshippingmethodforshipmentpathparameters-2.__type-72","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBaskets.updateShippingMethodForShipmentPathParameters"},{"id":1253,"kind":32,"name":"organizationId","url":"modules/shopperbaskets.html#updateshippingmethodforshipmentpathparameters-2.__type-72.organizationid-36","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateShippingMethodForShipmentPathParameters.__type"},{"id":1254,"kind":32,"name":"shipmentId","url":"modules/shopperbaskets.html#updateshippingmethodforshipmentpathparameters-2.__type-72.shipmentid-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateShippingMethodForShipmentPathParameters.__type"},{"id":1255,"kind":32,"name":"basketId","url":"modules/shopperbaskets.html#updateshippingmethodforshipmentpathparameters-2.__type-72.basketid-33","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBaskets.updateShippingMethodForShipmentPathParameters.__type"},{"id":1256,"kind":4194304,"name":"ShopperBasketsPathParameters","url":"modules/shopperbaskets.html#shopperbasketspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1257,"kind":4194304,"name":"ShopperBasketsQueryParameters","url":"modules/shopperbaskets.html#shopperbasketsqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1258,"kind":4194304,"name":"ShopperBasketsParameters","url":"modules/shopperbaskets.html#shopperbasketsparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1259,"kind":16777216,"name":"CreateBasketTaxModeEnum","url":"modules/shopperbaskets.html#createbaskettaxmodeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1260,"kind":16777216,"name":"MergeBasketProductItemMergeModeEnum","url":"modules/shopperbaskets.html#mergebasketproductitemmergemodeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1261,"kind":16777216,"name":"addCouponToBasketQueryParameters","url":"modules/shopperbaskets.html#addcoupontobasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1262,"kind":16777216,"name":"addCouponToBasketPathParameters","url":"modules/shopperbaskets.html#addcoupontobasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1263,"kind":16777216,"name":"addGiftCertificateItemToBasketQueryParameters","url":"modules/shopperbaskets.html#addgiftcertificateitemtobasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1264,"kind":16777216,"name":"addGiftCertificateItemToBasketPathParameters","url":"modules/shopperbaskets.html#addgiftcertificateitemtobasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1265,"kind":16777216,"name":"addItemToBasketQueryParameters","url":"modules/shopperbaskets.html#additemtobasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1266,"kind":16777216,"name":"addItemToBasketPathParameters","url":"modules/shopperbaskets.html#additemtobasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1267,"kind":16777216,"name":"addPaymentInstrumentToBasketQueryParameters","url":"modules/shopperbaskets.html#addpaymentinstrumenttobasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1268,"kind":16777216,"name":"addPaymentInstrumentToBasketPathParameters","url":"modules/shopperbaskets.html#addpaymentinstrumenttobasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1269,"kind":16777216,"name":"addPriceAdjustmentToBasketQueryParameters","url":"modules/shopperbaskets.html#addpriceadjustmenttobasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1270,"kind":16777216,"name":"addPriceAdjustmentToBasketPathParameters","url":"modules/shopperbaskets.html#addpriceadjustmenttobasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1271,"kind":16777216,"name":"addPriceBooksToBasketQueryParameters","url":"modules/shopperbaskets.html#addpricebookstobasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1272,"kind":16777216,"name":"addPriceBooksToBasketPathParameters","url":"modules/shopperbaskets.html#addpricebookstobasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1273,"kind":16777216,"name":"addTaxesForBasketQueryParameters","url":"modules/shopperbaskets.html#addtaxesforbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1274,"kind":16777216,"name":"addTaxesForBasketPathParameters","url":"modules/shopperbaskets.html#addtaxesforbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1275,"kind":16777216,"name":"addTaxesForBasketItemQueryParameters","url":"modules/shopperbaskets.html#addtaxesforbasketitemqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1276,"kind":16777216,"name":"addTaxesForBasketItemPathParameters","url":"modules/shopperbaskets.html#addtaxesforbasketitempathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1277,"kind":16777216,"name":"createBasketQueryParameters","url":"modules/shopperbaskets.html#createbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1278,"kind":16777216,"name":"createBasketPathParameters","url":"modules/shopperbaskets.html#createbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1279,"kind":16777216,"name":"createShipmentForBasketQueryParameters","url":"modules/shopperbaskets.html#createshipmentforbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1280,"kind":16777216,"name":"createShipmentForBasketPathParameters","url":"modules/shopperbaskets.html#createshipmentforbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1281,"kind":16777216,"name":"deleteBasketQueryParameters","url":"modules/shopperbaskets.html#deletebasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1282,"kind":16777216,"name":"deleteBasketPathParameters","url":"modules/shopperbaskets.html#deletebasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1283,"kind":16777216,"name":"getBasketQueryParameters","url":"modules/shopperbaskets.html#getbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1284,"kind":16777216,"name":"getBasketPathParameters","url":"modules/shopperbaskets.html#getbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1285,"kind":16777216,"name":"getPaymentMethodsForBasketQueryParameters","url":"modules/shopperbaskets.html#getpaymentmethodsforbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1286,"kind":16777216,"name":"getPaymentMethodsForBasketPathParameters","url":"modules/shopperbaskets.html#getpaymentmethodsforbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1287,"kind":16777216,"name":"getPriceBooksForBasketQueryParameters","url":"modules/shopperbaskets.html#getpricebooksforbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1288,"kind":16777216,"name":"getPriceBooksForBasketPathParameters","url":"modules/shopperbaskets.html#getpricebooksforbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1289,"kind":16777216,"name":"getShippingMethodsForShipmentQueryParameters","url":"modules/shopperbaskets.html#getshippingmethodsforshipmentqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1290,"kind":16777216,"name":"getShippingMethodsForShipmentPathParameters","url":"modules/shopperbaskets.html#getshippingmethodsforshipmentpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1291,"kind":16777216,"name":"getTaxesFromBasketQueryParameters","url":"modules/shopperbaskets.html#gettaxesfrombasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1292,"kind":16777216,"name":"getTaxesFromBasketPathParameters","url":"modules/shopperbaskets.html#gettaxesfrombasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1293,"kind":16777216,"name":"mergeBasketQueryParameters","url":"modules/shopperbaskets.html#mergebasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1294,"kind":16777216,"name":"mergeBasketPathParameters","url":"modules/shopperbaskets.html#mergebasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1295,"kind":16777216,"name":"removeCouponFromBasketQueryParameters","url":"modules/shopperbaskets.html#removecouponfrombasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1296,"kind":16777216,"name":"removeCouponFromBasketPathParameters","url":"modules/shopperbaskets.html#removecouponfrombasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1297,"kind":16777216,"name":"removeGiftCertificateItemFromBasketQueryParameters","url":"modules/shopperbaskets.html#removegiftcertificateitemfrombasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1298,"kind":16777216,"name":"removeGiftCertificateItemFromBasketPathParameters","url":"modules/shopperbaskets.html#removegiftcertificateitemfrombasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1299,"kind":16777216,"name":"removeItemFromBasketQueryParameters","url":"modules/shopperbaskets.html#removeitemfrombasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1300,"kind":16777216,"name":"removeItemFromBasketPathParameters","url":"modules/shopperbaskets.html#removeitemfrombasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1301,"kind":16777216,"name":"removePaymentInstrumentFromBasketQueryParameters","url":"modules/shopperbaskets.html#removepaymentinstrumentfrombasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1302,"kind":16777216,"name":"removePaymentInstrumentFromBasketPathParameters","url":"modules/shopperbaskets.html#removepaymentinstrumentfrombasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1303,"kind":16777216,"name":"removePriceAdjustmentFromBasketQueryParameters","url":"modules/shopperbaskets.html#removepriceadjustmentfrombasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1304,"kind":16777216,"name":"removePriceAdjustmentFromBasketPathParameters","url":"modules/shopperbaskets.html#removepriceadjustmentfrombasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1305,"kind":16777216,"name":"removeShipmentFromBasketQueryParameters","url":"modules/shopperbaskets.html#removeshipmentfrombasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1306,"kind":16777216,"name":"removeShipmentFromBasketPathParameters","url":"modules/shopperbaskets.html#removeshipmentfrombasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1307,"kind":16777216,"name":"transferBasketQueryParameters","url":"modules/shopperbaskets.html#transferbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1308,"kind":16777216,"name":"transferBasketPathParameters","url":"modules/shopperbaskets.html#transferbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1309,"kind":16777216,"name":"updateAsAgentBasketQueryParameters","url":"modules/shopperbaskets.html#updateasagentbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1310,"kind":16777216,"name":"updateAsAgentBasketPathParameters","url":"modules/shopperbaskets.html#updateasagentbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1311,"kind":16777216,"name":"updateAsStorefrontBasketQueryParameters","url":"modules/shopperbaskets.html#updateasstorefrontbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1312,"kind":16777216,"name":"updateAsStorefrontBasketPathParameters","url":"modules/shopperbaskets.html#updateasstorefrontbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1313,"kind":16777216,"name":"updateBasketQueryParameters","url":"modules/shopperbaskets.html#updatebasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1314,"kind":16777216,"name":"updateBasketPathParameters","url":"modules/shopperbaskets.html#updatebasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1315,"kind":16777216,"name":"updateBillingAddressForBasketQueryParameters","url":"modules/shopperbaskets.html#updatebillingaddressforbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1316,"kind":16777216,"name":"updateBillingAddressForBasketPathParameters","url":"modules/shopperbaskets.html#updatebillingaddressforbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1317,"kind":16777216,"name":"updateCustomerForBasketQueryParameters","url":"modules/shopperbaskets.html#updatecustomerforbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1318,"kind":16777216,"name":"updateCustomerForBasketPathParameters","url":"modules/shopperbaskets.html#updatecustomerforbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1319,"kind":16777216,"name":"updateGiftCertificateItemInBasketQueryParameters","url":"modules/shopperbaskets.html#updategiftcertificateiteminbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1320,"kind":16777216,"name":"updateGiftCertificateItemInBasketPathParameters","url":"modules/shopperbaskets.html#updategiftcertificateiteminbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1321,"kind":16777216,"name":"updateItemInBasketQueryParameters","url":"modules/shopperbaskets.html#updateiteminbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1322,"kind":16777216,"name":"updateItemInBasketPathParameters","url":"modules/shopperbaskets.html#updateiteminbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1323,"kind":16777216,"name":"updateItemsInBasketQueryParameters","url":"modules/shopperbaskets.html#updateitemsinbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1324,"kind":16777216,"name":"updateItemsInBasketPathParameters","url":"modules/shopperbaskets.html#updateitemsinbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1325,"kind":16777216,"name":"updatePaymentInstrumentInBasketQueryParameters","url":"modules/shopperbaskets.html#updatepaymentinstrumentinbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1326,"kind":16777216,"name":"updatePaymentInstrumentInBasketPathParameters","url":"modules/shopperbaskets.html#updatepaymentinstrumentinbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1327,"kind":16777216,"name":"updatePriceAdjustmentInBasketQueryParameters","url":"modules/shopperbaskets.html#updatepriceadjustmentinbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1328,"kind":16777216,"name":"updatePriceAdjustmentInBasketPathParameters","url":"modules/shopperbaskets.html#updatepriceadjustmentinbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1329,"kind":16777216,"name":"updateShipmentForBasketQueryParameters","url":"modules/shopperbaskets.html#updateshipmentforbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1330,"kind":16777216,"name":"updateShipmentForBasketPathParameters","url":"modules/shopperbaskets.html#updateshipmentforbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1331,"kind":16777216,"name":"updateShippingAddressForShipmentQueryParameters","url":"modules/shopperbaskets.html#updateshippingaddressforshipmentqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1332,"kind":16777216,"name":"updateShippingAddressForShipmentPathParameters","url":"modules/shopperbaskets.html#updateshippingaddressforshipmentpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1333,"kind":16777216,"name":"updateShippingMethodForShipmentQueryParameters","url":"modules/shopperbaskets.html#updateshippingmethodforshipmentqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1334,"kind":16777216,"name":"updateShippingMethodForShipmentPathParameters","url":"modules/shopperbaskets.html#updateshippingmethodforshipmentpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1335,"kind":16777216,"name":"ShopperBasketsPathParameters","url":"modules/shopperbaskets.html#shopperbasketspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1336,"kind":16777216,"name":"ShopperBasketsQueryParameters","url":"modules/shopperbaskets.html#shopperbasketsqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1337,"kind":16777216,"name":"ShopperBasketsParameters","url":"modules/shopperbaskets.html#shopperbasketsparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1338,"kind":16777216,"name":"ShopperBaskets","url":"modules/shopperbaskets.html#shopperbaskets-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1339,"kind":16777216,"name":"defaultBaseUri","url":"modules/shopperbaskets.html#defaultbaseuri","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1340,"kind":16777216,"name":"CreateBasketTaxModeEnum","url":"modules/shopperbaskets.html#createbaskettaxmodeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1341,"kind":16777216,"name":"MergeBasketProductItemMergeModeEnum","url":"modules/shopperbaskets.html#mergebasketproductitemmergemodeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1342,"kind":16777216,"name":"addCouponToBasketQueryParameters","url":"modules/shopperbaskets.html#addcoupontobasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1343,"kind":16777216,"name":"addCouponToBasketPathParameters","url":"modules/shopperbaskets.html#addcoupontobasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1344,"kind":16777216,"name":"addGiftCertificateItemToBasketQueryParameters","url":"modules/shopperbaskets.html#addgiftcertificateitemtobasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1345,"kind":16777216,"name":"addGiftCertificateItemToBasketPathParameters","url":"modules/shopperbaskets.html#addgiftcertificateitemtobasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1346,"kind":16777216,"name":"addItemToBasketQueryParameters","url":"modules/shopperbaskets.html#additemtobasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1347,"kind":16777216,"name":"addItemToBasketPathParameters","url":"modules/shopperbaskets.html#additemtobasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1348,"kind":16777216,"name":"addPaymentInstrumentToBasketQueryParameters","url":"modules/shopperbaskets.html#addpaymentinstrumenttobasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1349,"kind":16777216,"name":"addPaymentInstrumentToBasketPathParameters","url":"modules/shopperbaskets.html#addpaymentinstrumenttobasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1350,"kind":16777216,"name":"addPriceAdjustmentToBasketQueryParameters","url":"modules/shopperbaskets.html#addpriceadjustmenttobasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1351,"kind":16777216,"name":"addPriceAdjustmentToBasketPathParameters","url":"modules/shopperbaskets.html#addpriceadjustmenttobasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1352,"kind":16777216,"name":"addPriceBooksToBasketQueryParameters","url":"modules/shopperbaskets.html#addpricebookstobasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1353,"kind":16777216,"name":"addPriceBooksToBasketPathParameters","url":"modules/shopperbaskets.html#addpricebookstobasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1354,"kind":16777216,"name":"addTaxesForBasketQueryParameters","url":"modules/shopperbaskets.html#addtaxesforbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1355,"kind":16777216,"name":"addTaxesForBasketPathParameters","url":"modules/shopperbaskets.html#addtaxesforbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1356,"kind":16777216,"name":"addTaxesForBasketItemQueryParameters","url":"modules/shopperbaskets.html#addtaxesforbasketitemqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1357,"kind":16777216,"name":"addTaxesForBasketItemPathParameters","url":"modules/shopperbaskets.html#addtaxesforbasketitempathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1358,"kind":16777216,"name":"createBasketQueryParameters","url":"modules/shopperbaskets.html#createbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1359,"kind":16777216,"name":"createBasketPathParameters","url":"modules/shopperbaskets.html#createbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1360,"kind":16777216,"name":"createShipmentForBasketQueryParameters","url":"modules/shopperbaskets.html#createshipmentforbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1361,"kind":16777216,"name":"createShipmentForBasketPathParameters","url":"modules/shopperbaskets.html#createshipmentforbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1362,"kind":16777216,"name":"deleteBasketQueryParameters","url":"modules/shopperbaskets.html#deletebasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1363,"kind":16777216,"name":"deleteBasketPathParameters","url":"modules/shopperbaskets.html#deletebasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1364,"kind":16777216,"name":"getBasketQueryParameters","url":"modules/shopperbaskets.html#getbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1365,"kind":16777216,"name":"getBasketPathParameters","url":"modules/shopperbaskets.html#getbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1366,"kind":16777216,"name":"getPaymentMethodsForBasketQueryParameters","url":"modules/shopperbaskets.html#getpaymentmethodsforbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1367,"kind":16777216,"name":"getPaymentMethodsForBasketPathParameters","url":"modules/shopperbaskets.html#getpaymentmethodsforbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1368,"kind":16777216,"name":"getPriceBooksForBasketQueryParameters","url":"modules/shopperbaskets.html#getpricebooksforbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1369,"kind":16777216,"name":"getPriceBooksForBasketPathParameters","url":"modules/shopperbaskets.html#getpricebooksforbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1370,"kind":16777216,"name":"getShippingMethodsForShipmentQueryParameters","url":"modules/shopperbaskets.html#getshippingmethodsforshipmentqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1371,"kind":16777216,"name":"getShippingMethodsForShipmentPathParameters","url":"modules/shopperbaskets.html#getshippingmethodsforshipmentpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1372,"kind":16777216,"name":"getTaxesFromBasketQueryParameters","url":"modules/shopperbaskets.html#gettaxesfrombasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1373,"kind":16777216,"name":"getTaxesFromBasketPathParameters","url":"modules/shopperbaskets.html#gettaxesfrombasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1374,"kind":16777216,"name":"mergeBasketQueryParameters","url":"modules/shopperbaskets.html#mergebasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1375,"kind":16777216,"name":"mergeBasketPathParameters","url":"modules/shopperbaskets.html#mergebasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1376,"kind":16777216,"name":"removeCouponFromBasketQueryParameters","url":"modules/shopperbaskets.html#removecouponfrombasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1377,"kind":16777216,"name":"removeCouponFromBasketPathParameters","url":"modules/shopperbaskets.html#removecouponfrombasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1378,"kind":16777216,"name":"removeGiftCertificateItemFromBasketQueryParameters","url":"modules/shopperbaskets.html#removegiftcertificateitemfrombasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1379,"kind":16777216,"name":"removeGiftCertificateItemFromBasketPathParameters","url":"modules/shopperbaskets.html#removegiftcertificateitemfrombasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1380,"kind":16777216,"name":"removeItemFromBasketQueryParameters","url":"modules/shopperbaskets.html#removeitemfrombasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1381,"kind":16777216,"name":"removeItemFromBasketPathParameters","url":"modules/shopperbaskets.html#removeitemfrombasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1382,"kind":16777216,"name":"removePaymentInstrumentFromBasketQueryParameters","url":"modules/shopperbaskets.html#removepaymentinstrumentfrombasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1383,"kind":16777216,"name":"removePaymentInstrumentFromBasketPathParameters","url":"modules/shopperbaskets.html#removepaymentinstrumentfrombasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1384,"kind":16777216,"name":"removePriceAdjustmentFromBasketQueryParameters","url":"modules/shopperbaskets.html#removepriceadjustmentfrombasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1385,"kind":16777216,"name":"removePriceAdjustmentFromBasketPathParameters","url":"modules/shopperbaskets.html#removepriceadjustmentfrombasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1386,"kind":16777216,"name":"removeShipmentFromBasketQueryParameters","url":"modules/shopperbaskets.html#removeshipmentfrombasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1387,"kind":16777216,"name":"removeShipmentFromBasketPathParameters","url":"modules/shopperbaskets.html#removeshipmentfrombasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1388,"kind":16777216,"name":"transferBasketQueryParameters","url":"modules/shopperbaskets.html#transferbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1389,"kind":16777216,"name":"transferBasketPathParameters","url":"modules/shopperbaskets.html#transferbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1390,"kind":16777216,"name":"updateAsAgentBasketQueryParameters","url":"modules/shopperbaskets.html#updateasagentbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1391,"kind":16777216,"name":"updateAsAgentBasketPathParameters","url":"modules/shopperbaskets.html#updateasagentbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1392,"kind":16777216,"name":"updateAsStorefrontBasketQueryParameters","url":"modules/shopperbaskets.html#updateasstorefrontbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1393,"kind":16777216,"name":"updateAsStorefrontBasketPathParameters","url":"modules/shopperbaskets.html#updateasstorefrontbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1394,"kind":16777216,"name":"updateBasketQueryParameters","url":"modules/shopperbaskets.html#updatebasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1395,"kind":16777216,"name":"updateBasketPathParameters","url":"modules/shopperbaskets.html#updatebasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1396,"kind":16777216,"name":"updateBillingAddressForBasketQueryParameters","url":"modules/shopperbaskets.html#updatebillingaddressforbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1397,"kind":16777216,"name":"updateBillingAddressForBasketPathParameters","url":"modules/shopperbaskets.html#updatebillingaddressforbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1398,"kind":16777216,"name":"updateCustomerForBasketQueryParameters","url":"modules/shopperbaskets.html#updatecustomerforbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1399,"kind":16777216,"name":"updateCustomerForBasketPathParameters","url":"modules/shopperbaskets.html#updatecustomerforbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1400,"kind":16777216,"name":"updateGiftCertificateItemInBasketQueryParameters","url":"modules/shopperbaskets.html#updategiftcertificateiteminbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1401,"kind":16777216,"name":"updateGiftCertificateItemInBasketPathParameters","url":"modules/shopperbaskets.html#updategiftcertificateiteminbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1402,"kind":16777216,"name":"updateItemInBasketQueryParameters","url":"modules/shopperbaskets.html#updateiteminbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1403,"kind":16777216,"name":"updateItemInBasketPathParameters","url":"modules/shopperbaskets.html#updateiteminbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1404,"kind":16777216,"name":"updateItemsInBasketQueryParameters","url":"modules/shopperbaskets.html#updateitemsinbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1405,"kind":16777216,"name":"updateItemsInBasketPathParameters","url":"modules/shopperbaskets.html#updateitemsinbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1406,"kind":16777216,"name":"updatePaymentInstrumentInBasketQueryParameters","url":"modules/shopperbaskets.html#updatepaymentinstrumentinbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1407,"kind":16777216,"name":"updatePaymentInstrumentInBasketPathParameters","url":"modules/shopperbaskets.html#updatepaymentinstrumentinbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1408,"kind":16777216,"name":"updatePriceAdjustmentInBasketQueryParameters","url":"modules/shopperbaskets.html#updatepriceadjustmentinbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1409,"kind":16777216,"name":"updatePriceAdjustmentInBasketPathParameters","url":"modules/shopperbaskets.html#updatepriceadjustmentinbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1410,"kind":16777216,"name":"updateShipmentForBasketQueryParameters","url":"modules/shopperbaskets.html#updateshipmentforbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1411,"kind":16777216,"name":"updateShipmentForBasketPathParameters","url":"modules/shopperbaskets.html#updateshipmentforbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1412,"kind":16777216,"name":"updateShippingAddressForShipmentQueryParameters","url":"modules/shopperbaskets.html#updateshippingaddressforshipmentqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1413,"kind":16777216,"name":"updateShippingAddressForShipmentPathParameters","url":"modules/shopperbaskets.html#updateshippingaddressforshipmentpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1414,"kind":16777216,"name":"updateShippingMethodForShipmentQueryParameters","url":"modules/shopperbaskets.html#updateshippingmethodforshipmentqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1415,"kind":16777216,"name":"updateShippingMethodForShipmentPathParameters","url":"modules/shopperbaskets.html#updateshippingmethodforshipmentpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1416,"kind":16777216,"name":"ShopperBasketsPathParameters","url":"modules/shopperbaskets.html#shopperbasketspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1417,"kind":16777216,"name":"ShopperBasketsQueryParameters","url":"modules/shopperbaskets.html#shopperbasketsqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1418,"kind":16777216,"name":"ShopperBasketsParameters","url":"modules/shopperbaskets.html#shopperbasketsparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1419,"kind":16777216,"name":"ShopperBaskets","url":"modules/shopperbaskets.html#shopperbaskets-2","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1420,"kind":16777216,"name":"Basket","url":"modules/shopperbaskets.html#basket-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1421,"kind":16777216,"name":"BasketChannelTypeEnum","url":"modules/shopperbaskets.html#basketchanneltypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1422,"kind":16777216,"name":"BasketTaxationEnum","url":"modules/shopperbaskets.html#baskettaxationenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1423,"kind":16777216,"name":"BasketPaymentInstrumentRequest","url":"modules/shopperbaskets.html#basketpaymentinstrumentrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1424,"kind":16777216,"name":"BonusDiscountLineItem","url":"modules/shopperbaskets.html#bonusdiscountlineitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1425,"kind":16777216,"name":"CouponItem","url":"modules/shopperbaskets.html#couponitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1426,"kind":16777216,"name":"CouponItemStatusCodeEnum","url":"modules/shopperbaskets.html#couponitemstatuscodeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1427,"kind":16777216,"name":"CustomerInfo","url":"modules/shopperbaskets.html#customerinfo-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1428,"kind":16777216,"name":"Discount","url":"modules/shopperbaskets.html#discount-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1429,"kind":16777216,"name":"DiscountTypeEnum","url":"modules/shopperbaskets.html#discounttypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1430,"kind":16777216,"name":"DiscountRequest","url":"modules/shopperbaskets.html#discountrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1431,"kind":16777216,"name":"DiscountRequestTypeEnum","url":"modules/shopperbaskets.html#discountrequesttypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1432,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperbaskets.html#errorresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1433,"kind":16777216,"name":"GiftCertificateItem","url":"modules/shopperbaskets.html#giftcertificateitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1434,"kind":16777216,"name":"LocaleCode","url":"modules/shopperbaskets.html#localecode-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1435,"kind":16777216,"name":"OptionItem","url":"modules/shopperbaskets.html#optionitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1436,"kind":16777216,"name":"OrderAddress","url":"modules/shopperbaskets.html#orderaddress-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1437,"kind":16777216,"name":"OrderPaymentCardRequest","url":"modules/shopperbaskets.html#orderpaymentcardrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1438,"kind":16777216,"name":"OrderPaymentInstrument","url":"modules/shopperbaskets.html#orderpaymentinstrument-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1439,"kind":16777216,"name":"PaymentCard","url":"modules/shopperbaskets.html#paymentcard-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1440,"kind":16777216,"name":"PaymentCardSpec","url":"modules/shopperbaskets.html#paymentcardspec-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1441,"kind":16777216,"name":"PaymentMethod","url":"modules/shopperbaskets.html#paymentmethod-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1442,"kind":16777216,"name":"PaymentMethodResult","url":"modules/shopperbaskets.html#paymentmethodresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1443,"kind":16777216,"name":"PriceAdjustment","url":"modules/shopperbaskets.html#priceadjustment-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1444,"kind":16777216,"name":"PriceAdjustmentRequest","url":"modules/shopperbaskets.html#priceadjustmentrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1445,"kind":16777216,"name":"PriceAdjustmentRequestLevelEnum","url":"modules/shopperbaskets.html#priceadjustmentrequestlevelenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1446,"kind":16777216,"name":"ProductDetailsLink","url":"modules/shopperbaskets.html#productdetailslink-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1447,"kind":16777216,"name":"ProductItem","url":"modules/shopperbaskets.html#productitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1448,"kind":16777216,"name":"ProductListItemReference","url":"modules/shopperbaskets.html#productlistitemreference-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1449,"kind":16777216,"name":"ProductListItemReferenceTypeEnum","url":"modules/shopperbaskets.html#productlistitemreferencetypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1450,"kind":16777216,"name":"ProductListLink","url":"modules/shopperbaskets.html#productlistlink-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1451,"kind":16777216,"name":"ProductListLinkTypeEnum","url":"modules/shopperbaskets.html#productlistlinktypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1452,"kind":16777216,"name":"Shipment","url":"modules/shopperbaskets.html#shipment-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1453,"kind":16777216,"name":"ShipmentShippingStatusEnum","url":"modules/shopperbaskets.html#shipmentshippingstatusenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1454,"kind":16777216,"name":"ShippingItem","url":"modules/shopperbaskets.html#shippingitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1455,"kind":16777216,"name":"ShippingMethod","url":"modules/shopperbaskets.html#shippingmethod-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1456,"kind":16777216,"name":"ShippingMethodResult","url":"modules/shopperbaskets.html#shippingmethodresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1457,"kind":16777216,"name":"ShippingPromotion","url":"modules/shopperbaskets.html#shippingpromotion-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1458,"kind":16777216,"name":"Status","url":"modules/shopperbaskets.html#status-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1459,"kind":16777216,"name":"TaxItem","url":"modules/shopperbaskets.html#taxitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1460,"kind":16777216,"name":"TaxItems","url":"modules/shopperbaskets.html#taxitems-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1461,"kind":16777216,"name":"Taxes","url":"modules/shopperbaskets.html#taxes-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1462,"kind":2,"name":"ShopperBasketsTypes","url":"modules/shopperbaskets.shopperbasketstypes.html","classes":"tsd-kind-namespace tsd-parent-kind-module","parent":"shopperBaskets"},{"id":1463,"kind":4194304,"name":"ShopperBasketsPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#shopperbasketspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1464,"kind":4194304,"name":"ShopperBasketsQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#shopperbasketsqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1465,"kind":4194304,"name":"addCouponToBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#addcoupontobasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1466,"kind":4194304,"name":"addCouponToBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#addcoupontobasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1467,"kind":4194304,"name":"addGiftCertificateItemToBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#addgiftcertificateitemtobasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1468,"kind":4194304,"name":"addGiftCertificateItemToBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#addgiftcertificateitemtobasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1469,"kind":4194304,"name":"addItemToBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#additemtobasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1470,"kind":4194304,"name":"addItemToBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#additemtobasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1471,"kind":4194304,"name":"addPaymentInstrumentToBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#addpaymentinstrumenttobasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1472,"kind":4194304,"name":"addPaymentInstrumentToBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#addpaymentinstrumenttobasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1473,"kind":4194304,"name":"addPriceAdjustmentToBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#addpriceadjustmenttobasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1474,"kind":4194304,"name":"addPriceAdjustmentToBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#addpriceadjustmenttobasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1475,"kind":4194304,"name":"addPriceBooksToBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#addpricebookstobasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1476,"kind":4194304,"name":"addPriceBooksToBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#addpricebookstobasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1477,"kind":4194304,"name":"addTaxesForBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#addtaxesforbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1478,"kind":4194304,"name":"addTaxesForBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#addtaxesforbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1479,"kind":4194304,"name":"addTaxesForBasketItemQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#addtaxesforbasketitemqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1480,"kind":4194304,"name":"addTaxesForBasketItemPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#addtaxesforbasketitempathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1481,"kind":4194304,"name":"CreateBasketTaxModeEnum","url":"modules/shopperbaskets.shopperbasketstypes.html#createbaskettaxmodeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1482,"kind":4194304,"name":"createBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#createbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1483,"kind":4194304,"name":"createBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#createbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1484,"kind":4194304,"name":"createShipmentForBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#createshipmentforbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1485,"kind":4194304,"name":"createShipmentForBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#createshipmentforbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1486,"kind":4194304,"name":"deleteBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#deletebasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1487,"kind":4194304,"name":"deleteBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#deletebasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1488,"kind":4194304,"name":"getBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#getbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1489,"kind":4194304,"name":"getBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#getbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1490,"kind":4194304,"name":"getPaymentMethodsForBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#getpaymentmethodsforbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1491,"kind":4194304,"name":"getPaymentMethodsForBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#getpaymentmethodsforbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1492,"kind":4194304,"name":"getPriceBooksForBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#getpricebooksforbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1493,"kind":4194304,"name":"getPriceBooksForBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#getpricebooksforbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1494,"kind":4194304,"name":"getShippingMethodsForShipmentQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#getshippingmethodsforshipmentqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1495,"kind":4194304,"name":"getShippingMethodsForShipmentPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#getshippingmethodsforshipmentpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1496,"kind":4194304,"name":"getTaxesFromBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#gettaxesfrombasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1497,"kind":4194304,"name":"getTaxesFromBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#gettaxesfrombasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1498,"kind":4194304,"name":"MergeBasketProductItemMergeModeEnum","url":"modules/shopperbaskets.shopperbasketstypes.html#mergebasketproductitemmergemodeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1499,"kind":4194304,"name":"mergeBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#mergebasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1500,"kind":4194304,"name":"mergeBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#mergebasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1501,"kind":4194304,"name":"removeCouponFromBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#removecouponfrombasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1502,"kind":4194304,"name":"removeCouponFromBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#removecouponfrombasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1503,"kind":4194304,"name":"removeGiftCertificateItemFromBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#removegiftcertificateitemfrombasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1504,"kind":4194304,"name":"removeGiftCertificateItemFromBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#removegiftcertificateitemfrombasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1505,"kind":4194304,"name":"removeItemFromBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#removeitemfrombasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1506,"kind":4194304,"name":"removeItemFromBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#removeitemfrombasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1507,"kind":4194304,"name":"removePaymentInstrumentFromBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#removepaymentinstrumentfrombasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1508,"kind":4194304,"name":"removePaymentInstrumentFromBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#removepaymentinstrumentfrombasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1509,"kind":4194304,"name":"removePriceAdjustmentFromBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#removepriceadjustmentfrombasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1510,"kind":4194304,"name":"removePriceAdjustmentFromBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#removepriceadjustmentfrombasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1511,"kind":4194304,"name":"removeShipmentFromBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#removeshipmentfrombasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1512,"kind":4194304,"name":"removeShipmentFromBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#removeshipmentfrombasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1513,"kind":4194304,"name":"transferBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#transferbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1514,"kind":4194304,"name":"transferBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#transferbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1515,"kind":4194304,"name":"updateAsAgentBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updateasagentbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1516,"kind":4194304,"name":"updateAsAgentBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updateasagentbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1517,"kind":4194304,"name":"updateAsStorefrontBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updateasstorefrontbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1518,"kind":4194304,"name":"updateAsStorefrontBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updateasstorefrontbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1519,"kind":4194304,"name":"updateBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updatebasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1520,"kind":4194304,"name":"updateBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updatebasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1521,"kind":4194304,"name":"updateBillingAddressForBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updatebillingaddressforbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1522,"kind":4194304,"name":"updateBillingAddressForBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updatebillingaddressforbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1523,"kind":4194304,"name":"updateCustomerForBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updatecustomerforbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1524,"kind":4194304,"name":"updateCustomerForBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updatecustomerforbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1525,"kind":4194304,"name":"updateGiftCertificateItemInBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updategiftcertificateiteminbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1526,"kind":4194304,"name":"updateGiftCertificateItemInBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updategiftcertificateiteminbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1527,"kind":4194304,"name":"updateItemInBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updateiteminbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1528,"kind":4194304,"name":"updateItemInBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updateiteminbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1529,"kind":4194304,"name":"updateItemsInBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updateitemsinbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1530,"kind":4194304,"name":"updateItemsInBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updateitemsinbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1531,"kind":4194304,"name":"updatePaymentInstrumentInBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updatepaymentinstrumentinbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1532,"kind":4194304,"name":"updatePaymentInstrumentInBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updatepaymentinstrumentinbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1533,"kind":4194304,"name":"updatePriceAdjustmentInBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updatepriceadjustmentinbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1534,"kind":4194304,"name":"updatePriceAdjustmentInBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updatepriceadjustmentinbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1535,"kind":4194304,"name":"updateShipmentForBasketQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updateshipmentforbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1536,"kind":4194304,"name":"updateShipmentForBasketPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updateshipmentforbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1537,"kind":4194304,"name":"updateShippingAddressForShipmentQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updateshippingaddressforshipmentqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1538,"kind":4194304,"name":"updateShippingAddressForShipmentPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updateshippingaddressforshipmentpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1539,"kind":4194304,"name":"updateShippingMethodForShipmentQueryParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updateshippingmethodforshipmentqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1540,"kind":4194304,"name":"updateShippingMethodForShipmentPathParameters","url":"modules/shopperbaskets.shopperbasketstypes.html#updateshippingmethodforshipmentpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1541,"kind":4194304,"name":"Basket","url":"modules/shopperbaskets.shopperbasketstypes.html#basket","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1542,"kind":4194304,"name":"BasketChannelTypeEnum","url":"modules/shopperbaskets.shopperbasketstypes.html#basketchanneltypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1543,"kind":4194304,"name":"BasketTaxationEnum","url":"modules/shopperbaskets.shopperbasketstypes.html#baskettaxationenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1544,"kind":4194304,"name":"BasketPaymentInstrumentRequest","url":"modules/shopperbaskets.shopperbasketstypes.html#basketpaymentinstrumentrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1545,"kind":4194304,"name":"BonusDiscountLineItem","url":"modules/shopperbaskets.shopperbasketstypes.html#bonusdiscountlineitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1546,"kind":4194304,"name":"CouponItem","url":"modules/shopperbaskets.shopperbasketstypes.html#couponitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1547,"kind":4194304,"name":"CouponItemStatusCodeEnum","url":"modules/shopperbaskets.shopperbasketstypes.html#couponitemstatuscodeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1548,"kind":4194304,"name":"CustomerInfo","url":"modules/shopperbaskets.shopperbasketstypes.html#customerinfo","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1549,"kind":4194304,"name":"Discount","url":"modules/shopperbaskets.shopperbasketstypes.html#discount","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1550,"kind":4194304,"name":"DiscountTypeEnum","url":"modules/shopperbaskets.shopperbasketstypes.html#discounttypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1551,"kind":4194304,"name":"DiscountRequest","url":"modules/shopperbaskets.shopperbasketstypes.html#discountrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1552,"kind":4194304,"name":"DiscountRequestTypeEnum","url":"modules/shopperbaskets.shopperbasketstypes.html#discountrequesttypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1553,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperbaskets.shopperbasketstypes.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1554,"kind":4194304,"name":"GiftCertificateItem","url":"modules/shopperbaskets.shopperbasketstypes.html#giftcertificateitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1555,"kind":4194304,"name":"LocaleCode","url":"modules/shopperbaskets.shopperbasketstypes.html#localecode","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1556,"kind":4194304,"name":"OptionItem","url":"modules/shopperbaskets.shopperbasketstypes.html#optionitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1557,"kind":4194304,"name":"OrderAddress","url":"modules/shopperbaskets.shopperbasketstypes.html#orderaddress","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1558,"kind":4194304,"name":"OrderPaymentCardRequest","url":"modules/shopperbaskets.shopperbasketstypes.html#orderpaymentcardrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1559,"kind":4194304,"name":"OrderPaymentInstrument","url":"modules/shopperbaskets.shopperbasketstypes.html#orderpaymentinstrument","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1560,"kind":4194304,"name":"PaymentCard","url":"modules/shopperbaskets.shopperbasketstypes.html#paymentcard","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1561,"kind":4194304,"name":"PaymentCardSpec","url":"modules/shopperbaskets.shopperbasketstypes.html#paymentcardspec","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1562,"kind":4194304,"name":"PaymentMethod","url":"modules/shopperbaskets.shopperbasketstypes.html#paymentmethod","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1563,"kind":4194304,"name":"PaymentMethodResult","url":"modules/shopperbaskets.shopperbasketstypes.html#paymentmethodresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1564,"kind":4194304,"name":"PriceAdjustment","url":"modules/shopperbaskets.shopperbasketstypes.html#priceadjustment","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1565,"kind":4194304,"name":"PriceAdjustmentRequest","url":"modules/shopperbaskets.shopperbasketstypes.html#priceadjustmentrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1566,"kind":4194304,"name":"PriceAdjustmentRequestLevelEnum","url":"modules/shopperbaskets.shopperbasketstypes.html#priceadjustmentrequestlevelenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1567,"kind":4194304,"name":"ProductDetailsLink","url":"modules/shopperbaskets.shopperbasketstypes.html#productdetailslink","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1568,"kind":4194304,"name":"ProductItem","url":"modules/shopperbaskets.shopperbasketstypes.html#productitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1569,"kind":4194304,"name":"ProductListItemReference","url":"modules/shopperbaskets.shopperbasketstypes.html#productlistitemreference","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1570,"kind":4194304,"name":"ProductListItemReferenceTypeEnum","url":"modules/shopperbaskets.shopperbasketstypes.html#productlistitemreferencetypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1571,"kind":4194304,"name":"ProductListLink","url":"modules/shopperbaskets.shopperbasketstypes.html#productlistlink","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1572,"kind":4194304,"name":"ProductListLinkTypeEnum","url":"modules/shopperbaskets.shopperbasketstypes.html#productlistlinktypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1573,"kind":4194304,"name":"Shipment","url":"modules/shopperbaskets.shopperbasketstypes.html#shipment","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1574,"kind":4194304,"name":"ShipmentShippingStatusEnum","url":"modules/shopperbaskets.shopperbasketstypes.html#shipmentshippingstatusenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1575,"kind":4194304,"name":"ShippingItem","url":"modules/shopperbaskets.shopperbasketstypes.html#shippingitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1576,"kind":4194304,"name":"ShippingMethod","url":"modules/shopperbaskets.shopperbasketstypes.html#shippingmethod","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1577,"kind":4194304,"name":"ShippingMethodResult","url":"modules/shopperbaskets.shopperbasketstypes.html#shippingmethodresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1578,"kind":4194304,"name":"ShippingPromotion","url":"modules/shopperbaskets.shopperbasketstypes.html#shippingpromotion","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1579,"kind":4194304,"name":"Status","url":"modules/shopperbaskets.shopperbasketstypes.html#status","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1580,"kind":4194304,"name":"TaxItem","url":"modules/shopperbaskets.shopperbasketstypes.html#taxitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1581,"kind":4194304,"name":"TaxItems","url":"modules/shopperbaskets.shopperbasketstypes.html#taxitems","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1582,"kind":4194304,"name":"Taxes","url":"modules/shopperbaskets.shopperbasketstypes.html#taxes","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBaskets.ShopperBasketsTypes"},{"id":1583,"kind":1,"name":"shopperBasketsv2","url":"modules/shopperbasketsv2.html","classes":"tsd-kind-module"},{"id":1584,"kind":32,"name":"defaultBaseUri","url":"modules/shopperbasketsv2.html#defaultbaseuri-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1585,"kind":4194304,"name":"GiftCertificateItem","url":"modules/shopperbasketsv2.html#giftcertificateitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1586,"kind":4194304,"name":"Status","url":"modules/shopperbasketsv2.html#status-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1587,"kind":4194304,"name":"OrderPaymentInstrumentPaymentReferenceGatewayProperties","url":"modules/shopperbasketsv2.html#orderpaymentinstrumentpaymentreferencegatewayproperties-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1588,"kind":4194304,"name":"OrderPaymentInstrumentPaymentReference","url":"modules/shopperbasketsv2.html#orderpaymentinstrumentpaymentreference-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1589,"kind":4194304,"name":"OrderPaymentInstrumentPaymentReferenceGatewayEnum","url":"modules/shopperbasketsv2.html#orderpaymentinstrumentpaymentreferencegatewayenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1590,"kind":4194304,"name":"GiftCardResponse","url":"modules/shopperbasketsv2.html#giftcardresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1591,"kind":4194304,"name":"PaymentCard","url":"modules/shopperbasketsv2.html#paymentcard-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1592,"kind":4194304,"name":"OrderPaymentInstrument","url":"modules/shopperbasketsv2.html#orderpaymentinstrument-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1593,"kind":4194304,"name":"ProductDetailsLink","url":"modules/shopperbasketsv2.html#productdetailslink-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1594,"kind":4194304,"name":"BonusDiscountLineItem","url":"modules/shopperbasketsv2.html#bonusdiscountlineitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1595,"kind":4194304,"name":"Discount","url":"modules/shopperbasketsv2.html#discount-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1596,"kind":4194304,"name":"DiscountTypeEnum","url":"modules/shopperbasketsv2.html#discounttypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1597,"kind":4194304,"name":"PriceAdjustment","url":"modules/shopperbasketsv2.html#priceadjustment-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1598,"kind":4194304,"name":"ShippingItem","url":"modules/shopperbasketsv2.html#shippingitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1599,"kind":4194304,"name":"OrderAddress","url":"modules/shopperbasketsv2.html#orderaddress-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1600,"kind":4194304,"name":"ShippingPromotion","url":"modules/shopperbasketsv2.html#shippingpromotion-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1601,"kind":4194304,"name":"ShippingMethod","url":"modules/shopperbasketsv2.html#shippingmethod-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1602,"kind":4194304,"name":"Shipment","url":"modules/shopperbasketsv2.html#shipment-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1603,"kind":4194304,"name":"ShipmentShippingStatusEnum","url":"modules/shopperbasketsv2.html#shipmentshippingstatusenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1604,"kind":4194304,"name":"CouponItem","url":"modules/shopperbasketsv2.html#couponitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1605,"kind":4194304,"name":"CouponItemStatusCodeEnum","url":"modules/shopperbasketsv2.html#couponitemstatuscodeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1606,"kind":4194304,"name":"CustomerInfo","url":"modules/shopperbasketsv2.html#customerinfo-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1607,"kind":4194304,"name":"ProductListLink","url":"modules/shopperbasketsv2.html#productlistlink-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1608,"kind":4194304,"name":"ProductListLinkTypeEnum","url":"modules/shopperbasketsv2.html#productlistlinktypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1609,"kind":4194304,"name":"ProductListItemReference","url":"modules/shopperbasketsv2.html#productlistitemreference-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1610,"kind":4194304,"name":"ProductListItemReferenceTypeEnum","url":"modules/shopperbasketsv2.html#productlistitemreferencetypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1611,"kind":4194304,"name":"ProductItem","url":"modules/shopperbasketsv2.html#productitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1612,"kind":4194304,"name":"OptionItem","url":"modules/shopperbasketsv2.html#optionitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1613,"kind":4194304,"name":"BasketProductItem","url":"modules/shopperbasketsv2.html#basketproductitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1614,"kind":4194304,"name":"GroupedTaxItem","url":"modules/shopperbasketsv2.html#groupedtaxitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1615,"kind":4194304,"name":"Basket","url":"modules/shopperbasketsv2.html#basket-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1616,"kind":4194304,"name":"BasketChannelTypeEnum","url":"modules/shopperbasketsv2.html#basketchanneltypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1617,"kind":4194304,"name":"BasketTaxationEnum","url":"modules/shopperbasketsv2.html#baskettaxationenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1618,"kind":4194304,"name":"OrderPaymentCardRequest","url":"modules/shopperbasketsv2.html#orderpaymentcardrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1619,"kind":4194304,"name":"GiftCardRequest","url":"modules/shopperbasketsv2.html#giftcardrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1620,"kind":4194304,"name":"PaymentReferenceRequestGatewayProperties","url":"modules/shopperbasketsv2.html#paymentreferencerequestgatewayproperties-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1621,"kind":4194304,"name":"PaymentReferenceRequest","url":"modules/shopperbasketsv2.html#paymentreferencerequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1622,"kind":4194304,"name":"PaymentReferenceRequestGatewayEnum","url":"modules/shopperbasketsv2.html#paymentreferencerequestgatewayenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1623,"kind":4194304,"name":"BasketPaymentInstrumentRequest","url":"modules/shopperbasketsv2.html#basketpaymentinstrumentrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1624,"kind":4194304,"name":"DiscountRequest","url":"modules/shopperbasketsv2.html#discountrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1625,"kind":4194304,"name":"DiscountRequestTypeEnum","url":"modules/shopperbasketsv2.html#discountrequesttypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1626,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperbasketsv2.html#errorresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1627,"kind":4194304,"name":"LocaleCode","url":"modules/shopperbasketsv2.html#localecode-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1628,"kind":4194304,"name":"PaymentCardSpec","url":"modules/shopperbasketsv2.html#paymentcardspec-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1629,"kind":4194304,"name":"PaymentMethod","url":"modules/shopperbasketsv2.html#paymentmethod-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1630,"kind":4194304,"name":"PaymentMethodResult","url":"modules/shopperbasketsv2.html#paymentmethodresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1631,"kind":4194304,"name":"PriceAdjustmentRequest","url":"modules/shopperbasketsv2.html#priceadjustmentrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1632,"kind":4194304,"name":"PriceAdjustmentRequestLevelEnum","url":"modules/shopperbasketsv2.html#priceadjustmentrequestlevelenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1633,"kind":4194304,"name":"ShippingMethodResult","url":"modules/shopperbasketsv2.html#shippingmethodresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1634,"kind":4194304,"name":"TaxItem","url":"modules/shopperbasketsv2.html#taxitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1635,"kind":4194304,"name":"TaxItems","url":"modules/shopperbasketsv2.html#taxitems-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1636,"kind":4194304,"name":"Taxes","url":"modules/shopperbasketsv2.html#taxes-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1637,"kind":16777216,"name":"Basket","url":"modules/shopperbasketsv2.html#basket","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1638,"kind":16777216,"name":"BasketChannelTypeEnum","url":"modules/shopperbasketsv2.html#basketchanneltypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1639,"kind":16777216,"name":"BasketTaxationEnum","url":"modules/shopperbasketsv2.html#baskettaxationenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1640,"kind":16777216,"name":"BasketPaymentInstrumentRequest","url":"modules/shopperbasketsv2.html#basketpaymentinstrumentrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1641,"kind":16777216,"name":"BasketProductItem","url":"modules/shopperbasketsv2.html#basketproductitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1642,"kind":16777216,"name":"BonusDiscountLineItem","url":"modules/shopperbasketsv2.html#bonusdiscountlineitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1643,"kind":16777216,"name":"CouponItem","url":"modules/shopperbasketsv2.html#couponitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1644,"kind":16777216,"name":"CouponItemStatusCodeEnum","url":"modules/shopperbasketsv2.html#couponitemstatuscodeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1645,"kind":16777216,"name":"CustomerInfo","url":"modules/shopperbasketsv2.html#customerinfo","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1646,"kind":16777216,"name":"Discount","url":"modules/shopperbasketsv2.html#discount","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1647,"kind":16777216,"name":"DiscountTypeEnum","url":"modules/shopperbasketsv2.html#discounttypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1648,"kind":16777216,"name":"DiscountRequest","url":"modules/shopperbasketsv2.html#discountrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1649,"kind":16777216,"name":"DiscountRequestTypeEnum","url":"modules/shopperbasketsv2.html#discountrequesttypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1650,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperbasketsv2.html#errorresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1651,"kind":16777216,"name":"GiftCardRequest","url":"modules/shopperbasketsv2.html#giftcardrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1652,"kind":16777216,"name":"GiftCardResponse","url":"modules/shopperbasketsv2.html#giftcardresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1653,"kind":16777216,"name":"GiftCertificateItem","url":"modules/shopperbasketsv2.html#giftcertificateitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1654,"kind":16777216,"name":"GroupedTaxItem","url":"modules/shopperbasketsv2.html#groupedtaxitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1655,"kind":16777216,"name":"LocaleCode","url":"modules/shopperbasketsv2.html#localecode","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1656,"kind":16777216,"name":"OptionItem","url":"modules/shopperbasketsv2.html#optionitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1657,"kind":16777216,"name":"OrderAddress","url":"modules/shopperbasketsv2.html#orderaddress","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1658,"kind":16777216,"name":"OrderPaymentCardRequest","url":"modules/shopperbasketsv2.html#orderpaymentcardrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1659,"kind":16777216,"name":"OrderPaymentInstrument","url":"modules/shopperbasketsv2.html#orderpaymentinstrument","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1660,"kind":16777216,"name":"OrderPaymentInstrumentPaymentReference","url":"modules/shopperbasketsv2.html#orderpaymentinstrumentpaymentreference","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1661,"kind":16777216,"name":"OrderPaymentInstrumentPaymentReferenceGatewayEnum","url":"modules/shopperbasketsv2.html#orderpaymentinstrumentpaymentreferencegatewayenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1662,"kind":16777216,"name":"OrderPaymentInstrumentPaymentReferenceGatewayProperties","url":"modules/shopperbasketsv2.html#orderpaymentinstrumentpaymentreferencegatewayproperties","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1663,"kind":16777216,"name":"PaymentCard","url":"modules/shopperbasketsv2.html#paymentcard","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1664,"kind":16777216,"name":"PaymentCardSpec","url":"modules/shopperbasketsv2.html#paymentcardspec","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1665,"kind":16777216,"name":"PaymentMethod","url":"modules/shopperbasketsv2.html#paymentmethod","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1666,"kind":16777216,"name":"PaymentMethodResult","url":"modules/shopperbasketsv2.html#paymentmethodresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1667,"kind":16777216,"name":"PaymentReferenceRequest","url":"modules/shopperbasketsv2.html#paymentreferencerequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1668,"kind":16777216,"name":"PaymentReferenceRequestGatewayEnum","url":"modules/shopperbasketsv2.html#paymentreferencerequestgatewayenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1669,"kind":16777216,"name":"PaymentReferenceRequestGatewayProperties","url":"modules/shopperbasketsv2.html#paymentreferencerequestgatewayproperties","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1670,"kind":16777216,"name":"PriceAdjustment","url":"modules/shopperbasketsv2.html#priceadjustment","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1671,"kind":16777216,"name":"PriceAdjustmentRequest","url":"modules/shopperbasketsv2.html#priceadjustmentrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1672,"kind":16777216,"name":"PriceAdjustmentRequestLevelEnum","url":"modules/shopperbasketsv2.html#priceadjustmentrequestlevelenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1673,"kind":16777216,"name":"ProductDetailsLink","url":"modules/shopperbasketsv2.html#productdetailslink","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1674,"kind":16777216,"name":"ProductItem","url":"modules/shopperbasketsv2.html#productitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1675,"kind":16777216,"name":"ProductListItemReference","url":"modules/shopperbasketsv2.html#productlistitemreference","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1676,"kind":16777216,"name":"ProductListItemReferenceTypeEnum","url":"modules/shopperbasketsv2.html#productlistitemreferencetypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1677,"kind":16777216,"name":"ProductListLink","url":"modules/shopperbasketsv2.html#productlistlink","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1678,"kind":16777216,"name":"ProductListLinkTypeEnum","url":"modules/shopperbasketsv2.html#productlistlinktypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1679,"kind":16777216,"name":"Shipment","url":"modules/shopperbasketsv2.html#shipment","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1680,"kind":16777216,"name":"ShipmentShippingStatusEnum","url":"modules/shopperbasketsv2.html#shipmentshippingstatusenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1681,"kind":16777216,"name":"ShippingItem","url":"modules/shopperbasketsv2.html#shippingitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1682,"kind":16777216,"name":"ShippingMethod","url":"modules/shopperbasketsv2.html#shippingmethod","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1683,"kind":16777216,"name":"ShippingMethodResult","url":"modules/shopperbasketsv2.html#shippingmethodresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1684,"kind":16777216,"name":"ShippingPromotion","url":"modules/shopperbasketsv2.html#shippingpromotion","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1685,"kind":16777216,"name":"Status","url":"modules/shopperbasketsv2.html#status","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1686,"kind":16777216,"name":"TaxItem","url":"modules/shopperbasketsv2.html#taxitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1687,"kind":16777216,"name":"TaxItems","url":"modules/shopperbasketsv2.html#taxitems","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1688,"kind":16777216,"name":"Taxes","url":"modules/shopperbasketsv2.html#taxes","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1689,"kind":128,"name":"ShopperBasketsV2","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"shopperBasketsv2"},{"id":1690,"kind":1024,"name":"clientConfig","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1691,"kind":1024,"name":"defaultBaseUri","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#defaultbaseuri","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1692,"kind":2097152,"name":"apiPaths","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-static","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1693,"kind":32,"name":"addCouponToBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.addcoupontobasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1694,"kind":32,"name":"addGiftCertificateItemToBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.addgiftcertificateitemtobasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1695,"kind":32,"name":"addItemToBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.additemtobasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1696,"kind":32,"name":"addPaymentInstrumentToBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.addpaymentinstrumenttobasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1697,"kind":32,"name":"addPriceAdjustmentToBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.addpriceadjustmenttobasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1698,"kind":32,"name":"addPriceBooksToBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.addpricebookstobasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1699,"kind":32,"name":"addTaxesForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.addtaxesforbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1700,"kind":32,"name":"addTaxesForBasketItem","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.addtaxesforbasketitem-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1701,"kind":32,"name":"createBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.createbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1702,"kind":32,"name":"createShipmentForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.createshipmentforbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1703,"kind":32,"name":"deleteBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.deletebasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1704,"kind":32,"name":"getBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.getbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1705,"kind":32,"name":"getPaymentMethodsForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.getpaymentmethodsforbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1706,"kind":32,"name":"getPriceBooksForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.getpricebooksforbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1707,"kind":32,"name":"getShippingMethodsForShipment","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.getshippingmethodsforshipment-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1708,"kind":32,"name":"getTaxesFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.gettaxesfrombasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1709,"kind":32,"name":"mergeBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.mergebasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1710,"kind":32,"name":"removeCouponFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.removecouponfrombasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1711,"kind":32,"name":"removeGiftCertificateItemFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.removegiftcertificateitemfrombasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1712,"kind":32,"name":"removeItemFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.removeitemfrombasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1713,"kind":32,"name":"removePaymentInstrumentFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.removepaymentinstrumentfrombasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1714,"kind":32,"name":"removePriceAdjustmentFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.removepriceadjustmentfrombasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1715,"kind":32,"name":"removeShipmentFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.removeshipmentfrombasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1716,"kind":32,"name":"transferBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.transferbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1717,"kind":32,"name":"updateAsAgentBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.updateasagentbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1718,"kind":32,"name":"updateAsStorefrontBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.updateasstorefrontbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1719,"kind":32,"name":"updateBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.updatebasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1720,"kind":32,"name":"updateBillingAddressForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.updatebillingaddressforbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1721,"kind":32,"name":"updateCustomerForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.updatecustomerforbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1722,"kind":32,"name":"updateGiftCertificateItemInBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.updategiftcertificateiteminbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1723,"kind":32,"name":"updateItemInBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.updateiteminbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1724,"kind":32,"name":"updateItemsInBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.updateitemsinbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1725,"kind":32,"name":"updatePaymentInstrumentInBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.updatepaymentinstrumentinbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1726,"kind":32,"name":"updatePriceAdjustmentInBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.updatepriceadjustmentinbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1727,"kind":32,"name":"updateShipmentForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.updateshipmentforbasket-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1728,"kind":32,"name":"updateShippingAddressForShipment","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.updateshippingaddressforshipment-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1729,"kind":32,"name":"updateShippingMethodForShipment","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#apipaths.updateshippingmethodforshipment-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperBasketsv2.ShopperBasketsV2.apiPaths"},{"id":1730,"kind":512,"name":"constructor","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1731,"kind":1024,"name":"paramKeys","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1732,"kind":65536,"name":"__type","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys"},{"id":1733,"kind":32,"name":"addCouponToBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.addcoupontobasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1734,"kind":32,"name":"addCouponToBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.addcoupontobasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1735,"kind":32,"name":"addGiftCertificateItemToBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.addgiftcertificateitemtobasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1736,"kind":32,"name":"addGiftCertificateItemToBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.addgiftcertificateitemtobasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1737,"kind":32,"name":"addItemToBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.additemtobasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1738,"kind":32,"name":"addItemToBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.additemtobasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1739,"kind":32,"name":"addPaymentInstrumentToBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.addpaymentinstrumenttobasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1740,"kind":32,"name":"addPaymentInstrumentToBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.addpaymentinstrumenttobasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1741,"kind":32,"name":"addPriceAdjustmentToBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.addpriceadjustmenttobasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1742,"kind":32,"name":"addPriceAdjustmentToBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.addpriceadjustmenttobasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1743,"kind":32,"name":"addPriceBooksToBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.addpricebookstobasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1744,"kind":32,"name":"addPriceBooksToBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.addpricebookstobasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1745,"kind":32,"name":"addTaxesForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.addtaxesforbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1746,"kind":32,"name":"addTaxesForBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.addtaxesforbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1747,"kind":32,"name":"addTaxesForBasketItem","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.addtaxesforbasketitem","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1748,"kind":32,"name":"addTaxesForBasketItemRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.addtaxesforbasketitemrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1749,"kind":32,"name":"createBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.createbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1750,"kind":32,"name":"createBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.createbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1751,"kind":32,"name":"createShipmentForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.createshipmentforbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1752,"kind":32,"name":"createShipmentForBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.createshipmentforbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1753,"kind":32,"name":"deleteBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.deletebasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1754,"kind":32,"name":"deleteBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.deletebasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1755,"kind":32,"name":"getBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.getbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1756,"kind":32,"name":"getBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.getbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1757,"kind":32,"name":"getPaymentMethodsForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.getpaymentmethodsforbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1758,"kind":32,"name":"getPaymentMethodsForBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.getpaymentmethodsforbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1759,"kind":32,"name":"getPriceBooksForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.getpricebooksforbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1760,"kind":32,"name":"getPriceBooksForBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.getpricebooksforbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1761,"kind":32,"name":"getShippingMethodsForShipment","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.getshippingmethodsforshipment","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1762,"kind":32,"name":"getShippingMethodsForShipmentRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.getshippingmethodsforshipmentrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1763,"kind":32,"name":"getTaxesFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.gettaxesfrombasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1764,"kind":32,"name":"getTaxesFromBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.gettaxesfrombasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1765,"kind":32,"name":"mergeBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.mergebasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1766,"kind":32,"name":"mergeBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.mergebasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1767,"kind":32,"name":"removeCouponFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.removecouponfrombasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1768,"kind":32,"name":"removeCouponFromBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.removecouponfrombasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1769,"kind":32,"name":"removeGiftCertificateItemFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.removegiftcertificateitemfrombasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1770,"kind":32,"name":"removeGiftCertificateItemFromBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.removegiftcertificateitemfrombasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1771,"kind":32,"name":"removeItemFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.removeitemfrombasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1772,"kind":32,"name":"removeItemFromBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.removeitemfrombasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1773,"kind":32,"name":"removePaymentInstrumentFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.removepaymentinstrumentfrombasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1774,"kind":32,"name":"removePaymentInstrumentFromBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.removepaymentinstrumentfrombasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1775,"kind":32,"name":"removePriceAdjustmentFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.removepriceadjustmentfrombasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1776,"kind":32,"name":"removePriceAdjustmentFromBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.removepriceadjustmentfrombasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1777,"kind":32,"name":"removeShipmentFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.removeshipmentfrombasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1778,"kind":32,"name":"removeShipmentFromBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.removeshipmentfrombasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1779,"kind":32,"name":"transferBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.transferbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1780,"kind":32,"name":"transferBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.transferbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1781,"kind":32,"name":"updateAsAgentBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updateasagentbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1782,"kind":32,"name":"updateAsAgentBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updateasagentbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1783,"kind":32,"name":"updateAsStorefrontBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updateasstorefrontbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1784,"kind":32,"name":"updateAsStorefrontBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updateasstorefrontbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1785,"kind":32,"name":"updateBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updatebasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1786,"kind":32,"name":"updateBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updatebasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1787,"kind":32,"name":"updateBillingAddressForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updatebillingaddressforbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1788,"kind":32,"name":"updateBillingAddressForBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updatebillingaddressforbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1789,"kind":32,"name":"updateCustomerForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updatecustomerforbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1790,"kind":32,"name":"updateCustomerForBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updatecustomerforbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1791,"kind":32,"name":"updateGiftCertificateItemInBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updategiftcertificateiteminbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1792,"kind":32,"name":"updateGiftCertificateItemInBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updategiftcertificateiteminbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1793,"kind":32,"name":"updateItemInBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updateiteminbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1794,"kind":32,"name":"updateItemInBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updateiteminbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1795,"kind":32,"name":"updateItemsInBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updateitemsinbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1796,"kind":32,"name":"updateItemsInBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updateitemsinbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1797,"kind":32,"name":"updatePaymentInstrumentInBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updatepaymentinstrumentinbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1798,"kind":32,"name":"updatePaymentInstrumentInBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updatepaymentinstrumentinbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1799,"kind":32,"name":"updatePriceAdjustmentInBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updatepriceadjustmentinbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1800,"kind":32,"name":"updatePriceAdjustmentInBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updatepriceadjustmentinbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1801,"kind":32,"name":"updateShipmentForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updateshipmentforbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1802,"kind":32,"name":"updateShipmentForBasketRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updateshipmentforbasketrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1803,"kind":32,"name":"updateShippingAddressForShipment","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updateshippingaddressforshipment","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1804,"kind":32,"name":"updateShippingAddressForShipmentRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updateshippingaddressforshipmentrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1805,"kind":32,"name":"updateShippingMethodForShipment","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updateshippingmethodforshipment","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1806,"kind":32,"name":"updateShippingMethodForShipmentRequired","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#paramkeys.__type.updateshippingmethodforshipmentrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.ShopperBasketsV2.paramKeys.__type"},{"id":1807,"kind":2048,"name":"addCouponToBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#addcoupontobasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1808,"kind":2048,"name":"addGiftCertificateItemToBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#addgiftcertificateitemtobasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1809,"kind":2048,"name":"addItemToBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#additemtobasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1810,"kind":2048,"name":"addPaymentInstrumentToBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#addpaymentinstrumenttobasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1811,"kind":2048,"name":"addPriceAdjustmentToBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#addpriceadjustmenttobasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1812,"kind":2048,"name":"addPriceBooksToBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#addpricebookstobasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1813,"kind":2048,"name":"addTaxesForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#addtaxesforbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1814,"kind":2048,"name":"addTaxesForBasketItem","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#addtaxesforbasketitem-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1815,"kind":2048,"name":"createBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#createbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1816,"kind":2048,"name":"createShipmentForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#createshipmentforbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1817,"kind":2048,"name":"deleteBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#deletebasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1818,"kind":2048,"name":"getBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#getbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1819,"kind":2048,"name":"getPaymentMethodsForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#getpaymentmethodsforbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1820,"kind":2048,"name":"getPriceBooksForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#getpricebooksforbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1821,"kind":2048,"name":"getShippingMethodsForShipment","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#getshippingmethodsforshipment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1822,"kind":2048,"name":"getTaxesFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#gettaxesfrombasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1823,"kind":2048,"name":"mergeBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#mergebasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1824,"kind":2048,"name":"removeCouponFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#removecouponfrombasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1825,"kind":2048,"name":"removeGiftCertificateItemFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#removegiftcertificateitemfrombasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1826,"kind":2048,"name":"removeItemFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#removeitemfrombasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1827,"kind":2048,"name":"removePaymentInstrumentFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#removepaymentinstrumentfrombasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1828,"kind":2048,"name":"removePriceAdjustmentFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#removepriceadjustmentfrombasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1829,"kind":2048,"name":"removeShipmentFromBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#removeshipmentfrombasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1830,"kind":2048,"name":"transferBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#transferbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1831,"kind":2048,"name":"updateAsAgentBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#updateasagentbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1832,"kind":2048,"name":"updateAsStorefrontBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#updateasstorefrontbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1833,"kind":2048,"name":"updateBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#updatebasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1834,"kind":2048,"name":"updateBillingAddressForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#updatebillingaddressforbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1835,"kind":2048,"name":"updateCustomerForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#updatecustomerforbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1836,"kind":2048,"name":"updateGiftCertificateItemInBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#updategiftcertificateiteminbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1837,"kind":2048,"name":"updateItemInBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#updateiteminbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1838,"kind":2048,"name":"updateItemsInBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#updateitemsinbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1839,"kind":2048,"name":"updatePaymentInstrumentInBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#updatepaymentinstrumentinbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1840,"kind":2048,"name":"updatePriceAdjustmentInBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#updatepriceadjustmentinbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1841,"kind":2048,"name":"updateShipmentForBasket","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#updateshipmentforbasket-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1842,"kind":2048,"name":"updateShippingAddressForShipment","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#updateshippingaddressforshipment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1843,"kind":2048,"name":"updateShippingMethodForShipment","url":"classes/shopperbasketsv2.shopperbasketsv2-3.html#updateshippingmethodforshipment-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperBasketsv2.ShopperBasketsV2"},{"id":1844,"kind":4194304,"name":"CreateBasketTaxModeEnum","url":"modules/shopperbasketsv2.html#createbaskettaxmodeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1845,"kind":4194304,"name":"MergeBasketProductItemMergeModeEnum","url":"modules/shopperbasketsv2.html#mergebasketproductitemmergemodeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1846,"kind":4194304,"name":"addCouponToBasketQueryParameters","url":"modules/shopperbasketsv2.html#addcoupontobasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1847,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#addcoupontobasketqueryparameters-2.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.addCouponToBasketQueryParameters"},{"id":1848,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#addcoupontobasketqueryparameters-2.__type-1.siteid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addCouponToBasketQueryParameters.__type"},{"id":1849,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#addcoupontobasketqueryparameters-2.__type-1.locale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addCouponToBasketQueryParameters.__type"},{"id":1850,"kind":4194304,"name":"addCouponToBasketPathParameters","url":"modules/shopperbasketsv2.html#addcoupontobasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1851,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#addcoupontobasketpathparameters-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.addCouponToBasketPathParameters"},{"id":1852,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#addcoupontobasketpathparameters-2.__type.organizationid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addCouponToBasketPathParameters.__type"},{"id":1853,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#addcoupontobasketpathparameters-2.__type.basketid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addCouponToBasketPathParameters.__type"},{"id":1854,"kind":4194304,"name":"addGiftCertificateItemToBasketQueryParameters","url":"modules/shopperbasketsv2.html#addgiftcertificateitemtobasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1855,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#addgiftcertificateitemtobasketqueryparameters-2.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.addGiftCertificateItemToBasketQueryParameters"},{"id":1856,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#addgiftcertificateitemtobasketqueryparameters-2.__type-3.siteid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addGiftCertificateItemToBasketQueryParameters.__type"},{"id":1857,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#addgiftcertificateitemtobasketqueryparameters-2.__type-3.locale-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addGiftCertificateItemToBasketQueryParameters.__type"},{"id":1858,"kind":4194304,"name":"addGiftCertificateItemToBasketPathParameters","url":"modules/shopperbasketsv2.html#addgiftcertificateitemtobasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1859,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#addgiftcertificateitemtobasketpathparameters-2.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.addGiftCertificateItemToBasketPathParameters"},{"id":1860,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#addgiftcertificateitemtobasketpathparameters-2.__type-2.organizationid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addGiftCertificateItemToBasketPathParameters.__type"},{"id":1861,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#addgiftcertificateitemtobasketpathparameters-2.__type-2.basketid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addGiftCertificateItemToBasketPathParameters.__type"},{"id":1862,"kind":4194304,"name":"addItemToBasketQueryParameters","url":"modules/shopperbasketsv2.html#additemtobasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1863,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#additemtobasketqueryparameters-2.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.addItemToBasketQueryParameters"},{"id":1864,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#additemtobasketqueryparameters-2.__type-5.siteid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addItemToBasketQueryParameters.__type"},{"id":1865,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#additemtobasketqueryparameters-2.__type-5.locale-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addItemToBasketQueryParameters.__type"},{"id":1866,"kind":4194304,"name":"addItemToBasketPathParameters","url":"modules/shopperbasketsv2.html#additemtobasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1867,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#additemtobasketpathparameters-2.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.addItemToBasketPathParameters"},{"id":1868,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#additemtobasketpathparameters-2.__type-4.organizationid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addItemToBasketPathParameters.__type"},{"id":1869,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#additemtobasketpathparameters-2.__type-4.basketid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addItemToBasketPathParameters.__type"},{"id":1870,"kind":4194304,"name":"addPaymentInstrumentToBasketQueryParameters","url":"modules/shopperbasketsv2.html#addpaymentinstrumenttobasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1871,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#addpaymentinstrumenttobasketqueryparameters-2.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.addPaymentInstrumentToBasketQueryParameters"},{"id":1872,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#addpaymentinstrumenttobasketqueryparameters-2.__type-7.siteid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addPaymentInstrumentToBasketQueryParameters.__type"},{"id":1873,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#addpaymentinstrumenttobasketqueryparameters-2.__type-7.locale-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addPaymentInstrumentToBasketQueryParameters.__type"},{"id":1874,"kind":4194304,"name":"addPaymentInstrumentToBasketPathParameters","url":"modules/shopperbasketsv2.html#addpaymentinstrumenttobasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1875,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#addpaymentinstrumenttobasketpathparameters-2.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.addPaymentInstrumentToBasketPathParameters"},{"id":1876,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#addpaymentinstrumenttobasketpathparameters-2.__type-6.organizationid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addPaymentInstrumentToBasketPathParameters.__type"},{"id":1877,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#addpaymentinstrumenttobasketpathparameters-2.__type-6.basketid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addPaymentInstrumentToBasketPathParameters.__type"},{"id":1878,"kind":4194304,"name":"addPriceAdjustmentToBasketQueryParameters","url":"modules/shopperbasketsv2.html#addpriceadjustmenttobasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1879,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#addpriceadjustmenttobasketqueryparameters-2.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.addPriceAdjustmentToBasketQueryParameters"},{"id":1880,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#addpriceadjustmenttobasketqueryparameters-2.__type-9.siteid-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addPriceAdjustmentToBasketQueryParameters.__type"},{"id":1881,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#addpriceadjustmenttobasketqueryparameters-2.__type-9.locale-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addPriceAdjustmentToBasketQueryParameters.__type"},{"id":1882,"kind":4194304,"name":"addPriceAdjustmentToBasketPathParameters","url":"modules/shopperbasketsv2.html#addpriceadjustmenttobasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1883,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#addpriceadjustmenttobasketpathparameters-2.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.addPriceAdjustmentToBasketPathParameters"},{"id":1884,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#addpriceadjustmenttobasketpathparameters-2.__type-8.organizationid-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addPriceAdjustmentToBasketPathParameters.__type"},{"id":1885,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#addpriceadjustmenttobasketpathparameters-2.__type-8.basketid-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addPriceAdjustmentToBasketPathParameters.__type"},{"id":1886,"kind":4194304,"name":"addPriceBooksToBasketQueryParameters","url":"modules/shopperbasketsv2.html#addpricebookstobasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1887,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#addpricebookstobasketqueryparameters-2.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.addPriceBooksToBasketQueryParameters"},{"id":1888,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#addpricebookstobasketqueryparameters-2.__type-11.siteid-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addPriceBooksToBasketQueryParameters.__type"},{"id":1889,"kind":4194304,"name":"addPriceBooksToBasketPathParameters","url":"modules/shopperbasketsv2.html#addpricebookstobasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1890,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#addpricebookstobasketpathparameters-2.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.addPriceBooksToBasketPathParameters"},{"id":1891,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#addpricebookstobasketpathparameters-2.__type-10.organizationid-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addPriceBooksToBasketPathParameters.__type"},{"id":1892,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#addpricebookstobasketpathparameters-2.__type-10.basketid-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addPriceBooksToBasketPathParameters.__type"},{"id":1893,"kind":4194304,"name":"addTaxesForBasketQueryParameters","url":"modules/shopperbasketsv2.html#addtaxesforbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1894,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#addtaxesforbasketqueryparameters-2.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.addTaxesForBasketQueryParameters"},{"id":1895,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#addtaxesforbasketqueryparameters-2.__type-15.siteid-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addTaxesForBasketQueryParameters.__type"},{"id":1896,"kind":4194304,"name":"addTaxesForBasketPathParameters","url":"modules/shopperbasketsv2.html#addtaxesforbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1897,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#addtaxesforbasketpathparameters-2.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.addTaxesForBasketPathParameters"},{"id":1898,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#addtaxesforbasketpathparameters-2.__type-14.organizationid-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addTaxesForBasketPathParameters.__type"},{"id":1899,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#addtaxesforbasketpathparameters-2.__type-14.basketid-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addTaxesForBasketPathParameters.__type"},{"id":1900,"kind":4194304,"name":"addTaxesForBasketItemQueryParameters","url":"modules/shopperbasketsv2.html#addtaxesforbasketitemqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1901,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#addtaxesforbasketitemqueryparameters-2.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.addTaxesForBasketItemQueryParameters"},{"id":1902,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#addtaxesforbasketitemqueryparameters-2.__type-13.siteid-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addTaxesForBasketItemQueryParameters.__type"},{"id":1903,"kind":4194304,"name":"addTaxesForBasketItemPathParameters","url":"modules/shopperbasketsv2.html#addtaxesforbasketitempathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1904,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#addtaxesforbasketitempathparameters-2.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.addTaxesForBasketItemPathParameters"},{"id":1905,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#addtaxesforbasketitempathparameters-2.__type-12.organizationid-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addTaxesForBasketItemPathParameters.__type"},{"id":1906,"kind":32,"name":"itemId","url":"modules/shopperbasketsv2.html#addtaxesforbasketitempathparameters-2.__type-12.itemid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addTaxesForBasketItemPathParameters.__type"},{"id":1907,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#addtaxesforbasketitempathparameters-2.__type-12.basketid-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.addTaxesForBasketItemPathParameters.__type"},{"id":1908,"kind":4194304,"name":"createBasketQueryParameters","url":"modules/shopperbasketsv2.html#createbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1909,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#createbasketqueryparameters-2.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.createBasketQueryParameters"},{"id":1910,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#createbasketqueryparameters-2.__type-17.siteid-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.createBasketQueryParameters.__type"},{"id":1911,"kind":32,"name":"taxMode","url":"modules/shopperbasketsv2.html#createbasketqueryparameters-2.__type-17.taxmode","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.createBasketQueryParameters.__type"},{"id":1912,"kind":32,"name":"temporary","url":"modules/shopperbasketsv2.html#createbasketqueryparameters-2.__type-17.temporary","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.createBasketQueryParameters.__type"},{"id":1913,"kind":32,"name":"populateCustomerDetails","url":"modules/shopperbasketsv2.html#createbasketqueryparameters-2.__type-17.populatecustomerdetails","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.createBasketQueryParameters.__type"},{"id":1914,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#createbasketqueryparameters-2.__type-17.locale-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.createBasketQueryParameters.__type"},{"id":1915,"kind":4194304,"name":"createBasketPathParameters","url":"modules/shopperbasketsv2.html#createbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1916,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#createbasketpathparameters-2.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.createBasketPathParameters"},{"id":1917,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#createbasketpathparameters-2.__type-16.organizationid-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.createBasketPathParameters.__type"},{"id":1918,"kind":4194304,"name":"createShipmentForBasketQueryParameters","url":"modules/shopperbasketsv2.html#createshipmentforbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1919,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#createshipmentforbasketqueryparameters-2.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.createShipmentForBasketQueryParameters"},{"id":1920,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#createshipmentforbasketqueryparameters-2.__type-19.siteid-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.createShipmentForBasketQueryParameters.__type"},{"id":1921,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#createshipmentforbasketqueryparameters-2.__type-19.locale-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.createShipmentForBasketQueryParameters.__type"},{"id":1922,"kind":4194304,"name":"createShipmentForBasketPathParameters","url":"modules/shopperbasketsv2.html#createshipmentforbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1923,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#createshipmentforbasketpathparameters-2.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.createShipmentForBasketPathParameters"},{"id":1924,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#createshipmentforbasketpathparameters-2.__type-18.organizationid-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.createShipmentForBasketPathParameters.__type"},{"id":1925,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#createshipmentforbasketpathparameters-2.__type-18.basketid-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.createShipmentForBasketPathParameters.__type"},{"id":1926,"kind":4194304,"name":"deleteBasketQueryParameters","url":"modules/shopperbasketsv2.html#deletebasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1927,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#deletebasketqueryparameters-2.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.deleteBasketQueryParameters"},{"id":1928,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#deletebasketqueryparameters-2.__type-21.siteid-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.deleteBasketQueryParameters.__type"},{"id":1929,"kind":4194304,"name":"deleteBasketPathParameters","url":"modules/shopperbasketsv2.html#deletebasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1930,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#deletebasketpathparameters-2.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.deleteBasketPathParameters"},{"id":1931,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#deletebasketpathparameters-2.__type-20.organizationid-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.deleteBasketPathParameters.__type"},{"id":1932,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#deletebasketpathparameters-2.__type-20.basketid-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.deleteBasketPathParameters.__type"},{"id":1933,"kind":4194304,"name":"getBasketQueryParameters","url":"modules/shopperbasketsv2.html#getbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1934,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#getbasketqueryparameters-2.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.getBasketQueryParameters"},{"id":1935,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#getbasketqueryparameters-2.__type-23.siteid-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getBasketQueryParameters.__type"},{"id":1936,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#getbasketqueryparameters-2.__type-23.locale-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getBasketQueryParameters.__type"},{"id":1937,"kind":4194304,"name":"getBasketPathParameters","url":"modules/shopperbasketsv2.html#getbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1938,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#getbasketpathparameters-2.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.getBasketPathParameters"},{"id":1939,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#getbasketpathparameters-2.__type-22.organizationid-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getBasketPathParameters.__type"},{"id":1940,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#getbasketpathparameters-2.__type-22.basketid-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getBasketPathParameters.__type"},{"id":1941,"kind":4194304,"name":"getPaymentMethodsForBasketQueryParameters","url":"modules/shopperbasketsv2.html#getpaymentmethodsforbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1942,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#getpaymentmethodsforbasketqueryparameters-2.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.getPaymentMethodsForBasketQueryParameters"},{"id":1943,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#getpaymentmethodsforbasketqueryparameters-2.__type-25.siteid-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getPaymentMethodsForBasketQueryParameters.__type"},{"id":1944,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#getpaymentmethodsforbasketqueryparameters-2.__type-25.locale-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getPaymentMethodsForBasketQueryParameters.__type"},{"id":1945,"kind":4194304,"name":"getPaymentMethodsForBasketPathParameters","url":"modules/shopperbasketsv2.html#getpaymentmethodsforbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1946,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#getpaymentmethodsforbasketpathparameters-2.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.getPaymentMethodsForBasketPathParameters"},{"id":1947,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#getpaymentmethodsforbasketpathparameters-2.__type-24.organizationid-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getPaymentMethodsForBasketPathParameters.__type"},{"id":1948,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#getpaymentmethodsforbasketpathparameters-2.__type-24.basketid-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getPaymentMethodsForBasketPathParameters.__type"},{"id":1949,"kind":4194304,"name":"getPriceBooksForBasketQueryParameters","url":"modules/shopperbasketsv2.html#getpricebooksforbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1950,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#getpricebooksforbasketqueryparameters-2.__type-27","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.getPriceBooksForBasketQueryParameters"},{"id":1951,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#getpricebooksforbasketqueryparameters-2.__type-27.siteid-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getPriceBooksForBasketQueryParameters.__type"},{"id":1952,"kind":4194304,"name":"getPriceBooksForBasketPathParameters","url":"modules/shopperbasketsv2.html#getpricebooksforbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1953,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#getpricebooksforbasketpathparameters-2.__type-26","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.getPriceBooksForBasketPathParameters"},{"id":1954,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#getpricebooksforbasketpathparameters-2.__type-26.organizationid-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getPriceBooksForBasketPathParameters.__type"},{"id":1955,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#getpricebooksforbasketpathparameters-2.__type-26.basketid-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getPriceBooksForBasketPathParameters.__type"},{"id":1956,"kind":4194304,"name":"getShippingMethodsForShipmentQueryParameters","url":"modules/shopperbasketsv2.html#getshippingmethodsforshipmentqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1957,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#getshippingmethodsforshipmentqueryparameters-2.__type-29","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.getShippingMethodsForShipmentQueryParameters"},{"id":1958,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#getshippingmethodsforshipmentqueryparameters-2.__type-29.siteid-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getShippingMethodsForShipmentQueryParameters.__type"},{"id":1959,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#getshippingmethodsforshipmentqueryparameters-2.__type-29.locale-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getShippingMethodsForShipmentQueryParameters.__type"},{"id":1960,"kind":4194304,"name":"getShippingMethodsForShipmentPathParameters","url":"modules/shopperbasketsv2.html#getshippingmethodsforshipmentpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1961,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#getshippingmethodsforshipmentpathparameters-2.__type-28","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.getShippingMethodsForShipmentPathParameters"},{"id":1962,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#getshippingmethodsforshipmentpathparameters-2.__type-28.organizationid-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getShippingMethodsForShipmentPathParameters.__type"},{"id":1963,"kind":32,"name":"shipmentId","url":"modules/shopperbasketsv2.html#getshippingmethodsforshipmentpathparameters-2.__type-28.shipmentid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getShippingMethodsForShipmentPathParameters.__type"},{"id":1964,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#getshippingmethodsforshipmentpathparameters-2.__type-28.basketid-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getShippingMethodsForShipmentPathParameters.__type"},{"id":1965,"kind":4194304,"name":"getTaxesFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#gettaxesfrombasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1966,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#gettaxesfrombasketqueryparameters-2.__type-31","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.getTaxesFromBasketQueryParameters"},{"id":1967,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#gettaxesfrombasketqueryparameters-2.__type-31.siteid-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getTaxesFromBasketQueryParameters.__type"},{"id":1968,"kind":4194304,"name":"getTaxesFromBasketPathParameters","url":"modules/shopperbasketsv2.html#gettaxesfrombasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1969,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#gettaxesfrombasketpathparameters-2.__type-30","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.getTaxesFromBasketPathParameters"},{"id":1970,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#gettaxesfrombasketpathparameters-2.__type-30.organizationid-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getTaxesFromBasketPathParameters.__type"},{"id":1971,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#gettaxesfrombasketpathparameters-2.__type-30.basketid-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.getTaxesFromBasketPathParameters.__type"},{"id":1972,"kind":4194304,"name":"mergeBasketQueryParameters","url":"modules/shopperbasketsv2.html#mergebasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1973,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#mergebasketqueryparameters-2.__type-33","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.mergeBasketQueryParameters"},{"id":1974,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#mergebasketqueryparameters-2.__type-33.siteid-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.mergeBasketQueryParameters.__type"},{"id":1975,"kind":32,"name":"createDestinationBasket","url":"modules/shopperbasketsv2.html#mergebasketqueryparameters-2.__type-33.createdestinationbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.mergeBasketQueryParameters.__type"},{"id":1976,"kind":32,"name":"productItemMergeMode","url":"modules/shopperbasketsv2.html#mergebasketqueryparameters-2.__type-33.productitemmergemode","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.mergeBasketQueryParameters.__type"},{"id":1977,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#mergebasketqueryparameters-2.__type-33.locale-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.mergeBasketQueryParameters.__type"},{"id":1978,"kind":4194304,"name":"mergeBasketPathParameters","url":"modules/shopperbasketsv2.html#mergebasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1979,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#mergebasketpathparameters-2.__type-32","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.mergeBasketPathParameters"},{"id":1980,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#mergebasketpathparameters-2.__type-32.organizationid-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.mergeBasketPathParameters.__type"},{"id":1981,"kind":4194304,"name":"removeCouponFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#removecouponfrombasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1982,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#removecouponfrombasketqueryparameters-2.__type-35","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.removeCouponFromBasketQueryParameters"},{"id":1983,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#removecouponfrombasketqueryparameters-2.__type-35.siteid-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeCouponFromBasketQueryParameters.__type"},{"id":1984,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#removecouponfrombasketqueryparameters-2.__type-35.locale-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeCouponFromBasketQueryParameters.__type"},{"id":1985,"kind":4194304,"name":"removeCouponFromBasketPathParameters","url":"modules/shopperbasketsv2.html#removecouponfrombasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1986,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#removecouponfrombasketpathparameters-2.__type-34","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.removeCouponFromBasketPathParameters"},{"id":1987,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#removecouponfrombasketpathparameters-2.__type-34.organizationid-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeCouponFromBasketPathParameters.__type"},{"id":1988,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#removecouponfrombasketpathparameters-2.__type-34.basketid-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeCouponFromBasketPathParameters.__type"},{"id":1989,"kind":32,"name":"couponItemId","url":"modules/shopperbasketsv2.html#removecouponfrombasketpathparameters-2.__type-34.couponitemid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeCouponFromBasketPathParameters.__type"},{"id":1990,"kind":4194304,"name":"removeGiftCertificateItemFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#removegiftcertificateitemfrombasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1991,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#removegiftcertificateitemfrombasketqueryparameters-2.__type-37","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.removeGiftCertificateItemFromBasketQueryParameters"},{"id":1992,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#removegiftcertificateitemfrombasketqueryparameters-2.__type-37.siteid-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeGiftCertificateItemFromBasketQueryParameters.__type"},{"id":1993,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#removegiftcertificateitemfrombasketqueryparameters-2.__type-37.locale-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeGiftCertificateItemFromBasketQueryParameters.__type"},{"id":1994,"kind":4194304,"name":"removeGiftCertificateItemFromBasketPathParameters","url":"modules/shopperbasketsv2.html#removegiftcertificateitemfrombasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":1995,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#removegiftcertificateitemfrombasketpathparameters-2.__type-36","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.removeGiftCertificateItemFromBasketPathParameters"},{"id":1996,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#removegiftcertificateitemfrombasketpathparameters-2.__type-36.organizationid-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeGiftCertificateItemFromBasketPathParameters.__type"},{"id":1997,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#removegiftcertificateitemfrombasketpathparameters-2.__type-36.basketid-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeGiftCertificateItemFromBasketPathParameters.__type"},{"id":1998,"kind":32,"name":"giftCertificateItemId","url":"modules/shopperbasketsv2.html#removegiftcertificateitemfrombasketpathparameters-2.__type-36.giftcertificateitemid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeGiftCertificateItemFromBasketPathParameters.__type"},{"id":1999,"kind":4194304,"name":"removeItemFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#removeitemfrombasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2000,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#removeitemfrombasketqueryparameters-2.__type-39","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.removeItemFromBasketQueryParameters"},{"id":2001,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#removeitemfrombasketqueryparameters-2.__type-39.siteid-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeItemFromBasketQueryParameters.__type"},{"id":2002,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#removeitemfrombasketqueryparameters-2.__type-39.locale-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeItemFromBasketQueryParameters.__type"},{"id":2003,"kind":4194304,"name":"removeItemFromBasketPathParameters","url":"modules/shopperbasketsv2.html#removeitemfrombasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2004,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#removeitemfrombasketpathparameters-2.__type-38","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.removeItemFromBasketPathParameters"},{"id":2005,"kind":32,"name":"itemId","url":"modules/shopperbasketsv2.html#removeitemfrombasketpathparameters-2.__type-38.itemid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeItemFromBasketPathParameters.__type"},{"id":2006,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#removeitemfrombasketpathparameters-2.__type-38.organizationid-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeItemFromBasketPathParameters.__type"},{"id":2007,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#removeitemfrombasketpathparameters-2.__type-38.basketid-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeItemFromBasketPathParameters.__type"},{"id":2008,"kind":4194304,"name":"removePaymentInstrumentFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#removepaymentinstrumentfrombasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2009,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#removepaymentinstrumentfrombasketqueryparameters-2.__type-41","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.removePaymentInstrumentFromBasketQueryParameters"},{"id":2010,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#removepaymentinstrumentfrombasketqueryparameters-2.__type-41.siteid-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removePaymentInstrumentFromBasketQueryParameters.__type"},{"id":2011,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#removepaymentinstrumentfrombasketqueryparameters-2.__type-41.locale-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removePaymentInstrumentFromBasketQueryParameters.__type"},{"id":2012,"kind":4194304,"name":"removePaymentInstrumentFromBasketPathParameters","url":"modules/shopperbasketsv2.html#removepaymentinstrumentfrombasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2013,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#removepaymentinstrumentfrombasketpathparameters-2.__type-40","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.removePaymentInstrumentFromBasketPathParameters"},{"id":2014,"kind":32,"name":"paymentInstrumentId","url":"modules/shopperbasketsv2.html#removepaymentinstrumentfrombasketpathparameters-2.__type-40.paymentinstrumentid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removePaymentInstrumentFromBasketPathParameters.__type"},{"id":2015,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#removepaymentinstrumentfrombasketpathparameters-2.__type-40.organizationid-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removePaymentInstrumentFromBasketPathParameters.__type"},{"id":2016,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#removepaymentinstrumentfrombasketpathparameters-2.__type-40.basketid-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removePaymentInstrumentFromBasketPathParameters.__type"},{"id":2017,"kind":4194304,"name":"removePriceAdjustmentFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#removepriceadjustmentfrombasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2018,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#removepriceadjustmentfrombasketqueryparameters-2.__type-43","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.removePriceAdjustmentFromBasketQueryParameters"},{"id":2019,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#removepriceadjustmentfrombasketqueryparameters-2.__type-43.siteid-21","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removePriceAdjustmentFromBasketQueryParameters.__type"},{"id":2020,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#removepriceadjustmentfrombasketqueryparameters-2.__type-43.locale-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removePriceAdjustmentFromBasketQueryParameters.__type"},{"id":2021,"kind":4194304,"name":"removePriceAdjustmentFromBasketPathParameters","url":"modules/shopperbasketsv2.html#removepriceadjustmentfrombasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2022,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#removepriceadjustmentfrombasketpathparameters-2.__type-42","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.removePriceAdjustmentFromBasketPathParameters"},{"id":2023,"kind":32,"name":"priceAdjustmentId","url":"modules/shopperbasketsv2.html#removepriceadjustmentfrombasketpathparameters-2.__type-42.priceadjustmentid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removePriceAdjustmentFromBasketPathParameters.__type"},{"id":2024,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#removepriceadjustmentfrombasketpathparameters-2.__type-42.organizationid-21","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removePriceAdjustmentFromBasketPathParameters.__type"},{"id":2025,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#removepriceadjustmentfrombasketpathparameters-2.__type-42.basketid-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removePriceAdjustmentFromBasketPathParameters.__type"},{"id":2026,"kind":4194304,"name":"removeShipmentFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#removeshipmentfrombasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2027,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#removeshipmentfrombasketqueryparameters-2.__type-45","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.removeShipmentFromBasketQueryParameters"},{"id":2028,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#removeshipmentfrombasketqueryparameters-2.__type-45.siteid-22","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeShipmentFromBasketQueryParameters.__type"},{"id":2029,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#removeshipmentfrombasketqueryparameters-2.__type-45.locale-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeShipmentFromBasketQueryParameters.__type"},{"id":2030,"kind":4194304,"name":"removeShipmentFromBasketPathParameters","url":"modules/shopperbasketsv2.html#removeshipmentfrombasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2031,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#removeshipmentfrombasketpathparameters-2.__type-44","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.removeShipmentFromBasketPathParameters"},{"id":2032,"kind":32,"name":"shipmentId","url":"modules/shopperbasketsv2.html#removeshipmentfrombasketpathparameters-2.__type-44.shipmentid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeShipmentFromBasketPathParameters.__type"},{"id":2033,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#removeshipmentfrombasketpathparameters-2.__type-44.organizationid-22","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeShipmentFromBasketPathParameters.__type"},{"id":2034,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#removeshipmentfrombasketpathparameters-2.__type-44.basketid-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.removeShipmentFromBasketPathParameters.__type"},{"id":2035,"kind":4194304,"name":"transferBasketQueryParameters","url":"modules/shopperbasketsv2.html#transferbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2036,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#transferbasketqueryparameters-2.__type-47","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.transferBasketQueryParameters"},{"id":2037,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#transferbasketqueryparameters-2.__type-47.siteid-23","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.transferBasketQueryParameters.__type"},{"id":2038,"kind":32,"name":"overrideExisting","url":"modules/shopperbasketsv2.html#transferbasketqueryparameters-2.__type-47.overrideexisting","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.transferBasketQueryParameters.__type"},{"id":2039,"kind":32,"name":"merge","url":"modules/shopperbasketsv2.html#transferbasketqueryparameters-2.__type-47.merge","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.transferBasketQueryParameters.__type"},{"id":2040,"kind":32,"name":"populateCustomerDetails","url":"modules/shopperbasketsv2.html#transferbasketqueryparameters-2.__type-47.populatecustomerdetails-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.transferBasketQueryParameters.__type"},{"id":2041,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#transferbasketqueryparameters-2.__type-47.locale-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.transferBasketQueryParameters.__type"},{"id":2042,"kind":4194304,"name":"transferBasketPathParameters","url":"modules/shopperbasketsv2.html#transferbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2043,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#transferbasketpathparameters-2.__type-46","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.transferBasketPathParameters"},{"id":2044,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#transferbasketpathparameters-2.__type-46.organizationid-23","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.transferBasketPathParameters.__type"},{"id":2045,"kind":4194304,"name":"updateAsAgentBasketQueryParameters","url":"modules/shopperbasketsv2.html#updateasagentbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2046,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updateasagentbasketqueryparameters-2.__type-49","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateAsAgentBasketQueryParameters"},{"id":2047,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#updateasagentbasketqueryparameters-2.__type-49.siteid-24","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateAsAgentBasketQueryParameters.__type"},{"id":2048,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#updateasagentbasketqueryparameters-2.__type-49.locale-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateAsAgentBasketQueryParameters.__type"},{"id":2049,"kind":4194304,"name":"updateAsAgentBasketPathParameters","url":"modules/shopperbasketsv2.html#updateasagentbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2050,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updateasagentbasketpathparameters-2.__type-48","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateAsAgentBasketPathParameters"},{"id":2051,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#updateasagentbasketpathparameters-2.__type-48.organizationid-24","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateAsAgentBasketPathParameters.__type"},{"id":2052,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#updateasagentbasketpathparameters-2.__type-48.basketid-21","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateAsAgentBasketPathParameters.__type"},{"id":2053,"kind":4194304,"name":"updateAsStorefrontBasketQueryParameters","url":"modules/shopperbasketsv2.html#updateasstorefrontbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2054,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updateasstorefrontbasketqueryparameters-2.__type-51","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateAsStorefrontBasketQueryParameters"},{"id":2055,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#updateasstorefrontbasketqueryparameters-2.__type-51.siteid-25","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateAsStorefrontBasketQueryParameters.__type"},{"id":2056,"kind":32,"name":"exchange","url":"modules/shopperbasketsv2.html#updateasstorefrontbasketqueryparameters-2.__type-51.exchange","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateAsStorefrontBasketQueryParameters.__type"},{"id":2057,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#updateasstorefrontbasketqueryparameters-2.__type-51.locale-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateAsStorefrontBasketQueryParameters.__type"},{"id":2058,"kind":4194304,"name":"updateAsStorefrontBasketPathParameters","url":"modules/shopperbasketsv2.html#updateasstorefrontbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2059,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updateasstorefrontbasketpathparameters-2.__type-50","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateAsStorefrontBasketPathParameters"},{"id":2060,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#updateasstorefrontbasketpathparameters-2.__type-50.organizationid-25","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateAsStorefrontBasketPathParameters.__type"},{"id":2061,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#updateasstorefrontbasketpathparameters-2.__type-50.basketid-22","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateAsStorefrontBasketPathParameters.__type"},{"id":2062,"kind":4194304,"name":"updateBasketQueryParameters","url":"modules/shopperbasketsv2.html#updatebasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2063,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updatebasketqueryparameters-2.__type-53","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateBasketQueryParameters"},{"id":2064,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#updatebasketqueryparameters-2.__type-53.siteid-26","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateBasketQueryParameters.__type"},{"id":2065,"kind":32,"name":"removeExternalTax","url":"modules/shopperbasketsv2.html#updatebasketqueryparameters-2.__type-53.removeexternaltax","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateBasketQueryParameters.__type"},{"id":2066,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#updatebasketqueryparameters-2.__type-53.locale-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateBasketQueryParameters.__type"},{"id":2067,"kind":4194304,"name":"updateBasketPathParameters","url":"modules/shopperbasketsv2.html#updatebasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2068,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updatebasketpathparameters-2.__type-52","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateBasketPathParameters"},{"id":2069,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#updatebasketpathparameters-2.__type-52.organizationid-26","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateBasketPathParameters.__type"},{"id":2070,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#updatebasketpathparameters-2.__type-52.basketid-23","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateBasketPathParameters.__type"},{"id":2071,"kind":4194304,"name":"updateBillingAddressForBasketQueryParameters","url":"modules/shopperbasketsv2.html#updatebillingaddressforbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2072,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updatebillingaddressforbasketqueryparameters-2.__type-55","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateBillingAddressForBasketQueryParameters"},{"id":2073,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#updatebillingaddressforbasketqueryparameters-2.__type-55.siteid-27","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateBillingAddressForBasketQueryParameters.__type"},{"id":2074,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#updatebillingaddressforbasketqueryparameters-2.__type-55.locale-21","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateBillingAddressForBasketQueryParameters.__type"},{"id":2075,"kind":32,"name":"useAsShipping","url":"modules/shopperbasketsv2.html#updatebillingaddressforbasketqueryparameters-2.__type-55.useasshipping","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateBillingAddressForBasketQueryParameters.__type"},{"id":2076,"kind":32,"name":"removeExternalTax","url":"modules/shopperbasketsv2.html#updatebillingaddressforbasketqueryparameters-2.__type-55.removeexternaltax-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateBillingAddressForBasketQueryParameters.__type"},{"id":2077,"kind":4194304,"name":"updateBillingAddressForBasketPathParameters","url":"modules/shopperbasketsv2.html#updatebillingaddressforbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2078,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updatebillingaddressforbasketpathparameters-2.__type-54","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateBillingAddressForBasketPathParameters"},{"id":2079,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#updatebillingaddressforbasketpathparameters-2.__type-54.organizationid-27","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateBillingAddressForBasketPathParameters.__type"},{"id":2080,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#updatebillingaddressforbasketpathparameters-2.__type-54.basketid-24","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateBillingAddressForBasketPathParameters.__type"},{"id":2081,"kind":4194304,"name":"updateCustomerForBasketQueryParameters","url":"modules/shopperbasketsv2.html#updatecustomerforbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2082,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updatecustomerforbasketqueryparameters-2.__type-57","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateCustomerForBasketQueryParameters"},{"id":2083,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#updatecustomerforbasketqueryparameters-2.__type-57.siteid-28","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateCustomerForBasketQueryParameters.__type"},{"id":2084,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#updatecustomerforbasketqueryparameters-2.__type-57.locale-22","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateCustomerForBasketQueryParameters.__type"},{"id":2085,"kind":4194304,"name":"updateCustomerForBasketPathParameters","url":"modules/shopperbasketsv2.html#updatecustomerforbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2086,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updatecustomerforbasketpathparameters-2.__type-56","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateCustomerForBasketPathParameters"},{"id":2087,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#updatecustomerforbasketpathparameters-2.__type-56.organizationid-28","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateCustomerForBasketPathParameters.__type"},{"id":2088,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#updatecustomerforbasketpathparameters-2.__type-56.basketid-25","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateCustomerForBasketPathParameters.__type"},{"id":2089,"kind":4194304,"name":"updateGiftCertificateItemInBasketQueryParameters","url":"modules/shopperbasketsv2.html#updategiftcertificateiteminbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2090,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updategiftcertificateiteminbasketqueryparameters-2.__type-59","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateGiftCertificateItemInBasketQueryParameters"},{"id":2091,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#updategiftcertificateiteminbasketqueryparameters-2.__type-59.siteid-29","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateGiftCertificateItemInBasketQueryParameters.__type"},{"id":2092,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#updategiftcertificateiteminbasketqueryparameters-2.__type-59.locale-23","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateGiftCertificateItemInBasketQueryParameters.__type"},{"id":2093,"kind":4194304,"name":"updateGiftCertificateItemInBasketPathParameters","url":"modules/shopperbasketsv2.html#updategiftcertificateiteminbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2094,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updategiftcertificateiteminbasketpathparameters-2.__type-58","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateGiftCertificateItemInBasketPathParameters"},{"id":2095,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#updategiftcertificateiteminbasketpathparameters-2.__type-58.organizationid-29","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateGiftCertificateItemInBasketPathParameters.__type"},{"id":2096,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#updategiftcertificateiteminbasketpathparameters-2.__type-58.basketid-26","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateGiftCertificateItemInBasketPathParameters.__type"},{"id":2097,"kind":32,"name":"giftCertificateItemId","url":"modules/shopperbasketsv2.html#updategiftcertificateiteminbasketpathparameters-2.__type-58.giftcertificateitemid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateGiftCertificateItemInBasketPathParameters.__type"},{"id":2098,"kind":4194304,"name":"updateItemInBasketQueryParameters","url":"modules/shopperbasketsv2.html#updateiteminbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2099,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updateiteminbasketqueryparameters-2.__type-61","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateItemInBasketQueryParameters"},{"id":2100,"kind":32,"name":"removeExternalTax","url":"modules/shopperbasketsv2.html#updateiteminbasketqueryparameters-2.__type-61.removeexternaltax-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateItemInBasketQueryParameters.__type"},{"id":2101,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#updateiteminbasketqueryparameters-2.__type-61.siteid-30","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateItemInBasketQueryParameters.__type"},{"id":2102,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#updateiteminbasketqueryparameters-2.__type-61.locale-24","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateItemInBasketQueryParameters.__type"},{"id":2103,"kind":4194304,"name":"updateItemInBasketPathParameters","url":"modules/shopperbasketsv2.html#updateiteminbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2104,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updateiteminbasketpathparameters-2.__type-60","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateItemInBasketPathParameters"},{"id":2105,"kind":32,"name":"itemId","url":"modules/shopperbasketsv2.html#updateiteminbasketpathparameters-2.__type-60.itemid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateItemInBasketPathParameters.__type"},{"id":2106,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#updateiteminbasketpathparameters-2.__type-60.organizationid-30","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateItemInBasketPathParameters.__type"},{"id":2107,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#updateiteminbasketpathparameters-2.__type-60.basketid-27","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateItemInBasketPathParameters.__type"},{"id":2108,"kind":4194304,"name":"updateItemsInBasketQueryParameters","url":"modules/shopperbasketsv2.html#updateitemsinbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2109,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updateitemsinbasketqueryparameters-2.__type-63","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateItemsInBasketQueryParameters"},{"id":2110,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#updateitemsinbasketqueryparameters-2.__type-63.siteid-31","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateItemsInBasketQueryParameters.__type"},{"id":2111,"kind":32,"name":"removeExternalTax","url":"modules/shopperbasketsv2.html#updateitemsinbasketqueryparameters-2.__type-63.removeexternaltax-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateItemsInBasketQueryParameters.__type"},{"id":2112,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#updateitemsinbasketqueryparameters-2.__type-63.locale-25","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateItemsInBasketQueryParameters.__type"},{"id":2113,"kind":4194304,"name":"updateItemsInBasketPathParameters","url":"modules/shopperbasketsv2.html#updateitemsinbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2114,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updateitemsinbasketpathparameters-2.__type-62","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateItemsInBasketPathParameters"},{"id":2115,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#updateitemsinbasketpathparameters-2.__type-62.organizationid-31","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateItemsInBasketPathParameters.__type"},{"id":2116,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#updateitemsinbasketpathparameters-2.__type-62.basketid-28","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateItemsInBasketPathParameters.__type"},{"id":2117,"kind":4194304,"name":"updatePaymentInstrumentInBasketQueryParameters","url":"modules/shopperbasketsv2.html#updatepaymentinstrumentinbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2118,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updatepaymentinstrumentinbasketqueryparameters-2.__type-65","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updatePaymentInstrumentInBasketQueryParameters"},{"id":2119,"kind":32,"name":"removeExternalTax","url":"modules/shopperbasketsv2.html#updatepaymentinstrumentinbasketqueryparameters-2.__type-65.removeexternaltax-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updatePaymentInstrumentInBasketQueryParameters.__type"},{"id":2120,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#updatepaymentinstrumentinbasketqueryparameters-2.__type-65.siteid-32","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updatePaymentInstrumentInBasketQueryParameters.__type"},{"id":2121,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#updatepaymentinstrumentinbasketqueryparameters-2.__type-65.locale-26","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updatePaymentInstrumentInBasketQueryParameters.__type"},{"id":2122,"kind":4194304,"name":"updatePaymentInstrumentInBasketPathParameters","url":"modules/shopperbasketsv2.html#updatepaymentinstrumentinbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2123,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updatepaymentinstrumentinbasketpathparameters-2.__type-64","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updatePaymentInstrumentInBasketPathParameters"},{"id":2124,"kind":32,"name":"paymentInstrumentId","url":"modules/shopperbasketsv2.html#updatepaymentinstrumentinbasketpathparameters-2.__type-64.paymentinstrumentid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updatePaymentInstrumentInBasketPathParameters.__type"},{"id":2125,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#updatepaymentinstrumentinbasketpathparameters-2.__type-64.organizationid-32","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updatePaymentInstrumentInBasketPathParameters.__type"},{"id":2126,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#updatepaymentinstrumentinbasketpathparameters-2.__type-64.basketid-29","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updatePaymentInstrumentInBasketPathParameters.__type"},{"id":2127,"kind":4194304,"name":"updatePriceAdjustmentInBasketQueryParameters","url":"modules/shopperbasketsv2.html#updatepriceadjustmentinbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2128,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updatepriceadjustmentinbasketqueryparameters-2.__type-67","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updatePriceAdjustmentInBasketQueryParameters"},{"id":2129,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#updatepriceadjustmentinbasketqueryparameters-2.__type-67.siteid-33","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updatePriceAdjustmentInBasketQueryParameters.__type"},{"id":2130,"kind":4194304,"name":"updatePriceAdjustmentInBasketPathParameters","url":"modules/shopperbasketsv2.html#updatepriceadjustmentinbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2131,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updatepriceadjustmentinbasketpathparameters-2.__type-66","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updatePriceAdjustmentInBasketPathParameters"},{"id":2132,"kind":32,"name":"priceAdjustmentId","url":"modules/shopperbasketsv2.html#updatepriceadjustmentinbasketpathparameters-2.__type-66.priceadjustmentid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updatePriceAdjustmentInBasketPathParameters.__type"},{"id":2133,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#updatepriceadjustmentinbasketpathparameters-2.__type-66.organizationid-33","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updatePriceAdjustmentInBasketPathParameters.__type"},{"id":2134,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#updatepriceadjustmentinbasketpathparameters-2.__type-66.basketid-30","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updatePriceAdjustmentInBasketPathParameters.__type"},{"id":2135,"kind":4194304,"name":"updateShipmentForBasketQueryParameters","url":"modules/shopperbasketsv2.html#updateshipmentforbasketqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2136,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updateshipmentforbasketqueryparameters-2.__type-69","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateShipmentForBasketQueryParameters"},{"id":2137,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#updateshipmentforbasketqueryparameters-2.__type-69.siteid-34","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateShipmentForBasketQueryParameters.__type"},{"id":2138,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#updateshipmentforbasketqueryparameters-2.__type-69.locale-27","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateShipmentForBasketQueryParameters.__type"},{"id":2139,"kind":4194304,"name":"updateShipmentForBasketPathParameters","url":"modules/shopperbasketsv2.html#updateshipmentforbasketpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2140,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updateshipmentforbasketpathparameters-2.__type-68","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateShipmentForBasketPathParameters"},{"id":2141,"kind":32,"name":"shipmentId","url":"modules/shopperbasketsv2.html#updateshipmentforbasketpathparameters-2.__type-68.shipmentid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateShipmentForBasketPathParameters.__type"},{"id":2142,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#updateshipmentforbasketpathparameters-2.__type-68.organizationid-34","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateShipmentForBasketPathParameters.__type"},{"id":2143,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#updateshipmentforbasketpathparameters-2.__type-68.basketid-31","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateShipmentForBasketPathParameters.__type"},{"id":2144,"kind":4194304,"name":"updateShippingAddressForShipmentQueryParameters","url":"modules/shopperbasketsv2.html#updateshippingaddressforshipmentqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2145,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updateshippingaddressforshipmentqueryparameters-2.__type-71","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateShippingAddressForShipmentQueryParameters"},{"id":2146,"kind":32,"name":"useAsBilling","url":"modules/shopperbasketsv2.html#updateshippingaddressforshipmentqueryparameters-2.__type-71.useasbilling","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateShippingAddressForShipmentQueryParameters.__type"},{"id":2147,"kind":32,"name":"removeExternalTax","url":"modules/shopperbasketsv2.html#updateshippingaddressforshipmentqueryparameters-2.__type-71.removeexternaltax-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateShippingAddressForShipmentQueryParameters.__type"},{"id":2148,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#updateshippingaddressforshipmentqueryparameters-2.__type-71.siteid-35","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateShippingAddressForShipmentQueryParameters.__type"},{"id":2149,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#updateshippingaddressforshipmentqueryparameters-2.__type-71.locale-28","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateShippingAddressForShipmentQueryParameters.__type"},{"id":2150,"kind":4194304,"name":"updateShippingAddressForShipmentPathParameters","url":"modules/shopperbasketsv2.html#updateshippingaddressforshipmentpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2151,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updateshippingaddressforshipmentpathparameters-2.__type-70","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateShippingAddressForShipmentPathParameters"},{"id":2152,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#updateshippingaddressforshipmentpathparameters-2.__type-70.organizationid-35","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateShippingAddressForShipmentPathParameters.__type"},{"id":2153,"kind":32,"name":"shipmentId","url":"modules/shopperbasketsv2.html#updateshippingaddressforshipmentpathparameters-2.__type-70.shipmentid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateShippingAddressForShipmentPathParameters.__type"},{"id":2154,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#updateshippingaddressforshipmentpathparameters-2.__type-70.basketid-32","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateShippingAddressForShipmentPathParameters.__type"},{"id":2155,"kind":4194304,"name":"updateShippingMethodForShipmentQueryParameters","url":"modules/shopperbasketsv2.html#updateshippingmethodforshipmentqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2156,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updateshippingmethodforshipmentqueryparameters-2.__type-73","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateShippingMethodForShipmentQueryParameters"},{"id":2157,"kind":32,"name":"siteId","url":"modules/shopperbasketsv2.html#updateshippingmethodforshipmentqueryparameters-2.__type-73.siteid-36","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateShippingMethodForShipmentQueryParameters.__type"},{"id":2158,"kind":32,"name":"locale","url":"modules/shopperbasketsv2.html#updateshippingmethodforshipmentqueryparameters-2.__type-73.locale-29","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateShippingMethodForShipmentQueryParameters.__type"},{"id":2159,"kind":4194304,"name":"updateShippingMethodForShipmentPathParameters","url":"modules/shopperbasketsv2.html#updateshippingmethodforshipmentpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2160,"kind":65536,"name":"__type","url":"modules/shopperbasketsv2.html#updateshippingmethodforshipmentpathparameters-2.__type-72","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperBasketsv2.updateShippingMethodForShipmentPathParameters"},{"id":2161,"kind":32,"name":"organizationId","url":"modules/shopperbasketsv2.html#updateshippingmethodforshipmentpathparameters-2.__type-72.organizationid-36","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateShippingMethodForShipmentPathParameters.__type"},{"id":2162,"kind":32,"name":"shipmentId","url":"modules/shopperbasketsv2.html#updateshippingmethodforshipmentpathparameters-2.__type-72.shipmentid-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateShippingMethodForShipmentPathParameters.__type"},{"id":2163,"kind":32,"name":"basketId","url":"modules/shopperbasketsv2.html#updateshippingmethodforshipmentpathparameters-2.__type-72.basketid-33","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperBasketsv2.updateShippingMethodForShipmentPathParameters.__type"},{"id":2164,"kind":4194304,"name":"ShopperBasketsV2PathParameters","url":"modules/shopperbasketsv2.html#shopperbasketsv2pathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2165,"kind":4194304,"name":"ShopperBasketsV2QueryParameters","url":"modules/shopperbasketsv2.html#shopperbasketsv2queryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2166,"kind":4194304,"name":"ShopperBasketsV2Parameters","url":"modules/shopperbasketsv2.html#shopperbasketsv2parameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2167,"kind":4194304,"name":"ShopperBasketsPathParameters","url":"modules/shopperbasketsv2.html#shopperbasketspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2168,"kind":4194304,"name":"ShopperBasketsQueryParameters","url":"modules/shopperbasketsv2.html#shopperbasketsqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2169,"kind":4194304,"name":"ShopperBasketsParameters","url":"modules/shopperbasketsv2.html#shopperbasketsparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2170,"kind":16777216,"name":"CreateBasketTaxModeEnum","url":"modules/shopperbasketsv2.html#createbaskettaxmodeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2171,"kind":16777216,"name":"MergeBasketProductItemMergeModeEnum","url":"modules/shopperbasketsv2.html#mergebasketproductitemmergemodeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2172,"kind":16777216,"name":"addCouponToBasketQueryParameters","url":"modules/shopperbasketsv2.html#addcoupontobasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2173,"kind":16777216,"name":"addCouponToBasketPathParameters","url":"modules/shopperbasketsv2.html#addcoupontobasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2174,"kind":16777216,"name":"addGiftCertificateItemToBasketQueryParameters","url":"modules/shopperbasketsv2.html#addgiftcertificateitemtobasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2175,"kind":16777216,"name":"addGiftCertificateItemToBasketPathParameters","url":"modules/shopperbasketsv2.html#addgiftcertificateitemtobasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2176,"kind":16777216,"name":"addItemToBasketQueryParameters","url":"modules/shopperbasketsv2.html#additemtobasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2177,"kind":16777216,"name":"addItemToBasketPathParameters","url":"modules/shopperbasketsv2.html#additemtobasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2178,"kind":16777216,"name":"addPaymentInstrumentToBasketQueryParameters","url":"modules/shopperbasketsv2.html#addpaymentinstrumenttobasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2179,"kind":16777216,"name":"addPaymentInstrumentToBasketPathParameters","url":"modules/shopperbasketsv2.html#addpaymentinstrumenttobasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2180,"kind":16777216,"name":"addPriceAdjustmentToBasketQueryParameters","url":"modules/shopperbasketsv2.html#addpriceadjustmenttobasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2181,"kind":16777216,"name":"addPriceAdjustmentToBasketPathParameters","url":"modules/shopperbasketsv2.html#addpriceadjustmenttobasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2182,"kind":16777216,"name":"addPriceBooksToBasketQueryParameters","url":"modules/shopperbasketsv2.html#addpricebookstobasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2183,"kind":16777216,"name":"addPriceBooksToBasketPathParameters","url":"modules/shopperbasketsv2.html#addpricebookstobasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2184,"kind":16777216,"name":"addTaxesForBasketQueryParameters","url":"modules/shopperbasketsv2.html#addtaxesforbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2185,"kind":16777216,"name":"addTaxesForBasketPathParameters","url":"modules/shopperbasketsv2.html#addtaxesforbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2186,"kind":16777216,"name":"addTaxesForBasketItemQueryParameters","url":"modules/shopperbasketsv2.html#addtaxesforbasketitemqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2187,"kind":16777216,"name":"addTaxesForBasketItemPathParameters","url":"modules/shopperbasketsv2.html#addtaxesforbasketitempathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2188,"kind":16777216,"name":"createBasketQueryParameters","url":"modules/shopperbasketsv2.html#createbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2189,"kind":16777216,"name":"createBasketPathParameters","url":"modules/shopperbasketsv2.html#createbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2190,"kind":16777216,"name":"createShipmentForBasketQueryParameters","url":"modules/shopperbasketsv2.html#createshipmentforbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2191,"kind":16777216,"name":"createShipmentForBasketPathParameters","url":"modules/shopperbasketsv2.html#createshipmentforbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2192,"kind":16777216,"name":"deleteBasketQueryParameters","url":"modules/shopperbasketsv2.html#deletebasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2193,"kind":16777216,"name":"deleteBasketPathParameters","url":"modules/shopperbasketsv2.html#deletebasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2194,"kind":16777216,"name":"getBasketQueryParameters","url":"modules/shopperbasketsv2.html#getbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2195,"kind":16777216,"name":"getBasketPathParameters","url":"modules/shopperbasketsv2.html#getbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2196,"kind":16777216,"name":"getPaymentMethodsForBasketQueryParameters","url":"modules/shopperbasketsv2.html#getpaymentmethodsforbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2197,"kind":16777216,"name":"getPaymentMethodsForBasketPathParameters","url":"modules/shopperbasketsv2.html#getpaymentmethodsforbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2198,"kind":16777216,"name":"getPriceBooksForBasketQueryParameters","url":"modules/shopperbasketsv2.html#getpricebooksforbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2199,"kind":16777216,"name":"getPriceBooksForBasketPathParameters","url":"modules/shopperbasketsv2.html#getpricebooksforbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2200,"kind":16777216,"name":"getShippingMethodsForShipmentQueryParameters","url":"modules/shopperbasketsv2.html#getshippingmethodsforshipmentqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2201,"kind":16777216,"name":"getShippingMethodsForShipmentPathParameters","url":"modules/shopperbasketsv2.html#getshippingmethodsforshipmentpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2202,"kind":16777216,"name":"getTaxesFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#gettaxesfrombasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2203,"kind":16777216,"name":"getTaxesFromBasketPathParameters","url":"modules/shopperbasketsv2.html#gettaxesfrombasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2204,"kind":16777216,"name":"mergeBasketQueryParameters","url":"modules/shopperbasketsv2.html#mergebasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2205,"kind":16777216,"name":"mergeBasketPathParameters","url":"modules/shopperbasketsv2.html#mergebasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2206,"kind":16777216,"name":"removeCouponFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#removecouponfrombasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2207,"kind":16777216,"name":"removeCouponFromBasketPathParameters","url":"modules/shopperbasketsv2.html#removecouponfrombasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2208,"kind":16777216,"name":"removeGiftCertificateItemFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#removegiftcertificateitemfrombasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2209,"kind":16777216,"name":"removeGiftCertificateItemFromBasketPathParameters","url":"modules/shopperbasketsv2.html#removegiftcertificateitemfrombasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2210,"kind":16777216,"name":"removeItemFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#removeitemfrombasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2211,"kind":16777216,"name":"removeItemFromBasketPathParameters","url":"modules/shopperbasketsv2.html#removeitemfrombasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2212,"kind":16777216,"name":"removePaymentInstrumentFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#removepaymentinstrumentfrombasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2213,"kind":16777216,"name":"removePaymentInstrumentFromBasketPathParameters","url":"modules/shopperbasketsv2.html#removepaymentinstrumentfrombasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2214,"kind":16777216,"name":"removePriceAdjustmentFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#removepriceadjustmentfrombasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2215,"kind":16777216,"name":"removePriceAdjustmentFromBasketPathParameters","url":"modules/shopperbasketsv2.html#removepriceadjustmentfrombasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2216,"kind":16777216,"name":"removeShipmentFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#removeshipmentfrombasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2217,"kind":16777216,"name":"removeShipmentFromBasketPathParameters","url":"modules/shopperbasketsv2.html#removeshipmentfrombasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2218,"kind":16777216,"name":"transferBasketQueryParameters","url":"modules/shopperbasketsv2.html#transferbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2219,"kind":16777216,"name":"transferBasketPathParameters","url":"modules/shopperbasketsv2.html#transferbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2220,"kind":16777216,"name":"updateAsAgentBasketQueryParameters","url":"modules/shopperbasketsv2.html#updateasagentbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2221,"kind":16777216,"name":"updateAsAgentBasketPathParameters","url":"modules/shopperbasketsv2.html#updateasagentbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2222,"kind":16777216,"name":"updateAsStorefrontBasketQueryParameters","url":"modules/shopperbasketsv2.html#updateasstorefrontbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2223,"kind":16777216,"name":"updateAsStorefrontBasketPathParameters","url":"modules/shopperbasketsv2.html#updateasstorefrontbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2224,"kind":16777216,"name":"updateBasketQueryParameters","url":"modules/shopperbasketsv2.html#updatebasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2225,"kind":16777216,"name":"updateBasketPathParameters","url":"modules/shopperbasketsv2.html#updatebasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2226,"kind":16777216,"name":"updateBillingAddressForBasketQueryParameters","url":"modules/shopperbasketsv2.html#updatebillingaddressforbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2227,"kind":16777216,"name":"updateBillingAddressForBasketPathParameters","url":"modules/shopperbasketsv2.html#updatebillingaddressforbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2228,"kind":16777216,"name":"updateCustomerForBasketQueryParameters","url":"modules/shopperbasketsv2.html#updatecustomerforbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2229,"kind":16777216,"name":"updateCustomerForBasketPathParameters","url":"modules/shopperbasketsv2.html#updatecustomerforbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2230,"kind":16777216,"name":"updateGiftCertificateItemInBasketQueryParameters","url":"modules/shopperbasketsv2.html#updategiftcertificateiteminbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2231,"kind":16777216,"name":"updateGiftCertificateItemInBasketPathParameters","url":"modules/shopperbasketsv2.html#updategiftcertificateiteminbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2232,"kind":16777216,"name":"updateItemInBasketQueryParameters","url":"modules/shopperbasketsv2.html#updateiteminbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2233,"kind":16777216,"name":"updateItemInBasketPathParameters","url":"modules/shopperbasketsv2.html#updateiteminbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2234,"kind":16777216,"name":"updateItemsInBasketQueryParameters","url":"modules/shopperbasketsv2.html#updateitemsinbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2235,"kind":16777216,"name":"updateItemsInBasketPathParameters","url":"modules/shopperbasketsv2.html#updateitemsinbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2236,"kind":16777216,"name":"updatePaymentInstrumentInBasketQueryParameters","url":"modules/shopperbasketsv2.html#updatepaymentinstrumentinbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2237,"kind":16777216,"name":"updatePaymentInstrumentInBasketPathParameters","url":"modules/shopperbasketsv2.html#updatepaymentinstrumentinbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2238,"kind":16777216,"name":"updatePriceAdjustmentInBasketQueryParameters","url":"modules/shopperbasketsv2.html#updatepriceadjustmentinbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2239,"kind":16777216,"name":"updatePriceAdjustmentInBasketPathParameters","url":"modules/shopperbasketsv2.html#updatepriceadjustmentinbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2240,"kind":16777216,"name":"updateShipmentForBasketQueryParameters","url":"modules/shopperbasketsv2.html#updateshipmentforbasketqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2241,"kind":16777216,"name":"updateShipmentForBasketPathParameters","url":"modules/shopperbasketsv2.html#updateshipmentforbasketpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2242,"kind":16777216,"name":"updateShippingAddressForShipmentQueryParameters","url":"modules/shopperbasketsv2.html#updateshippingaddressforshipmentqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2243,"kind":16777216,"name":"updateShippingAddressForShipmentPathParameters","url":"modules/shopperbasketsv2.html#updateshippingaddressforshipmentpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2244,"kind":16777216,"name":"updateShippingMethodForShipmentQueryParameters","url":"modules/shopperbasketsv2.html#updateshippingmethodforshipmentqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2245,"kind":16777216,"name":"updateShippingMethodForShipmentPathParameters","url":"modules/shopperbasketsv2.html#updateshippingmethodforshipmentpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2246,"kind":16777216,"name":"ShopperBasketsV2PathParameters","url":"modules/shopperbasketsv2.html#shopperbasketsv2pathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2247,"kind":16777216,"name":"ShopperBasketsV2QueryParameters","url":"modules/shopperbasketsv2.html#shopperbasketsv2queryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2248,"kind":16777216,"name":"ShopperBasketsV2Parameters","url":"modules/shopperbasketsv2.html#shopperbasketsv2parameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2249,"kind":16777216,"name":"ShopperBasketsPathParameters","url":"modules/shopperbasketsv2.html#shopperbasketspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2250,"kind":16777216,"name":"ShopperBasketsQueryParameters","url":"modules/shopperbasketsv2.html#shopperbasketsqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2251,"kind":16777216,"name":"ShopperBasketsParameters","url":"modules/shopperbasketsv2.html#shopperbasketsparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2252,"kind":16777216,"name":"ShopperBasketsV2","url":"modules/shopperbasketsv2.html#shopperbasketsv2-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2253,"kind":16777216,"name":"defaultBaseUri","url":"modules/shopperbasketsv2.html#defaultbaseuri","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2254,"kind":16777216,"name":"CreateBasketTaxModeEnum","url":"modules/shopperbasketsv2.html#createbaskettaxmodeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2255,"kind":16777216,"name":"MergeBasketProductItemMergeModeEnum","url":"modules/shopperbasketsv2.html#mergebasketproductitemmergemodeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2256,"kind":16777216,"name":"addCouponToBasketQueryParameters","url":"modules/shopperbasketsv2.html#addcoupontobasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2257,"kind":16777216,"name":"addCouponToBasketPathParameters","url":"modules/shopperbasketsv2.html#addcoupontobasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2258,"kind":16777216,"name":"addGiftCertificateItemToBasketQueryParameters","url":"modules/shopperbasketsv2.html#addgiftcertificateitemtobasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2259,"kind":16777216,"name":"addGiftCertificateItemToBasketPathParameters","url":"modules/shopperbasketsv2.html#addgiftcertificateitemtobasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2260,"kind":16777216,"name":"addItemToBasketQueryParameters","url":"modules/shopperbasketsv2.html#additemtobasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2261,"kind":16777216,"name":"addItemToBasketPathParameters","url":"modules/shopperbasketsv2.html#additemtobasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2262,"kind":16777216,"name":"addPaymentInstrumentToBasketQueryParameters","url":"modules/shopperbasketsv2.html#addpaymentinstrumenttobasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2263,"kind":16777216,"name":"addPaymentInstrumentToBasketPathParameters","url":"modules/shopperbasketsv2.html#addpaymentinstrumenttobasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2264,"kind":16777216,"name":"addPriceAdjustmentToBasketQueryParameters","url":"modules/shopperbasketsv2.html#addpriceadjustmenttobasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2265,"kind":16777216,"name":"addPriceAdjustmentToBasketPathParameters","url":"modules/shopperbasketsv2.html#addpriceadjustmenttobasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2266,"kind":16777216,"name":"addPriceBooksToBasketQueryParameters","url":"modules/shopperbasketsv2.html#addpricebookstobasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2267,"kind":16777216,"name":"addPriceBooksToBasketPathParameters","url":"modules/shopperbasketsv2.html#addpricebookstobasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2268,"kind":16777216,"name":"addTaxesForBasketQueryParameters","url":"modules/shopperbasketsv2.html#addtaxesforbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2269,"kind":16777216,"name":"addTaxesForBasketPathParameters","url":"modules/shopperbasketsv2.html#addtaxesforbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2270,"kind":16777216,"name":"addTaxesForBasketItemQueryParameters","url":"modules/shopperbasketsv2.html#addtaxesforbasketitemqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2271,"kind":16777216,"name":"addTaxesForBasketItemPathParameters","url":"modules/shopperbasketsv2.html#addtaxesforbasketitempathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2272,"kind":16777216,"name":"createBasketQueryParameters","url":"modules/shopperbasketsv2.html#createbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2273,"kind":16777216,"name":"createBasketPathParameters","url":"modules/shopperbasketsv2.html#createbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2274,"kind":16777216,"name":"createShipmentForBasketQueryParameters","url":"modules/shopperbasketsv2.html#createshipmentforbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2275,"kind":16777216,"name":"createShipmentForBasketPathParameters","url":"modules/shopperbasketsv2.html#createshipmentforbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2276,"kind":16777216,"name":"deleteBasketQueryParameters","url":"modules/shopperbasketsv2.html#deletebasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2277,"kind":16777216,"name":"deleteBasketPathParameters","url":"modules/shopperbasketsv2.html#deletebasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2278,"kind":16777216,"name":"getBasketQueryParameters","url":"modules/shopperbasketsv2.html#getbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2279,"kind":16777216,"name":"getBasketPathParameters","url":"modules/shopperbasketsv2.html#getbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2280,"kind":16777216,"name":"getPaymentMethodsForBasketQueryParameters","url":"modules/shopperbasketsv2.html#getpaymentmethodsforbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2281,"kind":16777216,"name":"getPaymentMethodsForBasketPathParameters","url":"modules/shopperbasketsv2.html#getpaymentmethodsforbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2282,"kind":16777216,"name":"getPriceBooksForBasketQueryParameters","url":"modules/shopperbasketsv2.html#getpricebooksforbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2283,"kind":16777216,"name":"getPriceBooksForBasketPathParameters","url":"modules/shopperbasketsv2.html#getpricebooksforbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2284,"kind":16777216,"name":"getShippingMethodsForShipmentQueryParameters","url":"modules/shopperbasketsv2.html#getshippingmethodsforshipmentqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2285,"kind":16777216,"name":"getShippingMethodsForShipmentPathParameters","url":"modules/shopperbasketsv2.html#getshippingmethodsforshipmentpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2286,"kind":16777216,"name":"getTaxesFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#gettaxesfrombasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2287,"kind":16777216,"name":"getTaxesFromBasketPathParameters","url":"modules/shopperbasketsv2.html#gettaxesfrombasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2288,"kind":16777216,"name":"mergeBasketQueryParameters","url":"modules/shopperbasketsv2.html#mergebasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2289,"kind":16777216,"name":"mergeBasketPathParameters","url":"modules/shopperbasketsv2.html#mergebasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2290,"kind":16777216,"name":"removeCouponFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#removecouponfrombasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2291,"kind":16777216,"name":"removeCouponFromBasketPathParameters","url":"modules/shopperbasketsv2.html#removecouponfrombasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2292,"kind":16777216,"name":"removeGiftCertificateItemFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#removegiftcertificateitemfrombasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2293,"kind":16777216,"name":"removeGiftCertificateItemFromBasketPathParameters","url":"modules/shopperbasketsv2.html#removegiftcertificateitemfrombasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2294,"kind":16777216,"name":"removeItemFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#removeitemfrombasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2295,"kind":16777216,"name":"removeItemFromBasketPathParameters","url":"modules/shopperbasketsv2.html#removeitemfrombasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2296,"kind":16777216,"name":"removePaymentInstrumentFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#removepaymentinstrumentfrombasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2297,"kind":16777216,"name":"removePaymentInstrumentFromBasketPathParameters","url":"modules/shopperbasketsv2.html#removepaymentinstrumentfrombasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2298,"kind":16777216,"name":"removePriceAdjustmentFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#removepriceadjustmentfrombasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2299,"kind":16777216,"name":"removePriceAdjustmentFromBasketPathParameters","url":"modules/shopperbasketsv2.html#removepriceadjustmentfrombasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2300,"kind":16777216,"name":"removeShipmentFromBasketQueryParameters","url":"modules/shopperbasketsv2.html#removeshipmentfrombasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2301,"kind":16777216,"name":"removeShipmentFromBasketPathParameters","url":"modules/shopperbasketsv2.html#removeshipmentfrombasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2302,"kind":16777216,"name":"transferBasketQueryParameters","url":"modules/shopperbasketsv2.html#transferbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2303,"kind":16777216,"name":"transferBasketPathParameters","url":"modules/shopperbasketsv2.html#transferbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2304,"kind":16777216,"name":"updateAsAgentBasketQueryParameters","url":"modules/shopperbasketsv2.html#updateasagentbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2305,"kind":16777216,"name":"updateAsAgentBasketPathParameters","url":"modules/shopperbasketsv2.html#updateasagentbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2306,"kind":16777216,"name":"updateAsStorefrontBasketQueryParameters","url":"modules/shopperbasketsv2.html#updateasstorefrontbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2307,"kind":16777216,"name":"updateAsStorefrontBasketPathParameters","url":"modules/shopperbasketsv2.html#updateasstorefrontbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2308,"kind":16777216,"name":"updateBasketQueryParameters","url":"modules/shopperbasketsv2.html#updatebasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2309,"kind":16777216,"name":"updateBasketPathParameters","url":"modules/shopperbasketsv2.html#updatebasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2310,"kind":16777216,"name":"updateBillingAddressForBasketQueryParameters","url":"modules/shopperbasketsv2.html#updatebillingaddressforbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2311,"kind":16777216,"name":"updateBillingAddressForBasketPathParameters","url":"modules/shopperbasketsv2.html#updatebillingaddressforbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2312,"kind":16777216,"name":"updateCustomerForBasketQueryParameters","url":"modules/shopperbasketsv2.html#updatecustomerforbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2313,"kind":16777216,"name":"updateCustomerForBasketPathParameters","url":"modules/shopperbasketsv2.html#updatecustomerforbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2314,"kind":16777216,"name":"updateGiftCertificateItemInBasketQueryParameters","url":"modules/shopperbasketsv2.html#updategiftcertificateiteminbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2315,"kind":16777216,"name":"updateGiftCertificateItemInBasketPathParameters","url":"modules/shopperbasketsv2.html#updategiftcertificateiteminbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2316,"kind":16777216,"name":"updateItemInBasketQueryParameters","url":"modules/shopperbasketsv2.html#updateiteminbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2317,"kind":16777216,"name":"updateItemInBasketPathParameters","url":"modules/shopperbasketsv2.html#updateiteminbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2318,"kind":16777216,"name":"updateItemsInBasketQueryParameters","url":"modules/shopperbasketsv2.html#updateitemsinbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2319,"kind":16777216,"name":"updateItemsInBasketPathParameters","url":"modules/shopperbasketsv2.html#updateitemsinbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2320,"kind":16777216,"name":"updatePaymentInstrumentInBasketQueryParameters","url":"modules/shopperbasketsv2.html#updatepaymentinstrumentinbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2321,"kind":16777216,"name":"updatePaymentInstrumentInBasketPathParameters","url":"modules/shopperbasketsv2.html#updatepaymentinstrumentinbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2322,"kind":16777216,"name":"updatePriceAdjustmentInBasketQueryParameters","url":"modules/shopperbasketsv2.html#updatepriceadjustmentinbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2323,"kind":16777216,"name":"updatePriceAdjustmentInBasketPathParameters","url":"modules/shopperbasketsv2.html#updatepriceadjustmentinbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2324,"kind":16777216,"name":"updateShipmentForBasketQueryParameters","url":"modules/shopperbasketsv2.html#updateshipmentforbasketqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2325,"kind":16777216,"name":"updateShipmentForBasketPathParameters","url":"modules/shopperbasketsv2.html#updateshipmentforbasketpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2326,"kind":16777216,"name":"updateShippingAddressForShipmentQueryParameters","url":"modules/shopperbasketsv2.html#updateshippingaddressforshipmentqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2327,"kind":16777216,"name":"updateShippingAddressForShipmentPathParameters","url":"modules/shopperbasketsv2.html#updateshippingaddressforshipmentpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2328,"kind":16777216,"name":"updateShippingMethodForShipmentQueryParameters","url":"modules/shopperbasketsv2.html#updateshippingmethodforshipmentqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2329,"kind":16777216,"name":"updateShippingMethodForShipmentPathParameters","url":"modules/shopperbasketsv2.html#updateshippingmethodforshipmentpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2330,"kind":16777216,"name":"ShopperBasketsV2PathParameters","url":"modules/shopperbasketsv2.html#shopperbasketsv2pathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2331,"kind":16777216,"name":"ShopperBasketsV2QueryParameters","url":"modules/shopperbasketsv2.html#shopperbasketsv2queryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2332,"kind":16777216,"name":"ShopperBasketsV2Parameters","url":"modules/shopperbasketsv2.html#shopperbasketsv2parameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2333,"kind":16777216,"name":"ShopperBasketsPathParameters","url":"modules/shopperbasketsv2.html#shopperbasketspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2334,"kind":16777216,"name":"ShopperBasketsQueryParameters","url":"modules/shopperbasketsv2.html#shopperbasketsqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2335,"kind":16777216,"name":"ShopperBasketsParameters","url":"modules/shopperbasketsv2.html#shopperbasketsparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2336,"kind":16777216,"name":"ShopperBasketsV2","url":"modules/shopperbasketsv2.html#shopperbasketsv2-2","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2337,"kind":16777216,"name":"Basket","url":"modules/shopperbasketsv2.html#basket-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2338,"kind":16777216,"name":"BasketChannelTypeEnum","url":"modules/shopperbasketsv2.html#basketchanneltypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2339,"kind":16777216,"name":"BasketTaxationEnum","url":"modules/shopperbasketsv2.html#baskettaxationenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2340,"kind":16777216,"name":"BasketPaymentInstrumentRequest","url":"modules/shopperbasketsv2.html#basketpaymentinstrumentrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2341,"kind":16777216,"name":"BasketProductItem","url":"modules/shopperbasketsv2.html#basketproductitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2342,"kind":16777216,"name":"BonusDiscountLineItem","url":"modules/shopperbasketsv2.html#bonusdiscountlineitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2343,"kind":16777216,"name":"CouponItem","url":"modules/shopperbasketsv2.html#couponitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2344,"kind":16777216,"name":"CouponItemStatusCodeEnum","url":"modules/shopperbasketsv2.html#couponitemstatuscodeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2345,"kind":16777216,"name":"CustomerInfo","url":"modules/shopperbasketsv2.html#customerinfo-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2346,"kind":16777216,"name":"Discount","url":"modules/shopperbasketsv2.html#discount-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2347,"kind":16777216,"name":"DiscountTypeEnum","url":"modules/shopperbasketsv2.html#discounttypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2348,"kind":16777216,"name":"DiscountRequest","url":"modules/shopperbasketsv2.html#discountrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2349,"kind":16777216,"name":"DiscountRequestTypeEnum","url":"modules/shopperbasketsv2.html#discountrequesttypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2350,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperbasketsv2.html#errorresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2351,"kind":16777216,"name":"GiftCardRequest","url":"modules/shopperbasketsv2.html#giftcardrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2352,"kind":16777216,"name":"GiftCardResponse","url":"modules/shopperbasketsv2.html#giftcardresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2353,"kind":16777216,"name":"GiftCertificateItem","url":"modules/shopperbasketsv2.html#giftcertificateitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2354,"kind":16777216,"name":"GroupedTaxItem","url":"modules/shopperbasketsv2.html#groupedtaxitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2355,"kind":16777216,"name":"LocaleCode","url":"modules/shopperbasketsv2.html#localecode-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2356,"kind":16777216,"name":"OptionItem","url":"modules/shopperbasketsv2.html#optionitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2357,"kind":16777216,"name":"OrderAddress","url":"modules/shopperbasketsv2.html#orderaddress-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2358,"kind":16777216,"name":"OrderPaymentCardRequest","url":"modules/shopperbasketsv2.html#orderpaymentcardrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2359,"kind":16777216,"name":"OrderPaymentInstrument","url":"modules/shopperbasketsv2.html#orderpaymentinstrument-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2360,"kind":16777216,"name":"OrderPaymentInstrumentPaymentReference","url":"modules/shopperbasketsv2.html#orderpaymentinstrumentpaymentreference-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2361,"kind":16777216,"name":"OrderPaymentInstrumentPaymentReferenceGatewayEnum","url":"modules/shopperbasketsv2.html#orderpaymentinstrumentpaymentreferencegatewayenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2362,"kind":16777216,"name":"OrderPaymentInstrumentPaymentReferenceGatewayProperties","url":"modules/shopperbasketsv2.html#orderpaymentinstrumentpaymentreferencegatewayproperties-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2363,"kind":16777216,"name":"PaymentCard","url":"modules/shopperbasketsv2.html#paymentcard-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2364,"kind":16777216,"name":"PaymentCardSpec","url":"modules/shopperbasketsv2.html#paymentcardspec-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2365,"kind":16777216,"name":"PaymentMethod","url":"modules/shopperbasketsv2.html#paymentmethod-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2366,"kind":16777216,"name":"PaymentMethodResult","url":"modules/shopperbasketsv2.html#paymentmethodresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2367,"kind":16777216,"name":"PaymentReferenceRequest","url":"modules/shopperbasketsv2.html#paymentreferencerequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2368,"kind":16777216,"name":"PaymentReferenceRequestGatewayEnum","url":"modules/shopperbasketsv2.html#paymentreferencerequestgatewayenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2369,"kind":16777216,"name":"PaymentReferenceRequestGatewayProperties","url":"modules/shopperbasketsv2.html#paymentreferencerequestgatewayproperties-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2370,"kind":16777216,"name":"PriceAdjustment","url":"modules/shopperbasketsv2.html#priceadjustment-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2371,"kind":16777216,"name":"PriceAdjustmentRequest","url":"modules/shopperbasketsv2.html#priceadjustmentrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2372,"kind":16777216,"name":"PriceAdjustmentRequestLevelEnum","url":"modules/shopperbasketsv2.html#priceadjustmentrequestlevelenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2373,"kind":16777216,"name":"ProductDetailsLink","url":"modules/shopperbasketsv2.html#productdetailslink-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2374,"kind":16777216,"name":"ProductItem","url":"modules/shopperbasketsv2.html#productitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2375,"kind":16777216,"name":"ProductListItemReference","url":"modules/shopperbasketsv2.html#productlistitemreference-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2376,"kind":16777216,"name":"ProductListItemReferenceTypeEnum","url":"modules/shopperbasketsv2.html#productlistitemreferencetypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2377,"kind":16777216,"name":"ProductListLink","url":"modules/shopperbasketsv2.html#productlistlink-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2378,"kind":16777216,"name":"ProductListLinkTypeEnum","url":"modules/shopperbasketsv2.html#productlistlinktypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2379,"kind":16777216,"name":"Shipment","url":"modules/shopperbasketsv2.html#shipment-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2380,"kind":16777216,"name":"ShipmentShippingStatusEnum","url":"modules/shopperbasketsv2.html#shipmentshippingstatusenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2381,"kind":16777216,"name":"ShippingItem","url":"modules/shopperbasketsv2.html#shippingitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2382,"kind":16777216,"name":"ShippingMethod","url":"modules/shopperbasketsv2.html#shippingmethod-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2383,"kind":16777216,"name":"ShippingMethodResult","url":"modules/shopperbasketsv2.html#shippingmethodresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2384,"kind":16777216,"name":"ShippingPromotion","url":"modules/shopperbasketsv2.html#shippingpromotion-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2385,"kind":16777216,"name":"Status","url":"modules/shopperbasketsv2.html#status-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2386,"kind":16777216,"name":"TaxItem","url":"modules/shopperbasketsv2.html#taxitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2387,"kind":16777216,"name":"TaxItems","url":"modules/shopperbasketsv2.html#taxitems-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2388,"kind":16777216,"name":"Taxes","url":"modules/shopperbasketsv2.html#taxes-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2389,"kind":2,"name":"ShopperBasketsV2Types","url":"modules/shopperbasketsv2.shopperbasketsv2types.html","classes":"tsd-kind-namespace tsd-parent-kind-module","parent":"shopperBasketsv2"},{"id":2390,"kind":4194304,"name":"ShopperBasketsV2PathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#shopperbasketsv2pathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2391,"kind":4194304,"name":"ShopperBasketsV2QueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#shopperbasketsv2queryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2392,"kind":4194304,"name":"addCouponToBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#addcoupontobasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2393,"kind":4194304,"name":"addCouponToBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#addcoupontobasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2394,"kind":4194304,"name":"addGiftCertificateItemToBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#addgiftcertificateitemtobasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2395,"kind":4194304,"name":"addGiftCertificateItemToBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#addgiftcertificateitemtobasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2396,"kind":4194304,"name":"addItemToBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#additemtobasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2397,"kind":4194304,"name":"addItemToBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#additemtobasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2398,"kind":4194304,"name":"addPaymentInstrumentToBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#addpaymentinstrumenttobasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2399,"kind":4194304,"name":"addPaymentInstrumentToBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#addpaymentinstrumenttobasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2400,"kind":4194304,"name":"addPriceAdjustmentToBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#addpriceadjustmenttobasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2401,"kind":4194304,"name":"addPriceAdjustmentToBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#addpriceadjustmenttobasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2402,"kind":4194304,"name":"addPriceBooksToBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#addpricebookstobasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2403,"kind":4194304,"name":"addPriceBooksToBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#addpricebookstobasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2404,"kind":4194304,"name":"addTaxesForBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#addtaxesforbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2405,"kind":4194304,"name":"addTaxesForBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#addtaxesforbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2406,"kind":4194304,"name":"addTaxesForBasketItemQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#addtaxesforbasketitemqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2407,"kind":4194304,"name":"addTaxesForBasketItemPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#addtaxesforbasketitempathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2408,"kind":4194304,"name":"CreateBasketTaxModeEnum","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#createbaskettaxmodeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2409,"kind":4194304,"name":"createBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#createbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2410,"kind":4194304,"name":"createBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#createbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2411,"kind":4194304,"name":"createShipmentForBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#createshipmentforbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2412,"kind":4194304,"name":"createShipmentForBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#createshipmentforbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2413,"kind":4194304,"name":"deleteBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#deletebasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2414,"kind":4194304,"name":"deleteBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#deletebasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2415,"kind":4194304,"name":"getBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#getbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2416,"kind":4194304,"name":"getBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#getbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2417,"kind":4194304,"name":"getPaymentMethodsForBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#getpaymentmethodsforbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2418,"kind":4194304,"name":"getPaymentMethodsForBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#getpaymentmethodsforbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2419,"kind":4194304,"name":"getPriceBooksForBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#getpricebooksforbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2420,"kind":4194304,"name":"getPriceBooksForBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#getpricebooksforbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2421,"kind":4194304,"name":"getShippingMethodsForShipmentQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#getshippingmethodsforshipmentqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2422,"kind":4194304,"name":"getShippingMethodsForShipmentPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#getshippingmethodsforshipmentpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2423,"kind":4194304,"name":"getTaxesFromBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#gettaxesfrombasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2424,"kind":4194304,"name":"getTaxesFromBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#gettaxesfrombasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2425,"kind":4194304,"name":"MergeBasketProductItemMergeModeEnum","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#mergebasketproductitemmergemodeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2426,"kind":4194304,"name":"mergeBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#mergebasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2427,"kind":4194304,"name":"mergeBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#mergebasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2428,"kind":4194304,"name":"removeCouponFromBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#removecouponfrombasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2429,"kind":4194304,"name":"removeCouponFromBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#removecouponfrombasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2430,"kind":4194304,"name":"removeGiftCertificateItemFromBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#removegiftcertificateitemfrombasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2431,"kind":4194304,"name":"removeGiftCertificateItemFromBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#removegiftcertificateitemfrombasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2432,"kind":4194304,"name":"removeItemFromBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#removeitemfrombasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2433,"kind":4194304,"name":"removeItemFromBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#removeitemfrombasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2434,"kind":4194304,"name":"removePaymentInstrumentFromBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#removepaymentinstrumentfrombasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2435,"kind":4194304,"name":"removePaymentInstrumentFromBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#removepaymentinstrumentfrombasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2436,"kind":4194304,"name":"removePriceAdjustmentFromBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#removepriceadjustmentfrombasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2437,"kind":4194304,"name":"removePriceAdjustmentFromBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#removepriceadjustmentfrombasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2438,"kind":4194304,"name":"removeShipmentFromBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#removeshipmentfrombasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2439,"kind":4194304,"name":"removeShipmentFromBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#removeshipmentfrombasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2440,"kind":4194304,"name":"transferBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#transferbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2441,"kind":4194304,"name":"transferBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#transferbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2442,"kind":4194304,"name":"updateAsAgentBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updateasagentbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2443,"kind":4194304,"name":"updateAsAgentBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updateasagentbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2444,"kind":4194304,"name":"updateAsStorefrontBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updateasstorefrontbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2445,"kind":4194304,"name":"updateAsStorefrontBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updateasstorefrontbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2446,"kind":4194304,"name":"updateBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updatebasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2447,"kind":4194304,"name":"updateBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updatebasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2448,"kind":4194304,"name":"updateBillingAddressForBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updatebillingaddressforbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2449,"kind":4194304,"name":"updateBillingAddressForBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updatebillingaddressforbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2450,"kind":4194304,"name":"updateCustomerForBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updatecustomerforbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2451,"kind":4194304,"name":"updateCustomerForBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updatecustomerforbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2452,"kind":4194304,"name":"updateGiftCertificateItemInBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updategiftcertificateiteminbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2453,"kind":4194304,"name":"updateGiftCertificateItemInBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updategiftcertificateiteminbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2454,"kind":4194304,"name":"updateItemInBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updateiteminbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2455,"kind":4194304,"name":"updateItemInBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updateiteminbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2456,"kind":4194304,"name":"updateItemsInBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updateitemsinbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2457,"kind":4194304,"name":"updateItemsInBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updateitemsinbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2458,"kind":4194304,"name":"updatePaymentInstrumentInBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updatepaymentinstrumentinbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2459,"kind":4194304,"name":"updatePaymentInstrumentInBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updatepaymentinstrumentinbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2460,"kind":4194304,"name":"updatePriceAdjustmentInBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updatepriceadjustmentinbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2461,"kind":4194304,"name":"updatePriceAdjustmentInBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updatepriceadjustmentinbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2462,"kind":4194304,"name":"updateShipmentForBasketQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updateshipmentforbasketqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2463,"kind":4194304,"name":"updateShipmentForBasketPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updateshipmentforbasketpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2464,"kind":4194304,"name":"updateShippingAddressForShipmentQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updateshippingaddressforshipmentqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2465,"kind":4194304,"name":"updateShippingAddressForShipmentPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updateshippingaddressforshipmentpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2466,"kind":4194304,"name":"updateShippingMethodForShipmentQueryParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updateshippingmethodforshipmentqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2467,"kind":4194304,"name":"updateShippingMethodForShipmentPathParameters","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#updateshippingmethodforshipmentpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2468,"kind":4194304,"name":"Basket","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#basket","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2469,"kind":4194304,"name":"BasketChannelTypeEnum","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#basketchanneltypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2470,"kind":4194304,"name":"BasketTaxationEnum","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#baskettaxationenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2471,"kind":4194304,"name":"BasketPaymentInstrumentRequest","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#basketpaymentinstrumentrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2472,"kind":4194304,"name":"BasketProductItem","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#basketproductitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2473,"kind":4194304,"name":"BonusDiscountLineItem","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#bonusdiscountlineitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2474,"kind":4194304,"name":"CouponItem","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#couponitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2475,"kind":4194304,"name":"CouponItemStatusCodeEnum","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#couponitemstatuscodeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2476,"kind":4194304,"name":"CustomerInfo","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#customerinfo","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2477,"kind":4194304,"name":"Discount","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#discount","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2478,"kind":4194304,"name":"DiscountTypeEnum","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#discounttypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2479,"kind":4194304,"name":"DiscountRequest","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#discountrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2480,"kind":4194304,"name":"DiscountRequestTypeEnum","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#discountrequesttypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2481,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2482,"kind":4194304,"name":"GiftCardRequest","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#giftcardrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2483,"kind":4194304,"name":"GiftCardResponse","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#giftcardresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2484,"kind":4194304,"name":"GiftCertificateItem","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#giftcertificateitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2485,"kind":4194304,"name":"GroupedTaxItem","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#groupedtaxitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2486,"kind":4194304,"name":"LocaleCode","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#localecode","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2487,"kind":4194304,"name":"OptionItem","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#optionitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2488,"kind":4194304,"name":"OrderAddress","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#orderaddress","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2489,"kind":4194304,"name":"OrderPaymentCardRequest","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#orderpaymentcardrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2490,"kind":4194304,"name":"OrderPaymentInstrument","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#orderpaymentinstrument","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2491,"kind":4194304,"name":"OrderPaymentInstrumentPaymentReference","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#orderpaymentinstrumentpaymentreference","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2492,"kind":4194304,"name":"OrderPaymentInstrumentPaymentReferenceGatewayEnum","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#orderpaymentinstrumentpaymentreferencegatewayenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2493,"kind":4194304,"name":"OrderPaymentInstrumentPaymentReferenceGatewayProperties","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#orderpaymentinstrumentpaymentreferencegatewayproperties","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2494,"kind":4194304,"name":"PaymentCard","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#paymentcard","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2495,"kind":4194304,"name":"PaymentCardSpec","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#paymentcardspec","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2496,"kind":4194304,"name":"PaymentMethod","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#paymentmethod","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2497,"kind":4194304,"name":"PaymentMethodResult","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#paymentmethodresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2498,"kind":4194304,"name":"PaymentReferenceRequest","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#paymentreferencerequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2499,"kind":4194304,"name":"PaymentReferenceRequestGatewayEnum","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#paymentreferencerequestgatewayenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2500,"kind":4194304,"name":"PaymentReferenceRequestGatewayProperties","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#paymentreferencerequestgatewayproperties","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2501,"kind":4194304,"name":"PriceAdjustment","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#priceadjustment","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2502,"kind":4194304,"name":"PriceAdjustmentRequest","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#priceadjustmentrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2503,"kind":4194304,"name":"PriceAdjustmentRequestLevelEnum","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#priceadjustmentrequestlevelenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2504,"kind":4194304,"name":"ProductDetailsLink","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#productdetailslink","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2505,"kind":4194304,"name":"ProductItem","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#productitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2506,"kind":4194304,"name":"ProductListItemReference","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#productlistitemreference","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2507,"kind":4194304,"name":"ProductListItemReferenceTypeEnum","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#productlistitemreferencetypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2508,"kind":4194304,"name":"ProductListLink","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#productlistlink","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2509,"kind":4194304,"name":"ProductListLinkTypeEnum","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#productlistlinktypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2510,"kind":4194304,"name":"Shipment","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#shipment","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2511,"kind":4194304,"name":"ShipmentShippingStatusEnum","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#shipmentshippingstatusenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2512,"kind":4194304,"name":"ShippingItem","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#shippingitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2513,"kind":4194304,"name":"ShippingMethod","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#shippingmethod","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2514,"kind":4194304,"name":"ShippingMethodResult","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#shippingmethodresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2515,"kind":4194304,"name":"ShippingPromotion","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#shippingpromotion","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2516,"kind":4194304,"name":"Status","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#status","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2517,"kind":4194304,"name":"TaxItem","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#taxitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2518,"kind":4194304,"name":"TaxItems","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#taxitems","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2519,"kind":4194304,"name":"Taxes","url":"modules/shopperbasketsv2.shopperbasketsv2types.html#taxes","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperBasketsv2.ShopperBasketsV2Types"},{"id":2520,"kind":1,"name":"shopperConfigurations","url":"modules/shopperconfigurations.html","classes":"tsd-kind-module"},{"id":2521,"kind":32,"name":"defaultBaseUri","url":"modules/shopperconfigurations.html#defaultbaseuri-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2522,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperconfigurations.html#errorresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2523,"kind":4194304,"name":"ModelConfiguration","url":"modules/shopperconfigurations.html#modelconfiguration-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2524,"kind":4194304,"name":"SiteConfiguration","url":"modules/shopperconfigurations.html#siteconfiguration-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2525,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperconfigurations.html#errorresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2526,"kind":16777216,"name":"ModelConfiguration","url":"modules/shopperconfigurations.html#modelconfiguration","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2527,"kind":16777216,"name":"SiteConfiguration","url":"modules/shopperconfigurations.html#siteconfiguration","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2528,"kind":128,"name":"ShopperConfigurations","url":"classes/shopperconfigurations.shopperconfigurations-3.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"shopperConfigurations"},{"id":2529,"kind":1024,"name":"clientConfig","url":"classes/shopperconfigurations.shopperconfigurations-3.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class","parent":"shopperConfigurations.ShopperConfigurations"},{"id":2530,"kind":1024,"name":"defaultBaseUri","url":"classes/shopperconfigurations.shopperconfigurations-3.html#defaultbaseuri","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperConfigurations.ShopperConfigurations"},{"id":2531,"kind":2097152,"name":"apiPaths","url":"classes/shopperconfigurations.shopperconfigurations-3.html#apipaths","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-static","parent":"shopperConfigurations.ShopperConfigurations"},{"id":2532,"kind":32,"name":"getConfigurations","url":"classes/shopperconfigurations.shopperconfigurations-3.html#apipaths.getconfigurations-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperConfigurations.ShopperConfigurations.apiPaths"},{"id":2533,"kind":512,"name":"constructor","url":"classes/shopperconfigurations.shopperconfigurations-3.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"shopperConfigurations.ShopperConfigurations"},{"id":2534,"kind":1024,"name":"paramKeys","url":"classes/shopperconfigurations.shopperconfigurations-3.html#paramkeys","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperConfigurations.ShopperConfigurations"},{"id":2535,"kind":65536,"name":"__type","url":"classes/shopperconfigurations.shopperconfigurations-3.html#paramkeys.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"shopperConfigurations.ShopperConfigurations.paramKeys"},{"id":2536,"kind":32,"name":"getConfigurations","url":"classes/shopperconfigurations.shopperconfigurations-3.html#paramkeys.__type.getconfigurations","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperConfigurations.ShopperConfigurations.paramKeys.__type"},{"id":2537,"kind":32,"name":"getConfigurationsRequired","url":"classes/shopperconfigurations.shopperconfigurations-3.html#paramkeys.__type.getconfigurationsrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperConfigurations.ShopperConfigurations.paramKeys.__type"},{"id":2538,"kind":2048,"name":"getConfigurations","url":"classes/shopperconfigurations.shopperconfigurations-3.html#getconfigurations-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperConfigurations.ShopperConfigurations"},{"id":2539,"kind":4194304,"name":"getConfigurationsQueryParameters","url":"modules/shopperconfigurations.html#getconfigurationsqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2540,"kind":65536,"name":"__type","url":"modules/shopperconfigurations.html#getconfigurationsqueryparameters-2.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperConfigurations.getConfigurationsQueryParameters"},{"id":2541,"kind":32,"name":"siteId","url":"modules/shopperconfigurations.html#getconfigurationsqueryparameters-2.__type-1.siteid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperConfigurations.getConfigurationsQueryParameters.__type"},{"id":2542,"kind":4194304,"name":"getConfigurationsPathParameters","url":"modules/shopperconfigurations.html#getconfigurationspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2543,"kind":65536,"name":"__type","url":"modules/shopperconfigurations.html#getconfigurationspathparameters-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperConfigurations.getConfigurationsPathParameters"},{"id":2544,"kind":32,"name":"organizationId","url":"modules/shopperconfigurations.html#getconfigurationspathparameters-2.__type.organizationid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperConfigurations.getConfigurationsPathParameters.__type"},{"id":2545,"kind":4194304,"name":"ShopperConfigurationsPathParameters","url":"modules/shopperconfigurations.html#shopperconfigurationspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2546,"kind":4194304,"name":"ShopperConfigurationsQueryParameters","url":"modules/shopperconfigurations.html#shopperconfigurationsqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2547,"kind":4194304,"name":"ShopperConfigurationsParameters","url":"modules/shopperconfigurations.html#shopperconfigurationsparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2548,"kind":16777216,"name":"getConfigurationsQueryParameters","url":"modules/shopperconfigurations.html#getconfigurationsqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2549,"kind":16777216,"name":"getConfigurationsPathParameters","url":"modules/shopperconfigurations.html#getconfigurationspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2550,"kind":16777216,"name":"ShopperConfigurationsPathParameters","url":"modules/shopperconfigurations.html#shopperconfigurationspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2551,"kind":16777216,"name":"ShopperConfigurationsQueryParameters","url":"modules/shopperconfigurations.html#shopperconfigurationsqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2552,"kind":16777216,"name":"ShopperConfigurationsParameters","url":"modules/shopperconfigurations.html#shopperconfigurationsparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2553,"kind":16777216,"name":"ShopperConfigurations","url":"modules/shopperconfigurations.html#shopperconfigurations-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2554,"kind":16777216,"name":"defaultBaseUri","url":"modules/shopperconfigurations.html#defaultbaseuri","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2555,"kind":16777216,"name":"getConfigurationsQueryParameters","url":"modules/shopperconfigurations.html#getconfigurationsqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2556,"kind":16777216,"name":"getConfigurationsPathParameters","url":"modules/shopperconfigurations.html#getconfigurationspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2557,"kind":16777216,"name":"ShopperConfigurationsPathParameters","url":"modules/shopperconfigurations.html#shopperconfigurationspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2558,"kind":16777216,"name":"ShopperConfigurationsQueryParameters","url":"modules/shopperconfigurations.html#shopperconfigurationsqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2559,"kind":16777216,"name":"ShopperConfigurationsParameters","url":"modules/shopperconfigurations.html#shopperconfigurationsparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2560,"kind":16777216,"name":"ShopperConfigurations","url":"modules/shopperconfigurations.html#shopperconfigurations-2","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2561,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperconfigurations.html#errorresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2562,"kind":16777216,"name":"ModelConfiguration","url":"modules/shopperconfigurations.html#modelconfiguration-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2563,"kind":16777216,"name":"SiteConfiguration","url":"modules/shopperconfigurations.html#siteconfiguration-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2564,"kind":2,"name":"ShopperConfigurationsTypes","url":"modules/shopperconfigurations.shopperconfigurationstypes.html","classes":"tsd-kind-namespace tsd-parent-kind-module","parent":"shopperConfigurations"},{"id":2565,"kind":4194304,"name":"ShopperConfigurationsPathParameters","url":"modules/shopperconfigurations.shopperconfigurationstypes.html#shopperconfigurationspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConfigurations.ShopperConfigurationsTypes"},{"id":2566,"kind":4194304,"name":"ShopperConfigurationsQueryParameters","url":"modules/shopperconfigurations.shopperconfigurationstypes.html#shopperconfigurationsqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConfigurations.ShopperConfigurationsTypes"},{"id":2567,"kind":4194304,"name":"getConfigurationsQueryParameters","url":"modules/shopperconfigurations.shopperconfigurationstypes.html#getconfigurationsqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConfigurations.ShopperConfigurationsTypes"},{"id":2568,"kind":4194304,"name":"getConfigurationsPathParameters","url":"modules/shopperconfigurations.shopperconfigurationstypes.html#getconfigurationspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConfigurations.ShopperConfigurationsTypes"},{"id":2569,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperconfigurations.shopperconfigurationstypes.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConfigurations.ShopperConfigurationsTypes"},{"id":2570,"kind":4194304,"name":"ModelConfiguration","url":"modules/shopperconfigurations.shopperconfigurationstypes.html#modelconfiguration","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConfigurations.ShopperConfigurationsTypes"},{"id":2571,"kind":4194304,"name":"SiteConfiguration","url":"modules/shopperconfigurations.shopperconfigurationstypes.html#siteconfiguration","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConfigurations.ShopperConfigurationsTypes"},{"id":2572,"kind":1,"name":"shopperConsents","url":"modules/shopperconsents.html","classes":"tsd-kind-module"},{"id":2573,"kind":32,"name":"defaultBaseUri","url":"modules/shopperconsents.html#defaultbaseuri-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"shopperConsents"},{"id":2574,"kind":4194304,"name":"ChannelType","url":"modules/shopperconsents.html#channeltype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2575,"kind":4194304,"name":"ConsentStatus","url":"modules/shopperconsents.html#consentstatus-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2576,"kind":4194304,"name":"SubscriptionStatusEntry","url":"modules/shopperconsents.html#subscriptionstatusentry-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2577,"kind":4194304,"name":"ConsentSubscription","url":"modules/shopperconsents.html#consentsubscription-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2578,"kind":4194304,"name":"ConsentSubscriptionConsentTypeEnum","url":"modules/shopperconsents.html#consentsubscriptionconsenttypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2579,"kind":4194304,"name":"ConsentSubscriptionDefaultStatusEnum","url":"modules/shopperconsents.html#consentsubscriptiondefaultstatusenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2580,"kind":4194304,"name":"ConsentSubscriptionRequest","url":"modules/shopperconsents.html#consentsubscriptionrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2581,"kind":4194304,"name":"ConsentSubscriptionBulkRequest","url":"modules/shopperconsents.html#consentsubscriptionbulkrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2582,"kind":4194304,"name":"ConsentSubscriptionError","url":"modules/shopperconsents.html#consentsubscriptionerror-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2583,"kind":4194304,"name":"ConsentSubscriptionResult","url":"modules/shopperconsents.html#consentsubscriptionresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2584,"kind":4194304,"name":"ConsentSubscriptionBulkResponse","url":"modules/shopperconsents.html#consentsubscriptionbulkresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2585,"kind":4194304,"name":"ConsentSubscriptionResponse","url":"modules/shopperconsents.html#consentsubscriptionresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2586,"kind":4194304,"name":"ConsentSubscriptionUpdateResponse","url":"modules/shopperconsents.html#consentsubscriptionupdateresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2587,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperconsents.html#errorresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2588,"kind":4194304,"name":"LocaleCode","url":"modules/shopperconsents.html#localecode-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2589,"kind":16777216,"name":"ChannelType","url":"modules/shopperconsents.html#channeltype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2590,"kind":16777216,"name":"ConsentStatus","url":"modules/shopperconsents.html#consentstatus","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2591,"kind":16777216,"name":"ConsentSubscription","url":"modules/shopperconsents.html#consentsubscription","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2592,"kind":16777216,"name":"ConsentSubscriptionConsentTypeEnum","url":"modules/shopperconsents.html#consentsubscriptionconsenttypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2593,"kind":16777216,"name":"ConsentSubscriptionDefaultStatusEnum","url":"modules/shopperconsents.html#consentsubscriptiondefaultstatusenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2594,"kind":16777216,"name":"ConsentSubscriptionBulkRequest","url":"modules/shopperconsents.html#consentsubscriptionbulkrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2595,"kind":16777216,"name":"ConsentSubscriptionBulkResponse","url":"modules/shopperconsents.html#consentsubscriptionbulkresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2596,"kind":16777216,"name":"ConsentSubscriptionError","url":"modules/shopperconsents.html#consentsubscriptionerror","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2597,"kind":16777216,"name":"ConsentSubscriptionRequest","url":"modules/shopperconsents.html#consentsubscriptionrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2598,"kind":16777216,"name":"ConsentSubscriptionResponse","url":"modules/shopperconsents.html#consentsubscriptionresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2599,"kind":16777216,"name":"ConsentSubscriptionResult","url":"modules/shopperconsents.html#consentsubscriptionresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2600,"kind":16777216,"name":"ConsentSubscriptionUpdateResponse","url":"modules/shopperconsents.html#consentsubscriptionupdateresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2601,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperconsents.html#errorresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2602,"kind":16777216,"name":"LocaleCode","url":"modules/shopperconsents.html#localecode","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2603,"kind":16777216,"name":"SubscriptionStatusEntry","url":"modules/shopperconsents.html#subscriptionstatusentry","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2604,"kind":128,"name":"ShopperConsents","url":"classes/shopperconsents.shopperconsents-3.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"shopperConsents"},{"id":2605,"kind":1024,"name":"clientConfig","url":"classes/shopperconsents.shopperconsents-3.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class","parent":"shopperConsents.ShopperConsents"},{"id":2606,"kind":1024,"name":"defaultBaseUri","url":"classes/shopperconsents.shopperconsents-3.html#defaultbaseuri","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperConsents.ShopperConsents"},{"id":2607,"kind":2097152,"name":"apiPaths","url":"classes/shopperconsents.shopperconsents-3.html#apipaths","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-static","parent":"shopperConsents.ShopperConsents"},{"id":2608,"kind":32,"name":"getSubscriptions","url":"classes/shopperconsents.shopperconsents-3.html#apipaths.getsubscriptions-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperConsents.ShopperConsents.apiPaths"},{"id":2609,"kind":32,"name":"updateSubscription","url":"classes/shopperconsents.shopperconsents-3.html#apipaths.updatesubscription-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperConsents.ShopperConsents.apiPaths"},{"id":2610,"kind":32,"name":"updateSubscriptions","url":"classes/shopperconsents.shopperconsents-3.html#apipaths.updatesubscriptions-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperConsents.ShopperConsents.apiPaths"},{"id":2611,"kind":512,"name":"constructor","url":"classes/shopperconsents.shopperconsents-3.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"shopperConsents.ShopperConsents"},{"id":2612,"kind":1024,"name":"paramKeys","url":"classes/shopperconsents.shopperconsents-3.html#paramkeys","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperConsents.ShopperConsents"},{"id":2613,"kind":65536,"name":"__type","url":"classes/shopperconsents.shopperconsents-3.html#paramkeys.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"shopperConsents.ShopperConsents.paramKeys"},{"id":2614,"kind":32,"name":"getSubscriptions","url":"classes/shopperconsents.shopperconsents-3.html#paramkeys.__type.getsubscriptions","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperConsents.ShopperConsents.paramKeys.__type"},{"id":2615,"kind":32,"name":"getSubscriptionsRequired","url":"classes/shopperconsents.shopperconsents-3.html#paramkeys.__type.getsubscriptionsrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperConsents.ShopperConsents.paramKeys.__type"},{"id":2616,"kind":32,"name":"updateSubscription","url":"classes/shopperconsents.shopperconsents-3.html#paramkeys.__type.updatesubscription","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperConsents.ShopperConsents.paramKeys.__type"},{"id":2617,"kind":32,"name":"updateSubscriptionRequired","url":"classes/shopperconsents.shopperconsents-3.html#paramkeys.__type.updatesubscriptionrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperConsents.ShopperConsents.paramKeys.__type"},{"id":2618,"kind":32,"name":"updateSubscriptions","url":"classes/shopperconsents.shopperconsents-3.html#paramkeys.__type.updatesubscriptions","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperConsents.ShopperConsents.paramKeys.__type"},{"id":2619,"kind":32,"name":"updateSubscriptionsRequired","url":"classes/shopperconsents.shopperconsents-3.html#paramkeys.__type.updatesubscriptionsrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperConsents.ShopperConsents.paramKeys.__type"},{"id":2620,"kind":2048,"name":"getSubscriptions","url":"classes/shopperconsents.shopperconsents-3.html#getsubscriptions-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperConsents.ShopperConsents"},{"id":2621,"kind":2048,"name":"updateSubscription","url":"classes/shopperconsents.shopperconsents-3.html#updatesubscription-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperConsents.ShopperConsents"},{"id":2622,"kind":2048,"name":"updateSubscriptions","url":"classes/shopperconsents.shopperconsents-3.html#updatesubscriptions-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperConsents.ShopperConsents"},{"id":2623,"kind":4194304,"name":"GetSubscriptionsExpandEnum","url":"modules/shopperconsents.html#getsubscriptionsexpandenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2624,"kind":4194304,"name":"getSubscriptionsQueryParameters","url":"modules/shopperconsents.html#getsubscriptionsqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2625,"kind":65536,"name":"__type","url":"modules/shopperconsents.html#getsubscriptionsqueryparameters-2.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperConsents.getSubscriptionsQueryParameters"},{"id":2626,"kind":32,"name":"siteId","url":"modules/shopperconsents.html#getsubscriptionsqueryparameters-2.__type-1.siteid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperConsents.getSubscriptionsQueryParameters.__type"},{"id":2627,"kind":32,"name":"locale","url":"modules/shopperconsents.html#getsubscriptionsqueryparameters-2.__type-1.locale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperConsents.getSubscriptionsQueryParameters.__type"},{"id":2628,"kind":32,"name":"tags","url":"modules/shopperconsents.html#getsubscriptionsqueryparameters-2.__type-1.tags","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperConsents.getSubscriptionsQueryParameters.__type"},{"id":2629,"kind":32,"name":"expand","url":"modules/shopperconsents.html#getsubscriptionsqueryparameters-2.__type-1.expand","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperConsents.getSubscriptionsQueryParameters.__type"},{"id":2630,"kind":4194304,"name":"getSubscriptionsPathParameters","url":"modules/shopperconsents.html#getsubscriptionspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2631,"kind":65536,"name":"__type","url":"modules/shopperconsents.html#getsubscriptionspathparameters-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperConsents.getSubscriptionsPathParameters"},{"id":2632,"kind":32,"name":"organizationId","url":"modules/shopperconsents.html#getsubscriptionspathparameters-2.__type.organizationid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperConsents.getSubscriptionsPathParameters.__type"},{"id":2633,"kind":4194304,"name":"updateSubscriptionQueryParameters","url":"modules/shopperconsents.html#updatesubscriptionqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2634,"kind":65536,"name":"__type","url":"modules/shopperconsents.html#updatesubscriptionqueryparameters-2.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperConsents.updateSubscriptionQueryParameters"},{"id":2635,"kind":32,"name":"siteId","url":"modules/shopperconsents.html#updatesubscriptionqueryparameters-2.__type-3.siteid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperConsents.updateSubscriptionQueryParameters.__type"},{"id":2636,"kind":32,"name":"locale","url":"modules/shopperconsents.html#updatesubscriptionqueryparameters-2.__type-3.locale-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperConsents.updateSubscriptionQueryParameters.__type"},{"id":2637,"kind":4194304,"name":"updateSubscriptionPathParameters","url":"modules/shopperconsents.html#updatesubscriptionpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2638,"kind":65536,"name":"__type","url":"modules/shopperconsents.html#updatesubscriptionpathparameters-2.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperConsents.updateSubscriptionPathParameters"},{"id":2639,"kind":32,"name":"organizationId","url":"modules/shopperconsents.html#updatesubscriptionpathparameters-2.__type-2.organizationid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperConsents.updateSubscriptionPathParameters.__type"},{"id":2640,"kind":4194304,"name":"updateSubscriptionsQueryParameters","url":"modules/shopperconsents.html#updatesubscriptionsqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2641,"kind":65536,"name":"__type","url":"modules/shopperconsents.html#updatesubscriptionsqueryparameters-2.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperConsents.updateSubscriptionsQueryParameters"},{"id":2642,"kind":32,"name":"siteId","url":"modules/shopperconsents.html#updatesubscriptionsqueryparameters-2.__type-5.siteid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperConsents.updateSubscriptionsQueryParameters.__type"},{"id":2643,"kind":32,"name":"locale","url":"modules/shopperconsents.html#updatesubscriptionsqueryparameters-2.__type-5.locale-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperConsents.updateSubscriptionsQueryParameters.__type"},{"id":2644,"kind":4194304,"name":"updateSubscriptionsPathParameters","url":"modules/shopperconsents.html#updatesubscriptionspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2645,"kind":65536,"name":"__type","url":"modules/shopperconsents.html#updatesubscriptionspathparameters-2.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperConsents.updateSubscriptionsPathParameters"},{"id":2646,"kind":32,"name":"organizationId","url":"modules/shopperconsents.html#updatesubscriptionspathparameters-2.__type-4.organizationid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperConsents.updateSubscriptionsPathParameters.__type"},{"id":2647,"kind":4194304,"name":"ShopperConsentsPathParameters","url":"modules/shopperconsents.html#shopperconsentspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2648,"kind":4194304,"name":"ShopperConsentsQueryParameters","url":"modules/shopperconsents.html#shopperconsentsqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2649,"kind":4194304,"name":"ShopperConsentsParameters","url":"modules/shopperconsents.html#shopperconsentsparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperConsents"},{"id":2650,"kind":16777216,"name":"GetSubscriptionsExpandEnum","url":"modules/shopperconsents.html#getsubscriptionsexpandenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2651,"kind":16777216,"name":"getSubscriptionsQueryParameters","url":"modules/shopperconsents.html#getsubscriptionsqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2652,"kind":16777216,"name":"getSubscriptionsPathParameters","url":"modules/shopperconsents.html#getsubscriptionspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2653,"kind":16777216,"name":"updateSubscriptionQueryParameters","url":"modules/shopperconsents.html#updatesubscriptionqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2654,"kind":16777216,"name":"updateSubscriptionPathParameters","url":"modules/shopperconsents.html#updatesubscriptionpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2655,"kind":16777216,"name":"updateSubscriptionsQueryParameters","url":"modules/shopperconsents.html#updatesubscriptionsqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2656,"kind":16777216,"name":"updateSubscriptionsPathParameters","url":"modules/shopperconsents.html#updatesubscriptionspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2657,"kind":16777216,"name":"ShopperConsentsPathParameters","url":"modules/shopperconsents.html#shopperconsentspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2658,"kind":16777216,"name":"ShopperConsentsQueryParameters","url":"modules/shopperconsents.html#shopperconsentsqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2659,"kind":16777216,"name":"ShopperConsentsParameters","url":"modules/shopperconsents.html#shopperconsentsparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2660,"kind":16777216,"name":"ShopperConsents","url":"modules/shopperconsents.html#shopperconsents-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2661,"kind":16777216,"name":"defaultBaseUri","url":"modules/shopperconsents.html#defaultbaseuri","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2662,"kind":16777216,"name":"GetSubscriptionsExpandEnum","url":"modules/shopperconsents.html#getsubscriptionsexpandenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2663,"kind":16777216,"name":"getSubscriptionsQueryParameters","url":"modules/shopperconsents.html#getsubscriptionsqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2664,"kind":16777216,"name":"getSubscriptionsPathParameters","url":"modules/shopperconsents.html#getsubscriptionspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2665,"kind":16777216,"name":"updateSubscriptionQueryParameters","url":"modules/shopperconsents.html#updatesubscriptionqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2666,"kind":16777216,"name":"updateSubscriptionPathParameters","url":"modules/shopperconsents.html#updatesubscriptionpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2667,"kind":16777216,"name":"updateSubscriptionsQueryParameters","url":"modules/shopperconsents.html#updatesubscriptionsqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2668,"kind":16777216,"name":"updateSubscriptionsPathParameters","url":"modules/shopperconsents.html#updatesubscriptionspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2669,"kind":16777216,"name":"ShopperConsentsPathParameters","url":"modules/shopperconsents.html#shopperconsentspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2670,"kind":16777216,"name":"ShopperConsentsQueryParameters","url":"modules/shopperconsents.html#shopperconsentsqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2671,"kind":16777216,"name":"ShopperConsentsParameters","url":"modules/shopperconsents.html#shopperconsentsparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2672,"kind":16777216,"name":"ShopperConsents","url":"modules/shopperconsents.html#shopperconsents-2","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2673,"kind":16777216,"name":"ChannelType","url":"modules/shopperconsents.html#channeltype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2674,"kind":16777216,"name":"ConsentStatus","url":"modules/shopperconsents.html#consentstatus-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2675,"kind":16777216,"name":"ConsentSubscription","url":"modules/shopperconsents.html#consentsubscription-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2676,"kind":16777216,"name":"ConsentSubscriptionConsentTypeEnum","url":"modules/shopperconsents.html#consentsubscriptionconsenttypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2677,"kind":16777216,"name":"ConsentSubscriptionDefaultStatusEnum","url":"modules/shopperconsents.html#consentsubscriptiondefaultstatusenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2678,"kind":16777216,"name":"ConsentSubscriptionBulkRequest","url":"modules/shopperconsents.html#consentsubscriptionbulkrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2679,"kind":16777216,"name":"ConsentSubscriptionBulkResponse","url":"modules/shopperconsents.html#consentsubscriptionbulkresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2680,"kind":16777216,"name":"ConsentSubscriptionError","url":"modules/shopperconsents.html#consentsubscriptionerror-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2681,"kind":16777216,"name":"ConsentSubscriptionRequest","url":"modules/shopperconsents.html#consentsubscriptionrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2682,"kind":16777216,"name":"ConsentSubscriptionResponse","url":"modules/shopperconsents.html#consentsubscriptionresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2683,"kind":16777216,"name":"ConsentSubscriptionResult","url":"modules/shopperconsents.html#consentsubscriptionresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2684,"kind":16777216,"name":"ConsentSubscriptionUpdateResponse","url":"modules/shopperconsents.html#consentsubscriptionupdateresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2685,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperconsents.html#errorresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2686,"kind":16777216,"name":"LocaleCode","url":"modules/shopperconsents.html#localecode-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2687,"kind":16777216,"name":"SubscriptionStatusEntry","url":"modules/shopperconsents.html#subscriptionstatusentry-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperConsents"},{"id":2688,"kind":2,"name":"ShopperConsentsTypes","url":"modules/shopperconsents.shopperconsentstypes.html","classes":"tsd-kind-namespace tsd-parent-kind-module","parent":"shopperConsents"},{"id":2689,"kind":4194304,"name":"ShopperConsentsPathParameters","url":"modules/shopperconsents.shopperconsentstypes.html#shopperconsentspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2690,"kind":4194304,"name":"ShopperConsentsQueryParameters","url":"modules/shopperconsents.shopperconsentstypes.html#shopperconsentsqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2691,"kind":4194304,"name":"GetSubscriptionsExpandEnum","url":"modules/shopperconsents.shopperconsentstypes.html#getsubscriptionsexpandenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2692,"kind":4194304,"name":"getSubscriptionsQueryParameters","url":"modules/shopperconsents.shopperconsentstypes.html#getsubscriptionsqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2693,"kind":4194304,"name":"getSubscriptionsPathParameters","url":"modules/shopperconsents.shopperconsentstypes.html#getsubscriptionspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2694,"kind":4194304,"name":"updateSubscriptionQueryParameters","url":"modules/shopperconsents.shopperconsentstypes.html#updatesubscriptionqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2695,"kind":4194304,"name":"updateSubscriptionPathParameters","url":"modules/shopperconsents.shopperconsentstypes.html#updatesubscriptionpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2696,"kind":4194304,"name":"updateSubscriptionsQueryParameters","url":"modules/shopperconsents.shopperconsentstypes.html#updatesubscriptionsqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2697,"kind":4194304,"name":"updateSubscriptionsPathParameters","url":"modules/shopperconsents.shopperconsentstypes.html#updatesubscriptionspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2698,"kind":4194304,"name":"ChannelType","url":"modules/shopperconsents.shopperconsentstypes.html#channeltype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2699,"kind":4194304,"name":"ConsentStatus","url":"modules/shopperconsents.shopperconsentstypes.html#consentstatus","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2700,"kind":4194304,"name":"ConsentSubscription","url":"modules/shopperconsents.shopperconsentstypes.html#consentsubscription","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2701,"kind":4194304,"name":"ConsentSubscriptionConsentTypeEnum","url":"modules/shopperconsents.shopperconsentstypes.html#consentsubscriptionconsenttypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2702,"kind":4194304,"name":"ConsentSubscriptionDefaultStatusEnum","url":"modules/shopperconsents.shopperconsentstypes.html#consentsubscriptiondefaultstatusenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2703,"kind":4194304,"name":"ConsentSubscriptionBulkRequest","url":"modules/shopperconsents.shopperconsentstypes.html#consentsubscriptionbulkrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2704,"kind":4194304,"name":"ConsentSubscriptionBulkResponse","url":"modules/shopperconsents.shopperconsentstypes.html#consentsubscriptionbulkresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2705,"kind":4194304,"name":"ConsentSubscriptionError","url":"modules/shopperconsents.shopperconsentstypes.html#consentsubscriptionerror","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2706,"kind":4194304,"name":"ConsentSubscriptionRequest","url":"modules/shopperconsents.shopperconsentstypes.html#consentsubscriptionrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2707,"kind":4194304,"name":"ConsentSubscriptionResponse","url":"modules/shopperconsents.shopperconsentstypes.html#consentsubscriptionresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2708,"kind":4194304,"name":"ConsentSubscriptionResult","url":"modules/shopperconsents.shopperconsentstypes.html#consentsubscriptionresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2709,"kind":4194304,"name":"ConsentSubscriptionUpdateResponse","url":"modules/shopperconsents.shopperconsentstypes.html#consentsubscriptionupdateresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2710,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperconsents.shopperconsentstypes.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2711,"kind":4194304,"name":"LocaleCode","url":"modules/shopperconsents.shopperconsentstypes.html#localecode","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2712,"kind":4194304,"name":"SubscriptionStatusEntry","url":"modules/shopperconsents.shopperconsentstypes.html#subscriptionstatusentry","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperConsents.ShopperConsentsTypes"},{"id":2713,"kind":1,"name":"shopperContext","url":"modules/shoppercontext.html","classes":"tsd-kind-module"},{"id":2714,"kind":32,"name":"defaultBaseUri","url":"modules/shoppercontext.html#defaultbaseuri-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"shopperContext"},{"id":2715,"kind":4194304,"name":"ErrorResponse","url":"modules/shoppercontext.html#errorresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperContext"},{"id":2716,"kind":4194304,"name":"ShopperContextGeoLocation","url":"modules/shoppercontext.html#shoppercontextgeolocation-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperContext"},{"id":2717,"kind":4194304,"name":"ShopperContext","url":"modules/shoppercontext.html#shoppercontext-3","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperContext"},{"id":2718,"kind":16777216,"name":"ErrorResponse","url":"modules/shoppercontext.html#errorresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2719,"kind":16777216,"name":"ShopperContext","url":"modules/shoppercontext.html#shoppercontext-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2720,"kind":16777216,"name":"ShopperContextGeoLocation","url":"modules/shoppercontext.html#shoppercontextgeolocation","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2721,"kind":128,"name":"ShopperContexts","url":"classes/shoppercontext.shoppercontexts-2.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"shopperContext"},{"id":2722,"kind":1024,"name":"clientConfig","url":"classes/shoppercontext.shoppercontexts-2.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class","parent":"shopperContext.ShopperContexts"},{"id":2723,"kind":1024,"name":"defaultBaseUri","url":"classes/shoppercontext.shoppercontexts-2.html#defaultbaseuri","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperContext.ShopperContexts"},{"id":2724,"kind":2097152,"name":"apiPaths","url":"classes/shoppercontext.shoppercontexts-2.html#apipaths","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-static","parent":"shopperContext.ShopperContexts"},{"id":2725,"kind":32,"name":"createShopperContext","url":"classes/shoppercontext.shoppercontexts-2.html#apipaths.createshoppercontext-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperContext.ShopperContexts.apiPaths"},{"id":2726,"kind":32,"name":"deleteShopperContext","url":"classes/shoppercontext.shoppercontexts-2.html#apipaths.deleteshoppercontext-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperContext.ShopperContexts.apiPaths"},{"id":2727,"kind":32,"name":"getShopperContext","url":"classes/shoppercontext.shoppercontexts-2.html#apipaths.getshoppercontext-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperContext.ShopperContexts.apiPaths"},{"id":2728,"kind":32,"name":"updateShopperContext","url":"classes/shoppercontext.shoppercontexts-2.html#apipaths.updateshoppercontext-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperContext.ShopperContexts.apiPaths"},{"id":2729,"kind":512,"name":"constructor","url":"classes/shoppercontext.shoppercontexts-2.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"shopperContext.ShopperContexts"},{"id":2730,"kind":1024,"name":"paramKeys","url":"classes/shoppercontext.shoppercontexts-2.html#paramkeys","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperContext.ShopperContexts"},{"id":2731,"kind":65536,"name":"__type","url":"classes/shoppercontext.shoppercontexts-2.html#paramkeys.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"shopperContext.ShopperContexts.paramKeys"},{"id":2732,"kind":32,"name":"createShopperContext","url":"classes/shoppercontext.shoppercontexts-2.html#paramkeys.__type.createshoppercontext","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.ShopperContexts.paramKeys.__type"},{"id":2733,"kind":32,"name":"createShopperContextRequired","url":"classes/shoppercontext.shoppercontexts-2.html#paramkeys.__type.createshoppercontextrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.ShopperContexts.paramKeys.__type"},{"id":2734,"kind":32,"name":"deleteShopperContext","url":"classes/shoppercontext.shoppercontexts-2.html#paramkeys.__type.deleteshoppercontext","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.ShopperContexts.paramKeys.__type"},{"id":2735,"kind":32,"name":"deleteShopperContextRequired","url":"classes/shoppercontext.shoppercontexts-2.html#paramkeys.__type.deleteshoppercontextrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.ShopperContexts.paramKeys.__type"},{"id":2736,"kind":32,"name":"getShopperContext","url":"classes/shoppercontext.shoppercontexts-2.html#paramkeys.__type.getshoppercontext","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.ShopperContexts.paramKeys.__type"},{"id":2737,"kind":32,"name":"getShopperContextRequired","url":"classes/shoppercontext.shoppercontexts-2.html#paramkeys.__type.getshoppercontextrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.ShopperContexts.paramKeys.__type"},{"id":2738,"kind":32,"name":"updateShopperContext","url":"classes/shoppercontext.shoppercontexts-2.html#paramkeys.__type.updateshoppercontext","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.ShopperContexts.paramKeys.__type"},{"id":2739,"kind":32,"name":"updateShopperContextRequired","url":"classes/shoppercontext.shoppercontexts-2.html#paramkeys.__type.updateshoppercontextrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.ShopperContexts.paramKeys.__type"},{"id":2740,"kind":2048,"name":"createShopperContext","url":"classes/shoppercontext.shoppercontexts-2.html#createshoppercontext-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperContext.ShopperContexts"},{"id":2741,"kind":2048,"name":"deleteShopperContext","url":"classes/shoppercontext.shoppercontexts-2.html#deleteshoppercontext-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperContext.ShopperContexts"},{"id":2742,"kind":2048,"name":"getShopperContext","url":"classes/shoppercontext.shoppercontexts-2.html#getshoppercontext-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperContext.ShopperContexts"},{"id":2743,"kind":2048,"name":"updateShopperContext","url":"classes/shoppercontext.shoppercontexts-2.html#updateshoppercontext-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperContext.ShopperContexts"},{"id":2744,"kind":4194304,"name":"createShopperContextQueryParameters","url":"modules/shoppercontext.html#createshoppercontextqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperContext"},{"id":2745,"kind":65536,"name":"__type","url":"modules/shoppercontext.html#createshoppercontextqueryparameters-2.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperContext.createShopperContextQueryParameters"},{"id":2746,"kind":32,"name":"siteId","url":"modules/shoppercontext.html#createshoppercontextqueryparameters-2.__type-1.siteid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.createShopperContextQueryParameters.__type"},{"id":2747,"kind":32,"name":"evaluateContextWithClientIp","url":"modules/shoppercontext.html#createshoppercontextqueryparameters-2.__type-1.evaluatecontextwithclientip","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.createShopperContextQueryParameters.__type"},{"id":2748,"kind":4194304,"name":"createShopperContextPathParameters","url":"modules/shoppercontext.html#createshoppercontextpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperContext"},{"id":2749,"kind":65536,"name":"__type","url":"modules/shoppercontext.html#createshoppercontextpathparameters-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperContext.createShopperContextPathParameters"},{"id":2750,"kind":32,"name":"usid","url":"modules/shoppercontext.html#createshoppercontextpathparameters-2.__type.usid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.createShopperContextPathParameters.__type"},{"id":2751,"kind":32,"name":"organizationId","url":"modules/shoppercontext.html#createshoppercontextpathparameters-2.__type.organizationid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.createShopperContextPathParameters.__type"},{"id":2752,"kind":4194304,"name":"deleteShopperContextQueryParameters","url":"modules/shoppercontext.html#deleteshoppercontextqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperContext"},{"id":2753,"kind":65536,"name":"__type","url":"modules/shoppercontext.html#deleteshoppercontextqueryparameters-2.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperContext.deleteShopperContextQueryParameters"},{"id":2754,"kind":32,"name":"siteId","url":"modules/shoppercontext.html#deleteshoppercontextqueryparameters-2.__type-3.siteid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.deleteShopperContextQueryParameters.__type"},{"id":2755,"kind":4194304,"name":"deleteShopperContextPathParameters","url":"modules/shoppercontext.html#deleteshoppercontextpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperContext"},{"id":2756,"kind":65536,"name":"__type","url":"modules/shoppercontext.html#deleteshoppercontextpathparameters-2.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperContext.deleteShopperContextPathParameters"},{"id":2757,"kind":32,"name":"usid","url":"modules/shoppercontext.html#deleteshoppercontextpathparameters-2.__type-2.usid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.deleteShopperContextPathParameters.__type"},{"id":2758,"kind":32,"name":"organizationId","url":"modules/shoppercontext.html#deleteshoppercontextpathparameters-2.__type-2.organizationid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.deleteShopperContextPathParameters.__type"},{"id":2759,"kind":4194304,"name":"getShopperContextQueryParameters","url":"modules/shoppercontext.html#getshoppercontextqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperContext"},{"id":2760,"kind":65536,"name":"__type","url":"modules/shoppercontext.html#getshoppercontextqueryparameters-2.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperContext.getShopperContextQueryParameters"},{"id":2761,"kind":32,"name":"siteId","url":"modules/shoppercontext.html#getshoppercontextqueryparameters-2.__type-5.siteid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.getShopperContextQueryParameters.__type"},{"id":2762,"kind":4194304,"name":"getShopperContextPathParameters","url":"modules/shoppercontext.html#getshoppercontextpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperContext"},{"id":2763,"kind":65536,"name":"__type","url":"modules/shoppercontext.html#getshoppercontextpathparameters-2.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperContext.getShopperContextPathParameters"},{"id":2764,"kind":32,"name":"usid","url":"modules/shoppercontext.html#getshoppercontextpathparameters-2.__type-4.usid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.getShopperContextPathParameters.__type"},{"id":2765,"kind":32,"name":"organizationId","url":"modules/shoppercontext.html#getshoppercontextpathparameters-2.__type-4.organizationid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.getShopperContextPathParameters.__type"},{"id":2766,"kind":4194304,"name":"updateShopperContextQueryParameters","url":"modules/shoppercontext.html#updateshoppercontextqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperContext"},{"id":2767,"kind":65536,"name":"__type","url":"modules/shoppercontext.html#updateshoppercontextqueryparameters-2.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperContext.updateShopperContextQueryParameters"},{"id":2768,"kind":32,"name":"siteId","url":"modules/shoppercontext.html#updateshoppercontextqueryparameters-2.__type-7.siteid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.updateShopperContextQueryParameters.__type"},{"id":2769,"kind":32,"name":"evaluateContextWithClientIp","url":"modules/shoppercontext.html#updateshoppercontextqueryparameters-2.__type-7.evaluatecontextwithclientip-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.updateShopperContextQueryParameters.__type"},{"id":2770,"kind":4194304,"name":"updateShopperContextPathParameters","url":"modules/shoppercontext.html#updateshoppercontextpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperContext"},{"id":2771,"kind":65536,"name":"__type","url":"modules/shoppercontext.html#updateshoppercontextpathparameters-2.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperContext.updateShopperContextPathParameters"},{"id":2772,"kind":32,"name":"usid","url":"modules/shoppercontext.html#updateshoppercontextpathparameters-2.__type-6.usid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.updateShopperContextPathParameters.__type"},{"id":2773,"kind":32,"name":"organizationId","url":"modules/shoppercontext.html#updateshoppercontextpathparameters-2.__type-6.organizationid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperContext.updateShopperContextPathParameters.__type"},{"id":2774,"kind":4194304,"name":"ShopperContextsPathParameters","url":"modules/shoppercontext.html#shoppercontextspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperContext"},{"id":2775,"kind":4194304,"name":"ShopperContextsQueryParameters","url":"modules/shoppercontext.html#shoppercontextsqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperContext"},{"id":2776,"kind":4194304,"name":"ShopperContextsParameters","url":"modules/shoppercontext.html#shoppercontextsparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperContext"},{"id":2777,"kind":4194304,"name":"ShopperContextPathParameters","url":"modules/shoppercontext.html#shoppercontextpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperContext"},{"id":2778,"kind":4194304,"name":"ShopperContextQueryParameters","url":"modules/shoppercontext.html#shoppercontextqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperContext"},{"id":2779,"kind":4194304,"name":"ShopperContextParameters","url":"modules/shoppercontext.html#shoppercontextparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperContext"},{"id":2780,"kind":16777216,"name":"createShopperContextQueryParameters","url":"modules/shoppercontext.html#createshoppercontextqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2781,"kind":16777216,"name":"createShopperContextPathParameters","url":"modules/shoppercontext.html#createshoppercontextpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2782,"kind":16777216,"name":"deleteShopperContextQueryParameters","url":"modules/shoppercontext.html#deleteshoppercontextqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2783,"kind":16777216,"name":"deleteShopperContextPathParameters","url":"modules/shoppercontext.html#deleteshoppercontextpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2784,"kind":16777216,"name":"getShopperContextQueryParameters","url":"modules/shoppercontext.html#getshoppercontextqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2785,"kind":16777216,"name":"getShopperContextPathParameters","url":"modules/shoppercontext.html#getshoppercontextpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2786,"kind":16777216,"name":"updateShopperContextQueryParameters","url":"modules/shoppercontext.html#updateshoppercontextqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2787,"kind":16777216,"name":"updateShopperContextPathParameters","url":"modules/shoppercontext.html#updateshoppercontextpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2788,"kind":16777216,"name":"ShopperContextsPathParameters","url":"modules/shoppercontext.html#shoppercontextspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2789,"kind":16777216,"name":"ShopperContextsQueryParameters","url":"modules/shoppercontext.html#shoppercontextsqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2790,"kind":16777216,"name":"ShopperContextsParameters","url":"modules/shoppercontext.html#shoppercontextsparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2791,"kind":16777216,"name":"ShopperContextPathParameters","url":"modules/shoppercontext.html#shoppercontextpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2792,"kind":16777216,"name":"ShopperContextQueryParameters","url":"modules/shoppercontext.html#shoppercontextqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2793,"kind":16777216,"name":"ShopperContextParameters","url":"modules/shoppercontext.html#shoppercontextparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2794,"kind":16777216,"name":"ShopperContexts","url":"modules/shoppercontext.html#shoppercontexts","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2795,"kind":16777216,"name":"defaultBaseUri","url":"modules/shoppercontext.html#defaultbaseuri","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2796,"kind":16777216,"name":"createShopperContextQueryParameters","url":"modules/shoppercontext.html#createshoppercontextqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2797,"kind":16777216,"name":"createShopperContextPathParameters","url":"modules/shoppercontext.html#createshoppercontextpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2798,"kind":16777216,"name":"deleteShopperContextQueryParameters","url":"modules/shoppercontext.html#deleteshoppercontextqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2799,"kind":16777216,"name":"deleteShopperContextPathParameters","url":"modules/shoppercontext.html#deleteshoppercontextpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2800,"kind":16777216,"name":"getShopperContextQueryParameters","url":"modules/shoppercontext.html#getshoppercontextqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2801,"kind":16777216,"name":"getShopperContextPathParameters","url":"modules/shoppercontext.html#getshoppercontextpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2802,"kind":16777216,"name":"updateShopperContextQueryParameters","url":"modules/shoppercontext.html#updateshoppercontextqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2803,"kind":16777216,"name":"updateShopperContextPathParameters","url":"modules/shoppercontext.html#updateshoppercontextpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2804,"kind":16777216,"name":"ShopperContextsPathParameters","url":"modules/shoppercontext.html#shoppercontextspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2805,"kind":16777216,"name":"ShopperContextsQueryParameters","url":"modules/shoppercontext.html#shoppercontextsqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2806,"kind":16777216,"name":"ShopperContextsParameters","url":"modules/shoppercontext.html#shoppercontextsparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2807,"kind":16777216,"name":"ShopperContextPathParameters","url":"modules/shoppercontext.html#shoppercontextpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2808,"kind":16777216,"name":"ShopperContextQueryParameters","url":"modules/shoppercontext.html#shoppercontextqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2809,"kind":16777216,"name":"ShopperContextParameters","url":"modules/shoppercontext.html#shoppercontextparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2810,"kind":16777216,"name":"ShopperContexts","url":"modules/shoppercontext.html#shoppercontexts-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2811,"kind":16777216,"name":"ErrorResponse","url":"modules/shoppercontext.html#errorresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2812,"kind":16777216,"name":"ShopperContext","url":"modules/shoppercontext.html#shoppercontext-2","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2813,"kind":16777216,"name":"ShopperContextGeoLocation","url":"modules/shoppercontext.html#shoppercontextgeolocation-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperContext"},{"id":2814,"kind":2,"name":"ShopperContextsTypes","url":"modules/shoppercontext.shoppercontextstypes.html","classes":"tsd-kind-namespace tsd-parent-kind-module","parent":"shopperContext"},{"id":2815,"kind":4194304,"name":"ShopperContextsPathParameters","url":"modules/shoppercontext.shoppercontextstypes.html#shoppercontextspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperContext.ShopperContextsTypes"},{"id":2816,"kind":4194304,"name":"ShopperContextsQueryParameters","url":"modules/shoppercontext.shoppercontextstypes.html#shoppercontextsqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperContext.ShopperContextsTypes"},{"id":2817,"kind":4194304,"name":"createShopperContextQueryParameters","url":"modules/shoppercontext.shoppercontextstypes.html#createshoppercontextqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperContext.ShopperContextsTypes"},{"id":2818,"kind":4194304,"name":"createShopperContextPathParameters","url":"modules/shoppercontext.shoppercontextstypes.html#createshoppercontextpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperContext.ShopperContextsTypes"},{"id":2819,"kind":4194304,"name":"deleteShopperContextQueryParameters","url":"modules/shoppercontext.shoppercontextstypes.html#deleteshoppercontextqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperContext.ShopperContextsTypes"},{"id":2820,"kind":4194304,"name":"deleteShopperContextPathParameters","url":"modules/shoppercontext.shoppercontextstypes.html#deleteshoppercontextpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperContext.ShopperContextsTypes"},{"id":2821,"kind":4194304,"name":"getShopperContextQueryParameters","url":"modules/shoppercontext.shoppercontextstypes.html#getshoppercontextqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperContext.ShopperContextsTypes"},{"id":2822,"kind":4194304,"name":"getShopperContextPathParameters","url":"modules/shoppercontext.shoppercontextstypes.html#getshoppercontextpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperContext.ShopperContextsTypes"},{"id":2823,"kind":4194304,"name":"updateShopperContextQueryParameters","url":"modules/shoppercontext.shoppercontextstypes.html#updateshoppercontextqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperContext.ShopperContextsTypes"},{"id":2824,"kind":4194304,"name":"updateShopperContextPathParameters","url":"modules/shoppercontext.shoppercontextstypes.html#updateshoppercontextpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperContext.ShopperContextsTypes"},{"id":2825,"kind":4194304,"name":"ErrorResponse","url":"modules/shoppercontext.shoppercontextstypes.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperContext.ShopperContextsTypes"},{"id":2826,"kind":4194304,"name":"ShopperContext","url":"modules/shoppercontext.shoppercontextstypes.html#shoppercontext","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperContext.ShopperContextsTypes"},{"id":2827,"kind":4194304,"name":"ShopperContextGeoLocation","url":"modules/shoppercontext.shoppercontextstypes.html#shoppercontextgeolocation","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperContext.ShopperContextsTypes"},{"id":2828,"kind":1,"name":"shopperCustomers","url":"modules/shoppercustomers.html","classes":"tsd-kind-module"},{"id":2829,"kind":32,"name":"defaultBaseUri","url":"modules/shoppercustomers.html#defaultbaseuri-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2830,"kind":4194304,"name":"GiftCertificateItem","url":"modules/shoppercustomers.html#giftcertificateitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2831,"kind":4194304,"name":"Status","url":"modules/shoppercustomers.html#status-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2832,"kind":4194304,"name":"OrderPaymentInstrumentPaymentReferenceGatewayProperties","url":"modules/shoppercustomers.html#orderpaymentinstrumentpaymentreferencegatewayproperties-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2833,"kind":4194304,"name":"OrderPaymentInstrumentPaymentReference","url":"modules/shoppercustomers.html#orderpaymentinstrumentpaymentreference-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2834,"kind":4194304,"name":"OrderPaymentInstrumentPaymentReferenceGatewayEnum","url":"modules/shoppercustomers.html#orderpaymentinstrumentpaymentreferencegatewayenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2835,"kind":4194304,"name":"GiftCardResponse","url":"modules/shoppercustomers.html#giftcardresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2836,"kind":4194304,"name":"PaymentCard","url":"modules/shoppercustomers.html#paymentcard-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2837,"kind":4194304,"name":"OrderPaymentInstrument","url":"modules/shoppercustomers.html#orderpaymentinstrument-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2838,"kind":4194304,"name":"ProductDetailsLink","url":"modules/shoppercustomers.html#productdetailslink-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2839,"kind":4194304,"name":"BonusDiscountLineItem","url":"modules/shoppercustomers.html#bonusdiscountlineitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2840,"kind":4194304,"name":"Discount","url":"modules/shoppercustomers.html#discount-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2841,"kind":4194304,"name":"DiscountTypeEnum","url":"modules/shoppercustomers.html#discounttypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2842,"kind":4194304,"name":"PriceAdjustment","url":"modules/shoppercustomers.html#priceadjustment-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2843,"kind":4194304,"name":"ShippingItem","url":"modules/shoppercustomers.html#shippingitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2844,"kind":4194304,"name":"OrderAddress","url":"modules/shoppercustomers.html#orderaddress-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2845,"kind":4194304,"name":"ShippingPromotion","url":"modules/shoppercustomers.html#shippingpromotion-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2846,"kind":4194304,"name":"ShippingMethod","url":"modules/shoppercustomers.html#shippingmethod-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2847,"kind":4194304,"name":"Shipment","url":"modules/shoppercustomers.html#shipment-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2848,"kind":4194304,"name":"ShipmentShippingStatusEnum","url":"modules/shoppercustomers.html#shipmentshippingstatusenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2849,"kind":4194304,"name":"CouponItem","url":"modules/shoppercustomers.html#couponitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2850,"kind":4194304,"name":"CouponItemStatusCodeEnum","url":"modules/shoppercustomers.html#couponitemstatuscodeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2851,"kind":4194304,"name":"CustomerInfo","url":"modules/shoppercustomers.html#customerinfo-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2852,"kind":4194304,"name":"ProductListLink","url":"modules/shoppercustomers.html#productlistlink-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2853,"kind":4194304,"name":"ProductListLinkTypeEnum","url":"modules/shoppercustomers.html#productlistlinktypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2854,"kind":4194304,"name":"ProductListItemReference","url":"modules/shoppercustomers.html#productlistitemreference-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2855,"kind":4194304,"name":"ProductListItemReferenceTypeEnum","url":"modules/shoppercustomers.html#productlistitemreferencetypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2856,"kind":4194304,"name":"ProductItem","url":"modules/shoppercustomers.html#productitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2857,"kind":4194304,"name":"OptionItem","url":"modules/shoppercustomers.html#optionitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2858,"kind":4194304,"name":"BasketProductItem","url":"modules/shoppercustomers.html#basketproductitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2859,"kind":4194304,"name":"GroupedTaxItem","url":"modules/shoppercustomers.html#groupedtaxitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2860,"kind":4194304,"name":"Basket","url":"modules/shoppercustomers.html#basket-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2861,"kind":4194304,"name":"BasketChannelTypeEnum","url":"modules/shoppercustomers.html#basketchanneltypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2862,"kind":4194304,"name":"BasketTaxationEnum","url":"modules/shoppercustomers.html#baskettaxationenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2863,"kind":4194304,"name":"BasketsResult","url":"modules/shoppercustomers.html#basketsresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2864,"kind":4194304,"name":"Image","url":"modules/shoppercustomers.html#image-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2865,"kind":4194304,"name":"VariationAttributeValue","url":"modules/shoppercustomers.html#variationattributevalue-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2866,"kind":4194304,"name":"VariationAttribute","url":"modules/shoppercustomers.html#variationattribute-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2867,"kind":4194304,"name":"VariationGroup","url":"modules/shoppercustomers.html#variationgroup-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2868,"kind":4194304,"name":"ProductType","url":"modules/shoppercustomers.html#producttype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2869,"kind":4194304,"name":"ProductPriceTable","url":"modules/shoppercustomers.html#productpricetable-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2870,"kind":4194304,"name":"RecommendationType","url":"modules/shoppercustomers.html#recommendationtype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2871,"kind":4194304,"name":"Recommendation","url":"modules/shoppercustomers.html#recommendation-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2872,"kind":4194304,"name":"PriceRange","url":"modules/shoppercustomers.html#pricerange-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2873,"kind":4194304,"name":"ProductPromotion","url":"modules/shoppercustomers.html#productpromotion-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2874,"kind":4194304,"name":"Master","url":"modules/shoppercustomers.html#master-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2875,"kind":4194304,"name":"Variant","url":"modules/shoppercustomers.html#variant-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2876,"kind":4194304,"name":"PageMetaTag","url":"modules/shoppercustomers.html#pagemetatag-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2877,"kind":4194304,"name":"ProductLink","url":"modules/shoppercustomers.html#productlink-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2878,"kind":4194304,"name":"ProductLinkTypeEnum","url":"modules/shoppercustomers.html#productlinktypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2879,"kind":4194304,"name":"OptionValue","url":"modules/shoppercustomers.html#optionvalue-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2880,"kind":4194304,"name":"Option","url":"modules/shoppercustomers.html#option-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2881,"kind":4194304,"name":"ImageGroup","url":"modules/shoppercustomers.html#imagegroup-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2882,"kind":4194304,"name":"Inventory","url":"modules/shoppercustomers.html#inventory-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2883,"kind":4194304,"name":"Product","url":"modules/shoppercustomers.html#product-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2884,"kind":4194304,"name":"BundledProduct","url":"modules/shoppercustomers.html#bundledproduct-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2885,"kind":4194304,"name":"CustomerPaymentMethodReference","url":"modules/shoppercustomers.html#customerpaymentmethodreference-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2886,"kind":4194304,"name":"CustomerPaymentMethodReferenceTypeEnum","url":"modules/shoppercustomers.html#customerpaymentmethodreferencetypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2887,"kind":4194304,"name":"CustomerPaymentInstrument","url":"modules/shoppercustomers.html#customerpaymentinstrument-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2888,"kind":4194304,"name":"CustomerAddress","url":"modules/shoppercustomers.html#customeraddress-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2889,"kind":4194304,"name":"Customer","url":"modules/shoppercustomers.html#customer-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2890,"kind":4194304,"name":"CustomerAuthTypeEnum","url":"modules/shoppercustomers.html#customerauthtypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2891,"kind":4194304,"name":"CustomerAddressInfo","url":"modules/shoppercustomers.html#customeraddressinfo-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2892,"kind":4194304,"name":"CustomerExtProfileRequest","url":"modules/shoppercustomers.html#customerextprofilerequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2893,"kind":4194304,"name":"CustomerExternalProfile","url":"modules/shoppercustomers.html#customerexternalprofile-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2894,"kind":4194304,"name":"OmsProductData","url":"modules/shoppercustomers.html#omsproductdata-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2895,"kind":4194304,"name":"OmsProductDataStatusEnum","url":"modules/shoppercustomers.html#omsproductdatastatusenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2896,"kind":4194304,"name":"OrderProductItem","url":"modules/shoppercustomers.html#orderproductitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2897,"kind":4194304,"name":"OmsShipmentItem","url":"modules/shoppercustomers.html#omsshipmentitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2898,"kind":4194304,"name":"OmsShipment","url":"modules/shoppercustomers.html#omsshipment-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2899,"kind":4194304,"name":"OmsData","url":"modules/shoppercustomers.html#omsdata-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2900,"kind":4194304,"name":"Order","url":"modules/shoppercustomers.html#order-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2901,"kind":4194304,"name":"OrderChannelTypeEnum","url":"modules/shoppercustomers.html#orderchanneltypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2902,"kind":4194304,"name":"OrderConfirmationStatusEnum","url":"modules/shoppercustomers.html#orderconfirmationstatusenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2903,"kind":4194304,"name":"OrderExportStatusEnum","url":"modules/shoppercustomers.html#orderexportstatusenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2904,"kind":4194304,"name":"OrderPaymentStatusEnum","url":"modules/shoppercustomers.html#orderpaymentstatusenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2905,"kind":4194304,"name":"OrderShippingStatusEnum","url":"modules/shoppercustomers.html#ordershippingstatusenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2906,"kind":4194304,"name":"OrderStatusEnum","url":"modules/shoppercustomers.html#orderstatusenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2907,"kind":4194304,"name":"OrderTaxationEnum","url":"modules/shoppercustomers.html#ordertaxationenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2908,"kind":4194304,"name":"CustomerOrderResult","url":"modules/shoppercustomers.html#customerorderresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2909,"kind":4194304,"name":"CustomerPaymentCardRequest","url":"modules/shoppercustomers.html#customerpaymentcardrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2910,"kind":4194304,"name":"PaymentBankAccountRequest","url":"modules/shoppercustomers.html#paymentbankaccountrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2911,"kind":4194304,"name":"CustomerPaymentInstrumentRequest","url":"modules/shoppercustomers.html#customerpaymentinstrumentrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2912,"kind":4194304,"name":"CustomerPaymentInstrumentUpdateRequestPaymentCard","url":"modules/shoppercustomers.html#customerpaymentinstrumentupdaterequestpaymentcard-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2913,"kind":4194304,"name":"CustomerPaymentInstrumentUpdateRequest","url":"modules/shoppercustomers.html#customerpaymentinstrumentupdaterequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2914,"kind":4194304,"name":"ProductListEvent","url":"modules/shoppercustomers.html#productlistevent-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2915,"kind":4194304,"name":"CustomerProductListItem","url":"modules/shoppercustomers.html#customerproductlistitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2916,"kind":4194304,"name":"CustomerProductListItemTypeEnum","url":"modules/shoppercustomers.html#customerproductlistitemtypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2917,"kind":4194304,"name":"CustomerProductListRegistrant","url":"modules/shoppercustomers.html#customerproductlistregistrant-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2918,"kind":4194304,"name":"ProductListShippingAddress","url":"modules/shoppercustomers.html#productlistshippingaddress-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2919,"kind":4194304,"name":"CustomerProductList","url":"modules/shoppercustomers.html#customerproductlist-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2920,"kind":4194304,"name":"CustomerProductListTypeEnum","url":"modules/shoppercustomers.html#customerproductlisttypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2921,"kind":4194304,"name":"CustomerProductListResult","url":"modules/shoppercustomers.html#customerproductlistresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2922,"kind":4194304,"name":"CustomerRegistration","url":"modules/shoppercustomers.html#customerregistration-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2923,"kind":4194304,"name":"ErrorResponse","url":"modules/shoppercustomers.html#errorresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2924,"kind":4194304,"name":"PaginatedResultBase","url":"modules/shoppercustomers.html#paginatedresultbase-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2925,"kind":4194304,"name":"PasswordChangeRequest","url":"modules/shoppercustomers.html#passwordchangerequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2926,"kind":4194304,"name":"ProductListRegistrant","url":"modules/shoppercustomers.html#productlistregistrant-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2927,"kind":4194304,"name":"PublicProductListItem","url":"modules/shoppercustomers.html#publicproductlistitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2928,"kind":4194304,"name":"PublicProductListItemTypeEnum","url":"modules/shoppercustomers.html#publicproductlistitemtypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2929,"kind":4194304,"name":"PublicProductList","url":"modules/shoppercustomers.html#publicproductlist-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2930,"kind":4194304,"name":"PublicProductListTypeEnum","url":"modules/shoppercustomers.html#publicproductlisttypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2931,"kind":4194304,"name":"PublicProductListInfo","url":"modules/shoppercustomers.html#publicproductlistinfo-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2932,"kind":4194304,"name":"PublicProductListInfoTypeEnum","url":"modules/shoppercustomers.html#publicproductlistinfotypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2933,"kind":4194304,"name":"PublicProductListItemResult","url":"modules/shoppercustomers.html#publicproductlistitemresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2934,"kind":4194304,"name":"PublicProductListResult","url":"modules/shoppercustomers.html#publicproductlistresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2935,"kind":4194304,"name":"ResetPasswordRequest","url":"modules/shoppercustomers.html#resetpasswordrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2936,"kind":4194304,"name":"ResetPasswordToken","url":"modules/shoppercustomers.html#resetpasswordtoken-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2937,"kind":4194304,"name":"ResetPasswordTokenRequest","url":"modules/shoppercustomers.html#resetpasswordtokenrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2938,"kind":4194304,"name":"ResultBase","url":"modules/shoppercustomers.html#resultbase-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2939,"kind":16777216,"name":"Basket","url":"modules/shoppercustomers.html#basket","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2940,"kind":16777216,"name":"BasketChannelTypeEnum","url":"modules/shoppercustomers.html#basketchanneltypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2941,"kind":16777216,"name":"BasketTaxationEnum","url":"modules/shoppercustomers.html#baskettaxationenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2942,"kind":16777216,"name":"BasketProductItem","url":"modules/shoppercustomers.html#basketproductitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2943,"kind":16777216,"name":"BasketsResult","url":"modules/shoppercustomers.html#basketsresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2944,"kind":16777216,"name":"BonusDiscountLineItem","url":"modules/shoppercustomers.html#bonusdiscountlineitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2945,"kind":16777216,"name":"BundledProduct","url":"modules/shoppercustomers.html#bundledproduct","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2946,"kind":16777216,"name":"CouponItem","url":"modules/shoppercustomers.html#couponitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2947,"kind":16777216,"name":"CouponItemStatusCodeEnum","url":"modules/shoppercustomers.html#couponitemstatuscodeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2948,"kind":16777216,"name":"Customer","url":"modules/shoppercustomers.html#customer","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2949,"kind":16777216,"name":"CustomerAuthTypeEnum","url":"modules/shoppercustomers.html#customerauthtypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2950,"kind":16777216,"name":"CustomerAddress","url":"modules/shoppercustomers.html#customeraddress","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2951,"kind":16777216,"name":"CustomerAddressInfo","url":"modules/shoppercustomers.html#customeraddressinfo","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2952,"kind":16777216,"name":"CustomerExtProfileRequest","url":"modules/shoppercustomers.html#customerextprofilerequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2953,"kind":16777216,"name":"CustomerExternalProfile","url":"modules/shoppercustomers.html#customerexternalprofile","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2954,"kind":16777216,"name":"CustomerInfo","url":"modules/shoppercustomers.html#customerinfo","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2955,"kind":16777216,"name":"CustomerOrderResult","url":"modules/shoppercustomers.html#customerorderresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2956,"kind":16777216,"name":"CustomerPaymentCardRequest","url":"modules/shoppercustomers.html#customerpaymentcardrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2957,"kind":16777216,"name":"CustomerPaymentInstrument","url":"modules/shoppercustomers.html#customerpaymentinstrument","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2958,"kind":16777216,"name":"CustomerPaymentInstrumentRequest","url":"modules/shoppercustomers.html#customerpaymentinstrumentrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2959,"kind":16777216,"name":"CustomerPaymentInstrumentUpdateRequest","url":"modules/shoppercustomers.html#customerpaymentinstrumentupdaterequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2960,"kind":16777216,"name":"CustomerPaymentInstrumentUpdateRequestPaymentCard","url":"modules/shoppercustomers.html#customerpaymentinstrumentupdaterequestpaymentcard","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2961,"kind":16777216,"name":"CustomerPaymentMethodReference","url":"modules/shoppercustomers.html#customerpaymentmethodreference","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2962,"kind":16777216,"name":"CustomerPaymentMethodReferenceTypeEnum","url":"modules/shoppercustomers.html#customerpaymentmethodreferencetypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2963,"kind":16777216,"name":"CustomerProductList","url":"modules/shoppercustomers.html#customerproductlist","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2964,"kind":16777216,"name":"CustomerProductListTypeEnum","url":"modules/shoppercustomers.html#customerproductlisttypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2965,"kind":16777216,"name":"CustomerProductListItem","url":"modules/shoppercustomers.html#customerproductlistitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2966,"kind":16777216,"name":"CustomerProductListItemTypeEnum","url":"modules/shoppercustomers.html#customerproductlistitemtypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2967,"kind":16777216,"name":"CustomerProductListRegistrant","url":"modules/shoppercustomers.html#customerproductlistregistrant","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2968,"kind":16777216,"name":"CustomerProductListResult","url":"modules/shoppercustomers.html#customerproductlistresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2969,"kind":16777216,"name":"CustomerRegistration","url":"modules/shoppercustomers.html#customerregistration","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2970,"kind":16777216,"name":"Discount","url":"modules/shoppercustomers.html#discount","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2971,"kind":16777216,"name":"DiscountTypeEnum","url":"modules/shoppercustomers.html#discounttypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2972,"kind":16777216,"name":"ErrorResponse","url":"modules/shoppercustomers.html#errorresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2973,"kind":16777216,"name":"GiftCardResponse","url":"modules/shoppercustomers.html#giftcardresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2974,"kind":16777216,"name":"GiftCertificateItem","url":"modules/shoppercustomers.html#giftcertificateitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2975,"kind":16777216,"name":"GroupedTaxItem","url":"modules/shoppercustomers.html#groupedtaxitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2976,"kind":16777216,"name":"Image","url":"modules/shoppercustomers.html#image","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2977,"kind":16777216,"name":"ImageGroup","url":"modules/shoppercustomers.html#imagegroup","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2978,"kind":16777216,"name":"Inventory","url":"modules/shoppercustomers.html#inventory","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2979,"kind":16777216,"name":"Master","url":"modules/shoppercustomers.html#master","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2980,"kind":16777216,"name":"OmsData","url":"modules/shoppercustomers.html#omsdata","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2981,"kind":16777216,"name":"OmsProductData","url":"modules/shoppercustomers.html#omsproductdata","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2982,"kind":16777216,"name":"OmsProductDataStatusEnum","url":"modules/shoppercustomers.html#omsproductdatastatusenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2983,"kind":16777216,"name":"OmsShipment","url":"modules/shoppercustomers.html#omsshipment","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2984,"kind":16777216,"name":"OmsShipmentItem","url":"modules/shoppercustomers.html#omsshipmentitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2985,"kind":16777216,"name":"Option","url":"modules/shoppercustomers.html#option","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2986,"kind":16777216,"name":"OptionItem","url":"modules/shoppercustomers.html#optionitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2987,"kind":16777216,"name":"OptionValue","url":"modules/shoppercustomers.html#optionvalue","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2988,"kind":16777216,"name":"Order","url":"modules/shoppercustomers.html#order","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2989,"kind":16777216,"name":"OrderChannelTypeEnum","url":"modules/shoppercustomers.html#orderchanneltypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2990,"kind":16777216,"name":"OrderConfirmationStatusEnum","url":"modules/shoppercustomers.html#orderconfirmationstatusenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2991,"kind":16777216,"name":"OrderExportStatusEnum","url":"modules/shoppercustomers.html#orderexportstatusenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2992,"kind":16777216,"name":"OrderPaymentStatusEnum","url":"modules/shoppercustomers.html#orderpaymentstatusenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2993,"kind":16777216,"name":"OrderShippingStatusEnum","url":"modules/shoppercustomers.html#ordershippingstatusenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2994,"kind":16777216,"name":"OrderStatusEnum","url":"modules/shoppercustomers.html#orderstatusenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2995,"kind":16777216,"name":"OrderTaxationEnum","url":"modules/shoppercustomers.html#ordertaxationenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2996,"kind":16777216,"name":"OrderAddress","url":"modules/shoppercustomers.html#orderaddress","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2997,"kind":16777216,"name":"OrderPaymentInstrument","url":"modules/shoppercustomers.html#orderpaymentinstrument","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2998,"kind":16777216,"name":"OrderPaymentInstrumentPaymentReference","url":"modules/shoppercustomers.html#orderpaymentinstrumentpaymentreference","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":2999,"kind":16777216,"name":"OrderPaymentInstrumentPaymentReferenceGatewayEnum","url":"modules/shoppercustomers.html#orderpaymentinstrumentpaymentreferencegatewayenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3000,"kind":16777216,"name":"OrderPaymentInstrumentPaymentReferenceGatewayProperties","url":"modules/shoppercustomers.html#orderpaymentinstrumentpaymentreferencegatewayproperties","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3001,"kind":16777216,"name":"OrderProductItem","url":"modules/shoppercustomers.html#orderproductitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3002,"kind":16777216,"name":"PageMetaTag","url":"modules/shoppercustomers.html#pagemetatag","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3003,"kind":16777216,"name":"PaginatedResultBase","url":"modules/shoppercustomers.html#paginatedresultbase","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3004,"kind":16777216,"name":"PasswordChangeRequest","url":"modules/shoppercustomers.html#passwordchangerequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3005,"kind":16777216,"name":"PaymentBankAccountRequest","url":"modules/shoppercustomers.html#paymentbankaccountrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3006,"kind":16777216,"name":"PaymentCard","url":"modules/shoppercustomers.html#paymentcard","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3007,"kind":16777216,"name":"PriceAdjustment","url":"modules/shoppercustomers.html#priceadjustment","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3008,"kind":16777216,"name":"PriceRange","url":"modules/shoppercustomers.html#pricerange","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3009,"kind":16777216,"name":"Product","url":"modules/shoppercustomers.html#product","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3010,"kind":16777216,"name":"ProductDetailsLink","url":"modules/shoppercustomers.html#productdetailslink","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3011,"kind":16777216,"name":"ProductItem","url":"modules/shoppercustomers.html#productitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3012,"kind":16777216,"name":"ProductLink","url":"modules/shoppercustomers.html#productlink","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3013,"kind":16777216,"name":"ProductLinkTypeEnum","url":"modules/shoppercustomers.html#productlinktypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3014,"kind":16777216,"name":"ProductListEvent","url":"modules/shoppercustomers.html#productlistevent","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3015,"kind":16777216,"name":"ProductListItemReference","url":"modules/shoppercustomers.html#productlistitemreference","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3016,"kind":16777216,"name":"ProductListItemReferenceTypeEnum","url":"modules/shoppercustomers.html#productlistitemreferencetypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3017,"kind":16777216,"name":"ProductListLink","url":"modules/shoppercustomers.html#productlistlink","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3018,"kind":16777216,"name":"ProductListLinkTypeEnum","url":"modules/shoppercustomers.html#productlistlinktypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3019,"kind":16777216,"name":"ProductListRegistrant","url":"modules/shoppercustomers.html#productlistregistrant","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3020,"kind":16777216,"name":"ProductListShippingAddress","url":"modules/shoppercustomers.html#productlistshippingaddress","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3021,"kind":16777216,"name":"ProductPriceTable","url":"modules/shoppercustomers.html#productpricetable","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3022,"kind":16777216,"name":"ProductPromotion","url":"modules/shoppercustomers.html#productpromotion","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3023,"kind":16777216,"name":"ProductType","url":"modules/shoppercustomers.html#producttype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3024,"kind":16777216,"name":"PublicProductList","url":"modules/shoppercustomers.html#publicproductlist","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3025,"kind":16777216,"name":"PublicProductListTypeEnum","url":"modules/shoppercustomers.html#publicproductlisttypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3026,"kind":16777216,"name":"PublicProductListInfo","url":"modules/shoppercustomers.html#publicproductlistinfo","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3027,"kind":16777216,"name":"PublicProductListInfoTypeEnum","url":"modules/shoppercustomers.html#publicproductlistinfotypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3028,"kind":16777216,"name":"PublicProductListItem","url":"modules/shoppercustomers.html#publicproductlistitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3029,"kind":16777216,"name":"PublicProductListItemTypeEnum","url":"modules/shoppercustomers.html#publicproductlistitemtypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3030,"kind":16777216,"name":"PublicProductListItemResult","url":"modules/shoppercustomers.html#publicproductlistitemresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3031,"kind":16777216,"name":"PublicProductListResult","url":"modules/shoppercustomers.html#publicproductlistresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3032,"kind":16777216,"name":"Recommendation","url":"modules/shoppercustomers.html#recommendation","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3033,"kind":16777216,"name":"RecommendationType","url":"modules/shoppercustomers.html#recommendationtype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3034,"kind":16777216,"name":"ResetPasswordRequest","url":"modules/shoppercustomers.html#resetpasswordrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3035,"kind":16777216,"name":"ResetPasswordToken","url":"modules/shoppercustomers.html#resetpasswordtoken","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3036,"kind":16777216,"name":"ResetPasswordTokenRequest","url":"modules/shoppercustomers.html#resetpasswordtokenrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3037,"kind":16777216,"name":"ResultBase","url":"modules/shoppercustomers.html#resultbase","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3038,"kind":16777216,"name":"Shipment","url":"modules/shoppercustomers.html#shipment","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3039,"kind":16777216,"name":"ShipmentShippingStatusEnum","url":"modules/shoppercustomers.html#shipmentshippingstatusenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3040,"kind":16777216,"name":"ShippingItem","url":"modules/shoppercustomers.html#shippingitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3041,"kind":16777216,"name":"ShippingMethod","url":"modules/shoppercustomers.html#shippingmethod","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3042,"kind":16777216,"name":"ShippingPromotion","url":"modules/shoppercustomers.html#shippingpromotion","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3043,"kind":16777216,"name":"Status","url":"modules/shoppercustomers.html#status","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3044,"kind":16777216,"name":"Variant","url":"modules/shoppercustomers.html#variant","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3045,"kind":16777216,"name":"VariationAttribute","url":"modules/shoppercustomers.html#variationattribute","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3046,"kind":16777216,"name":"VariationAttributeValue","url":"modules/shoppercustomers.html#variationattributevalue","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3047,"kind":16777216,"name":"VariationGroup","url":"modules/shoppercustomers.html#variationgroup","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3048,"kind":128,"name":"ShopperCustomers","url":"classes/shoppercustomers.shoppercustomers-3.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"shopperCustomers"},{"id":3049,"kind":1024,"name":"clientConfig","url":"classes/shoppercustomers.shoppercustomers-3.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class","parent":"shopperCustomers.ShopperCustomers"},{"id":3050,"kind":1024,"name":"defaultBaseUri","url":"classes/shoppercustomers.shoppercustomers-3.html#defaultbaseuri","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperCustomers.ShopperCustomers"},{"id":3051,"kind":2097152,"name":"apiPaths","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-static","parent":"shopperCustomers.ShopperCustomers"},{"id":3052,"kind":32,"name":"createCustomerAddress","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.createcustomeraddress-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":3053,"kind":32,"name":"createCustomerPaymentInstrument","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.createcustomerpaymentinstrument-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":3054,"kind":32,"name":"createCustomerProductList","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.createcustomerproductlist-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":3055,"kind":32,"name":"createCustomerProductListItem","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.createcustomerproductlistitem-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":3056,"kind":32,"name":"deleteCustomerPaymentInstrument","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.deletecustomerpaymentinstrument-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":3057,"kind":32,"name":"deleteCustomerPaymentMethodReference","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.deletecustomerpaymentmethodreference-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":3058,"kind":32,"name":"deleteCustomerProductList","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.deletecustomerproductlist-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":3059,"kind":32,"name":"deleteCustomerProductListItem","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.deletecustomerproductlistitem-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":3060,"kind":32,"name":"getCustomer","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.getcustomer-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":3061,"kind":32,"name":"getCustomerAddress","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.getcustomeraddress-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":3062,"kind":32,"name":"getCustomerBaskets","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.getcustomerbaskets-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":3063,"kind":32,"name":"getCustomerOrders","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.getcustomerorders-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":3064,"kind":32,"name":"getCustomerPaymentInstrument","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.getcustomerpaymentinstrument-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":3065,"kind":32,"name":"getCustomerProductList","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.getcustomerproductlist-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":3066,"kind":32,"name":"getCustomerProductListItem","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.getcustomerproductlistitem-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":3067,"kind":32,"name":"getCustomerProductLists","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.getcustomerproductlists-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":3068,"kind":32,"name":"getExternalProfile","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.getexternalprofile-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":3069,"kind":32,"name":"getProductListItem","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.getproductlistitem-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":3070,"kind":32,"name":"getPublicProductList","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.getpublicproductlist-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":3071,"kind":32,"name":"getPublicProductListItems","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.getpublicproductlistitems-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":3072,"kind":32,"name":"getPublicProductListsBySearchTerm","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.getpublicproductlistsbysearchterm-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":3073,"kind":32,"name":"getResetPasswordToken","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.getresetpasswordtoken-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":3074,"kind":32,"name":"registerCustomer","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.registercustomer-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":3075,"kind":32,"name":"registerExternalProfile","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.registerexternalprofile-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":3076,"kind":32,"name":"removeCustomerAddress","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.removecustomeraddress-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":3077,"kind":32,"name":"resetPassword","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.resetpassword-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":3078,"kind":32,"name":"updateCustomer","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.updatecustomer-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":3079,"kind":32,"name":"updateCustomerAddress","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.updatecustomeraddress-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":3080,"kind":32,"name":"updateCustomerPassword","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.updatecustomerpassword-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":3081,"kind":32,"name":"updateCustomerPaymentInstrument","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.updatecustomerpaymentinstrument-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":3082,"kind":32,"name":"updateCustomerProductList","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.updatecustomerproductlist-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":3083,"kind":32,"name":"updateCustomerProductListItem","url":"classes/shoppercustomers.shoppercustomers-3.html#apipaths.updatecustomerproductlistitem-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperCustomers.ShopperCustomers.apiPaths"},{"id":3084,"kind":512,"name":"constructor","url":"classes/shoppercustomers.shoppercustomers-3.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"shopperCustomers.ShopperCustomers"},{"id":3085,"kind":1024,"name":"paramKeys","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperCustomers.ShopperCustomers"},{"id":3086,"kind":65536,"name":"__type","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"shopperCustomers.ShopperCustomers.paramKeys"},{"id":3087,"kind":32,"name":"createCustomerAddress","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.createcustomeraddress","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3088,"kind":32,"name":"createCustomerAddressRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.createcustomeraddressrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3089,"kind":32,"name":"createCustomerPaymentInstrument","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.createcustomerpaymentinstrument","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3090,"kind":32,"name":"createCustomerPaymentInstrumentRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.createcustomerpaymentinstrumentrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3091,"kind":32,"name":"createCustomerProductList","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.createcustomerproductlist","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3092,"kind":32,"name":"createCustomerProductListRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.createcustomerproductlistrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3093,"kind":32,"name":"createCustomerProductListItem","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.createcustomerproductlistitem","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3094,"kind":32,"name":"createCustomerProductListItemRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.createcustomerproductlistitemrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3095,"kind":32,"name":"deleteCustomerPaymentInstrument","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.deletecustomerpaymentinstrument","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3096,"kind":32,"name":"deleteCustomerPaymentInstrumentRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.deletecustomerpaymentinstrumentrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3097,"kind":32,"name":"deleteCustomerPaymentMethodReference","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.deletecustomerpaymentmethodreference","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3098,"kind":32,"name":"deleteCustomerPaymentMethodReferenceRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.deletecustomerpaymentmethodreferencerequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3099,"kind":32,"name":"deleteCustomerProductList","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.deletecustomerproductlist","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3100,"kind":32,"name":"deleteCustomerProductListRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.deletecustomerproductlistrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3101,"kind":32,"name":"deleteCustomerProductListItem","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.deletecustomerproductlistitem","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3102,"kind":32,"name":"deleteCustomerProductListItemRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.deletecustomerproductlistitemrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3103,"kind":32,"name":"getCustomer","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getcustomer","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3104,"kind":32,"name":"getCustomerRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getcustomerrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3105,"kind":32,"name":"getCustomerAddress","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getcustomeraddress","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3106,"kind":32,"name":"getCustomerAddressRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getcustomeraddressrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3107,"kind":32,"name":"getCustomerBaskets","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getcustomerbaskets","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3108,"kind":32,"name":"getCustomerBasketsRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getcustomerbasketsrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3109,"kind":32,"name":"getCustomerOrders","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getcustomerorders","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3110,"kind":32,"name":"getCustomerOrdersRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getcustomerordersrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3111,"kind":32,"name":"getCustomerPaymentInstrument","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getcustomerpaymentinstrument","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3112,"kind":32,"name":"getCustomerPaymentInstrumentRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getcustomerpaymentinstrumentrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3113,"kind":32,"name":"getCustomerProductList","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getcustomerproductlist","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3114,"kind":32,"name":"getCustomerProductListRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getcustomerproductlistrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3115,"kind":32,"name":"getCustomerProductListItem","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getcustomerproductlistitem","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3116,"kind":32,"name":"getCustomerProductListItemRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getcustomerproductlistitemrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3117,"kind":32,"name":"getCustomerProductLists","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getcustomerproductlists","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3118,"kind":32,"name":"getCustomerProductListsRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getcustomerproductlistsrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3119,"kind":32,"name":"getExternalProfile","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getexternalprofile","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3120,"kind":32,"name":"getExternalProfileRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getexternalprofilerequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3121,"kind":32,"name":"getProductListItem","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getproductlistitem","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3122,"kind":32,"name":"getProductListItemRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getproductlistitemrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3123,"kind":32,"name":"getPublicProductList","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getpublicproductlist","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3124,"kind":32,"name":"getPublicProductListRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getpublicproductlistrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3125,"kind":32,"name":"getPublicProductListItems","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getpublicproductlistitems","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3126,"kind":32,"name":"getPublicProductListItemsRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getpublicproductlistitemsrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3127,"kind":32,"name":"getPublicProductListsBySearchTerm","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getpublicproductlistsbysearchterm","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3128,"kind":32,"name":"getPublicProductListsBySearchTermRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getpublicproductlistsbysearchtermrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3129,"kind":32,"name":"getResetPasswordToken","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getresetpasswordtoken","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3130,"kind":32,"name":"getResetPasswordTokenRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.getresetpasswordtokenrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3131,"kind":32,"name":"registerCustomer","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.registercustomer","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3132,"kind":32,"name":"registerCustomerRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.registercustomerrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3133,"kind":32,"name":"registerExternalProfile","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.registerexternalprofile","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3134,"kind":32,"name":"registerExternalProfileRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.registerexternalprofilerequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3135,"kind":32,"name":"removeCustomerAddress","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.removecustomeraddress","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3136,"kind":32,"name":"removeCustomerAddressRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.removecustomeraddressrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3137,"kind":32,"name":"resetPassword","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.resetpassword","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3138,"kind":32,"name":"resetPasswordRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.resetpasswordrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3139,"kind":32,"name":"updateCustomer","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.updatecustomer","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3140,"kind":32,"name":"updateCustomerRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.updatecustomerrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3141,"kind":32,"name":"updateCustomerAddress","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.updatecustomeraddress","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3142,"kind":32,"name":"updateCustomerAddressRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.updatecustomeraddressrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3143,"kind":32,"name":"updateCustomerPassword","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.updatecustomerpassword","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3144,"kind":32,"name":"updateCustomerPasswordRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.updatecustomerpasswordrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3145,"kind":32,"name":"updateCustomerPaymentInstrument","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.updatecustomerpaymentinstrument","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3146,"kind":32,"name":"updateCustomerPaymentInstrumentRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.updatecustomerpaymentinstrumentrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3147,"kind":32,"name":"updateCustomerProductList","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.updatecustomerproductlist","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3148,"kind":32,"name":"updateCustomerProductListRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.updatecustomerproductlistrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3149,"kind":32,"name":"updateCustomerProductListItem","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.updatecustomerproductlistitem","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3150,"kind":32,"name":"updateCustomerProductListItemRequired","url":"classes/shoppercustomers.shoppercustomers-3.html#paramkeys.__type.updatecustomerproductlistitemrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.ShopperCustomers.paramKeys.__type"},{"id":3151,"kind":2048,"name":"createCustomerAddress","url":"classes/shoppercustomers.shoppercustomers-3.html#createcustomeraddress-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":3152,"kind":2048,"name":"createCustomerPaymentInstrument","url":"classes/shoppercustomers.shoppercustomers-3.html#createcustomerpaymentinstrument-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":3153,"kind":2048,"name":"createCustomerProductList","url":"classes/shoppercustomers.shoppercustomers-3.html#createcustomerproductlist-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":3154,"kind":2048,"name":"createCustomerProductListItem","url":"classes/shoppercustomers.shoppercustomers-3.html#createcustomerproductlistitem-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":3155,"kind":2048,"name":"deleteCustomerPaymentInstrument","url":"classes/shoppercustomers.shoppercustomers-3.html#deletecustomerpaymentinstrument-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":3156,"kind":2048,"name":"deleteCustomerPaymentMethodReference","url":"classes/shoppercustomers.shoppercustomers-3.html#deletecustomerpaymentmethodreference-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":3157,"kind":2048,"name":"deleteCustomerProductList","url":"classes/shoppercustomers.shoppercustomers-3.html#deletecustomerproductlist-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":3158,"kind":2048,"name":"deleteCustomerProductListItem","url":"classes/shoppercustomers.shoppercustomers-3.html#deletecustomerproductlistitem-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":3159,"kind":2048,"name":"getCustomer","url":"classes/shoppercustomers.shoppercustomers-3.html#getcustomer-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":3160,"kind":2048,"name":"getCustomerAddress","url":"classes/shoppercustomers.shoppercustomers-3.html#getcustomeraddress-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":3161,"kind":2048,"name":"getCustomerBaskets","url":"classes/shoppercustomers.shoppercustomers-3.html#getcustomerbaskets-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":3162,"kind":2048,"name":"getCustomerOrders","url":"classes/shoppercustomers.shoppercustomers-3.html#getcustomerorders-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":3163,"kind":2048,"name":"getCustomerPaymentInstrument","url":"classes/shoppercustomers.shoppercustomers-3.html#getcustomerpaymentinstrument-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":3164,"kind":2048,"name":"getCustomerProductList","url":"classes/shoppercustomers.shoppercustomers-3.html#getcustomerproductlist-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":3165,"kind":2048,"name":"getCustomerProductListItem","url":"classes/shoppercustomers.shoppercustomers-3.html#getcustomerproductlistitem-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":3166,"kind":2048,"name":"getCustomerProductLists","url":"classes/shoppercustomers.shoppercustomers-3.html#getcustomerproductlists-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":3167,"kind":2048,"name":"getExternalProfile","url":"classes/shoppercustomers.shoppercustomers-3.html#getexternalprofile-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":3168,"kind":2048,"name":"getProductListItem","url":"classes/shoppercustomers.shoppercustomers-3.html#getproductlistitem-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":3169,"kind":2048,"name":"getPublicProductList","url":"classes/shoppercustomers.shoppercustomers-3.html#getpublicproductlist-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":3170,"kind":2048,"name":"getPublicProductListItems","url":"classes/shoppercustomers.shoppercustomers-3.html#getpublicproductlistitems-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":3171,"kind":2048,"name":"getPublicProductListsBySearchTerm","url":"classes/shoppercustomers.shoppercustomers-3.html#getpublicproductlistsbysearchterm-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":3172,"kind":2048,"name":"getResetPasswordToken","url":"classes/shoppercustomers.shoppercustomers-3.html#getresetpasswordtoken-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":3173,"kind":2048,"name":"registerCustomer","url":"classes/shoppercustomers.shoppercustomers-3.html#registercustomer-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":3174,"kind":2048,"name":"registerExternalProfile","url":"classes/shoppercustomers.shoppercustomers-3.html#registerexternalprofile-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":3175,"kind":2048,"name":"removeCustomerAddress","url":"classes/shoppercustomers.shoppercustomers-3.html#removecustomeraddress-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":3176,"kind":2048,"name":"resetPassword","url":"classes/shoppercustomers.shoppercustomers-3.html#resetpassword-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":3177,"kind":2048,"name":"updateCustomer","url":"classes/shoppercustomers.shoppercustomers-3.html#updatecustomer-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":3178,"kind":2048,"name":"updateCustomerAddress","url":"classes/shoppercustomers.shoppercustomers-3.html#updatecustomeraddress-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":3179,"kind":2048,"name":"updateCustomerPassword","url":"classes/shoppercustomers.shoppercustomers-3.html#updatecustomerpassword-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":3180,"kind":2048,"name":"updateCustomerPaymentInstrument","url":"classes/shoppercustomers.shoppercustomers-3.html#updatecustomerpaymentinstrument-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":3181,"kind":2048,"name":"updateCustomerProductList","url":"classes/shoppercustomers.shoppercustomers-3.html#updatecustomerproductlist-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":3182,"kind":2048,"name":"updateCustomerProductListItem","url":"classes/shoppercustomers.shoppercustomers-3.html#updatecustomerproductlistitem-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperCustomers.ShopperCustomers"},{"id":3183,"kind":4194304,"name":"GetCustomerExpandEnum","url":"modules/shoppercustomers.html#getcustomerexpandenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3184,"kind":4194304,"name":"GetCustomerOrdersExpandEnum","url":"modules/shoppercustomers.html#getcustomerordersexpandenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3185,"kind":4194304,"name":"GetPublicProductListItemsExpandEnum","url":"modules/shoppercustomers.html#getpublicproductlistitemsexpandenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3186,"kind":4194304,"name":"createCustomerAddressQueryParameters","url":"modules/shoppercustomers.html#createcustomeraddressqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3187,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#createcustomeraddressqueryparameters-2.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.createCustomerAddressQueryParameters"},{"id":3188,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#createcustomeraddressqueryparameters-2.__type-1.siteid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.createCustomerAddressQueryParameters.__type"},{"id":3189,"kind":4194304,"name":"createCustomerAddressPathParameters","url":"modules/shoppercustomers.html#createcustomeraddresspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3190,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#createcustomeraddresspathparameters-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.createCustomerAddressPathParameters"},{"id":3191,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#createcustomeraddresspathparameters-2.__type.customerid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.createCustomerAddressPathParameters.__type"},{"id":3192,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#createcustomeraddresspathparameters-2.__type.organizationid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.createCustomerAddressPathParameters.__type"},{"id":3193,"kind":4194304,"name":"createCustomerPaymentInstrumentQueryParameters","url":"modules/shoppercustomers.html#createcustomerpaymentinstrumentqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3194,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#createcustomerpaymentinstrumentqueryparameters-2.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.createCustomerPaymentInstrumentQueryParameters"},{"id":3195,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#createcustomerpaymentinstrumentqueryparameters-2.__type-3.siteid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.createCustomerPaymentInstrumentQueryParameters.__type"},{"id":3196,"kind":4194304,"name":"createCustomerPaymentInstrumentPathParameters","url":"modules/shoppercustomers.html#createcustomerpaymentinstrumentpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3197,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#createcustomerpaymentinstrumentpathparameters-2.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.createCustomerPaymentInstrumentPathParameters"},{"id":3198,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#createcustomerpaymentinstrumentpathparameters-2.__type-2.customerid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.createCustomerPaymentInstrumentPathParameters.__type"},{"id":3199,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#createcustomerpaymentinstrumentpathparameters-2.__type-2.organizationid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.createCustomerPaymentInstrumentPathParameters.__type"},{"id":3200,"kind":4194304,"name":"createCustomerProductListQueryParameters","url":"modules/shoppercustomers.html#createcustomerproductlistqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3201,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#createcustomerproductlistqueryparameters-2.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.createCustomerProductListQueryParameters"},{"id":3202,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#createcustomerproductlistqueryparameters-2.__type-7.siteid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.createCustomerProductListQueryParameters.__type"},{"id":3203,"kind":4194304,"name":"createCustomerProductListPathParameters","url":"modules/shoppercustomers.html#createcustomerproductlistpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3204,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#createcustomerproductlistpathparameters-2.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.createCustomerProductListPathParameters"},{"id":3205,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#createcustomerproductlistpathparameters-2.__type-6.customerid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.createCustomerProductListPathParameters.__type"},{"id":3206,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#createcustomerproductlistpathparameters-2.__type-6.organizationid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.createCustomerProductListPathParameters.__type"},{"id":3207,"kind":4194304,"name":"createCustomerProductListItemQueryParameters","url":"modules/shoppercustomers.html#createcustomerproductlistitemqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3208,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#createcustomerproductlistitemqueryparameters-2.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.createCustomerProductListItemQueryParameters"},{"id":3209,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#createcustomerproductlistitemqueryparameters-2.__type-5.siteid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.createCustomerProductListItemQueryParameters.__type"},{"id":3210,"kind":4194304,"name":"createCustomerProductListItemPathParameters","url":"modules/shoppercustomers.html#createcustomerproductlistitempathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3211,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#createcustomerproductlistitempathparameters-2.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.createCustomerProductListItemPathParameters"},{"id":3212,"kind":32,"name":"listId","url":"modules/shoppercustomers.html#createcustomerproductlistitempathparameters-2.__type-4.listid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.createCustomerProductListItemPathParameters.__type"},{"id":3213,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#createcustomerproductlistitempathparameters-2.__type-4.customerid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.createCustomerProductListItemPathParameters.__type"},{"id":3214,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#createcustomerproductlistitempathparameters-2.__type-4.organizationid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.createCustomerProductListItemPathParameters.__type"},{"id":3215,"kind":4194304,"name":"deleteCustomerPaymentInstrumentQueryParameters","url":"modules/shoppercustomers.html#deletecustomerpaymentinstrumentqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3216,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#deletecustomerpaymentinstrumentqueryparameters-2.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.deleteCustomerPaymentInstrumentQueryParameters"},{"id":3217,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#deletecustomerpaymentinstrumentqueryparameters-2.__type-9.siteid-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.deleteCustomerPaymentInstrumentQueryParameters.__type"},{"id":3218,"kind":4194304,"name":"deleteCustomerPaymentInstrumentPathParameters","url":"modules/shoppercustomers.html#deletecustomerpaymentinstrumentpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3219,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#deletecustomerpaymentinstrumentpathparameters-2.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.deleteCustomerPaymentInstrumentPathParameters"},{"id":3220,"kind":32,"name":"paymentInstrumentId","url":"modules/shoppercustomers.html#deletecustomerpaymentinstrumentpathparameters-2.__type-8.paymentinstrumentid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.deleteCustomerPaymentInstrumentPathParameters.__type"},{"id":3221,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#deletecustomerpaymentinstrumentpathparameters-2.__type-8.customerid-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.deleteCustomerPaymentInstrumentPathParameters.__type"},{"id":3222,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#deletecustomerpaymentinstrumentpathparameters-2.__type-8.organizationid-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.deleteCustomerPaymentInstrumentPathParameters.__type"},{"id":3223,"kind":4194304,"name":"deleteCustomerPaymentMethodReferenceQueryParameters","url":"modules/shoppercustomers.html#deletecustomerpaymentmethodreferencequeryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3224,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#deletecustomerpaymentmethodreferencequeryparameters-2.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.deleteCustomerPaymentMethodReferenceQueryParameters"},{"id":3225,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#deletecustomerpaymentmethodreferencequeryparameters-2.__type-11.siteid-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.deleteCustomerPaymentMethodReferenceQueryParameters.__type"},{"id":3226,"kind":32,"name":"accountId","url":"modules/shoppercustomers.html#deletecustomerpaymentmethodreferencequeryparameters-2.__type-11.accountid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.deleteCustomerPaymentMethodReferenceQueryParameters.__type"},{"id":3227,"kind":4194304,"name":"deleteCustomerPaymentMethodReferencePathParameters","url":"modules/shoppercustomers.html#deletecustomerpaymentmethodreferencepathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3228,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#deletecustomerpaymentmethodreferencepathparameters-2.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.deleteCustomerPaymentMethodReferencePathParameters"},{"id":3229,"kind":32,"name":"paymentMethodReferenceId","url":"modules/shoppercustomers.html#deletecustomerpaymentmethodreferencepathparameters-2.__type-10.paymentmethodreferenceid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.deleteCustomerPaymentMethodReferencePathParameters.__type"},{"id":3230,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#deletecustomerpaymentmethodreferencepathparameters-2.__type-10.customerid-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.deleteCustomerPaymentMethodReferencePathParameters.__type"},{"id":3231,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#deletecustomerpaymentmethodreferencepathparameters-2.__type-10.organizationid-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.deleteCustomerPaymentMethodReferencePathParameters.__type"},{"id":3232,"kind":4194304,"name":"deleteCustomerProductListQueryParameters","url":"modules/shoppercustomers.html#deletecustomerproductlistqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3233,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#deletecustomerproductlistqueryparameters-2.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.deleteCustomerProductListQueryParameters"},{"id":3234,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#deletecustomerproductlistqueryparameters-2.__type-15.siteid-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.deleteCustomerProductListQueryParameters.__type"},{"id":3235,"kind":4194304,"name":"deleteCustomerProductListPathParameters","url":"modules/shoppercustomers.html#deletecustomerproductlistpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3236,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#deletecustomerproductlistpathparameters-2.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.deleteCustomerProductListPathParameters"},{"id":3237,"kind":32,"name":"listId","url":"modules/shoppercustomers.html#deletecustomerproductlistpathparameters-2.__type-14.listid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.deleteCustomerProductListPathParameters.__type"},{"id":3238,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#deletecustomerproductlistpathparameters-2.__type-14.customerid-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.deleteCustomerProductListPathParameters.__type"},{"id":3239,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#deletecustomerproductlistpathparameters-2.__type-14.organizationid-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.deleteCustomerProductListPathParameters.__type"},{"id":3240,"kind":4194304,"name":"deleteCustomerProductListItemQueryParameters","url":"modules/shoppercustomers.html#deletecustomerproductlistitemqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3241,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#deletecustomerproductlistitemqueryparameters-2.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.deleteCustomerProductListItemQueryParameters"},{"id":3242,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#deletecustomerproductlistitemqueryparameters-2.__type-13.siteid-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.deleteCustomerProductListItemQueryParameters.__type"},{"id":3243,"kind":4194304,"name":"deleteCustomerProductListItemPathParameters","url":"modules/shoppercustomers.html#deletecustomerproductlistitempathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3244,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#deletecustomerproductlistitempathparameters-2.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.deleteCustomerProductListItemPathParameters"},{"id":3245,"kind":32,"name":"itemId","url":"modules/shoppercustomers.html#deletecustomerproductlistitempathparameters-2.__type-12.itemid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.deleteCustomerProductListItemPathParameters.__type"},{"id":3246,"kind":32,"name":"listId","url":"modules/shoppercustomers.html#deletecustomerproductlistitempathparameters-2.__type-12.listid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.deleteCustomerProductListItemPathParameters.__type"},{"id":3247,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#deletecustomerproductlistitempathparameters-2.__type-12.customerid-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.deleteCustomerProductListItemPathParameters.__type"},{"id":3248,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#deletecustomerproductlistitempathparameters-2.__type-12.organizationid-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.deleteCustomerProductListItemPathParameters.__type"},{"id":3249,"kind":4194304,"name":"getCustomerQueryParameters","url":"modules/shoppercustomers.html#getcustomerqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3250,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getcustomerqueryparameters-2.__type-31","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getCustomerQueryParameters"},{"id":3251,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#getcustomerqueryparameters-2.__type-31.siteid-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerQueryParameters.__type"},{"id":3252,"kind":32,"name":"expand","url":"modules/shoppercustomers.html#getcustomerqueryparameters-2.__type-31.expand-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerQueryParameters.__type"},{"id":3253,"kind":4194304,"name":"getCustomerPathParameters","url":"modules/shoppercustomers.html#getcustomerpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3254,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getcustomerpathparameters-2.__type-22","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getCustomerPathParameters"},{"id":3255,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#getcustomerpathparameters-2.__type-22.customerid-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerPathParameters.__type"},{"id":3256,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#getcustomerpathparameters-2.__type-22.organizationid-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerPathParameters.__type"},{"id":3257,"kind":4194304,"name":"getCustomerAddressQueryParameters","url":"modules/shoppercustomers.html#getcustomeraddressqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3258,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getcustomeraddressqueryparameters-2.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getCustomerAddressQueryParameters"},{"id":3259,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#getcustomeraddressqueryparameters-2.__type-17.siteid-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerAddressQueryParameters.__type"},{"id":3260,"kind":4194304,"name":"getCustomerAddressPathParameters","url":"modules/shoppercustomers.html#getcustomeraddresspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3261,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getcustomeraddresspathparameters-2.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getCustomerAddressPathParameters"},{"id":3262,"kind":32,"name":"addressName","url":"modules/shoppercustomers.html#getcustomeraddresspathparameters-2.__type-16.addressname","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerAddressPathParameters.__type"},{"id":3263,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#getcustomeraddresspathparameters-2.__type-16.customerid-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerAddressPathParameters.__type"},{"id":3264,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#getcustomeraddresspathparameters-2.__type-16.organizationid-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerAddressPathParameters.__type"},{"id":3265,"kind":4194304,"name":"getCustomerBasketsQueryParameters","url":"modules/shoppercustomers.html#getcustomerbasketsqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3266,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getcustomerbasketsqueryparameters-2.__type-19","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getCustomerBasketsQueryParameters"},{"id":3267,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#getcustomerbasketsqueryparameters-2.__type-19.siteid-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerBasketsQueryParameters.__type"},{"id":3268,"kind":4194304,"name":"getCustomerBasketsPathParameters","url":"modules/shoppercustomers.html#getcustomerbasketspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3269,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getcustomerbasketspathparameters-2.__type-18","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getCustomerBasketsPathParameters"},{"id":3270,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#getcustomerbasketspathparameters-2.__type-18.customerid-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerBasketsPathParameters.__type"},{"id":3271,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#getcustomerbasketspathparameters-2.__type-18.organizationid-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerBasketsPathParameters.__type"},{"id":3272,"kind":4194304,"name":"getCustomerOrdersQueryParameters","url":"modules/shoppercustomers.html#getcustomerordersqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3273,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getcustomerordersqueryparameters-2.__type-21","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getCustomerOrdersQueryParameters"},{"id":3274,"kind":32,"name":"crossSites","url":"modules/shoppercustomers.html#getcustomerordersqueryparameters-2.__type-21.crosssites","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerOrdersQueryParameters.__type"},{"id":3275,"kind":32,"name":"from","url":"modules/shoppercustomers.html#getcustomerordersqueryparameters-2.__type-21.from","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerOrdersQueryParameters.__type"},{"id":3276,"kind":32,"name":"until","url":"modules/shoppercustomers.html#getcustomerordersqueryparameters-2.__type-21.until","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerOrdersQueryParameters.__type"},{"id":3277,"kind":32,"name":"status","url":"modules/shoppercustomers.html#getcustomerordersqueryparameters-2.__type-21.status-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerOrdersQueryParameters.__type"},{"id":3278,"kind":32,"name":"expand","url":"modules/shoppercustomers.html#getcustomerordersqueryparameters-2.__type-21.expand","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerOrdersQueryParameters.__type"},{"id":3279,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#getcustomerordersqueryparameters-2.__type-21.siteid-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerOrdersQueryParameters.__type"},{"id":3280,"kind":32,"name":"limit","url":"modules/shoppercustomers.html#getcustomerordersqueryparameters-2.__type-21.limit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerOrdersQueryParameters.__type"},{"id":3281,"kind":32,"name":"offset","url":"modules/shoppercustomers.html#getcustomerordersqueryparameters-2.__type-21.offset","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerOrdersQueryParameters.__type"},{"id":3282,"kind":4194304,"name":"getCustomerOrdersPathParameters","url":"modules/shoppercustomers.html#getcustomerorderspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3283,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getcustomerorderspathparameters-2.__type-20","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getCustomerOrdersPathParameters"},{"id":3284,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#getcustomerorderspathparameters-2.__type-20.customerid-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerOrdersPathParameters.__type"},{"id":3285,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#getcustomerorderspathparameters-2.__type-20.organizationid-10","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerOrdersPathParameters.__type"},{"id":3286,"kind":4194304,"name":"getCustomerPaymentInstrumentQueryParameters","url":"modules/shoppercustomers.html#getcustomerpaymentinstrumentqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3287,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getcustomerpaymentinstrumentqueryparameters-2.__type-24","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getCustomerPaymentInstrumentQueryParameters"},{"id":3288,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#getcustomerpaymentinstrumentqueryparameters-2.__type-24.siteid-11","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerPaymentInstrumentQueryParameters.__type"},{"id":3289,"kind":4194304,"name":"getCustomerPaymentInstrumentPathParameters","url":"modules/shoppercustomers.html#getcustomerpaymentinstrumentpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3290,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getcustomerpaymentinstrumentpathparameters-2.__type-23","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getCustomerPaymentInstrumentPathParameters"},{"id":3291,"kind":32,"name":"paymentInstrumentId","url":"modules/shoppercustomers.html#getcustomerpaymentinstrumentpathparameters-2.__type-23.paymentinstrumentid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerPaymentInstrumentPathParameters.__type"},{"id":3292,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#getcustomerpaymentinstrumentpathparameters-2.__type-23.customerid-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerPaymentInstrumentPathParameters.__type"},{"id":3293,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#getcustomerpaymentinstrumentpathparameters-2.__type-23.organizationid-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerPaymentInstrumentPathParameters.__type"},{"id":3294,"kind":4194304,"name":"getCustomerProductListQueryParameters","url":"modules/shoppercustomers.html#getcustomerproductlistqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3295,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getcustomerproductlistqueryparameters-2.__type-28","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getCustomerProductListQueryParameters"},{"id":3296,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#getcustomerproductlistqueryparameters-2.__type-28.siteid-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerProductListQueryParameters.__type"},{"id":3297,"kind":4194304,"name":"getCustomerProductListPathParameters","url":"modules/shoppercustomers.html#getcustomerproductlistpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3298,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getcustomerproductlistpathparameters-2.__type-27","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getCustomerProductListPathParameters"},{"id":3299,"kind":32,"name":"listId","url":"modules/shoppercustomers.html#getcustomerproductlistpathparameters-2.__type-27.listid-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerProductListPathParameters.__type"},{"id":3300,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#getcustomerproductlistpathparameters-2.__type-27.customerid-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerProductListPathParameters.__type"},{"id":3301,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#getcustomerproductlistpathparameters-2.__type-27.organizationid-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerProductListPathParameters.__type"},{"id":3302,"kind":4194304,"name":"getCustomerProductListItemQueryParameters","url":"modules/shoppercustomers.html#getcustomerproductlistitemqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3303,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getcustomerproductlistitemqueryparameters-2.__type-26","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getCustomerProductListItemQueryParameters"},{"id":3304,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#getcustomerproductlistitemqueryparameters-2.__type-26.siteid-12","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerProductListItemQueryParameters.__type"},{"id":3305,"kind":4194304,"name":"getCustomerProductListItemPathParameters","url":"modules/shoppercustomers.html#getcustomerproductlistitempathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3306,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getcustomerproductlistitempathparameters-2.__type-25","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getCustomerProductListItemPathParameters"},{"id":3307,"kind":32,"name":"itemId","url":"modules/shoppercustomers.html#getcustomerproductlistitempathparameters-2.__type-25.itemid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerProductListItemPathParameters.__type"},{"id":3308,"kind":32,"name":"listId","url":"modules/shoppercustomers.html#getcustomerproductlistitempathparameters-2.__type-25.listid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerProductListItemPathParameters.__type"},{"id":3309,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#getcustomerproductlistitempathparameters-2.__type-25.customerid-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerProductListItemPathParameters.__type"},{"id":3310,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#getcustomerproductlistitempathparameters-2.__type-25.organizationid-13","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerProductListItemPathParameters.__type"},{"id":3311,"kind":4194304,"name":"getCustomerProductListsQueryParameters","url":"modules/shoppercustomers.html#getcustomerproductlistsqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3312,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getcustomerproductlistsqueryparameters-2.__type-30","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getCustomerProductListsQueryParameters"},{"id":3313,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#getcustomerproductlistsqueryparameters-2.__type-30.siteid-14","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerProductListsQueryParameters.__type"},{"id":3314,"kind":4194304,"name":"getCustomerProductListsPathParameters","url":"modules/shoppercustomers.html#getcustomerproductlistspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3315,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getcustomerproductlistspathparameters-2.__type-29","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getCustomerProductListsPathParameters"},{"id":3316,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#getcustomerproductlistspathparameters-2.__type-29.customerid-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerProductListsPathParameters.__type"},{"id":3317,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#getcustomerproductlistspathparameters-2.__type-29.organizationid-15","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getCustomerProductListsPathParameters.__type"},{"id":3318,"kind":4194304,"name":"getExternalProfileQueryParameters","url":"modules/shoppercustomers.html#getexternalprofilequeryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3319,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getexternalprofilequeryparameters-2.__type-33","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getExternalProfileQueryParameters"},{"id":3320,"kind":32,"name":"externalId","url":"modules/shoppercustomers.html#getexternalprofilequeryparameters-2.__type-33.externalid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getExternalProfileQueryParameters.__type"},{"id":3321,"kind":32,"name":"authenticationProviderId","url":"modules/shoppercustomers.html#getexternalprofilequeryparameters-2.__type-33.authenticationproviderid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getExternalProfileQueryParameters.__type"},{"id":3322,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#getexternalprofilequeryparameters-2.__type-33.siteid-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getExternalProfileQueryParameters.__type"},{"id":3323,"kind":4194304,"name":"getExternalProfilePathParameters","url":"modules/shoppercustomers.html#getexternalprofilepathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3324,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getexternalprofilepathparameters-2.__type-32","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getExternalProfilePathParameters"},{"id":3325,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#getexternalprofilepathparameters-2.__type-32.organizationid-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getExternalProfilePathParameters.__type"},{"id":3326,"kind":4194304,"name":"getProductListItemQueryParameters","url":"modules/shoppercustomers.html#getproductlistitemqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3327,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getproductlistitemqueryparameters-2.__type-35","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getProductListItemQueryParameters"},{"id":3328,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#getproductlistitemqueryparameters-2.__type-35.siteid-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getProductListItemQueryParameters.__type"},{"id":3329,"kind":4194304,"name":"getProductListItemPathParameters","url":"modules/shoppercustomers.html#getproductlistitempathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3330,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getproductlistitempathparameters-2.__type-34","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getProductListItemPathParameters"},{"id":3331,"kind":32,"name":"itemId","url":"modules/shoppercustomers.html#getproductlistitempathparameters-2.__type-34.itemid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getProductListItemPathParameters.__type"},{"id":3332,"kind":32,"name":"listId","url":"modules/shoppercustomers.html#getproductlistitempathparameters-2.__type-34.listid-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getProductListItemPathParameters.__type"},{"id":3333,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#getproductlistitempathparameters-2.__type-34.organizationid-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getProductListItemPathParameters.__type"},{"id":3334,"kind":4194304,"name":"getPublicProductListQueryParameters","url":"modules/shoppercustomers.html#getpublicproductlistqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3335,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getpublicproductlistqueryparameters-2.__type-39","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getPublicProductListQueryParameters"},{"id":3336,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#getpublicproductlistqueryparameters-2.__type-39.siteid-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getPublicProductListQueryParameters.__type"},{"id":3337,"kind":4194304,"name":"getPublicProductListPathParameters","url":"modules/shoppercustomers.html#getpublicproductlistpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3338,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getpublicproductlistpathparameters-2.__type-38","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getPublicProductListPathParameters"},{"id":3339,"kind":32,"name":"listId","url":"modules/shoppercustomers.html#getpublicproductlistpathparameters-2.__type-38.listid-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getPublicProductListPathParameters.__type"},{"id":3340,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#getpublicproductlistpathparameters-2.__type-38.organizationid-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getPublicProductListPathParameters.__type"},{"id":3341,"kind":4194304,"name":"getPublicProductListItemsQueryParameters","url":"modules/shoppercustomers.html#getpublicproductlistitemsqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3342,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getpublicproductlistitemsqueryparameters-2.__type-37","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getPublicProductListItemsQueryParameters"},{"id":3343,"kind":32,"name":"expand","url":"modules/shoppercustomers.html#getpublicproductlistitemsqueryparameters-2.__type-37.expand-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getPublicProductListItemsQueryParameters.__type"},{"id":3344,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#getpublicproductlistitemsqueryparameters-2.__type-37.siteid-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getPublicProductListItemsQueryParameters.__type"},{"id":3345,"kind":4194304,"name":"getPublicProductListItemsPathParameters","url":"modules/shoppercustomers.html#getpublicproductlistitemspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3346,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getpublicproductlistitemspathparameters-2.__type-36","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getPublicProductListItemsPathParameters"},{"id":3347,"kind":32,"name":"listId","url":"modules/shoppercustomers.html#getpublicproductlistitemspathparameters-2.__type-36.listid-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getPublicProductListItemsPathParameters.__type"},{"id":3348,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#getpublicproductlistitemspathparameters-2.__type-36.organizationid-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getPublicProductListItemsPathParameters.__type"},{"id":3349,"kind":4194304,"name":"getPublicProductListsBySearchTermQueryParameters","url":"modules/shoppercustomers.html#getpublicproductlistsbysearchtermqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3350,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getpublicproductlistsbysearchtermqueryparameters-2.__type-41","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getPublicProductListsBySearchTermQueryParameters"},{"id":3351,"kind":32,"name":"email","url":"modules/shoppercustomers.html#getpublicproductlistsbysearchtermqueryparameters-2.__type-41.email","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getPublicProductListsBySearchTermQueryParameters.__type"},{"id":3352,"kind":32,"name":"firstName","url":"modules/shoppercustomers.html#getpublicproductlistsbysearchtermqueryparameters-2.__type-41.firstname","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getPublicProductListsBySearchTermQueryParameters.__type"},{"id":3353,"kind":32,"name":"lastName","url":"modules/shoppercustomers.html#getpublicproductlistsbysearchtermqueryparameters-2.__type-41.lastname","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getPublicProductListsBySearchTermQueryParameters.__type"},{"id":3354,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#getpublicproductlistsbysearchtermqueryparameters-2.__type-41.siteid-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getPublicProductListsBySearchTermQueryParameters.__type"},{"id":3355,"kind":4194304,"name":"getPublicProductListsBySearchTermPathParameters","url":"modules/shoppercustomers.html#getpublicproductlistsbysearchtermpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3356,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getpublicproductlistsbysearchtermpathparameters-2.__type-40","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getPublicProductListsBySearchTermPathParameters"},{"id":3357,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#getpublicproductlistsbysearchtermpathparameters-2.__type-40.organizationid-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getPublicProductListsBySearchTermPathParameters.__type"},{"id":3358,"kind":4194304,"name":"getResetPasswordTokenQueryParameters","url":"modules/shoppercustomers.html#getresetpasswordtokenqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3359,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getresetpasswordtokenqueryparameters-2.__type-43","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getResetPasswordTokenQueryParameters"},{"id":3360,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#getresetpasswordtokenqueryparameters-2.__type-43.siteid-21","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getResetPasswordTokenQueryParameters.__type"},{"id":3361,"kind":4194304,"name":"getResetPasswordTokenPathParameters","url":"modules/shoppercustomers.html#getresetpasswordtokenpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3362,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#getresetpasswordtokenpathparameters-2.__type-42","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.getResetPasswordTokenPathParameters"},{"id":3363,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#getresetpasswordtokenpathparameters-2.__type-42.organizationid-21","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.getResetPasswordTokenPathParameters.__type"},{"id":3364,"kind":4194304,"name":"registerCustomerQueryParameters","url":"modules/shoppercustomers.html#registercustomerqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3365,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#registercustomerqueryparameters-2.__type-45","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.registerCustomerQueryParameters"},{"id":3366,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#registercustomerqueryparameters-2.__type-45.siteid-22","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.registerCustomerQueryParameters.__type"},{"id":3367,"kind":4194304,"name":"registerCustomerPathParameters","url":"modules/shoppercustomers.html#registercustomerpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3368,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#registercustomerpathparameters-2.__type-44","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.registerCustomerPathParameters"},{"id":3369,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#registercustomerpathparameters-2.__type-44.organizationid-22","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.registerCustomerPathParameters.__type"},{"id":3370,"kind":4194304,"name":"registerExternalProfileQueryParameters","url":"modules/shoppercustomers.html#registerexternalprofilequeryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3371,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#registerexternalprofilequeryparameters-2.__type-47","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.registerExternalProfileQueryParameters"},{"id":3372,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#registerexternalprofilequeryparameters-2.__type-47.siteid-23","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.registerExternalProfileQueryParameters.__type"},{"id":3373,"kind":4194304,"name":"registerExternalProfilePathParameters","url":"modules/shoppercustomers.html#registerexternalprofilepathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3374,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#registerexternalprofilepathparameters-2.__type-46","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.registerExternalProfilePathParameters"},{"id":3375,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#registerexternalprofilepathparameters-2.__type-46.organizationid-23","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.registerExternalProfilePathParameters.__type"},{"id":3376,"kind":4194304,"name":"removeCustomerAddressQueryParameters","url":"modules/shoppercustomers.html#removecustomeraddressqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3377,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#removecustomeraddressqueryparameters-2.__type-49","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.removeCustomerAddressQueryParameters"},{"id":3378,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#removecustomeraddressqueryparameters-2.__type-49.siteid-24","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.removeCustomerAddressQueryParameters.__type"},{"id":3379,"kind":4194304,"name":"removeCustomerAddressPathParameters","url":"modules/shoppercustomers.html#removecustomeraddresspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3380,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#removecustomeraddresspathparameters-2.__type-48","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.removeCustomerAddressPathParameters"},{"id":3381,"kind":32,"name":"addressName","url":"modules/shoppercustomers.html#removecustomeraddresspathparameters-2.__type-48.addressname-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.removeCustomerAddressPathParameters.__type"},{"id":3382,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#removecustomeraddresspathparameters-2.__type-48.customerid-16","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.removeCustomerAddressPathParameters.__type"},{"id":3383,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#removecustomeraddresspathparameters-2.__type-48.organizationid-24","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.removeCustomerAddressPathParameters.__type"},{"id":3384,"kind":4194304,"name":"resetPasswordQueryParameters","url":"modules/shoppercustomers.html#resetpasswordqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3385,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#resetpasswordqueryparameters-2.__type-51","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.resetPasswordQueryParameters"},{"id":3386,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#resetpasswordqueryparameters-2.__type-51.siteid-25","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.resetPasswordQueryParameters.__type"},{"id":3387,"kind":4194304,"name":"resetPasswordPathParameters","url":"modules/shoppercustomers.html#resetpasswordpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3388,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#resetpasswordpathparameters-2.__type-50","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.resetPasswordPathParameters"},{"id":3389,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#resetpasswordpathparameters-2.__type-50.organizationid-25","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.resetPasswordPathParameters.__type"},{"id":3390,"kind":4194304,"name":"updateCustomerQueryParameters","url":"modules/shoppercustomers.html#updatecustomerqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3391,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#updatecustomerqueryparameters-2.__type-63","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.updateCustomerQueryParameters"},{"id":3392,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#updatecustomerqueryparameters-2.__type-63.siteid-31","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerQueryParameters.__type"},{"id":3393,"kind":4194304,"name":"updateCustomerPathParameters","url":"modules/shoppercustomers.html#updatecustomerpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3394,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#updatecustomerpathparameters-2.__type-56","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.updateCustomerPathParameters"},{"id":3395,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#updatecustomerpathparameters-2.__type-56.customerid-19","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerPathParameters.__type"},{"id":3396,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#updatecustomerpathparameters-2.__type-56.organizationid-28","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerPathParameters.__type"},{"id":3397,"kind":4194304,"name":"updateCustomerAddressQueryParameters","url":"modules/shoppercustomers.html#updatecustomeraddressqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3398,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#updatecustomeraddressqueryparameters-2.__type-53","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.updateCustomerAddressQueryParameters"},{"id":3399,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#updatecustomeraddressqueryparameters-2.__type-53.siteid-26","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerAddressQueryParameters.__type"},{"id":3400,"kind":4194304,"name":"updateCustomerAddressPathParameters","url":"modules/shoppercustomers.html#updatecustomeraddresspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3401,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#updatecustomeraddresspathparameters-2.__type-52","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.updateCustomerAddressPathParameters"},{"id":3402,"kind":32,"name":"addressName","url":"modules/shoppercustomers.html#updatecustomeraddresspathparameters-2.__type-52.addressname-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerAddressPathParameters.__type"},{"id":3403,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#updatecustomeraddresspathparameters-2.__type-52.customerid-17","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerAddressPathParameters.__type"},{"id":3404,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#updatecustomeraddresspathparameters-2.__type-52.organizationid-26","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerAddressPathParameters.__type"},{"id":3405,"kind":4194304,"name":"updateCustomerPasswordQueryParameters","url":"modules/shoppercustomers.html#updatecustomerpasswordqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3406,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#updatecustomerpasswordqueryparameters-2.__type-55","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.updateCustomerPasswordQueryParameters"},{"id":3407,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#updatecustomerpasswordqueryparameters-2.__type-55.siteid-27","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerPasswordQueryParameters.__type"},{"id":3408,"kind":4194304,"name":"updateCustomerPasswordPathParameters","url":"modules/shoppercustomers.html#updatecustomerpasswordpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3409,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#updatecustomerpasswordpathparameters-2.__type-54","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.updateCustomerPasswordPathParameters"},{"id":3410,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#updatecustomerpasswordpathparameters-2.__type-54.customerid-18","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerPasswordPathParameters.__type"},{"id":3411,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#updatecustomerpasswordpathparameters-2.__type-54.organizationid-27","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerPasswordPathParameters.__type"},{"id":3412,"kind":4194304,"name":"updateCustomerPaymentInstrumentQueryParameters","url":"modules/shoppercustomers.html#updatecustomerpaymentinstrumentqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3413,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#updatecustomerpaymentinstrumentqueryparameters-2.__type-58","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.updateCustomerPaymentInstrumentQueryParameters"},{"id":3414,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#updatecustomerpaymentinstrumentqueryparameters-2.__type-58.siteid-28","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerPaymentInstrumentQueryParameters.__type"},{"id":3415,"kind":4194304,"name":"updateCustomerPaymentInstrumentPathParameters","url":"modules/shoppercustomers.html#updatecustomerpaymentinstrumentpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3416,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#updatecustomerpaymentinstrumentpathparameters-2.__type-57","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.updateCustomerPaymentInstrumentPathParameters"},{"id":3417,"kind":32,"name":"paymentInstrumentId","url":"modules/shoppercustomers.html#updatecustomerpaymentinstrumentpathparameters-2.__type-57.paymentinstrumentid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerPaymentInstrumentPathParameters.__type"},{"id":3418,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#updatecustomerpaymentinstrumentpathparameters-2.__type-57.customerid-20","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerPaymentInstrumentPathParameters.__type"},{"id":3419,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#updatecustomerpaymentinstrumentpathparameters-2.__type-57.organizationid-29","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerPaymentInstrumentPathParameters.__type"},{"id":3420,"kind":4194304,"name":"updateCustomerProductListQueryParameters","url":"modules/shoppercustomers.html#updatecustomerproductlistqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3421,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#updatecustomerproductlistqueryparameters-2.__type-62","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.updateCustomerProductListQueryParameters"},{"id":3422,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#updatecustomerproductlistqueryparameters-2.__type-62.siteid-30","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerProductListQueryParameters.__type"},{"id":3423,"kind":4194304,"name":"updateCustomerProductListPathParameters","url":"modules/shoppercustomers.html#updatecustomerproductlistpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3424,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#updatecustomerproductlistpathparameters-2.__type-61","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.updateCustomerProductListPathParameters"},{"id":3425,"kind":32,"name":"listId","url":"modules/shoppercustomers.html#updatecustomerproductlistpathparameters-2.__type-61.listid-9","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerProductListPathParameters.__type"},{"id":3426,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#updatecustomerproductlistpathparameters-2.__type-61.customerid-22","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerProductListPathParameters.__type"},{"id":3427,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#updatecustomerproductlistpathparameters-2.__type-61.organizationid-31","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerProductListPathParameters.__type"},{"id":3428,"kind":4194304,"name":"updateCustomerProductListItemQueryParameters","url":"modules/shoppercustomers.html#updatecustomerproductlistitemqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3429,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#updatecustomerproductlistitemqueryparameters-2.__type-60","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.updateCustomerProductListItemQueryParameters"},{"id":3430,"kind":32,"name":"siteId","url":"modules/shoppercustomers.html#updatecustomerproductlistitemqueryparameters-2.__type-60.siteid-29","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerProductListItemQueryParameters.__type"},{"id":3431,"kind":4194304,"name":"updateCustomerProductListItemPathParameters","url":"modules/shoppercustomers.html#updatecustomerproductlistitempathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3432,"kind":65536,"name":"__type","url":"modules/shoppercustomers.html#updatecustomerproductlistitempathparameters-2.__type-59","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperCustomers.updateCustomerProductListItemPathParameters"},{"id":3433,"kind":32,"name":"itemId","url":"modules/shoppercustomers.html#updatecustomerproductlistitempathparameters-2.__type-59.itemid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerProductListItemPathParameters.__type"},{"id":3434,"kind":32,"name":"listId","url":"modules/shoppercustomers.html#updatecustomerproductlistitempathparameters-2.__type-59.listid-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerProductListItemPathParameters.__type"},{"id":3435,"kind":32,"name":"customerId","url":"modules/shoppercustomers.html#updatecustomerproductlistitempathparameters-2.__type-59.customerid-21","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerProductListItemPathParameters.__type"},{"id":3436,"kind":32,"name":"organizationId","url":"modules/shoppercustomers.html#updatecustomerproductlistitempathparameters-2.__type-59.organizationid-30","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperCustomers.updateCustomerProductListItemPathParameters.__type"},{"id":3437,"kind":4194304,"name":"ShopperCustomersPathParameters","url":"modules/shoppercustomers.html#shoppercustomerspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3438,"kind":4194304,"name":"ShopperCustomersQueryParameters","url":"modules/shoppercustomers.html#shoppercustomersqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3439,"kind":4194304,"name":"ShopperCustomersParameters","url":"modules/shoppercustomers.html#shoppercustomersparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3440,"kind":16777216,"name":"GetCustomerExpandEnum","url":"modules/shoppercustomers.html#getcustomerexpandenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3441,"kind":16777216,"name":"GetCustomerOrdersExpandEnum","url":"modules/shoppercustomers.html#getcustomerordersexpandenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3442,"kind":16777216,"name":"GetPublicProductListItemsExpandEnum","url":"modules/shoppercustomers.html#getpublicproductlistitemsexpandenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3443,"kind":16777216,"name":"createCustomerAddressQueryParameters","url":"modules/shoppercustomers.html#createcustomeraddressqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3444,"kind":16777216,"name":"createCustomerAddressPathParameters","url":"modules/shoppercustomers.html#createcustomeraddresspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3445,"kind":16777216,"name":"createCustomerPaymentInstrumentQueryParameters","url":"modules/shoppercustomers.html#createcustomerpaymentinstrumentqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3446,"kind":16777216,"name":"createCustomerPaymentInstrumentPathParameters","url":"modules/shoppercustomers.html#createcustomerpaymentinstrumentpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3447,"kind":16777216,"name":"createCustomerProductListQueryParameters","url":"modules/shoppercustomers.html#createcustomerproductlistqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3448,"kind":16777216,"name":"createCustomerProductListPathParameters","url":"modules/shoppercustomers.html#createcustomerproductlistpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3449,"kind":16777216,"name":"createCustomerProductListItemQueryParameters","url":"modules/shoppercustomers.html#createcustomerproductlistitemqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3450,"kind":16777216,"name":"createCustomerProductListItemPathParameters","url":"modules/shoppercustomers.html#createcustomerproductlistitempathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3451,"kind":16777216,"name":"deleteCustomerPaymentInstrumentQueryParameters","url":"modules/shoppercustomers.html#deletecustomerpaymentinstrumentqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3452,"kind":16777216,"name":"deleteCustomerPaymentInstrumentPathParameters","url":"modules/shoppercustomers.html#deletecustomerpaymentinstrumentpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3453,"kind":16777216,"name":"deleteCustomerPaymentMethodReferenceQueryParameters","url":"modules/shoppercustomers.html#deletecustomerpaymentmethodreferencequeryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3454,"kind":16777216,"name":"deleteCustomerPaymentMethodReferencePathParameters","url":"modules/shoppercustomers.html#deletecustomerpaymentmethodreferencepathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3455,"kind":16777216,"name":"deleteCustomerProductListQueryParameters","url":"modules/shoppercustomers.html#deletecustomerproductlistqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3456,"kind":16777216,"name":"deleteCustomerProductListPathParameters","url":"modules/shoppercustomers.html#deletecustomerproductlistpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3457,"kind":16777216,"name":"deleteCustomerProductListItemQueryParameters","url":"modules/shoppercustomers.html#deletecustomerproductlistitemqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3458,"kind":16777216,"name":"deleteCustomerProductListItemPathParameters","url":"modules/shoppercustomers.html#deletecustomerproductlistitempathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3459,"kind":16777216,"name":"getCustomerQueryParameters","url":"modules/shoppercustomers.html#getcustomerqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3460,"kind":16777216,"name":"getCustomerPathParameters","url":"modules/shoppercustomers.html#getcustomerpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3461,"kind":16777216,"name":"getCustomerAddressQueryParameters","url":"modules/shoppercustomers.html#getcustomeraddressqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3462,"kind":16777216,"name":"getCustomerAddressPathParameters","url":"modules/shoppercustomers.html#getcustomeraddresspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3463,"kind":16777216,"name":"getCustomerBasketsQueryParameters","url":"modules/shoppercustomers.html#getcustomerbasketsqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3464,"kind":16777216,"name":"getCustomerBasketsPathParameters","url":"modules/shoppercustomers.html#getcustomerbasketspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3465,"kind":16777216,"name":"getCustomerOrdersQueryParameters","url":"modules/shoppercustomers.html#getcustomerordersqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3466,"kind":16777216,"name":"getCustomerOrdersPathParameters","url":"modules/shoppercustomers.html#getcustomerorderspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3467,"kind":16777216,"name":"getCustomerPaymentInstrumentQueryParameters","url":"modules/shoppercustomers.html#getcustomerpaymentinstrumentqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3468,"kind":16777216,"name":"getCustomerPaymentInstrumentPathParameters","url":"modules/shoppercustomers.html#getcustomerpaymentinstrumentpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3469,"kind":16777216,"name":"getCustomerProductListQueryParameters","url":"modules/shoppercustomers.html#getcustomerproductlistqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3470,"kind":16777216,"name":"getCustomerProductListPathParameters","url":"modules/shoppercustomers.html#getcustomerproductlistpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3471,"kind":16777216,"name":"getCustomerProductListItemQueryParameters","url":"modules/shoppercustomers.html#getcustomerproductlistitemqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3472,"kind":16777216,"name":"getCustomerProductListItemPathParameters","url":"modules/shoppercustomers.html#getcustomerproductlistitempathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3473,"kind":16777216,"name":"getCustomerProductListsQueryParameters","url":"modules/shoppercustomers.html#getcustomerproductlistsqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3474,"kind":16777216,"name":"getCustomerProductListsPathParameters","url":"modules/shoppercustomers.html#getcustomerproductlistspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3475,"kind":16777216,"name":"getExternalProfileQueryParameters","url":"modules/shoppercustomers.html#getexternalprofilequeryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3476,"kind":16777216,"name":"getExternalProfilePathParameters","url":"modules/shoppercustomers.html#getexternalprofilepathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3477,"kind":16777216,"name":"getProductListItemQueryParameters","url":"modules/shoppercustomers.html#getproductlistitemqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3478,"kind":16777216,"name":"getProductListItemPathParameters","url":"modules/shoppercustomers.html#getproductlistitempathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3479,"kind":16777216,"name":"getPublicProductListQueryParameters","url":"modules/shoppercustomers.html#getpublicproductlistqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3480,"kind":16777216,"name":"getPublicProductListPathParameters","url":"modules/shoppercustomers.html#getpublicproductlistpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3481,"kind":16777216,"name":"getPublicProductListItemsQueryParameters","url":"modules/shoppercustomers.html#getpublicproductlistitemsqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3482,"kind":16777216,"name":"getPublicProductListItemsPathParameters","url":"modules/shoppercustomers.html#getpublicproductlistitemspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3483,"kind":16777216,"name":"getPublicProductListsBySearchTermQueryParameters","url":"modules/shoppercustomers.html#getpublicproductlistsbysearchtermqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3484,"kind":16777216,"name":"getPublicProductListsBySearchTermPathParameters","url":"modules/shoppercustomers.html#getpublicproductlistsbysearchtermpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3485,"kind":16777216,"name":"getResetPasswordTokenQueryParameters","url":"modules/shoppercustomers.html#getresetpasswordtokenqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3486,"kind":16777216,"name":"getResetPasswordTokenPathParameters","url":"modules/shoppercustomers.html#getresetpasswordtokenpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3487,"kind":16777216,"name":"registerCustomerQueryParameters","url":"modules/shoppercustomers.html#registercustomerqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3488,"kind":16777216,"name":"registerCustomerPathParameters","url":"modules/shoppercustomers.html#registercustomerpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3489,"kind":16777216,"name":"registerExternalProfileQueryParameters","url":"modules/shoppercustomers.html#registerexternalprofilequeryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3490,"kind":16777216,"name":"registerExternalProfilePathParameters","url":"modules/shoppercustomers.html#registerexternalprofilepathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3491,"kind":16777216,"name":"removeCustomerAddressQueryParameters","url":"modules/shoppercustomers.html#removecustomeraddressqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3492,"kind":16777216,"name":"removeCustomerAddressPathParameters","url":"modules/shoppercustomers.html#removecustomeraddresspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3493,"kind":16777216,"name":"resetPasswordQueryParameters","url":"modules/shoppercustomers.html#resetpasswordqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3494,"kind":16777216,"name":"resetPasswordPathParameters","url":"modules/shoppercustomers.html#resetpasswordpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3495,"kind":16777216,"name":"updateCustomerQueryParameters","url":"modules/shoppercustomers.html#updatecustomerqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3496,"kind":16777216,"name":"updateCustomerPathParameters","url":"modules/shoppercustomers.html#updatecustomerpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3497,"kind":16777216,"name":"updateCustomerAddressQueryParameters","url":"modules/shoppercustomers.html#updatecustomeraddressqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3498,"kind":16777216,"name":"updateCustomerAddressPathParameters","url":"modules/shoppercustomers.html#updatecustomeraddresspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3499,"kind":16777216,"name":"updateCustomerPasswordQueryParameters","url":"modules/shoppercustomers.html#updatecustomerpasswordqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3500,"kind":16777216,"name":"updateCustomerPasswordPathParameters","url":"modules/shoppercustomers.html#updatecustomerpasswordpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3501,"kind":16777216,"name":"updateCustomerPaymentInstrumentQueryParameters","url":"modules/shoppercustomers.html#updatecustomerpaymentinstrumentqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3502,"kind":16777216,"name":"updateCustomerPaymentInstrumentPathParameters","url":"modules/shoppercustomers.html#updatecustomerpaymentinstrumentpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3503,"kind":16777216,"name":"updateCustomerProductListQueryParameters","url":"modules/shoppercustomers.html#updatecustomerproductlistqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3504,"kind":16777216,"name":"updateCustomerProductListPathParameters","url":"modules/shoppercustomers.html#updatecustomerproductlistpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3505,"kind":16777216,"name":"updateCustomerProductListItemQueryParameters","url":"modules/shoppercustomers.html#updatecustomerproductlistitemqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3506,"kind":16777216,"name":"updateCustomerProductListItemPathParameters","url":"modules/shoppercustomers.html#updatecustomerproductlistitempathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3507,"kind":16777216,"name":"ShopperCustomersPathParameters","url":"modules/shoppercustomers.html#shoppercustomerspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3508,"kind":16777216,"name":"ShopperCustomersQueryParameters","url":"modules/shoppercustomers.html#shoppercustomersqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3509,"kind":16777216,"name":"ShopperCustomersParameters","url":"modules/shoppercustomers.html#shoppercustomersparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3510,"kind":16777216,"name":"ShopperCustomers","url":"modules/shoppercustomers.html#shoppercustomers-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3511,"kind":16777216,"name":"defaultBaseUri","url":"modules/shoppercustomers.html#defaultbaseuri","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3512,"kind":16777216,"name":"GetCustomerExpandEnum","url":"modules/shoppercustomers.html#getcustomerexpandenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3513,"kind":16777216,"name":"GetCustomerOrdersExpandEnum","url":"modules/shoppercustomers.html#getcustomerordersexpandenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3514,"kind":16777216,"name":"GetPublicProductListItemsExpandEnum","url":"modules/shoppercustomers.html#getpublicproductlistitemsexpandenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3515,"kind":16777216,"name":"createCustomerAddressQueryParameters","url":"modules/shoppercustomers.html#createcustomeraddressqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3516,"kind":16777216,"name":"createCustomerAddressPathParameters","url":"modules/shoppercustomers.html#createcustomeraddresspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3517,"kind":16777216,"name":"createCustomerPaymentInstrumentQueryParameters","url":"modules/shoppercustomers.html#createcustomerpaymentinstrumentqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3518,"kind":16777216,"name":"createCustomerPaymentInstrumentPathParameters","url":"modules/shoppercustomers.html#createcustomerpaymentinstrumentpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3519,"kind":16777216,"name":"createCustomerProductListQueryParameters","url":"modules/shoppercustomers.html#createcustomerproductlistqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3520,"kind":16777216,"name":"createCustomerProductListPathParameters","url":"modules/shoppercustomers.html#createcustomerproductlistpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3521,"kind":16777216,"name":"createCustomerProductListItemQueryParameters","url":"modules/shoppercustomers.html#createcustomerproductlistitemqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3522,"kind":16777216,"name":"createCustomerProductListItemPathParameters","url":"modules/shoppercustomers.html#createcustomerproductlistitempathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3523,"kind":16777216,"name":"deleteCustomerPaymentInstrumentQueryParameters","url":"modules/shoppercustomers.html#deletecustomerpaymentinstrumentqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3524,"kind":16777216,"name":"deleteCustomerPaymentInstrumentPathParameters","url":"modules/shoppercustomers.html#deletecustomerpaymentinstrumentpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3525,"kind":16777216,"name":"deleteCustomerPaymentMethodReferenceQueryParameters","url":"modules/shoppercustomers.html#deletecustomerpaymentmethodreferencequeryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3526,"kind":16777216,"name":"deleteCustomerPaymentMethodReferencePathParameters","url":"modules/shoppercustomers.html#deletecustomerpaymentmethodreferencepathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3527,"kind":16777216,"name":"deleteCustomerProductListQueryParameters","url":"modules/shoppercustomers.html#deletecustomerproductlistqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3528,"kind":16777216,"name":"deleteCustomerProductListPathParameters","url":"modules/shoppercustomers.html#deletecustomerproductlistpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3529,"kind":16777216,"name":"deleteCustomerProductListItemQueryParameters","url":"modules/shoppercustomers.html#deletecustomerproductlistitemqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3530,"kind":16777216,"name":"deleteCustomerProductListItemPathParameters","url":"modules/shoppercustomers.html#deletecustomerproductlistitempathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3531,"kind":16777216,"name":"getCustomerQueryParameters","url":"modules/shoppercustomers.html#getcustomerqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3532,"kind":16777216,"name":"getCustomerPathParameters","url":"modules/shoppercustomers.html#getcustomerpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3533,"kind":16777216,"name":"getCustomerAddressQueryParameters","url":"modules/shoppercustomers.html#getcustomeraddressqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3534,"kind":16777216,"name":"getCustomerAddressPathParameters","url":"modules/shoppercustomers.html#getcustomeraddresspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3535,"kind":16777216,"name":"getCustomerBasketsQueryParameters","url":"modules/shoppercustomers.html#getcustomerbasketsqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3536,"kind":16777216,"name":"getCustomerBasketsPathParameters","url":"modules/shoppercustomers.html#getcustomerbasketspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3537,"kind":16777216,"name":"getCustomerOrdersQueryParameters","url":"modules/shoppercustomers.html#getcustomerordersqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3538,"kind":16777216,"name":"getCustomerOrdersPathParameters","url":"modules/shoppercustomers.html#getcustomerorderspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3539,"kind":16777216,"name":"getCustomerPaymentInstrumentQueryParameters","url":"modules/shoppercustomers.html#getcustomerpaymentinstrumentqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3540,"kind":16777216,"name":"getCustomerPaymentInstrumentPathParameters","url":"modules/shoppercustomers.html#getcustomerpaymentinstrumentpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3541,"kind":16777216,"name":"getCustomerProductListQueryParameters","url":"modules/shoppercustomers.html#getcustomerproductlistqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3542,"kind":16777216,"name":"getCustomerProductListPathParameters","url":"modules/shoppercustomers.html#getcustomerproductlistpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3543,"kind":16777216,"name":"getCustomerProductListItemQueryParameters","url":"modules/shoppercustomers.html#getcustomerproductlistitemqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3544,"kind":16777216,"name":"getCustomerProductListItemPathParameters","url":"modules/shoppercustomers.html#getcustomerproductlistitempathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3545,"kind":16777216,"name":"getCustomerProductListsQueryParameters","url":"modules/shoppercustomers.html#getcustomerproductlistsqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3546,"kind":16777216,"name":"getCustomerProductListsPathParameters","url":"modules/shoppercustomers.html#getcustomerproductlistspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3547,"kind":16777216,"name":"getExternalProfileQueryParameters","url":"modules/shoppercustomers.html#getexternalprofilequeryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3548,"kind":16777216,"name":"getExternalProfilePathParameters","url":"modules/shoppercustomers.html#getexternalprofilepathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3549,"kind":16777216,"name":"getProductListItemQueryParameters","url":"modules/shoppercustomers.html#getproductlistitemqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3550,"kind":16777216,"name":"getProductListItemPathParameters","url":"modules/shoppercustomers.html#getproductlistitempathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3551,"kind":16777216,"name":"getPublicProductListQueryParameters","url":"modules/shoppercustomers.html#getpublicproductlistqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3552,"kind":16777216,"name":"getPublicProductListPathParameters","url":"modules/shoppercustomers.html#getpublicproductlistpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3553,"kind":16777216,"name":"getPublicProductListItemsQueryParameters","url":"modules/shoppercustomers.html#getpublicproductlistitemsqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3554,"kind":16777216,"name":"getPublicProductListItemsPathParameters","url":"modules/shoppercustomers.html#getpublicproductlistitemspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3555,"kind":16777216,"name":"getPublicProductListsBySearchTermQueryParameters","url":"modules/shoppercustomers.html#getpublicproductlistsbysearchtermqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3556,"kind":16777216,"name":"getPublicProductListsBySearchTermPathParameters","url":"modules/shoppercustomers.html#getpublicproductlistsbysearchtermpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3557,"kind":16777216,"name":"getResetPasswordTokenQueryParameters","url":"modules/shoppercustomers.html#getresetpasswordtokenqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3558,"kind":16777216,"name":"getResetPasswordTokenPathParameters","url":"modules/shoppercustomers.html#getresetpasswordtokenpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3559,"kind":16777216,"name":"registerCustomerQueryParameters","url":"modules/shoppercustomers.html#registercustomerqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3560,"kind":16777216,"name":"registerCustomerPathParameters","url":"modules/shoppercustomers.html#registercustomerpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3561,"kind":16777216,"name":"registerExternalProfileQueryParameters","url":"modules/shoppercustomers.html#registerexternalprofilequeryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3562,"kind":16777216,"name":"registerExternalProfilePathParameters","url":"modules/shoppercustomers.html#registerexternalprofilepathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3563,"kind":16777216,"name":"removeCustomerAddressQueryParameters","url":"modules/shoppercustomers.html#removecustomeraddressqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3564,"kind":16777216,"name":"removeCustomerAddressPathParameters","url":"modules/shoppercustomers.html#removecustomeraddresspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3565,"kind":16777216,"name":"resetPasswordQueryParameters","url":"modules/shoppercustomers.html#resetpasswordqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3566,"kind":16777216,"name":"resetPasswordPathParameters","url":"modules/shoppercustomers.html#resetpasswordpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3567,"kind":16777216,"name":"updateCustomerQueryParameters","url":"modules/shoppercustomers.html#updatecustomerqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3568,"kind":16777216,"name":"updateCustomerPathParameters","url":"modules/shoppercustomers.html#updatecustomerpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3569,"kind":16777216,"name":"updateCustomerAddressQueryParameters","url":"modules/shoppercustomers.html#updatecustomeraddressqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3570,"kind":16777216,"name":"updateCustomerAddressPathParameters","url":"modules/shoppercustomers.html#updatecustomeraddresspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3571,"kind":16777216,"name":"updateCustomerPasswordQueryParameters","url":"modules/shoppercustomers.html#updatecustomerpasswordqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3572,"kind":16777216,"name":"updateCustomerPasswordPathParameters","url":"modules/shoppercustomers.html#updatecustomerpasswordpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3573,"kind":16777216,"name":"updateCustomerPaymentInstrumentQueryParameters","url":"modules/shoppercustomers.html#updatecustomerpaymentinstrumentqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3574,"kind":16777216,"name":"updateCustomerPaymentInstrumentPathParameters","url":"modules/shoppercustomers.html#updatecustomerpaymentinstrumentpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3575,"kind":16777216,"name":"updateCustomerProductListQueryParameters","url":"modules/shoppercustomers.html#updatecustomerproductlistqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3576,"kind":16777216,"name":"updateCustomerProductListPathParameters","url":"modules/shoppercustomers.html#updatecustomerproductlistpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3577,"kind":16777216,"name":"updateCustomerProductListItemQueryParameters","url":"modules/shoppercustomers.html#updatecustomerproductlistitemqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3578,"kind":16777216,"name":"updateCustomerProductListItemPathParameters","url":"modules/shoppercustomers.html#updatecustomerproductlistitempathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3579,"kind":16777216,"name":"ShopperCustomersPathParameters","url":"modules/shoppercustomers.html#shoppercustomerspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3580,"kind":16777216,"name":"ShopperCustomersQueryParameters","url":"modules/shoppercustomers.html#shoppercustomersqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3581,"kind":16777216,"name":"ShopperCustomersParameters","url":"modules/shoppercustomers.html#shoppercustomersparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3582,"kind":16777216,"name":"ShopperCustomers","url":"modules/shoppercustomers.html#shoppercustomers-2","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3583,"kind":16777216,"name":"Basket","url":"modules/shoppercustomers.html#basket-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3584,"kind":16777216,"name":"BasketChannelTypeEnum","url":"modules/shoppercustomers.html#basketchanneltypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3585,"kind":16777216,"name":"BasketTaxationEnum","url":"modules/shoppercustomers.html#baskettaxationenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3586,"kind":16777216,"name":"BasketProductItem","url":"modules/shoppercustomers.html#basketproductitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3587,"kind":16777216,"name":"BasketsResult","url":"modules/shoppercustomers.html#basketsresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3588,"kind":16777216,"name":"BonusDiscountLineItem","url":"modules/shoppercustomers.html#bonusdiscountlineitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3589,"kind":16777216,"name":"BundledProduct","url":"modules/shoppercustomers.html#bundledproduct-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3590,"kind":16777216,"name":"CouponItem","url":"modules/shoppercustomers.html#couponitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3591,"kind":16777216,"name":"CouponItemStatusCodeEnum","url":"modules/shoppercustomers.html#couponitemstatuscodeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3592,"kind":16777216,"name":"Customer","url":"modules/shoppercustomers.html#customer-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3593,"kind":16777216,"name":"CustomerAuthTypeEnum","url":"modules/shoppercustomers.html#customerauthtypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3594,"kind":16777216,"name":"CustomerAddress","url":"modules/shoppercustomers.html#customeraddress-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3595,"kind":16777216,"name":"CustomerAddressInfo","url":"modules/shoppercustomers.html#customeraddressinfo-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3596,"kind":16777216,"name":"CustomerExtProfileRequest","url":"modules/shoppercustomers.html#customerextprofilerequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3597,"kind":16777216,"name":"CustomerExternalProfile","url":"modules/shoppercustomers.html#customerexternalprofile-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3598,"kind":16777216,"name":"CustomerInfo","url":"modules/shoppercustomers.html#customerinfo-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3599,"kind":16777216,"name":"CustomerOrderResult","url":"modules/shoppercustomers.html#customerorderresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3600,"kind":16777216,"name":"CustomerPaymentCardRequest","url":"modules/shoppercustomers.html#customerpaymentcardrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3601,"kind":16777216,"name":"CustomerPaymentInstrument","url":"modules/shoppercustomers.html#customerpaymentinstrument-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3602,"kind":16777216,"name":"CustomerPaymentInstrumentRequest","url":"modules/shoppercustomers.html#customerpaymentinstrumentrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3603,"kind":16777216,"name":"CustomerPaymentInstrumentUpdateRequest","url":"modules/shoppercustomers.html#customerpaymentinstrumentupdaterequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3604,"kind":16777216,"name":"CustomerPaymentInstrumentUpdateRequestPaymentCard","url":"modules/shoppercustomers.html#customerpaymentinstrumentupdaterequestpaymentcard-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3605,"kind":16777216,"name":"CustomerPaymentMethodReference","url":"modules/shoppercustomers.html#customerpaymentmethodreference-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3606,"kind":16777216,"name":"CustomerPaymentMethodReferenceTypeEnum","url":"modules/shoppercustomers.html#customerpaymentmethodreferencetypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3607,"kind":16777216,"name":"CustomerProductList","url":"modules/shoppercustomers.html#customerproductlist-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3608,"kind":16777216,"name":"CustomerProductListTypeEnum","url":"modules/shoppercustomers.html#customerproductlisttypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3609,"kind":16777216,"name":"CustomerProductListItem","url":"modules/shoppercustomers.html#customerproductlistitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3610,"kind":16777216,"name":"CustomerProductListItemTypeEnum","url":"modules/shoppercustomers.html#customerproductlistitemtypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3611,"kind":16777216,"name":"CustomerProductListRegistrant","url":"modules/shoppercustomers.html#customerproductlistregistrant-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3612,"kind":16777216,"name":"CustomerProductListResult","url":"modules/shoppercustomers.html#customerproductlistresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3613,"kind":16777216,"name":"CustomerRegistration","url":"modules/shoppercustomers.html#customerregistration-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3614,"kind":16777216,"name":"Discount","url":"modules/shoppercustomers.html#discount-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3615,"kind":16777216,"name":"DiscountTypeEnum","url":"modules/shoppercustomers.html#discounttypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3616,"kind":16777216,"name":"ErrorResponse","url":"modules/shoppercustomers.html#errorresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3617,"kind":16777216,"name":"GiftCardResponse","url":"modules/shoppercustomers.html#giftcardresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3618,"kind":16777216,"name":"GiftCertificateItem","url":"modules/shoppercustomers.html#giftcertificateitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3619,"kind":16777216,"name":"GroupedTaxItem","url":"modules/shoppercustomers.html#groupedtaxitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3620,"kind":16777216,"name":"Image","url":"modules/shoppercustomers.html#image-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3621,"kind":16777216,"name":"ImageGroup","url":"modules/shoppercustomers.html#imagegroup-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3622,"kind":16777216,"name":"Inventory","url":"modules/shoppercustomers.html#inventory-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3623,"kind":16777216,"name":"Master","url":"modules/shoppercustomers.html#master-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3624,"kind":16777216,"name":"OmsData","url":"modules/shoppercustomers.html#omsdata-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3625,"kind":16777216,"name":"OmsProductData","url":"modules/shoppercustomers.html#omsproductdata-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3626,"kind":16777216,"name":"OmsProductDataStatusEnum","url":"modules/shoppercustomers.html#omsproductdatastatusenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3627,"kind":16777216,"name":"OmsShipment","url":"modules/shoppercustomers.html#omsshipment-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3628,"kind":16777216,"name":"OmsShipmentItem","url":"modules/shoppercustomers.html#omsshipmentitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3629,"kind":16777216,"name":"Option","url":"modules/shoppercustomers.html#option-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3630,"kind":16777216,"name":"OptionItem","url":"modules/shoppercustomers.html#optionitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3631,"kind":16777216,"name":"OptionValue","url":"modules/shoppercustomers.html#optionvalue-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3632,"kind":16777216,"name":"Order","url":"modules/shoppercustomers.html#order-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3633,"kind":16777216,"name":"OrderChannelTypeEnum","url":"modules/shoppercustomers.html#orderchanneltypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3634,"kind":16777216,"name":"OrderConfirmationStatusEnum","url":"modules/shoppercustomers.html#orderconfirmationstatusenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3635,"kind":16777216,"name":"OrderExportStatusEnum","url":"modules/shoppercustomers.html#orderexportstatusenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3636,"kind":16777216,"name":"OrderPaymentStatusEnum","url":"modules/shoppercustomers.html#orderpaymentstatusenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3637,"kind":16777216,"name":"OrderShippingStatusEnum","url":"modules/shoppercustomers.html#ordershippingstatusenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3638,"kind":16777216,"name":"OrderStatusEnum","url":"modules/shoppercustomers.html#orderstatusenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3639,"kind":16777216,"name":"OrderTaxationEnum","url":"modules/shoppercustomers.html#ordertaxationenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3640,"kind":16777216,"name":"OrderAddress","url":"modules/shoppercustomers.html#orderaddress-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3641,"kind":16777216,"name":"OrderPaymentInstrument","url":"modules/shoppercustomers.html#orderpaymentinstrument-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3642,"kind":16777216,"name":"OrderPaymentInstrumentPaymentReference","url":"modules/shoppercustomers.html#orderpaymentinstrumentpaymentreference-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3643,"kind":16777216,"name":"OrderPaymentInstrumentPaymentReferenceGatewayEnum","url":"modules/shoppercustomers.html#orderpaymentinstrumentpaymentreferencegatewayenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3644,"kind":16777216,"name":"OrderPaymentInstrumentPaymentReferenceGatewayProperties","url":"modules/shoppercustomers.html#orderpaymentinstrumentpaymentreferencegatewayproperties-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3645,"kind":16777216,"name":"OrderProductItem","url":"modules/shoppercustomers.html#orderproductitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3646,"kind":16777216,"name":"PageMetaTag","url":"modules/shoppercustomers.html#pagemetatag-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3647,"kind":16777216,"name":"PaginatedResultBase","url":"modules/shoppercustomers.html#paginatedresultbase-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3648,"kind":16777216,"name":"PasswordChangeRequest","url":"modules/shoppercustomers.html#passwordchangerequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3649,"kind":16777216,"name":"PaymentBankAccountRequest","url":"modules/shoppercustomers.html#paymentbankaccountrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3650,"kind":16777216,"name":"PaymentCard","url":"modules/shoppercustomers.html#paymentcard-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3651,"kind":16777216,"name":"PriceAdjustment","url":"modules/shoppercustomers.html#priceadjustment-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3652,"kind":16777216,"name":"PriceRange","url":"modules/shoppercustomers.html#pricerange-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3653,"kind":16777216,"name":"Product","url":"modules/shoppercustomers.html#product-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3654,"kind":16777216,"name":"ProductDetailsLink","url":"modules/shoppercustomers.html#productdetailslink-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3655,"kind":16777216,"name":"ProductItem","url":"modules/shoppercustomers.html#productitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3656,"kind":16777216,"name":"ProductLink","url":"modules/shoppercustomers.html#productlink-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3657,"kind":16777216,"name":"ProductLinkTypeEnum","url":"modules/shoppercustomers.html#productlinktypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3658,"kind":16777216,"name":"ProductListEvent","url":"modules/shoppercustomers.html#productlistevent-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3659,"kind":16777216,"name":"ProductListItemReference","url":"modules/shoppercustomers.html#productlistitemreference-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3660,"kind":16777216,"name":"ProductListItemReferenceTypeEnum","url":"modules/shoppercustomers.html#productlistitemreferencetypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3661,"kind":16777216,"name":"ProductListLink","url":"modules/shoppercustomers.html#productlistlink-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3662,"kind":16777216,"name":"ProductListLinkTypeEnum","url":"modules/shoppercustomers.html#productlistlinktypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3663,"kind":16777216,"name":"ProductListRegistrant","url":"modules/shoppercustomers.html#productlistregistrant-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3664,"kind":16777216,"name":"ProductListShippingAddress","url":"modules/shoppercustomers.html#productlistshippingaddress-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3665,"kind":16777216,"name":"ProductPriceTable","url":"modules/shoppercustomers.html#productpricetable-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3666,"kind":16777216,"name":"ProductPromotion","url":"modules/shoppercustomers.html#productpromotion-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3667,"kind":16777216,"name":"ProductType","url":"modules/shoppercustomers.html#producttype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3668,"kind":16777216,"name":"PublicProductList","url":"modules/shoppercustomers.html#publicproductlist-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3669,"kind":16777216,"name":"PublicProductListTypeEnum","url":"modules/shoppercustomers.html#publicproductlisttypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3670,"kind":16777216,"name":"PublicProductListInfo","url":"modules/shoppercustomers.html#publicproductlistinfo-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3671,"kind":16777216,"name":"PublicProductListInfoTypeEnum","url":"modules/shoppercustomers.html#publicproductlistinfotypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3672,"kind":16777216,"name":"PublicProductListItem","url":"modules/shoppercustomers.html#publicproductlistitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3673,"kind":16777216,"name":"PublicProductListItemTypeEnum","url":"modules/shoppercustomers.html#publicproductlistitemtypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3674,"kind":16777216,"name":"PublicProductListItemResult","url":"modules/shoppercustomers.html#publicproductlistitemresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3675,"kind":16777216,"name":"PublicProductListResult","url":"modules/shoppercustomers.html#publicproductlistresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3676,"kind":16777216,"name":"Recommendation","url":"modules/shoppercustomers.html#recommendation-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3677,"kind":16777216,"name":"RecommendationType","url":"modules/shoppercustomers.html#recommendationtype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3678,"kind":16777216,"name":"ResetPasswordRequest","url":"modules/shoppercustomers.html#resetpasswordrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3679,"kind":16777216,"name":"ResetPasswordToken","url":"modules/shoppercustomers.html#resetpasswordtoken-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3680,"kind":16777216,"name":"ResetPasswordTokenRequest","url":"modules/shoppercustomers.html#resetpasswordtokenrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3681,"kind":16777216,"name":"ResultBase","url":"modules/shoppercustomers.html#resultbase-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3682,"kind":16777216,"name":"Shipment","url":"modules/shoppercustomers.html#shipment-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3683,"kind":16777216,"name":"ShipmentShippingStatusEnum","url":"modules/shoppercustomers.html#shipmentshippingstatusenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3684,"kind":16777216,"name":"ShippingItem","url":"modules/shoppercustomers.html#shippingitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3685,"kind":16777216,"name":"ShippingMethod","url":"modules/shoppercustomers.html#shippingmethod-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3686,"kind":16777216,"name":"ShippingPromotion","url":"modules/shoppercustomers.html#shippingpromotion-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3687,"kind":16777216,"name":"Status","url":"modules/shoppercustomers.html#status-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3688,"kind":16777216,"name":"Variant","url":"modules/shoppercustomers.html#variant-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3689,"kind":16777216,"name":"VariationAttribute","url":"modules/shoppercustomers.html#variationattribute-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3690,"kind":16777216,"name":"VariationAttributeValue","url":"modules/shoppercustomers.html#variationattributevalue-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3691,"kind":16777216,"name":"VariationGroup","url":"modules/shoppercustomers.html#variationgroup-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3692,"kind":2,"name":"ShopperCustomersTypes","url":"modules/shoppercustomers.shoppercustomerstypes.html","classes":"tsd-kind-namespace tsd-parent-kind-module","parent":"shopperCustomers"},{"id":3693,"kind":4194304,"name":"ShopperCustomersPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#shoppercustomerspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3694,"kind":4194304,"name":"ShopperCustomersQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#shoppercustomersqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3695,"kind":4194304,"name":"createCustomerAddressQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#createcustomeraddressqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3696,"kind":4194304,"name":"createCustomerAddressPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#createcustomeraddresspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3697,"kind":4194304,"name":"createCustomerPaymentInstrumentQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#createcustomerpaymentinstrumentqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3698,"kind":4194304,"name":"createCustomerPaymentInstrumentPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#createcustomerpaymentinstrumentpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3699,"kind":4194304,"name":"createCustomerProductListQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#createcustomerproductlistqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3700,"kind":4194304,"name":"createCustomerProductListPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#createcustomerproductlistpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3701,"kind":4194304,"name":"createCustomerProductListItemQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#createcustomerproductlistitemqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3702,"kind":4194304,"name":"createCustomerProductListItemPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#createcustomerproductlistitempathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3703,"kind":4194304,"name":"deleteCustomerPaymentInstrumentQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#deletecustomerpaymentinstrumentqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3704,"kind":4194304,"name":"deleteCustomerPaymentInstrumentPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#deletecustomerpaymentinstrumentpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3705,"kind":4194304,"name":"deleteCustomerPaymentMethodReferenceQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#deletecustomerpaymentmethodreferencequeryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3706,"kind":4194304,"name":"deleteCustomerPaymentMethodReferencePathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#deletecustomerpaymentmethodreferencepathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3707,"kind":4194304,"name":"deleteCustomerProductListQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#deletecustomerproductlistqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3708,"kind":4194304,"name":"deleteCustomerProductListPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#deletecustomerproductlistpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3709,"kind":4194304,"name":"deleteCustomerProductListItemQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#deletecustomerproductlistitemqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3710,"kind":4194304,"name":"deleteCustomerProductListItemPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#deletecustomerproductlistitempathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3711,"kind":4194304,"name":"GetCustomerExpandEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#getcustomerexpandenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3712,"kind":4194304,"name":"getCustomerQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getcustomerqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3713,"kind":4194304,"name":"getCustomerPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getcustomerpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3714,"kind":4194304,"name":"getCustomerAddressQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getcustomeraddressqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3715,"kind":4194304,"name":"getCustomerAddressPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getcustomeraddresspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3716,"kind":4194304,"name":"getCustomerBasketsQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getcustomerbasketsqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3717,"kind":4194304,"name":"getCustomerBasketsPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getcustomerbasketspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3718,"kind":4194304,"name":"GetCustomerOrdersExpandEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#getcustomerordersexpandenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3719,"kind":4194304,"name":"getCustomerOrdersQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getcustomerordersqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3720,"kind":4194304,"name":"getCustomerOrdersPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getcustomerorderspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3721,"kind":4194304,"name":"getCustomerPaymentInstrumentQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getcustomerpaymentinstrumentqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3722,"kind":4194304,"name":"getCustomerPaymentInstrumentPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getcustomerpaymentinstrumentpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3723,"kind":4194304,"name":"getCustomerProductListQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getcustomerproductlistqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3724,"kind":4194304,"name":"getCustomerProductListPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getcustomerproductlistpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3725,"kind":4194304,"name":"getCustomerProductListItemQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getcustomerproductlistitemqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3726,"kind":4194304,"name":"getCustomerProductListItemPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getcustomerproductlistitempathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3727,"kind":4194304,"name":"getCustomerProductListsQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getcustomerproductlistsqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3728,"kind":4194304,"name":"getCustomerProductListsPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getcustomerproductlistspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3729,"kind":4194304,"name":"getExternalProfileQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getexternalprofilequeryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3730,"kind":4194304,"name":"getExternalProfilePathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getexternalprofilepathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3731,"kind":4194304,"name":"getProductListItemQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getproductlistitemqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3732,"kind":4194304,"name":"getProductListItemPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getproductlistitempathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3733,"kind":4194304,"name":"getPublicProductListQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getpublicproductlistqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3734,"kind":4194304,"name":"getPublicProductListPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getpublicproductlistpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3735,"kind":4194304,"name":"GetPublicProductListItemsExpandEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#getpublicproductlistitemsexpandenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3736,"kind":4194304,"name":"getPublicProductListItemsQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getpublicproductlistitemsqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3737,"kind":4194304,"name":"getPublicProductListItemsPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getpublicproductlistitemspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3738,"kind":4194304,"name":"getPublicProductListsBySearchTermQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getpublicproductlistsbysearchtermqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3739,"kind":4194304,"name":"getPublicProductListsBySearchTermPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getpublicproductlistsbysearchtermpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3740,"kind":4194304,"name":"getResetPasswordTokenQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getresetpasswordtokenqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3741,"kind":4194304,"name":"getResetPasswordTokenPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#getresetpasswordtokenpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3742,"kind":4194304,"name":"registerCustomerQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#registercustomerqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3743,"kind":4194304,"name":"registerCustomerPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#registercustomerpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3744,"kind":4194304,"name":"registerExternalProfileQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#registerexternalprofilequeryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3745,"kind":4194304,"name":"registerExternalProfilePathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#registerexternalprofilepathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3746,"kind":4194304,"name":"removeCustomerAddressQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#removecustomeraddressqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3747,"kind":4194304,"name":"removeCustomerAddressPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#removecustomeraddresspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3748,"kind":4194304,"name":"resetPasswordQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#resetpasswordqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3749,"kind":4194304,"name":"resetPasswordPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#resetpasswordpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3750,"kind":4194304,"name":"updateCustomerQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#updatecustomerqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3751,"kind":4194304,"name":"updateCustomerPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#updatecustomerpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3752,"kind":4194304,"name":"updateCustomerAddressQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#updatecustomeraddressqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3753,"kind":4194304,"name":"updateCustomerAddressPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#updatecustomeraddresspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3754,"kind":4194304,"name":"updateCustomerPasswordQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#updatecustomerpasswordqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3755,"kind":4194304,"name":"updateCustomerPasswordPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#updatecustomerpasswordpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3756,"kind":4194304,"name":"updateCustomerPaymentInstrumentQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#updatecustomerpaymentinstrumentqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3757,"kind":4194304,"name":"updateCustomerPaymentInstrumentPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#updatecustomerpaymentinstrumentpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3758,"kind":4194304,"name":"updateCustomerProductListQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#updatecustomerproductlistqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3759,"kind":4194304,"name":"updateCustomerProductListPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#updatecustomerproductlistpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3760,"kind":4194304,"name":"updateCustomerProductListItemQueryParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#updatecustomerproductlistitemqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3761,"kind":4194304,"name":"updateCustomerProductListItemPathParameters","url":"modules/shoppercustomers.shoppercustomerstypes.html#updatecustomerproductlistitempathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3762,"kind":4194304,"name":"Basket","url":"modules/shoppercustomers.shoppercustomerstypes.html#basket","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3763,"kind":4194304,"name":"BasketChannelTypeEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#basketchanneltypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3764,"kind":4194304,"name":"BasketTaxationEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#baskettaxationenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3765,"kind":4194304,"name":"BasketProductItem","url":"modules/shoppercustomers.shoppercustomerstypes.html#basketproductitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3766,"kind":4194304,"name":"BasketsResult","url":"modules/shoppercustomers.shoppercustomerstypes.html#basketsresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3767,"kind":4194304,"name":"BonusDiscountLineItem","url":"modules/shoppercustomers.shoppercustomerstypes.html#bonusdiscountlineitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3768,"kind":4194304,"name":"BundledProduct","url":"modules/shoppercustomers.shoppercustomerstypes.html#bundledproduct","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3769,"kind":4194304,"name":"CouponItem","url":"modules/shoppercustomers.shoppercustomerstypes.html#couponitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3770,"kind":4194304,"name":"CouponItemStatusCodeEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#couponitemstatuscodeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3771,"kind":4194304,"name":"Customer","url":"modules/shoppercustomers.shoppercustomerstypes.html#customer","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3772,"kind":4194304,"name":"CustomerAuthTypeEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#customerauthtypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3773,"kind":4194304,"name":"CustomerAddress","url":"modules/shoppercustomers.shoppercustomerstypes.html#customeraddress","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3774,"kind":4194304,"name":"CustomerAddressInfo","url":"modules/shoppercustomers.shoppercustomerstypes.html#customeraddressinfo","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3775,"kind":4194304,"name":"CustomerExtProfileRequest","url":"modules/shoppercustomers.shoppercustomerstypes.html#customerextprofilerequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3776,"kind":4194304,"name":"CustomerExternalProfile","url":"modules/shoppercustomers.shoppercustomerstypes.html#customerexternalprofile","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3777,"kind":4194304,"name":"CustomerInfo","url":"modules/shoppercustomers.shoppercustomerstypes.html#customerinfo","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3778,"kind":4194304,"name":"CustomerOrderResult","url":"modules/shoppercustomers.shoppercustomerstypes.html#customerorderresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3779,"kind":4194304,"name":"CustomerPaymentCardRequest","url":"modules/shoppercustomers.shoppercustomerstypes.html#customerpaymentcardrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3780,"kind":4194304,"name":"CustomerPaymentInstrument","url":"modules/shoppercustomers.shoppercustomerstypes.html#customerpaymentinstrument","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3781,"kind":4194304,"name":"CustomerPaymentInstrumentRequest","url":"modules/shoppercustomers.shoppercustomerstypes.html#customerpaymentinstrumentrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3782,"kind":4194304,"name":"CustomerPaymentInstrumentUpdateRequest","url":"modules/shoppercustomers.shoppercustomerstypes.html#customerpaymentinstrumentupdaterequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3783,"kind":4194304,"name":"CustomerPaymentInstrumentUpdateRequestPaymentCard","url":"modules/shoppercustomers.shoppercustomerstypes.html#customerpaymentinstrumentupdaterequestpaymentcard","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3784,"kind":4194304,"name":"CustomerPaymentMethodReference","url":"modules/shoppercustomers.shoppercustomerstypes.html#customerpaymentmethodreference","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3785,"kind":4194304,"name":"CustomerPaymentMethodReferenceTypeEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#customerpaymentmethodreferencetypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3786,"kind":4194304,"name":"CustomerProductList","url":"modules/shoppercustomers.shoppercustomerstypes.html#customerproductlist","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3787,"kind":4194304,"name":"CustomerProductListTypeEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#customerproductlisttypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3788,"kind":4194304,"name":"CustomerProductListItem","url":"modules/shoppercustomers.shoppercustomerstypes.html#customerproductlistitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3789,"kind":4194304,"name":"CustomerProductListItemTypeEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#customerproductlistitemtypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3790,"kind":4194304,"name":"CustomerProductListRegistrant","url":"modules/shoppercustomers.shoppercustomerstypes.html#customerproductlistregistrant","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3791,"kind":4194304,"name":"CustomerProductListResult","url":"modules/shoppercustomers.shoppercustomerstypes.html#customerproductlistresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3792,"kind":4194304,"name":"CustomerRegistration","url":"modules/shoppercustomers.shoppercustomerstypes.html#customerregistration","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3793,"kind":4194304,"name":"Discount","url":"modules/shoppercustomers.shoppercustomerstypes.html#discount","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3794,"kind":4194304,"name":"DiscountTypeEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#discounttypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3795,"kind":4194304,"name":"ErrorResponse","url":"modules/shoppercustomers.shoppercustomerstypes.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3796,"kind":4194304,"name":"GiftCardResponse","url":"modules/shoppercustomers.shoppercustomerstypes.html#giftcardresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3797,"kind":4194304,"name":"GiftCertificateItem","url":"modules/shoppercustomers.shoppercustomerstypes.html#giftcertificateitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3798,"kind":4194304,"name":"GroupedTaxItem","url":"modules/shoppercustomers.shoppercustomerstypes.html#groupedtaxitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3799,"kind":4194304,"name":"Image","url":"modules/shoppercustomers.shoppercustomerstypes.html#image","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3800,"kind":4194304,"name":"ImageGroup","url":"modules/shoppercustomers.shoppercustomerstypes.html#imagegroup","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3801,"kind":4194304,"name":"Inventory","url":"modules/shoppercustomers.shoppercustomerstypes.html#inventory","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3802,"kind":4194304,"name":"Master","url":"modules/shoppercustomers.shoppercustomerstypes.html#master","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3803,"kind":4194304,"name":"OmsData","url":"modules/shoppercustomers.shoppercustomerstypes.html#omsdata","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3804,"kind":4194304,"name":"OmsProductData","url":"modules/shoppercustomers.shoppercustomerstypes.html#omsproductdata","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3805,"kind":4194304,"name":"OmsProductDataStatusEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#omsproductdatastatusenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3806,"kind":4194304,"name":"OmsShipment","url":"modules/shoppercustomers.shoppercustomerstypes.html#omsshipment","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3807,"kind":4194304,"name":"OmsShipmentItem","url":"modules/shoppercustomers.shoppercustomerstypes.html#omsshipmentitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3808,"kind":4194304,"name":"Option","url":"modules/shoppercustomers.shoppercustomerstypes.html#option","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3809,"kind":4194304,"name":"OptionItem","url":"modules/shoppercustomers.shoppercustomerstypes.html#optionitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3810,"kind":4194304,"name":"OptionValue","url":"modules/shoppercustomers.shoppercustomerstypes.html#optionvalue","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3811,"kind":4194304,"name":"Order","url":"modules/shoppercustomers.shoppercustomerstypes.html#order","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3812,"kind":4194304,"name":"OrderChannelTypeEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#orderchanneltypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3813,"kind":4194304,"name":"OrderConfirmationStatusEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#orderconfirmationstatusenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3814,"kind":4194304,"name":"OrderExportStatusEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#orderexportstatusenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3815,"kind":4194304,"name":"OrderPaymentStatusEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#orderpaymentstatusenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3816,"kind":4194304,"name":"OrderShippingStatusEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#ordershippingstatusenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3817,"kind":4194304,"name":"OrderStatusEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#orderstatusenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3818,"kind":4194304,"name":"OrderTaxationEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#ordertaxationenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3819,"kind":4194304,"name":"OrderAddress","url":"modules/shoppercustomers.shoppercustomerstypes.html#orderaddress","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3820,"kind":4194304,"name":"OrderPaymentInstrument","url":"modules/shoppercustomers.shoppercustomerstypes.html#orderpaymentinstrument","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3821,"kind":4194304,"name":"OrderPaymentInstrumentPaymentReference","url":"modules/shoppercustomers.shoppercustomerstypes.html#orderpaymentinstrumentpaymentreference","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3822,"kind":4194304,"name":"OrderPaymentInstrumentPaymentReferenceGatewayEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#orderpaymentinstrumentpaymentreferencegatewayenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3823,"kind":4194304,"name":"OrderPaymentInstrumentPaymentReferenceGatewayProperties","url":"modules/shoppercustomers.shoppercustomerstypes.html#orderpaymentinstrumentpaymentreferencegatewayproperties","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3824,"kind":4194304,"name":"OrderProductItem","url":"modules/shoppercustomers.shoppercustomerstypes.html#orderproductitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3825,"kind":4194304,"name":"PageMetaTag","url":"modules/shoppercustomers.shoppercustomerstypes.html#pagemetatag","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3826,"kind":4194304,"name":"PaginatedResultBase","url":"modules/shoppercustomers.shoppercustomerstypes.html#paginatedresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3827,"kind":4194304,"name":"PasswordChangeRequest","url":"modules/shoppercustomers.shoppercustomerstypes.html#passwordchangerequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3828,"kind":4194304,"name":"PaymentBankAccountRequest","url":"modules/shoppercustomers.shoppercustomerstypes.html#paymentbankaccountrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3829,"kind":4194304,"name":"PaymentCard","url":"modules/shoppercustomers.shoppercustomerstypes.html#paymentcard","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3830,"kind":4194304,"name":"PriceAdjustment","url":"modules/shoppercustomers.shoppercustomerstypes.html#priceadjustment","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3831,"kind":4194304,"name":"PriceRange","url":"modules/shoppercustomers.shoppercustomerstypes.html#pricerange","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3832,"kind":4194304,"name":"Product","url":"modules/shoppercustomers.shoppercustomerstypes.html#product","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3833,"kind":4194304,"name":"ProductDetailsLink","url":"modules/shoppercustomers.shoppercustomerstypes.html#productdetailslink","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3834,"kind":4194304,"name":"ProductItem","url":"modules/shoppercustomers.shoppercustomerstypes.html#productitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3835,"kind":4194304,"name":"ProductLink","url":"modules/shoppercustomers.shoppercustomerstypes.html#productlink","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3836,"kind":4194304,"name":"ProductLinkTypeEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#productlinktypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3837,"kind":4194304,"name":"ProductListEvent","url":"modules/shoppercustomers.shoppercustomerstypes.html#productlistevent","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3838,"kind":4194304,"name":"ProductListItemReference","url":"modules/shoppercustomers.shoppercustomerstypes.html#productlistitemreference","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3839,"kind":4194304,"name":"ProductListItemReferenceTypeEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#productlistitemreferencetypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3840,"kind":4194304,"name":"ProductListLink","url":"modules/shoppercustomers.shoppercustomerstypes.html#productlistlink","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3841,"kind":4194304,"name":"ProductListLinkTypeEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#productlistlinktypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3842,"kind":4194304,"name":"ProductListRegistrant","url":"modules/shoppercustomers.shoppercustomerstypes.html#productlistregistrant","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3843,"kind":4194304,"name":"ProductListShippingAddress","url":"modules/shoppercustomers.shoppercustomerstypes.html#productlistshippingaddress","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3844,"kind":4194304,"name":"ProductPriceTable","url":"modules/shoppercustomers.shoppercustomerstypes.html#productpricetable","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3845,"kind":4194304,"name":"ProductPromotion","url":"modules/shoppercustomers.shoppercustomerstypes.html#productpromotion","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3846,"kind":4194304,"name":"ProductType","url":"modules/shoppercustomers.shoppercustomerstypes.html#producttype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3847,"kind":4194304,"name":"PublicProductList","url":"modules/shoppercustomers.shoppercustomerstypes.html#publicproductlist","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3848,"kind":4194304,"name":"PublicProductListTypeEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#publicproductlisttypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3849,"kind":4194304,"name":"PublicProductListInfo","url":"modules/shoppercustomers.shoppercustomerstypes.html#publicproductlistinfo","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3850,"kind":4194304,"name":"PublicProductListInfoTypeEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#publicproductlistinfotypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3851,"kind":4194304,"name":"PublicProductListItem","url":"modules/shoppercustomers.shoppercustomerstypes.html#publicproductlistitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3852,"kind":4194304,"name":"PublicProductListItemTypeEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#publicproductlistitemtypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3853,"kind":4194304,"name":"PublicProductListItemResult","url":"modules/shoppercustomers.shoppercustomerstypes.html#publicproductlistitemresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3854,"kind":4194304,"name":"PublicProductListResult","url":"modules/shoppercustomers.shoppercustomerstypes.html#publicproductlistresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3855,"kind":4194304,"name":"Recommendation","url":"modules/shoppercustomers.shoppercustomerstypes.html#recommendation","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3856,"kind":4194304,"name":"RecommendationType","url":"modules/shoppercustomers.shoppercustomerstypes.html#recommendationtype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3857,"kind":4194304,"name":"ResetPasswordRequest","url":"modules/shoppercustomers.shoppercustomerstypes.html#resetpasswordrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3858,"kind":4194304,"name":"ResetPasswordToken","url":"modules/shoppercustomers.shoppercustomerstypes.html#resetpasswordtoken","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3859,"kind":4194304,"name":"ResetPasswordTokenRequest","url":"modules/shoppercustomers.shoppercustomerstypes.html#resetpasswordtokenrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3860,"kind":4194304,"name":"ResultBase","url":"modules/shoppercustomers.shoppercustomerstypes.html#resultbase","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3861,"kind":4194304,"name":"Shipment","url":"modules/shoppercustomers.shoppercustomerstypes.html#shipment","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3862,"kind":4194304,"name":"ShipmentShippingStatusEnum","url":"modules/shoppercustomers.shoppercustomerstypes.html#shipmentshippingstatusenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3863,"kind":4194304,"name":"ShippingItem","url":"modules/shoppercustomers.shoppercustomerstypes.html#shippingitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3864,"kind":4194304,"name":"ShippingMethod","url":"modules/shoppercustomers.shoppercustomerstypes.html#shippingmethod","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3865,"kind":4194304,"name":"ShippingPromotion","url":"modules/shoppercustomers.shoppercustomerstypes.html#shippingpromotion","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3866,"kind":4194304,"name":"Status","url":"modules/shoppercustomers.shoppercustomerstypes.html#status","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3867,"kind":4194304,"name":"Variant","url":"modules/shoppercustomers.shoppercustomerstypes.html#variant","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3868,"kind":4194304,"name":"VariationAttribute","url":"modules/shoppercustomers.shoppercustomerstypes.html#variationattribute","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3869,"kind":4194304,"name":"VariationAttributeValue","url":"modules/shoppercustomers.shoppercustomerstypes.html#variationattributevalue","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3870,"kind":4194304,"name":"VariationGroup","url":"modules/shoppercustomers.shoppercustomerstypes.html#variationgroup","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperCustomers.ShopperCustomersTypes"},{"id":3871,"kind":1,"name":"shopperExperience","url":"modules/shopperexperience.html","classes":"tsd-kind-module"},{"id":3872,"kind":32,"name":"defaultBaseUri","url":"modules/shopperexperience.html#defaultbaseuri-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"shopperExperience"},{"id":3873,"kind":4194304,"name":"Region","url":"modules/shopperexperience.html#region-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3874,"kind":4194304,"name":"Component","url":"modules/shopperexperience.html#component-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3875,"kind":4194304,"name":"Content","url":"modules/shopperexperience.html#content-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3876,"kind":4194304,"name":"ContentFolder","url":"modules/shopperexperience.html#contentfolder-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3877,"kind":4194304,"name":"ContentFolderResult","url":"modules/shopperexperience.html#contentfolderresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3878,"kind":4194304,"name":"ContentResult","url":"modules/shopperexperience.html#contentresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3879,"kind":4194304,"name":"ContentSearchRefinementValue","url":"modules/shopperexperience.html#contentsearchrefinementvalue-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3880,"kind":4194304,"name":"ContentSearchRefinement","url":"modules/shopperexperience.html#contentsearchrefinement-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3881,"kind":4194304,"name":"ContentSearchResult","url":"modules/shopperexperience.html#contentsearchresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3882,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperexperience.html#errorresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3883,"kind":4194304,"name":"LocaleCode","url":"modules/shopperexperience.html#localecode-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3884,"kind":4194304,"name":"Page","url":"modules/shopperexperience.html#page-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3885,"kind":4194304,"name":"PageResult","url":"modules/shopperexperience.html#pageresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3886,"kind":4194304,"name":"PaginatedResultBase","url":"modules/shopperexperience.html#paginatedresultbase-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3887,"kind":4194304,"name":"ResultBase","url":"modules/shopperexperience.html#resultbase-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3888,"kind":16777216,"name":"Component","url":"modules/shopperexperience.html#component","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3889,"kind":16777216,"name":"Content","url":"modules/shopperexperience.html#content","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3890,"kind":16777216,"name":"ContentFolder","url":"modules/shopperexperience.html#contentfolder","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3891,"kind":16777216,"name":"ContentFolderResult","url":"modules/shopperexperience.html#contentfolderresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3892,"kind":16777216,"name":"ContentResult","url":"modules/shopperexperience.html#contentresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3893,"kind":16777216,"name":"ContentSearchRefinement","url":"modules/shopperexperience.html#contentsearchrefinement","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3894,"kind":16777216,"name":"ContentSearchRefinementValue","url":"modules/shopperexperience.html#contentsearchrefinementvalue","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3895,"kind":16777216,"name":"ContentSearchResult","url":"modules/shopperexperience.html#contentsearchresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3896,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperexperience.html#errorresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3897,"kind":16777216,"name":"LocaleCode","url":"modules/shopperexperience.html#localecode","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3898,"kind":16777216,"name":"Page","url":"modules/shopperexperience.html#page","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3899,"kind":16777216,"name":"PageResult","url":"modules/shopperexperience.html#pageresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3900,"kind":16777216,"name":"PaginatedResultBase","url":"modules/shopperexperience.html#paginatedresultbase","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3901,"kind":16777216,"name":"Region","url":"modules/shopperexperience.html#region","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3902,"kind":16777216,"name":"ResultBase","url":"modules/shopperexperience.html#resultbase","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":3903,"kind":128,"name":"ShopperExperience","url":"classes/shopperexperience.shopperexperience-3.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"shopperExperience"},{"id":3904,"kind":1024,"name":"clientConfig","url":"classes/shopperexperience.shopperexperience-3.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class","parent":"shopperExperience.ShopperExperience"},{"id":3905,"kind":1024,"name":"defaultBaseUri","url":"classes/shopperexperience.shopperexperience-3.html#defaultbaseuri","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperExperience.ShopperExperience"},{"id":3906,"kind":2097152,"name":"apiPaths","url":"classes/shopperexperience.shopperexperience-3.html#apipaths","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-static","parent":"shopperExperience.ShopperExperience"},{"id":3907,"kind":32,"name":"getContent","url":"classes/shopperexperience.shopperexperience-3.html#apipaths.getcontent-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperExperience.ShopperExperience.apiPaths"},{"id":3908,"kind":32,"name":"getContentFolder","url":"classes/shopperexperience.shopperexperience-3.html#apipaths.getcontentfolder-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperExperience.ShopperExperience.apiPaths"},{"id":3909,"kind":32,"name":"getContentFolders","url":"classes/shopperexperience.shopperexperience-3.html#apipaths.getcontentfolders-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperExperience.ShopperExperience.apiPaths"},{"id":3910,"kind":32,"name":"getMultipleContent","url":"classes/shopperexperience.shopperexperience-3.html#apipaths.getmultiplecontent-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperExperience.ShopperExperience.apiPaths"},{"id":3911,"kind":32,"name":"getPage","url":"classes/shopperexperience.shopperexperience-3.html#apipaths.getpage-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperExperience.ShopperExperience.apiPaths"},{"id":3912,"kind":32,"name":"getPages","url":"classes/shopperexperience.shopperexperience-3.html#apipaths.getpages-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperExperience.ShopperExperience.apiPaths"},{"id":3913,"kind":32,"name":"searchContent","url":"classes/shopperexperience.shopperexperience-3.html#apipaths.searchcontent-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperExperience.ShopperExperience.apiPaths"},{"id":3914,"kind":512,"name":"constructor","url":"classes/shopperexperience.shopperexperience-3.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"shopperExperience.ShopperExperience"},{"id":3915,"kind":1024,"name":"paramKeys","url":"classes/shopperexperience.shopperexperience-3.html#paramkeys","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperExperience.ShopperExperience"},{"id":3916,"kind":65536,"name":"__type","url":"classes/shopperexperience.shopperexperience-3.html#paramkeys.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"shopperExperience.ShopperExperience.paramKeys"},{"id":3917,"kind":32,"name":"getContent","url":"classes/shopperexperience.shopperexperience-3.html#paramkeys.__type.getcontent","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.ShopperExperience.paramKeys.__type"},{"id":3918,"kind":32,"name":"getContentRequired","url":"classes/shopperexperience.shopperexperience-3.html#paramkeys.__type.getcontentrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.ShopperExperience.paramKeys.__type"},{"id":3919,"kind":32,"name":"getContentFolder","url":"classes/shopperexperience.shopperexperience-3.html#paramkeys.__type.getcontentfolder","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.ShopperExperience.paramKeys.__type"},{"id":3920,"kind":32,"name":"getContentFolderRequired","url":"classes/shopperexperience.shopperexperience-3.html#paramkeys.__type.getcontentfolderrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.ShopperExperience.paramKeys.__type"},{"id":3921,"kind":32,"name":"getContentFolders","url":"classes/shopperexperience.shopperexperience-3.html#paramkeys.__type.getcontentfolders","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.ShopperExperience.paramKeys.__type"},{"id":3922,"kind":32,"name":"getContentFoldersRequired","url":"classes/shopperexperience.shopperexperience-3.html#paramkeys.__type.getcontentfoldersrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.ShopperExperience.paramKeys.__type"},{"id":3923,"kind":32,"name":"getMultipleContent","url":"classes/shopperexperience.shopperexperience-3.html#paramkeys.__type.getmultiplecontent","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.ShopperExperience.paramKeys.__type"},{"id":3924,"kind":32,"name":"getMultipleContentRequired","url":"classes/shopperexperience.shopperexperience-3.html#paramkeys.__type.getmultiplecontentrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.ShopperExperience.paramKeys.__type"},{"id":3925,"kind":32,"name":"getPage","url":"classes/shopperexperience.shopperexperience-3.html#paramkeys.__type.getpage","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.ShopperExperience.paramKeys.__type"},{"id":3926,"kind":32,"name":"getPageRequired","url":"classes/shopperexperience.shopperexperience-3.html#paramkeys.__type.getpagerequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.ShopperExperience.paramKeys.__type"},{"id":3927,"kind":32,"name":"getPages","url":"classes/shopperexperience.shopperexperience-3.html#paramkeys.__type.getpages","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.ShopperExperience.paramKeys.__type"},{"id":3928,"kind":32,"name":"getPagesRequired","url":"classes/shopperexperience.shopperexperience-3.html#paramkeys.__type.getpagesrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.ShopperExperience.paramKeys.__type"},{"id":3929,"kind":32,"name":"searchContent","url":"classes/shopperexperience.shopperexperience-3.html#paramkeys.__type.searchcontent","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.ShopperExperience.paramKeys.__type"},{"id":3930,"kind":32,"name":"searchContentRequired","url":"classes/shopperexperience.shopperexperience-3.html#paramkeys.__type.searchcontentrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.ShopperExperience.paramKeys.__type"},{"id":3931,"kind":2048,"name":"getContent","url":"classes/shopperexperience.shopperexperience-3.html#getcontent-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperExperience.ShopperExperience"},{"id":3932,"kind":2048,"name":"getContentFolder","url":"classes/shopperexperience.shopperexperience-3.html#getcontentfolder-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperExperience.ShopperExperience"},{"id":3933,"kind":2048,"name":"getContentFolders","url":"classes/shopperexperience.shopperexperience-3.html#getcontentfolders-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperExperience.ShopperExperience"},{"id":3934,"kind":2048,"name":"getMultipleContent","url":"classes/shopperexperience.shopperexperience-3.html#getmultiplecontent-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperExperience.ShopperExperience"},{"id":3935,"kind":2048,"name":"getPage","url":"classes/shopperexperience.shopperexperience-3.html#getpage-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperExperience.ShopperExperience"},{"id":3936,"kind":2048,"name":"getPages","url":"classes/shopperexperience.shopperexperience-3.html#getpages-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperExperience.ShopperExperience"},{"id":3937,"kind":2048,"name":"searchContent","url":"classes/shopperexperience.shopperexperience-3.html#searchcontent-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperExperience.ShopperExperience"},{"id":3938,"kind":4194304,"name":"getContentQueryParameters","url":"modules/shopperexperience.html#getcontentqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3939,"kind":65536,"name":"__type","url":"modules/shopperexperience.html#getcontentqueryparameters-2.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperExperience.getContentQueryParameters"},{"id":3940,"kind":32,"name":"siteId","url":"modules/shopperexperience.html#getcontentqueryparameters-2.__type-5.siteid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getContentQueryParameters.__type"},{"id":3941,"kind":32,"name":"locale","url":"modules/shopperexperience.html#getcontentqueryparameters-2.__type-5.locale-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getContentQueryParameters.__type"},{"id":3942,"kind":4194304,"name":"getContentPathParameters","url":"modules/shopperexperience.html#getcontentpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3943,"kind":65536,"name":"__type","url":"modules/shopperexperience.html#getcontentpathparameters-2.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperExperience.getContentPathParameters"},{"id":3944,"kind":32,"name":"organizationId","url":"modules/shopperexperience.html#getcontentpathparameters-2.__type-4.organizationid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getContentPathParameters.__type"},{"id":3945,"kind":32,"name":"id","url":"modules/shopperexperience.html#getcontentpathparameters-2.__type-4.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getContentPathParameters.__type"},{"id":3946,"kind":4194304,"name":"getContentFolderQueryParameters","url":"modules/shopperexperience.html#getcontentfolderqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3947,"kind":65536,"name":"__type","url":"modules/shopperexperience.html#getcontentfolderqueryparameters-2.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperExperience.getContentFolderQueryParameters"},{"id":3948,"kind":32,"name":"levels","url":"modules/shopperexperience.html#getcontentfolderqueryparameters-2.__type-1.levels","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getContentFolderQueryParameters.__type"},{"id":3949,"kind":32,"name":"siteId","url":"modules/shopperexperience.html#getcontentfolderqueryparameters-2.__type-1.siteid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getContentFolderQueryParameters.__type"},{"id":3950,"kind":32,"name":"locale","url":"modules/shopperexperience.html#getcontentfolderqueryparameters-2.__type-1.locale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getContentFolderQueryParameters.__type"},{"id":3951,"kind":4194304,"name":"getContentFolderPathParameters","url":"modules/shopperexperience.html#getcontentfolderpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3952,"kind":65536,"name":"__type","url":"modules/shopperexperience.html#getcontentfolderpathparameters-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperExperience.getContentFolderPathParameters"},{"id":3953,"kind":32,"name":"organizationId","url":"modules/shopperexperience.html#getcontentfolderpathparameters-2.__type.organizationid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getContentFolderPathParameters.__type"},{"id":3954,"kind":32,"name":"id","url":"modules/shopperexperience.html#getcontentfolderpathparameters-2.__type.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getContentFolderPathParameters.__type"},{"id":3955,"kind":4194304,"name":"getContentFoldersQueryParameters","url":"modules/shopperexperience.html#getcontentfoldersqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3956,"kind":65536,"name":"__type","url":"modules/shopperexperience.html#getcontentfoldersqueryparameters-2.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperExperience.getContentFoldersQueryParameters"},{"id":3957,"kind":32,"name":"ids","url":"modules/shopperexperience.html#getcontentfoldersqueryparameters-2.__type-3.ids","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getContentFoldersQueryParameters.__type"},{"id":3958,"kind":32,"name":"levels","url":"modules/shopperexperience.html#getcontentfoldersqueryparameters-2.__type-3.levels-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getContentFoldersQueryParameters.__type"},{"id":3959,"kind":32,"name":"siteId","url":"modules/shopperexperience.html#getcontentfoldersqueryparameters-2.__type-3.siteid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getContentFoldersQueryParameters.__type"},{"id":3960,"kind":32,"name":"locale","url":"modules/shopperexperience.html#getcontentfoldersqueryparameters-2.__type-3.locale-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getContentFoldersQueryParameters.__type"},{"id":3961,"kind":4194304,"name":"getContentFoldersPathParameters","url":"modules/shopperexperience.html#getcontentfolderspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3962,"kind":65536,"name":"__type","url":"modules/shopperexperience.html#getcontentfolderspathparameters-2.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperExperience.getContentFoldersPathParameters"},{"id":3963,"kind":32,"name":"organizationId","url":"modules/shopperexperience.html#getcontentfolderspathparameters-2.__type-2.organizationid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getContentFoldersPathParameters.__type"},{"id":3964,"kind":4194304,"name":"getMultipleContentQueryParameters","url":"modules/shopperexperience.html#getmultiplecontentqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3965,"kind":65536,"name":"__type","url":"modules/shopperexperience.html#getmultiplecontentqueryparameters-2.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperExperience.getMultipleContentQueryParameters"},{"id":3966,"kind":32,"name":"ids","url":"modules/shopperexperience.html#getmultiplecontentqueryparameters-2.__type-7.ids-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getMultipleContentQueryParameters.__type"},{"id":3967,"kind":32,"name":"siteId","url":"modules/shopperexperience.html#getmultiplecontentqueryparameters-2.__type-7.siteid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getMultipleContentQueryParameters.__type"},{"id":3968,"kind":32,"name":"locale","url":"modules/shopperexperience.html#getmultiplecontentqueryparameters-2.__type-7.locale-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getMultipleContentQueryParameters.__type"},{"id":3969,"kind":4194304,"name":"getMultipleContentPathParameters","url":"modules/shopperexperience.html#getmultiplecontentpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3970,"kind":65536,"name":"__type","url":"modules/shopperexperience.html#getmultiplecontentpathparameters-2.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperExperience.getMultipleContentPathParameters"},{"id":3971,"kind":32,"name":"organizationId","url":"modules/shopperexperience.html#getmultiplecontentpathparameters-2.__type-6.organizationid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getMultipleContentPathParameters.__type"},{"id":3972,"kind":4194304,"name":"getPageQueryParameters","url":"modules/shopperexperience.html#getpagequeryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3973,"kind":65536,"name":"__type","url":"modules/shopperexperience.html#getpagequeryparameters-2.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperExperience.getPageQueryParameters"},{"id":3974,"kind":32,"name":"aspectAttributes","url":"modules/shopperexperience.html#getpagequeryparameters-2.__type-9.aspectattributes","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getPageQueryParameters.__type"},{"id":3975,"kind":32,"name":"parameters","url":"modules/shopperexperience.html#getpagequeryparameters-2.__type-9.parameters","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getPageQueryParameters.__type"},{"id":3976,"kind":32,"name":"siteId","url":"modules/shopperexperience.html#getpagequeryparameters-2.__type-9.siteid-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getPageQueryParameters.__type"},{"id":3977,"kind":32,"name":"locale","url":"modules/shopperexperience.html#getpagequeryparameters-2.__type-9.locale-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getPageQueryParameters.__type"},{"id":3978,"kind":4194304,"name":"getPagePathParameters","url":"modules/shopperexperience.html#getpagepathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3979,"kind":65536,"name":"__type","url":"modules/shopperexperience.html#getpagepathparameters-2.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperExperience.getPagePathParameters"},{"id":3980,"kind":32,"name":"pageId","url":"modules/shopperexperience.html#getpagepathparameters-2.__type-8.pageid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getPagePathParameters.__type"},{"id":3981,"kind":32,"name":"organizationId","url":"modules/shopperexperience.html#getpagepathparameters-2.__type-8.organizationid-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getPagePathParameters.__type"},{"id":3982,"kind":4194304,"name":"getPagesQueryParameters","url":"modules/shopperexperience.html#getpagesqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3983,"kind":65536,"name":"__type","url":"modules/shopperexperience.html#getpagesqueryparameters-2.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperExperience.getPagesQueryParameters"},{"id":3984,"kind":32,"name":"categoryId","url":"modules/shopperexperience.html#getpagesqueryparameters-2.__type-11.categoryid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getPagesQueryParameters.__type"},{"id":3985,"kind":32,"name":"productId","url":"modules/shopperexperience.html#getpagesqueryparameters-2.__type-11.productid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getPagesQueryParameters.__type"},{"id":3986,"kind":32,"name":"aspectTypeId","url":"modules/shopperexperience.html#getpagesqueryparameters-2.__type-11.aspecttypeid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getPagesQueryParameters.__type"},{"id":3987,"kind":32,"name":"aspectAttributes","url":"modules/shopperexperience.html#getpagesqueryparameters-2.__type-11.aspectattributes-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getPagesQueryParameters.__type"},{"id":3988,"kind":32,"name":"parameters","url":"modules/shopperexperience.html#getpagesqueryparameters-2.__type-11.parameters-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getPagesQueryParameters.__type"},{"id":3989,"kind":32,"name":"siteId","url":"modules/shopperexperience.html#getpagesqueryparameters-2.__type-11.siteid-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getPagesQueryParameters.__type"},{"id":3990,"kind":32,"name":"locale","url":"modules/shopperexperience.html#getpagesqueryparameters-2.__type-11.locale-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getPagesQueryParameters.__type"},{"id":3991,"kind":4194304,"name":"getPagesPathParameters","url":"modules/shopperexperience.html#getpagespathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3992,"kind":65536,"name":"__type","url":"modules/shopperexperience.html#getpagespathparameters-2.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperExperience.getPagesPathParameters"},{"id":3993,"kind":32,"name":"organizationId","url":"modules/shopperexperience.html#getpagespathparameters-2.__type-10.organizationid-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.getPagesPathParameters.__type"},{"id":3994,"kind":4194304,"name":"searchContentQueryParameters","url":"modules/shopperexperience.html#searchcontentqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":3995,"kind":65536,"name":"__type","url":"modules/shopperexperience.html#searchcontentqueryparameters-2.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperExperience.searchContentQueryParameters"},{"id":3996,"kind":32,"name":"q","url":"modules/shopperexperience.html#searchcontentqueryparameters-2.__type-13.q","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.searchContentQueryParameters.__type"},{"id":3997,"kind":32,"name":"refine","url":"modules/shopperexperience.html#searchcontentqueryparameters-2.__type-13.refine","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.searchContentQueryParameters.__type"},{"id":3998,"kind":32,"name":"sort","url":"modules/shopperexperience.html#searchcontentqueryparameters-2.__type-13.sort","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.searchContentQueryParameters.__type"},{"id":3999,"kind":32,"name":"siteId","url":"modules/shopperexperience.html#searchcontentqueryparameters-2.__type-13.siteid-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.searchContentQueryParameters.__type"},{"id":4000,"kind":32,"name":"locale","url":"modules/shopperexperience.html#searchcontentqueryparameters-2.__type-13.locale-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.searchContentQueryParameters.__type"},{"id":4001,"kind":32,"name":"limit","url":"modules/shopperexperience.html#searchcontentqueryparameters-2.__type-13.limit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.searchContentQueryParameters.__type"},{"id":4002,"kind":32,"name":"offset","url":"modules/shopperexperience.html#searchcontentqueryparameters-2.__type-13.offset","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.searchContentQueryParameters.__type"},{"id":4003,"kind":4194304,"name":"searchContentPathParameters","url":"modules/shopperexperience.html#searchcontentpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":4004,"kind":65536,"name":"__type","url":"modules/shopperexperience.html#searchcontentpathparameters-2.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperExperience.searchContentPathParameters"},{"id":4005,"kind":32,"name":"organizationId","url":"modules/shopperexperience.html#searchcontentpathparameters-2.__type-12.organizationid-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperExperience.searchContentPathParameters.__type"},{"id":4006,"kind":4194304,"name":"ShopperExperiencePathParameters","url":"modules/shopperexperience.html#shopperexperiencepathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":4007,"kind":4194304,"name":"ShopperExperienceQueryParameters","url":"modules/shopperexperience.html#shopperexperiencequeryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":4008,"kind":4194304,"name":"ShopperExperienceParameters","url":"modules/shopperexperience.html#shopperexperienceparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperExperience"},{"id":4009,"kind":16777216,"name":"getContentQueryParameters","url":"modules/shopperexperience.html#getcontentqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4010,"kind":16777216,"name":"getContentPathParameters","url":"modules/shopperexperience.html#getcontentpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4011,"kind":16777216,"name":"getContentFolderQueryParameters","url":"modules/shopperexperience.html#getcontentfolderqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4012,"kind":16777216,"name":"getContentFolderPathParameters","url":"modules/shopperexperience.html#getcontentfolderpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4013,"kind":16777216,"name":"getContentFoldersQueryParameters","url":"modules/shopperexperience.html#getcontentfoldersqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4014,"kind":16777216,"name":"getContentFoldersPathParameters","url":"modules/shopperexperience.html#getcontentfolderspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4015,"kind":16777216,"name":"getMultipleContentQueryParameters","url":"modules/shopperexperience.html#getmultiplecontentqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4016,"kind":16777216,"name":"getMultipleContentPathParameters","url":"modules/shopperexperience.html#getmultiplecontentpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4017,"kind":16777216,"name":"getPageQueryParameters","url":"modules/shopperexperience.html#getpagequeryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4018,"kind":16777216,"name":"getPagePathParameters","url":"modules/shopperexperience.html#getpagepathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4019,"kind":16777216,"name":"getPagesQueryParameters","url":"modules/shopperexperience.html#getpagesqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4020,"kind":16777216,"name":"getPagesPathParameters","url":"modules/shopperexperience.html#getpagespathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4021,"kind":16777216,"name":"searchContentQueryParameters","url":"modules/shopperexperience.html#searchcontentqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4022,"kind":16777216,"name":"searchContentPathParameters","url":"modules/shopperexperience.html#searchcontentpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4023,"kind":16777216,"name":"ShopperExperiencePathParameters","url":"modules/shopperexperience.html#shopperexperiencepathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4024,"kind":16777216,"name":"ShopperExperienceQueryParameters","url":"modules/shopperexperience.html#shopperexperiencequeryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4025,"kind":16777216,"name":"ShopperExperienceParameters","url":"modules/shopperexperience.html#shopperexperienceparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4026,"kind":16777216,"name":"ShopperExperience","url":"modules/shopperexperience.html#shopperexperience-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4027,"kind":16777216,"name":"defaultBaseUri","url":"modules/shopperexperience.html#defaultbaseuri","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4028,"kind":16777216,"name":"getContentQueryParameters","url":"modules/shopperexperience.html#getcontentqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4029,"kind":16777216,"name":"getContentPathParameters","url":"modules/shopperexperience.html#getcontentpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4030,"kind":16777216,"name":"getContentFolderQueryParameters","url":"modules/shopperexperience.html#getcontentfolderqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4031,"kind":16777216,"name":"getContentFolderPathParameters","url":"modules/shopperexperience.html#getcontentfolderpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4032,"kind":16777216,"name":"getContentFoldersQueryParameters","url":"modules/shopperexperience.html#getcontentfoldersqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4033,"kind":16777216,"name":"getContentFoldersPathParameters","url":"modules/shopperexperience.html#getcontentfolderspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4034,"kind":16777216,"name":"getMultipleContentQueryParameters","url":"modules/shopperexperience.html#getmultiplecontentqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4035,"kind":16777216,"name":"getMultipleContentPathParameters","url":"modules/shopperexperience.html#getmultiplecontentpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4036,"kind":16777216,"name":"getPageQueryParameters","url":"modules/shopperexperience.html#getpagequeryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4037,"kind":16777216,"name":"getPagePathParameters","url":"modules/shopperexperience.html#getpagepathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4038,"kind":16777216,"name":"getPagesQueryParameters","url":"modules/shopperexperience.html#getpagesqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4039,"kind":16777216,"name":"getPagesPathParameters","url":"modules/shopperexperience.html#getpagespathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4040,"kind":16777216,"name":"searchContentQueryParameters","url":"modules/shopperexperience.html#searchcontentqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4041,"kind":16777216,"name":"searchContentPathParameters","url":"modules/shopperexperience.html#searchcontentpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4042,"kind":16777216,"name":"ShopperExperiencePathParameters","url":"modules/shopperexperience.html#shopperexperiencepathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4043,"kind":16777216,"name":"ShopperExperienceQueryParameters","url":"modules/shopperexperience.html#shopperexperiencequeryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4044,"kind":16777216,"name":"ShopperExperienceParameters","url":"modules/shopperexperience.html#shopperexperienceparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4045,"kind":16777216,"name":"ShopperExperience","url":"modules/shopperexperience.html#shopperexperience-2","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4046,"kind":16777216,"name":"Component","url":"modules/shopperexperience.html#component-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4047,"kind":16777216,"name":"Content","url":"modules/shopperexperience.html#content-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4048,"kind":16777216,"name":"ContentFolder","url":"modules/shopperexperience.html#contentfolder-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4049,"kind":16777216,"name":"ContentFolderResult","url":"modules/shopperexperience.html#contentfolderresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4050,"kind":16777216,"name":"ContentResult","url":"modules/shopperexperience.html#contentresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4051,"kind":16777216,"name":"ContentSearchRefinement","url":"modules/shopperexperience.html#contentsearchrefinement-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4052,"kind":16777216,"name":"ContentSearchRefinementValue","url":"modules/shopperexperience.html#contentsearchrefinementvalue-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4053,"kind":16777216,"name":"ContentSearchResult","url":"modules/shopperexperience.html#contentsearchresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4054,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperexperience.html#errorresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4055,"kind":16777216,"name":"LocaleCode","url":"modules/shopperexperience.html#localecode-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4056,"kind":16777216,"name":"Page","url":"modules/shopperexperience.html#page-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4057,"kind":16777216,"name":"PageResult","url":"modules/shopperexperience.html#pageresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4058,"kind":16777216,"name":"PaginatedResultBase","url":"modules/shopperexperience.html#paginatedresultbase-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4059,"kind":16777216,"name":"Region","url":"modules/shopperexperience.html#region-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4060,"kind":16777216,"name":"ResultBase","url":"modules/shopperexperience.html#resultbase-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperExperience"},{"id":4061,"kind":2,"name":"ShopperExperienceTypes","url":"modules/shopperexperience.shopperexperiencetypes.html","classes":"tsd-kind-namespace tsd-parent-kind-module","parent":"shopperExperience"},{"id":4062,"kind":4194304,"name":"ShopperExperiencePathParameters","url":"modules/shopperexperience.shopperexperiencetypes.html#shopperexperiencepathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":4063,"kind":4194304,"name":"ShopperExperienceQueryParameters","url":"modules/shopperexperience.shopperexperiencetypes.html#shopperexperiencequeryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":4064,"kind":4194304,"name":"getContentQueryParameters","url":"modules/shopperexperience.shopperexperiencetypes.html#getcontentqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":4065,"kind":4194304,"name":"getContentPathParameters","url":"modules/shopperexperience.shopperexperiencetypes.html#getcontentpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":4066,"kind":4194304,"name":"getContentFolderQueryParameters","url":"modules/shopperexperience.shopperexperiencetypes.html#getcontentfolderqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":4067,"kind":4194304,"name":"getContentFolderPathParameters","url":"modules/shopperexperience.shopperexperiencetypes.html#getcontentfolderpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":4068,"kind":4194304,"name":"getContentFoldersQueryParameters","url":"modules/shopperexperience.shopperexperiencetypes.html#getcontentfoldersqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":4069,"kind":4194304,"name":"getContentFoldersPathParameters","url":"modules/shopperexperience.shopperexperiencetypes.html#getcontentfolderspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":4070,"kind":4194304,"name":"getMultipleContentQueryParameters","url":"modules/shopperexperience.shopperexperiencetypes.html#getmultiplecontentqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":4071,"kind":4194304,"name":"getMultipleContentPathParameters","url":"modules/shopperexperience.shopperexperiencetypes.html#getmultiplecontentpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":4072,"kind":4194304,"name":"getPageQueryParameters","url":"modules/shopperexperience.shopperexperiencetypes.html#getpagequeryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":4073,"kind":4194304,"name":"getPagePathParameters","url":"modules/shopperexperience.shopperexperiencetypes.html#getpagepathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":4074,"kind":4194304,"name":"getPagesQueryParameters","url":"modules/shopperexperience.shopperexperiencetypes.html#getpagesqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":4075,"kind":4194304,"name":"getPagesPathParameters","url":"modules/shopperexperience.shopperexperiencetypes.html#getpagespathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":4076,"kind":4194304,"name":"searchContentQueryParameters","url":"modules/shopperexperience.shopperexperiencetypes.html#searchcontentqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":4077,"kind":4194304,"name":"searchContentPathParameters","url":"modules/shopperexperience.shopperexperiencetypes.html#searchcontentpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":4078,"kind":4194304,"name":"Component","url":"modules/shopperexperience.shopperexperiencetypes.html#component","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":4079,"kind":4194304,"name":"Content","url":"modules/shopperexperience.shopperexperiencetypes.html#content","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":4080,"kind":4194304,"name":"ContentFolder","url":"modules/shopperexperience.shopperexperiencetypes.html#contentfolder","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":4081,"kind":4194304,"name":"ContentFolderResult","url":"modules/shopperexperience.shopperexperiencetypes.html#contentfolderresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":4082,"kind":4194304,"name":"ContentResult","url":"modules/shopperexperience.shopperexperiencetypes.html#contentresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":4083,"kind":4194304,"name":"ContentSearchRefinement","url":"modules/shopperexperience.shopperexperiencetypes.html#contentsearchrefinement","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":4084,"kind":4194304,"name":"ContentSearchRefinementValue","url":"modules/shopperexperience.shopperexperiencetypes.html#contentsearchrefinementvalue","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":4085,"kind":4194304,"name":"ContentSearchResult","url":"modules/shopperexperience.shopperexperiencetypes.html#contentsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":4086,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperexperience.shopperexperiencetypes.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":4087,"kind":4194304,"name":"LocaleCode","url":"modules/shopperexperience.shopperexperiencetypes.html#localecode","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":4088,"kind":4194304,"name":"Page","url":"modules/shopperexperience.shopperexperiencetypes.html#page","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":4089,"kind":4194304,"name":"PageResult","url":"modules/shopperexperience.shopperexperiencetypes.html#pageresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":4090,"kind":4194304,"name":"PaginatedResultBase","url":"modules/shopperexperience.shopperexperiencetypes.html#paginatedresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":4091,"kind":4194304,"name":"Region","url":"modules/shopperexperience.shopperexperiencetypes.html#region","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":4092,"kind":4194304,"name":"ResultBase","url":"modules/shopperexperience.shopperexperiencetypes.html#resultbase","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperExperience.ShopperExperienceTypes"},{"id":4093,"kind":1,"name":"shopperGiftCertificates","url":"modules/shoppergiftcertificates.html","classes":"tsd-kind-module"},{"id":4094,"kind":32,"name":"defaultBaseUri","url":"modules/shoppergiftcertificates.html#defaultbaseuri-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":4095,"kind":4194304,"name":"ErrorResponse","url":"modules/shoppergiftcertificates.html#errorresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":4096,"kind":4194304,"name":"GiftCertificate","url":"modules/shoppergiftcertificates.html#giftcertificate-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":4097,"kind":4194304,"name":"GiftCertificateStatusEnum","url":"modules/shoppergiftcertificates.html#giftcertificatestatusenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":4098,"kind":4194304,"name":"GiftCertificateRequest","url":"modules/shoppergiftcertificates.html#giftcertificaterequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":4099,"kind":16777216,"name":"ErrorResponse","url":"modules/shoppergiftcertificates.html#errorresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":4100,"kind":16777216,"name":"GiftCertificate","url":"modules/shoppergiftcertificates.html#giftcertificate","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":4101,"kind":16777216,"name":"GiftCertificateStatusEnum","url":"modules/shoppergiftcertificates.html#giftcertificatestatusenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":4102,"kind":16777216,"name":"GiftCertificateRequest","url":"modules/shoppergiftcertificates.html#giftcertificaterequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":4103,"kind":128,"name":"ShopperGiftCertificates","url":"classes/shoppergiftcertificates.shoppergiftcertificates-3.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"shopperGiftCertificates"},{"id":4104,"kind":1024,"name":"clientConfig","url":"classes/shoppergiftcertificates.shoppergiftcertificates-3.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class","parent":"shopperGiftCertificates.ShopperGiftCertificates"},{"id":4105,"kind":1024,"name":"defaultBaseUri","url":"classes/shoppergiftcertificates.shoppergiftcertificates-3.html#defaultbaseuri","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperGiftCertificates.ShopperGiftCertificates"},{"id":4106,"kind":2097152,"name":"apiPaths","url":"classes/shoppergiftcertificates.shoppergiftcertificates-3.html#apipaths","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-static","parent":"shopperGiftCertificates.ShopperGiftCertificates"},{"id":4107,"kind":32,"name":"getGiftCertificate","url":"classes/shoppergiftcertificates.shoppergiftcertificates-3.html#apipaths.getgiftcertificate-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperGiftCertificates.ShopperGiftCertificates.apiPaths"},{"id":4108,"kind":512,"name":"constructor","url":"classes/shoppergiftcertificates.shoppergiftcertificates-3.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"shopperGiftCertificates.ShopperGiftCertificates"},{"id":4109,"kind":1024,"name":"paramKeys","url":"classes/shoppergiftcertificates.shoppergiftcertificates-3.html#paramkeys","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperGiftCertificates.ShopperGiftCertificates"},{"id":4110,"kind":65536,"name":"__type","url":"classes/shoppergiftcertificates.shoppergiftcertificates-3.html#paramkeys.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"shopperGiftCertificates.ShopperGiftCertificates.paramKeys"},{"id":4111,"kind":32,"name":"getGiftCertificate","url":"classes/shoppergiftcertificates.shoppergiftcertificates-3.html#paramkeys.__type.getgiftcertificate","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperGiftCertificates.ShopperGiftCertificates.paramKeys.__type"},{"id":4112,"kind":32,"name":"getGiftCertificateRequired","url":"classes/shoppergiftcertificates.shoppergiftcertificates-3.html#paramkeys.__type.getgiftcertificaterequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperGiftCertificates.ShopperGiftCertificates.paramKeys.__type"},{"id":4113,"kind":2048,"name":"getGiftCertificate","url":"classes/shoppergiftcertificates.shoppergiftcertificates-3.html#getgiftcertificate-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperGiftCertificates.ShopperGiftCertificates"},{"id":4114,"kind":4194304,"name":"getGiftCertificateQueryParameters","url":"modules/shoppergiftcertificates.html#getgiftcertificatequeryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":4115,"kind":65536,"name":"__type","url":"modules/shoppergiftcertificates.html#getgiftcertificatequeryparameters-2.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperGiftCertificates.getGiftCertificateQueryParameters"},{"id":4116,"kind":32,"name":"siteId","url":"modules/shoppergiftcertificates.html#getgiftcertificatequeryparameters-2.__type-1.siteid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperGiftCertificates.getGiftCertificateQueryParameters.__type"},{"id":4117,"kind":4194304,"name":"getGiftCertificatePathParameters","url":"modules/shoppergiftcertificates.html#getgiftcertificatepathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":4118,"kind":65536,"name":"__type","url":"modules/shoppergiftcertificates.html#getgiftcertificatepathparameters-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperGiftCertificates.getGiftCertificatePathParameters"},{"id":4119,"kind":32,"name":"organizationId","url":"modules/shoppergiftcertificates.html#getgiftcertificatepathparameters-2.__type.organizationid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperGiftCertificates.getGiftCertificatePathParameters.__type"},{"id":4120,"kind":4194304,"name":"ShopperGiftCertificatesPathParameters","url":"modules/shoppergiftcertificates.html#shoppergiftcertificatespathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":4121,"kind":4194304,"name":"ShopperGiftCertificatesQueryParameters","url":"modules/shoppergiftcertificates.html#shoppergiftcertificatesqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":4122,"kind":4194304,"name":"ShopperGiftCertificatesParameters","url":"modules/shoppergiftcertificates.html#shoppergiftcertificatesparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":4123,"kind":16777216,"name":"getGiftCertificateQueryParameters","url":"modules/shoppergiftcertificates.html#getgiftcertificatequeryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":4124,"kind":16777216,"name":"getGiftCertificatePathParameters","url":"modules/shoppergiftcertificates.html#getgiftcertificatepathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":4125,"kind":16777216,"name":"ShopperGiftCertificatesPathParameters","url":"modules/shoppergiftcertificates.html#shoppergiftcertificatespathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":4126,"kind":16777216,"name":"ShopperGiftCertificatesQueryParameters","url":"modules/shoppergiftcertificates.html#shoppergiftcertificatesqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":4127,"kind":16777216,"name":"ShopperGiftCertificatesParameters","url":"modules/shoppergiftcertificates.html#shoppergiftcertificatesparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":4128,"kind":16777216,"name":"ShopperGiftCertificates","url":"modules/shoppergiftcertificates.html#shoppergiftcertificates-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":4129,"kind":16777216,"name":"defaultBaseUri","url":"modules/shoppergiftcertificates.html#defaultbaseuri","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":4130,"kind":16777216,"name":"getGiftCertificateQueryParameters","url":"modules/shoppergiftcertificates.html#getgiftcertificatequeryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":4131,"kind":16777216,"name":"getGiftCertificatePathParameters","url":"modules/shoppergiftcertificates.html#getgiftcertificatepathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":4132,"kind":16777216,"name":"ShopperGiftCertificatesPathParameters","url":"modules/shoppergiftcertificates.html#shoppergiftcertificatespathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":4133,"kind":16777216,"name":"ShopperGiftCertificatesQueryParameters","url":"modules/shoppergiftcertificates.html#shoppergiftcertificatesqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":4134,"kind":16777216,"name":"ShopperGiftCertificatesParameters","url":"modules/shoppergiftcertificates.html#shoppergiftcertificatesparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":4135,"kind":16777216,"name":"ShopperGiftCertificates","url":"modules/shoppergiftcertificates.html#shoppergiftcertificates-2","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":4136,"kind":16777216,"name":"ErrorResponse","url":"modules/shoppergiftcertificates.html#errorresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":4137,"kind":16777216,"name":"GiftCertificate","url":"modules/shoppergiftcertificates.html#giftcertificate-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":4138,"kind":16777216,"name":"GiftCertificateStatusEnum","url":"modules/shoppergiftcertificates.html#giftcertificatestatusenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":4139,"kind":16777216,"name":"GiftCertificateRequest","url":"modules/shoppergiftcertificates.html#giftcertificaterequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":4140,"kind":2,"name":"ShopperGiftCertificatesTypes","url":"modules/shoppergiftcertificates.shoppergiftcertificatestypes.html","classes":"tsd-kind-namespace tsd-parent-kind-module","parent":"shopperGiftCertificates"},{"id":4141,"kind":4194304,"name":"ShopperGiftCertificatesPathParameters","url":"modules/shoppergiftcertificates.shoppergiftcertificatestypes.html#shoppergiftcertificatespathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperGiftCertificates.ShopperGiftCertificatesTypes"},{"id":4142,"kind":4194304,"name":"ShopperGiftCertificatesQueryParameters","url":"modules/shoppergiftcertificates.shoppergiftcertificatestypes.html#shoppergiftcertificatesqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperGiftCertificates.ShopperGiftCertificatesTypes"},{"id":4143,"kind":4194304,"name":"getGiftCertificateQueryParameters","url":"modules/shoppergiftcertificates.shoppergiftcertificatestypes.html#getgiftcertificatequeryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperGiftCertificates.ShopperGiftCertificatesTypes"},{"id":4144,"kind":4194304,"name":"getGiftCertificatePathParameters","url":"modules/shoppergiftcertificates.shoppergiftcertificatestypes.html#getgiftcertificatepathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperGiftCertificates.ShopperGiftCertificatesTypes"},{"id":4145,"kind":4194304,"name":"ErrorResponse","url":"modules/shoppergiftcertificates.shoppergiftcertificatestypes.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperGiftCertificates.ShopperGiftCertificatesTypes"},{"id":4146,"kind":4194304,"name":"GiftCertificate","url":"modules/shoppergiftcertificates.shoppergiftcertificatestypes.html#giftcertificate","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperGiftCertificates.ShopperGiftCertificatesTypes"},{"id":4147,"kind":4194304,"name":"GiftCertificateStatusEnum","url":"modules/shoppergiftcertificates.shoppergiftcertificatestypes.html#giftcertificatestatusenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperGiftCertificates.ShopperGiftCertificatesTypes"},{"id":4148,"kind":4194304,"name":"GiftCertificateRequest","url":"modules/shoppergiftcertificates.shoppergiftcertificatestypes.html#giftcertificaterequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperGiftCertificates.ShopperGiftCertificatesTypes"},{"id":4149,"kind":16777216,"name":"defaultBaseUri","url":"modules/shopperlogin.html#defaultbaseuri","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4150,"kind":16777216,"name":"AuthorizeCustomerResponseTypeEnum","url":"modules/shopperlogin.html#authorizecustomerresponsetypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4151,"kind":16777216,"name":"AuthorizeCustomerScopeEnum","url":"modules/shopperlogin.html#authorizecustomerscopeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4152,"kind":16777216,"name":"AuthorizePasswordlessCustomerModeEnum","url":"modules/shopperlogin.html#authorizepasswordlesscustomermodeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4153,"kind":16777216,"name":"AuthorizeWebauthnRegistrationModeEnum","url":"modules/shopperlogin.html#authorizewebauthnregistrationmodeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4154,"kind":16777216,"name":"GetPasswordLessAccessTokenGrantTypeEnum","url":"modules/shopperlogin.html#getpasswordlessaccesstokengranttypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4155,"kind":16777216,"name":"GetPasswordResetTokenModeEnum","url":"modules/shopperlogin.html#getpasswordresettokenmodeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4156,"kind":16777216,"name":"GetSessionBridgeAccessTokenGrantTypeEnum","url":"modules/shopperlogin.html#getsessionbridgeaccesstokengranttypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4157,"kind":16777216,"name":"GetTrustedAgentAccessTokenGrantTypeEnum","url":"modules/shopperlogin.html#gettrustedagentaccesstokengranttypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4158,"kind":16777216,"name":"GetTrustedAgentAuthorizationTokenResponseTypeEnum","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenresponsetypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4159,"kind":16777216,"name":"GetTrustedSystemAccessTokenGrantTypeEnum","url":"modules/shopperlogin.html#gettrustedsystemaccesstokengranttypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4160,"kind":16777216,"name":"GetTrustedSystemAccessTokenHintEnum","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenhintenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4161,"kind":16777216,"name":"GetTrustedSystemAccessTokenIdpOriginEnum","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenidporiginenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4162,"kind":16777216,"name":"IntrospectTokenTokenTypeHintEnum","url":"modules/shopperlogin.html#introspecttokentokentypehintenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4163,"kind":16777216,"name":"LogoutCustomerHintEnum","url":"modules/shopperlogin.html#logoutcustomerhintenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4164,"kind":16777216,"name":"RevokeTokenTokenTypeHintEnum","url":"modules/shopperlogin.html#revoketokentokentypehintenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4165,"kind":16777216,"name":"authenticateCustomerQueryParameters","url":"modules/shopperlogin.html#authenticatecustomerqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4166,"kind":16777216,"name":"authenticateCustomerPathParameters","url":"modules/shopperlogin.html#authenticatecustomerpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4167,"kind":16777216,"name":"authenticateCustomerBodyType","url":"modules/shopperlogin.html#authenticatecustomerbodytype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4168,"kind":16777216,"name":"authorizeCustomerQueryParameters","url":"modules/shopperlogin.html#authorizecustomerqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4169,"kind":16777216,"name":"authorizeCustomerPathParameters","url":"modules/shopperlogin.html#authorizecustomerpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4170,"kind":16777216,"name":"authorizePasswordlessCustomerQueryParameters","url":"modules/shopperlogin.html#authorizepasswordlesscustomerqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4171,"kind":16777216,"name":"authorizePasswordlessCustomerPathParameters","url":"modules/shopperlogin.html#authorizepasswordlesscustomerpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4172,"kind":16777216,"name":"authorizePasswordlessCustomerBodyType","url":"modules/shopperlogin.html#authorizepasswordlesscustomerbodytype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4173,"kind":16777216,"name":"authorizeWebauthnRegistrationQueryParameters","url":"modules/shopperlogin.html#authorizewebauthnregistrationqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4174,"kind":16777216,"name":"authorizeWebauthnRegistrationPathParameters","url":"modules/shopperlogin.html#authorizewebauthnregistrationpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4175,"kind":16777216,"name":"authorizeWebauthnRegistrationBodyType","url":"modules/shopperlogin.html#authorizewebauthnregistrationbodytype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4176,"kind":16777216,"name":"deletePasskeyCredentialQueryParameters","url":"modules/shopperlogin.html#deletepasskeycredentialqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4177,"kind":16777216,"name":"deletePasskeyCredentialPathParameters","url":"modules/shopperlogin.html#deletepasskeycredentialpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4178,"kind":16777216,"name":"deletePasskeyUserQueryParameters","url":"modules/shopperlogin.html#deletepasskeyuserqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4179,"kind":16777216,"name":"deletePasskeyUserPathParameters","url":"modules/shopperlogin.html#deletepasskeyuserpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4180,"kind":16777216,"name":"finishWebauthnAuthenticationQueryParameters","url":"modules/shopperlogin.html#finishwebauthnauthenticationqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4181,"kind":16777216,"name":"finishWebauthnAuthenticationPathParameters","url":"modules/shopperlogin.html#finishwebauthnauthenticationpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4182,"kind":16777216,"name":"finishWebauthnUserRegistrationQueryParameters","url":"modules/shopperlogin.html#finishwebauthnuserregistrationqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4183,"kind":16777216,"name":"finishWebauthnUserRegistrationPathParameters","url":"modules/shopperlogin.html#finishwebauthnuserregistrationpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4184,"kind":16777216,"name":"getAccessTokenQueryParameters","url":"modules/shopperlogin.html#getaccesstokenqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4185,"kind":16777216,"name":"getAccessTokenPathParameters","url":"modules/shopperlogin.html#getaccesstokenpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4186,"kind":16777216,"name":"getAccessTokenBodyType","url":"modules/shopperlogin.html#getaccesstokenbodytype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4187,"kind":16777216,"name":"getJwksUriQueryParameters","url":"modules/shopperlogin.html#getjwksuriqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4188,"kind":16777216,"name":"getJwksUriPathParameters","url":"modules/shopperlogin.html#getjwksuripathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4189,"kind":16777216,"name":"getPasskeyUserByLoginIdQueryParameters","url":"modules/shopperlogin.html#getpasskeyuserbyloginidqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4190,"kind":16777216,"name":"getPasskeyUserByLoginIdPathParameters","url":"modules/shopperlogin.html#getpasskeyuserbyloginidpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4191,"kind":16777216,"name":"getPasswordLessAccessTokenQueryParameters","url":"modules/shopperlogin.html#getpasswordlessaccesstokenqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4192,"kind":16777216,"name":"getPasswordLessAccessTokenPathParameters","url":"modules/shopperlogin.html#getpasswordlessaccesstokenpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4193,"kind":16777216,"name":"getPasswordLessAccessTokenBodyType","url":"modules/shopperlogin.html#getpasswordlessaccesstokenbodytype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4194,"kind":16777216,"name":"getPasswordResetTokenQueryParameters","url":"modules/shopperlogin.html#getpasswordresettokenqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4195,"kind":16777216,"name":"getPasswordResetTokenPathParameters","url":"modules/shopperlogin.html#getpasswordresettokenpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4196,"kind":16777216,"name":"getPasswordResetTokenBodyType","url":"modules/shopperlogin.html#getpasswordresettokenbodytype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4197,"kind":16777216,"name":"getSessionBridgeAccessTokenQueryParameters","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4198,"kind":16777216,"name":"getSessionBridgeAccessTokenPathParameters","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4199,"kind":16777216,"name":"getSessionBridgeAccessTokenBodyType","url":"modules/shopperlogin.html#getsessionbridgeaccesstokenbodytype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4200,"kind":16777216,"name":"getTrustedAgentAccessTokenQueryParameters","url":"modules/shopperlogin.html#gettrustedagentaccesstokenqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4201,"kind":16777216,"name":"getTrustedAgentAccessTokenPathParameters","url":"modules/shopperlogin.html#gettrustedagentaccesstokenpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4202,"kind":16777216,"name":"getTrustedAgentAccessTokenBodyType","url":"modules/shopperlogin.html#gettrustedagentaccesstokenbodytype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4203,"kind":16777216,"name":"getTrustedAgentAuthorizationTokenQueryParameters","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4204,"kind":16777216,"name":"getTrustedAgentAuthorizationTokenPathParameters","url":"modules/shopperlogin.html#gettrustedagentauthorizationtokenpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4205,"kind":16777216,"name":"getTrustedSystemAccessTokenQueryParameters","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4206,"kind":16777216,"name":"getTrustedSystemAccessTokenPathParameters","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4207,"kind":16777216,"name":"getTrustedSystemAccessTokenBodyType","url":"modules/shopperlogin.html#gettrustedsystemaccesstokenbodytype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4208,"kind":16777216,"name":"getUserInfoQueryParameters","url":"modules/shopperlogin.html#getuserinfoqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4209,"kind":16777216,"name":"getUserInfoPathParameters","url":"modules/shopperlogin.html#getuserinfopathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4210,"kind":16777216,"name":"getWellknownOpenidConfigurationQueryParameters","url":"modules/shopperlogin.html#getwellknownopenidconfigurationqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4211,"kind":16777216,"name":"getWellknownOpenidConfigurationPathParameters","url":"modules/shopperlogin.html#getwellknownopenidconfigurationpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4212,"kind":16777216,"name":"introspectTokenQueryParameters","url":"modules/shopperlogin.html#introspecttokenqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4213,"kind":16777216,"name":"introspectTokenPathParameters","url":"modules/shopperlogin.html#introspecttokenpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4214,"kind":16777216,"name":"introspectTokenBodyType","url":"modules/shopperlogin.html#introspecttokenbodytype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4215,"kind":16777216,"name":"logoutCustomerQueryParameters","url":"modules/shopperlogin.html#logoutcustomerqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4216,"kind":16777216,"name":"logoutCustomerPathParameters","url":"modules/shopperlogin.html#logoutcustomerpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4217,"kind":16777216,"name":"resetPasswordQueryParameters","url":"modules/shopperlogin.html#resetpasswordqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4218,"kind":16777216,"name":"resetPasswordPathParameters","url":"modules/shopperlogin.html#resetpasswordpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4219,"kind":16777216,"name":"resetPasswordBodyType","url":"modules/shopperlogin.html#resetpasswordbodytype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4220,"kind":16777216,"name":"revokeTokenQueryParameters","url":"modules/shopperlogin.html#revoketokenqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4221,"kind":16777216,"name":"revokeTokenPathParameters","url":"modules/shopperlogin.html#revoketokenpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4222,"kind":16777216,"name":"revokeTokenBodyType","url":"modules/shopperlogin.html#revoketokenbodytype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4223,"kind":16777216,"name":"startWebauthnAuthenticationQueryParameters","url":"modules/shopperlogin.html#startwebauthnauthenticationqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4224,"kind":16777216,"name":"startWebauthnAuthenticationPathParameters","url":"modules/shopperlogin.html#startwebauthnauthenticationpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4225,"kind":16777216,"name":"startWebauthnAuthenticationBodyType","url":"modules/shopperlogin.html#startwebauthnauthenticationbodytype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4226,"kind":16777216,"name":"startWebauthnUserRegistrationQueryParameters","url":"modules/shopperlogin.html#startwebauthnuserregistrationqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4227,"kind":16777216,"name":"startWebauthnUserRegistrationPathParameters","url":"modules/shopperlogin.html#startwebauthnuserregistrationpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4228,"kind":16777216,"name":"startWebauthnUserRegistrationBodyType","url":"modules/shopperlogin.html#startwebauthnuserregistrationbodytype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4229,"kind":16777216,"name":"ShopperLoginPathParameters","url":"modules/shopperlogin.html#shopperloginpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4230,"kind":16777216,"name":"ShopperLoginQueryParameters","url":"modules/shopperlogin.html#shopperloginqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4231,"kind":16777216,"name":"ShopperLoginParameters","url":"modules/shopperlogin.html#shopperloginparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4232,"kind":16777216,"name":"AuthPathParameters","url":"modules/shopperlogin.html#authpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4233,"kind":16777216,"name":"AuthQueryParameters","url":"modules/shopperlogin.html#authqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4234,"kind":16777216,"name":"AuthParameters","url":"modules/shopperlogin.html#authparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4235,"kind":16777216,"name":"ShopperLogin","url":"modules/shopperlogin.html#shopperlogin-2","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4236,"kind":16777216,"name":"AuthenticateFinishRequest","url":"modules/shopperlogin.html#authenticatefinishrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4237,"kind":16777216,"name":"AuthenticateResult","url":"modules/shopperlogin.html#authenticateresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4238,"kind":16777216,"name":"AuthenticatorAssertionResponseJson","url":"modules/shopperlogin.html#authenticatorassertionresponsejson-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4239,"kind":16777216,"name":"AuthenticatorAssertionResponseJsonAuthenticatorDataInner","url":"modules/shopperlogin.html#authenticatorassertionresponsejsonauthenticatordatainner-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4240,"kind":16777216,"name":"AuthenticatorAssertionResponseJsonClientDataJSONInner","url":"modules/shopperlogin.html#authenticatorassertionresponsejsonclientdatajsoninner-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4241,"kind":16777216,"name":"AuthenticatorAssertionResponseJsonSignatureInner","url":"modules/shopperlogin.html#authenticatorassertionresponsejsonsignatureinner-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4242,"kind":16777216,"name":"AuthenticatorAssertionResponseJsonUserHandleInner","url":"modules/shopperlogin.html#authenticatorassertionresponsejsonuserhandleinner-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4243,"kind":16777216,"name":"AuthenticatorAttestationResponseJson","url":"modules/shopperlogin.html#authenticatorattestationresponsejson-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4244,"kind":16777216,"name":"AuthenticatorAttestationResponseJsonAttestationObjectInner","url":"modules/shopperlogin.html#authenticatorattestationresponsejsonattestationobjectinner-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4245,"kind":16777216,"name":"AuthenticatorAttestationResponseJsonClientDataJSONInner","url":"modules/shopperlogin.html#authenticatorattestationresponsejsonclientdatajsoninner-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4246,"kind":16777216,"name":"GrantType","url":"modules/shopperlogin.html#granttype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4247,"kind":16777216,"name":"Oauth2ErrorResponse","url":"modules/shopperlogin.html#oauth2errorresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4248,"kind":16777216,"name":"PasskeyCredential","url":"modules/shopperlogin.html#passkeycredential-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4249,"kind":16777216,"name":"PasskeyUser","url":"modules/shopperlogin.html#passkeyuser-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4250,"kind":16777216,"name":"PublicKeyCredentialDescriptor","url":"modules/shopperlogin.html#publickeycredentialdescriptor-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4251,"kind":16777216,"name":"PublicKeyCredentialDescriptorTypeEnum","url":"modules/shopperlogin.html#publickeycredentialdescriptortypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4252,"kind":16777216,"name":"PublicKeyCredentialDescriptorTransportsEnum","url":"modules/shopperlogin.html#publickeycredentialdescriptortransportsenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4253,"kind":16777216,"name":"PublicKeyCredentialJson","url":"modules/shopperlogin.html#publickeycredentialjson-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4254,"kind":16777216,"name":"PublicKeyCredentialJsonTypeEnum","url":"modules/shopperlogin.html#publickeycredentialjsontypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4255,"kind":16777216,"name":"PublicKeyCredentialJsonResponse","url":"modules/shopperlogin.html#publickeycredentialjsonresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4256,"kind":16777216,"name":"PublicKeyCredentialRequestOptions","url":"modules/shopperlogin.html#publickeycredentialrequestoptions-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4257,"kind":16777216,"name":"PublicKeyCredentialRequestOptionsUserVerificationEnum","url":"modules/shopperlogin.html#publickeycredentialrequestoptionsuserverificationenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4258,"kind":16777216,"name":"RegistrationFinishRequest","url":"modules/shopperlogin.html#registrationfinishrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4259,"kind":16777216,"name":"ResponseType","url":"modules/shopperlogin.html#responsetype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4260,"kind":16777216,"name":"TokenActionRequest","url":"modules/shopperlogin.html#tokenactionrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4261,"kind":16777216,"name":"TokenActionRequestTokenTypeHintEnum","url":"modules/shopperlogin.html#tokenactionrequesttokentypehintenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4262,"kind":16777216,"name":"TokenResponse","url":"modules/shopperlogin.html#tokenresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4263,"kind":16777216,"name":"TokenType","url":"modules/shopperlogin.html#tokentype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperLogin"},{"id":4264,"kind":2,"name":"ShopperLoginTypes","url":"modules/shopperlogin.shopperlogintypes.html","classes":"tsd-kind-namespace tsd-parent-kind-module","parent":"shopperLogin"},{"id":4265,"kind":4194304,"name":"ShopperLoginPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#shopperloginpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4266,"kind":4194304,"name":"ShopperLoginQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#shopperloginqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4267,"kind":4194304,"name":"authenticateCustomerBodyType","url":"modules/shopperlogin.shopperlogintypes.html#authenticatecustomerbodytype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4268,"kind":4194304,"name":"authenticateCustomerQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#authenticatecustomerqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4269,"kind":4194304,"name":"authenticateCustomerPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#authenticatecustomerpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4270,"kind":4194304,"name":"AuthorizeCustomerResponseTypeEnum","url":"modules/shopperlogin.shopperlogintypes.html#authorizecustomerresponsetypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4271,"kind":4194304,"name":"AuthorizeCustomerScopeEnum","url":"modules/shopperlogin.shopperlogintypes.html#authorizecustomerscopeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4272,"kind":4194304,"name":"authorizeCustomerQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#authorizecustomerqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4273,"kind":4194304,"name":"authorizeCustomerPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#authorizecustomerpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4274,"kind":4194304,"name":"AuthorizePasswordlessCustomerModeEnum","url":"modules/shopperlogin.shopperlogintypes.html#authorizepasswordlesscustomermodeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4275,"kind":4194304,"name":"authorizePasswordlessCustomerBodyType","url":"modules/shopperlogin.shopperlogintypes.html#authorizepasswordlesscustomerbodytype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4276,"kind":4194304,"name":"authorizePasswordlessCustomerQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#authorizepasswordlesscustomerqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4277,"kind":4194304,"name":"authorizePasswordlessCustomerPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#authorizepasswordlesscustomerpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4278,"kind":4194304,"name":"AuthorizeWebauthnRegistrationModeEnum","url":"modules/shopperlogin.shopperlogintypes.html#authorizewebauthnregistrationmodeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4279,"kind":4194304,"name":"authorizeWebauthnRegistrationBodyType","url":"modules/shopperlogin.shopperlogintypes.html#authorizewebauthnregistrationbodytype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4280,"kind":4194304,"name":"authorizeWebauthnRegistrationQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#authorizewebauthnregistrationqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4281,"kind":4194304,"name":"authorizeWebauthnRegistrationPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#authorizewebauthnregistrationpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4282,"kind":4194304,"name":"deletePasskeyCredentialQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#deletepasskeycredentialqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4283,"kind":4194304,"name":"deletePasskeyCredentialPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#deletepasskeycredentialpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4284,"kind":4194304,"name":"deletePasskeyUserQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#deletepasskeyuserqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4285,"kind":4194304,"name":"deletePasskeyUserPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#deletepasskeyuserpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4286,"kind":4194304,"name":"finishWebauthnAuthenticationQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#finishwebauthnauthenticationqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4287,"kind":4194304,"name":"finishWebauthnAuthenticationPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#finishwebauthnauthenticationpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4288,"kind":4194304,"name":"finishWebauthnUserRegistrationQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#finishwebauthnuserregistrationqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4289,"kind":4194304,"name":"finishWebauthnUserRegistrationPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#finishwebauthnuserregistrationpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4290,"kind":4194304,"name":"getAccessTokenBodyType","url":"modules/shopperlogin.shopperlogintypes.html#getaccesstokenbodytype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4291,"kind":4194304,"name":"getAccessTokenQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#getaccesstokenqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4292,"kind":4194304,"name":"getAccessTokenPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#getaccesstokenpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4293,"kind":4194304,"name":"getJwksUriQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#getjwksuriqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4294,"kind":4194304,"name":"getJwksUriPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#getjwksuripathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4295,"kind":4194304,"name":"getPasskeyUserByLoginIdQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#getpasskeyuserbyloginidqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4296,"kind":4194304,"name":"getPasskeyUserByLoginIdPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#getpasskeyuserbyloginidpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4297,"kind":4194304,"name":"GetPasswordLessAccessTokenGrantTypeEnum","url":"modules/shopperlogin.shopperlogintypes.html#getpasswordlessaccesstokengranttypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4298,"kind":4194304,"name":"getPasswordLessAccessTokenBodyType","url":"modules/shopperlogin.shopperlogintypes.html#getpasswordlessaccesstokenbodytype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4299,"kind":4194304,"name":"getPasswordLessAccessTokenQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#getpasswordlessaccesstokenqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4300,"kind":4194304,"name":"getPasswordLessAccessTokenPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#getpasswordlessaccesstokenpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4301,"kind":4194304,"name":"GetPasswordResetTokenModeEnum","url":"modules/shopperlogin.shopperlogintypes.html#getpasswordresettokenmodeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4302,"kind":4194304,"name":"getPasswordResetTokenBodyType","url":"modules/shopperlogin.shopperlogintypes.html#getpasswordresettokenbodytype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4303,"kind":4194304,"name":"getPasswordResetTokenQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#getpasswordresettokenqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4304,"kind":4194304,"name":"getPasswordResetTokenPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#getpasswordresettokenpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4305,"kind":4194304,"name":"GetSessionBridgeAccessTokenGrantTypeEnum","url":"modules/shopperlogin.shopperlogintypes.html#getsessionbridgeaccesstokengranttypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4306,"kind":4194304,"name":"getSessionBridgeAccessTokenBodyType","url":"modules/shopperlogin.shopperlogintypes.html#getsessionbridgeaccesstokenbodytype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4307,"kind":4194304,"name":"getSessionBridgeAccessTokenQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#getsessionbridgeaccesstokenqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4308,"kind":4194304,"name":"getSessionBridgeAccessTokenPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#getsessionbridgeaccesstokenpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4309,"kind":4194304,"name":"GetTrustedAgentAccessTokenGrantTypeEnum","url":"modules/shopperlogin.shopperlogintypes.html#gettrustedagentaccesstokengranttypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4310,"kind":4194304,"name":"getTrustedAgentAccessTokenBodyType","url":"modules/shopperlogin.shopperlogintypes.html#gettrustedagentaccesstokenbodytype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4311,"kind":4194304,"name":"getTrustedAgentAccessTokenQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#gettrustedagentaccesstokenqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4312,"kind":4194304,"name":"getTrustedAgentAccessTokenPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#gettrustedagentaccesstokenpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4313,"kind":4194304,"name":"GetTrustedAgentAuthorizationTokenResponseTypeEnum","url":"modules/shopperlogin.shopperlogintypes.html#gettrustedagentauthorizationtokenresponsetypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4314,"kind":4194304,"name":"getTrustedAgentAuthorizationTokenQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#gettrustedagentauthorizationtokenqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4315,"kind":4194304,"name":"getTrustedAgentAuthorizationTokenPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#gettrustedagentauthorizationtokenpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4316,"kind":4194304,"name":"GetTrustedSystemAccessTokenGrantTypeEnum","url":"modules/shopperlogin.shopperlogintypes.html#gettrustedsystemaccesstokengranttypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4317,"kind":4194304,"name":"GetTrustedSystemAccessTokenHintEnum","url":"modules/shopperlogin.shopperlogintypes.html#gettrustedsystemaccesstokenhintenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4318,"kind":4194304,"name":"GetTrustedSystemAccessTokenIdpOriginEnum","url":"modules/shopperlogin.shopperlogintypes.html#gettrustedsystemaccesstokenidporiginenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4319,"kind":4194304,"name":"getTrustedSystemAccessTokenBodyType","url":"modules/shopperlogin.shopperlogintypes.html#gettrustedsystemaccesstokenbodytype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4320,"kind":4194304,"name":"getTrustedSystemAccessTokenQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#gettrustedsystemaccesstokenqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4321,"kind":4194304,"name":"getTrustedSystemAccessTokenPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#gettrustedsystemaccesstokenpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4322,"kind":4194304,"name":"getUserInfoQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#getuserinfoqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4323,"kind":4194304,"name":"getUserInfoPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#getuserinfopathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4324,"kind":4194304,"name":"getWellknownOpenidConfigurationQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#getwellknownopenidconfigurationqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4325,"kind":4194304,"name":"getWellknownOpenidConfigurationPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#getwellknownopenidconfigurationpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4326,"kind":4194304,"name":"IntrospectTokenTokenTypeHintEnum","url":"modules/shopperlogin.shopperlogintypes.html#introspecttokentokentypehintenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4327,"kind":4194304,"name":"introspectTokenBodyType","url":"modules/shopperlogin.shopperlogintypes.html#introspecttokenbodytype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4328,"kind":4194304,"name":"introspectTokenQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#introspecttokenqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4329,"kind":4194304,"name":"introspectTokenPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#introspecttokenpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4330,"kind":4194304,"name":"LogoutCustomerHintEnum","url":"modules/shopperlogin.shopperlogintypes.html#logoutcustomerhintenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4331,"kind":4194304,"name":"logoutCustomerQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#logoutcustomerqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4332,"kind":4194304,"name":"logoutCustomerPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#logoutcustomerpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4333,"kind":4194304,"name":"resetPasswordBodyType","url":"modules/shopperlogin.shopperlogintypes.html#resetpasswordbodytype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4334,"kind":4194304,"name":"resetPasswordQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#resetpasswordqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4335,"kind":4194304,"name":"resetPasswordPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#resetpasswordpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4336,"kind":4194304,"name":"RevokeTokenTokenTypeHintEnum","url":"modules/shopperlogin.shopperlogintypes.html#revoketokentokentypehintenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4337,"kind":4194304,"name":"revokeTokenBodyType","url":"modules/shopperlogin.shopperlogintypes.html#revoketokenbodytype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4338,"kind":4194304,"name":"revokeTokenQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#revoketokenqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4339,"kind":4194304,"name":"revokeTokenPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#revoketokenpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4340,"kind":4194304,"name":"startWebauthnAuthenticationBodyType","url":"modules/shopperlogin.shopperlogintypes.html#startwebauthnauthenticationbodytype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4341,"kind":4194304,"name":"startWebauthnAuthenticationQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#startwebauthnauthenticationqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4342,"kind":4194304,"name":"startWebauthnAuthenticationPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#startwebauthnauthenticationpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4343,"kind":4194304,"name":"startWebauthnUserRegistrationBodyType","url":"modules/shopperlogin.shopperlogintypes.html#startwebauthnuserregistrationbodytype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4344,"kind":4194304,"name":"startWebauthnUserRegistrationQueryParameters","url":"modules/shopperlogin.shopperlogintypes.html#startwebauthnuserregistrationqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4345,"kind":4194304,"name":"startWebauthnUserRegistrationPathParameters","url":"modules/shopperlogin.shopperlogintypes.html#startwebauthnuserregistrationpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4346,"kind":4194304,"name":"AuthenticateFinishRequest","url":"modules/shopperlogin.shopperlogintypes.html#authenticatefinishrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4347,"kind":4194304,"name":"AuthenticateResult","url":"modules/shopperlogin.shopperlogintypes.html#authenticateresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4348,"kind":4194304,"name":"AuthenticatorAssertionResponseJson","url":"modules/shopperlogin.shopperlogintypes.html#authenticatorassertionresponsejson","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4349,"kind":4194304,"name":"AuthenticatorAssertionResponseJsonAuthenticatorDataInner","url":"modules/shopperlogin.shopperlogintypes.html#authenticatorassertionresponsejsonauthenticatordatainner","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4350,"kind":4194304,"name":"AuthenticatorAssertionResponseJsonClientDataJSONInner","url":"modules/shopperlogin.shopperlogintypes.html#authenticatorassertionresponsejsonclientdatajsoninner","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4351,"kind":4194304,"name":"AuthenticatorAssertionResponseJsonSignatureInner","url":"modules/shopperlogin.shopperlogintypes.html#authenticatorassertionresponsejsonsignatureinner","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4352,"kind":4194304,"name":"AuthenticatorAssertionResponseJsonUserHandleInner","url":"modules/shopperlogin.shopperlogintypes.html#authenticatorassertionresponsejsonuserhandleinner","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4353,"kind":4194304,"name":"AuthenticatorAttestationResponseJson","url":"modules/shopperlogin.shopperlogintypes.html#authenticatorattestationresponsejson","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4354,"kind":4194304,"name":"AuthenticatorAttestationResponseJsonAttestationObjectInner","url":"modules/shopperlogin.shopperlogintypes.html#authenticatorattestationresponsejsonattestationobjectinner","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4355,"kind":4194304,"name":"AuthenticatorAttestationResponseJsonClientDataJSONInner","url":"modules/shopperlogin.shopperlogintypes.html#authenticatorattestationresponsejsonclientdatajsoninner","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4356,"kind":4194304,"name":"GrantType","url":"modules/shopperlogin.shopperlogintypes.html#granttype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4357,"kind":4194304,"name":"Oauth2ErrorResponse","url":"modules/shopperlogin.shopperlogintypes.html#oauth2errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4358,"kind":4194304,"name":"PasskeyCredential","url":"modules/shopperlogin.shopperlogintypes.html#passkeycredential","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4359,"kind":4194304,"name":"PasskeyUser","url":"modules/shopperlogin.shopperlogintypes.html#passkeyuser","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4360,"kind":4194304,"name":"PublicKeyCredentialDescriptor","url":"modules/shopperlogin.shopperlogintypes.html#publickeycredentialdescriptor","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4361,"kind":4194304,"name":"PublicKeyCredentialDescriptorTypeEnum","url":"modules/shopperlogin.shopperlogintypes.html#publickeycredentialdescriptortypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4362,"kind":4194304,"name":"PublicKeyCredentialDescriptorTransportsEnum","url":"modules/shopperlogin.shopperlogintypes.html#publickeycredentialdescriptortransportsenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4363,"kind":4194304,"name":"PublicKeyCredentialJson","url":"modules/shopperlogin.shopperlogintypes.html#publickeycredentialjson","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4364,"kind":4194304,"name":"PublicKeyCredentialJsonTypeEnum","url":"modules/shopperlogin.shopperlogintypes.html#publickeycredentialjsontypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4365,"kind":4194304,"name":"PublicKeyCredentialJsonResponse","url":"modules/shopperlogin.shopperlogintypes.html#publickeycredentialjsonresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4366,"kind":4194304,"name":"PublicKeyCredentialRequestOptions","url":"modules/shopperlogin.shopperlogintypes.html#publickeycredentialrequestoptions","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4367,"kind":4194304,"name":"PublicKeyCredentialRequestOptionsUserVerificationEnum","url":"modules/shopperlogin.shopperlogintypes.html#publickeycredentialrequestoptionsuserverificationenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4368,"kind":4194304,"name":"RegistrationFinishRequest","url":"modules/shopperlogin.shopperlogintypes.html#registrationfinishrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4369,"kind":4194304,"name":"ResponseType","url":"modules/shopperlogin.shopperlogintypes.html#responsetype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4370,"kind":4194304,"name":"TokenActionRequest","url":"modules/shopperlogin.shopperlogintypes.html#tokenactionrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4371,"kind":4194304,"name":"TokenActionRequestTokenTypeHintEnum","url":"modules/shopperlogin.shopperlogintypes.html#tokenactionrequesttokentypehintenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4372,"kind":4194304,"name":"TokenResponse","url":"modules/shopperlogin.shopperlogintypes.html#tokenresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4373,"kind":4194304,"name":"TokenType","url":"modules/shopperlogin.shopperlogintypes.html#tokentype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperLogin.ShopperLoginTypes"},{"id":4374,"kind":1,"name":"shopperOrders","url":"modules/shopperorders.html","classes":"tsd-kind-module"},{"id":4375,"kind":32,"name":"defaultBaseUri","url":"modules/shopperorders.html#defaultbaseuri-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"shopperOrders"},{"id":4376,"kind":4194304,"name":"GiftCertificateItem","url":"modules/shopperorders.html#giftcertificateitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4377,"kind":4194304,"name":"Status","url":"modules/shopperorders.html#status-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4378,"kind":4194304,"name":"OrderPaymentInstrumentPaymentReferenceGatewayProperties","url":"modules/shopperorders.html#orderpaymentinstrumentpaymentreferencegatewayproperties-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4379,"kind":4194304,"name":"OrderPaymentInstrumentPaymentReference","url":"modules/shopperorders.html#orderpaymentinstrumentpaymentreference-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4380,"kind":4194304,"name":"OrderPaymentInstrumentPaymentReferenceGatewayEnum","url":"modules/shopperorders.html#orderpaymentinstrumentpaymentreferencegatewayenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4381,"kind":4194304,"name":"GiftCardResponse","url":"modules/shopperorders.html#giftcardresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4382,"kind":4194304,"name":"PaymentCard","url":"modules/shopperorders.html#paymentcard-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4383,"kind":4194304,"name":"OrderPaymentInstrument","url":"modules/shopperorders.html#orderpaymentinstrument-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4384,"kind":4194304,"name":"ProductDetailsLink","url":"modules/shopperorders.html#productdetailslink-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4385,"kind":4194304,"name":"BonusDiscountLineItem","url":"modules/shopperorders.html#bonusdiscountlineitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4386,"kind":4194304,"name":"Discount","url":"modules/shopperorders.html#discount-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4387,"kind":4194304,"name":"DiscountTypeEnum","url":"modules/shopperorders.html#discounttypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4388,"kind":4194304,"name":"PriceAdjustment","url":"modules/shopperorders.html#priceadjustment-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4389,"kind":4194304,"name":"ShippingItem","url":"modules/shopperorders.html#shippingitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4390,"kind":4194304,"name":"OrderAddress","url":"modules/shopperorders.html#orderaddress-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4391,"kind":4194304,"name":"ShippingPromotion","url":"modules/shopperorders.html#shippingpromotion-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4392,"kind":4194304,"name":"ShippingMethod","url":"modules/shopperorders.html#shippingmethod-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4393,"kind":4194304,"name":"Shipment","url":"modules/shopperorders.html#shipment-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4394,"kind":4194304,"name":"ShipmentShippingStatusEnum","url":"modules/shopperorders.html#shipmentshippingstatusenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4395,"kind":4194304,"name":"CouponItem","url":"modules/shopperorders.html#couponitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4396,"kind":4194304,"name":"CouponItemStatusCodeEnum","url":"modules/shopperorders.html#couponitemstatuscodeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4397,"kind":4194304,"name":"CustomerInfo","url":"modules/shopperorders.html#customerinfo-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4398,"kind":4194304,"name":"ProductListLink","url":"modules/shopperorders.html#productlistlink-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4399,"kind":4194304,"name":"ProductListLinkTypeEnum","url":"modules/shopperorders.html#productlistlinktypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4400,"kind":4194304,"name":"ProductListItemReference","url":"modules/shopperorders.html#productlistitemreference-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4401,"kind":4194304,"name":"ProductListItemReferenceTypeEnum","url":"modules/shopperorders.html#productlistitemreferencetypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4402,"kind":4194304,"name":"ProductItem","url":"modules/shopperorders.html#productitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4403,"kind":4194304,"name":"OptionItem","url":"modules/shopperorders.html#optionitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4404,"kind":4194304,"name":"BasketProductItem","url":"modules/shopperorders.html#basketproductitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4405,"kind":4194304,"name":"GroupedTaxItem","url":"modules/shopperorders.html#groupedtaxitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4406,"kind":4194304,"name":"Basket","url":"modules/shopperorders.html#basket-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4407,"kind":4194304,"name":"BasketChannelTypeEnum","url":"modules/shopperorders.html#basketchanneltypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4408,"kind":4194304,"name":"BasketTaxationEnum","url":"modules/shopperorders.html#baskettaxationenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4409,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperorders.html#errorresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4410,"kind":4194304,"name":"FailOrderRequest","url":"modules/shopperorders.html#failorderrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4411,"kind":4194304,"name":"FailOrderRequestReasonCodeEnum","url":"modules/shopperorders.html#failorderrequestreasoncodeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4412,"kind":4194304,"name":"GiftCardRequest","url":"modules/shopperorders.html#giftcardrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4413,"kind":4194304,"name":"LocaleCode","url":"modules/shopperorders.html#localecode-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4414,"kind":4194304,"name":"OmsShipmentItem","url":"modules/shopperorders.html#omsshipmentitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4415,"kind":4194304,"name":"OmsShipment","url":"modules/shopperorders.html#omsshipment-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4416,"kind":4194304,"name":"OmsData","url":"modules/shopperorders.html#omsdata-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4417,"kind":4194304,"name":"OmsProductData","url":"modules/shopperorders.html#omsproductdata-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4418,"kind":4194304,"name":"OmsProductDataStatusEnum","url":"modules/shopperorders.html#omsproductdatastatusenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4419,"kind":4194304,"name":"OrderProductItem","url":"modules/shopperorders.html#orderproductitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4420,"kind":4194304,"name":"Order","url":"modules/shopperorders.html#order-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4421,"kind":4194304,"name":"OrderChannelTypeEnum","url":"modules/shopperorders.html#orderchanneltypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4422,"kind":4194304,"name":"OrderConfirmationStatusEnum","url":"modules/shopperorders.html#orderconfirmationstatusenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4423,"kind":4194304,"name":"OrderExportStatusEnum","url":"modules/shopperorders.html#orderexportstatusenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4424,"kind":4194304,"name":"OrderPaymentStatusEnum","url":"modules/shopperorders.html#orderpaymentstatusenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4425,"kind":4194304,"name":"OrderShippingStatusEnum","url":"modules/shopperorders.html#ordershippingstatusenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4426,"kind":4194304,"name":"OrderStatusEnum","url":"modules/shopperorders.html#orderstatusenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4427,"kind":4194304,"name":"OrderTaxationEnum","url":"modules/shopperorders.html#ordertaxationenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4428,"kind":4194304,"name":"OrderLookupRequest","url":"modules/shopperorders.html#orderlookuprequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4429,"kind":4194304,"name":"OrderPaymentCardRequest","url":"modules/shopperorders.html#orderpaymentcardrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4430,"kind":4194304,"name":"PaymentReferenceRequestGatewayProperties","url":"modules/shopperorders.html#paymentreferencerequestgatewayproperties-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4431,"kind":4194304,"name":"PaymentReferenceRequest","url":"modules/shopperorders.html#paymentreferencerequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4432,"kind":4194304,"name":"PaymentReferenceRequestGatewayEnum","url":"modules/shopperorders.html#paymentreferencerequestgatewayenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4433,"kind":4194304,"name":"OrderPaymentInstrumentRequest","url":"modules/shopperorders.html#orderpaymentinstrumentrequest-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4434,"kind":4194304,"name":"PaymentCardSpec","url":"modules/shopperorders.html#paymentcardspec-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4435,"kind":4194304,"name":"PaymentMethod","url":"modules/shopperorders.html#paymentmethod-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4436,"kind":4194304,"name":"PaymentMethodResult","url":"modules/shopperorders.html#paymentmethodresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4437,"kind":4194304,"name":"TaxItem","url":"modules/shopperorders.html#taxitem-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4438,"kind":4194304,"name":"TaxItems","url":"modules/shopperorders.html#taxitems-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4439,"kind":4194304,"name":"Taxes","url":"modules/shopperorders.html#taxes-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4440,"kind":16777216,"name":"Basket","url":"modules/shopperorders.html#basket","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4441,"kind":16777216,"name":"BasketChannelTypeEnum","url":"modules/shopperorders.html#basketchanneltypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4442,"kind":16777216,"name":"BasketTaxationEnum","url":"modules/shopperorders.html#baskettaxationenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4443,"kind":16777216,"name":"BasketProductItem","url":"modules/shopperorders.html#basketproductitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4444,"kind":16777216,"name":"BonusDiscountLineItem","url":"modules/shopperorders.html#bonusdiscountlineitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4445,"kind":16777216,"name":"CouponItem","url":"modules/shopperorders.html#couponitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4446,"kind":16777216,"name":"CouponItemStatusCodeEnum","url":"modules/shopperorders.html#couponitemstatuscodeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4447,"kind":16777216,"name":"CustomerInfo","url":"modules/shopperorders.html#customerinfo","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4448,"kind":16777216,"name":"Discount","url":"modules/shopperorders.html#discount","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4449,"kind":16777216,"name":"DiscountTypeEnum","url":"modules/shopperorders.html#discounttypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4450,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperorders.html#errorresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4451,"kind":16777216,"name":"FailOrderRequest","url":"modules/shopperorders.html#failorderrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4452,"kind":16777216,"name":"FailOrderRequestReasonCodeEnum","url":"modules/shopperorders.html#failorderrequestreasoncodeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4453,"kind":16777216,"name":"GiftCardRequest","url":"modules/shopperorders.html#giftcardrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4454,"kind":16777216,"name":"GiftCardResponse","url":"modules/shopperorders.html#giftcardresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4455,"kind":16777216,"name":"GiftCertificateItem","url":"modules/shopperorders.html#giftcertificateitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4456,"kind":16777216,"name":"GroupedTaxItem","url":"modules/shopperorders.html#groupedtaxitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4457,"kind":16777216,"name":"LocaleCode","url":"modules/shopperorders.html#localecode","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4458,"kind":16777216,"name":"OmsData","url":"modules/shopperorders.html#omsdata","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4459,"kind":16777216,"name":"OmsProductData","url":"modules/shopperorders.html#omsproductdata","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4460,"kind":16777216,"name":"OmsProductDataStatusEnum","url":"modules/shopperorders.html#omsproductdatastatusenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4461,"kind":16777216,"name":"OmsShipment","url":"modules/shopperorders.html#omsshipment","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4462,"kind":16777216,"name":"OmsShipmentItem","url":"modules/shopperorders.html#omsshipmentitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4463,"kind":16777216,"name":"OptionItem","url":"modules/shopperorders.html#optionitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4464,"kind":16777216,"name":"Order","url":"modules/shopperorders.html#order","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4465,"kind":16777216,"name":"OrderChannelTypeEnum","url":"modules/shopperorders.html#orderchanneltypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4466,"kind":16777216,"name":"OrderConfirmationStatusEnum","url":"modules/shopperorders.html#orderconfirmationstatusenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4467,"kind":16777216,"name":"OrderExportStatusEnum","url":"modules/shopperorders.html#orderexportstatusenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4468,"kind":16777216,"name":"OrderPaymentStatusEnum","url":"modules/shopperorders.html#orderpaymentstatusenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4469,"kind":16777216,"name":"OrderShippingStatusEnum","url":"modules/shopperorders.html#ordershippingstatusenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4470,"kind":16777216,"name":"OrderStatusEnum","url":"modules/shopperorders.html#orderstatusenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4471,"kind":16777216,"name":"OrderTaxationEnum","url":"modules/shopperorders.html#ordertaxationenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4472,"kind":16777216,"name":"OrderAddress","url":"modules/shopperorders.html#orderaddress","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4473,"kind":16777216,"name":"OrderLookupRequest","url":"modules/shopperorders.html#orderlookuprequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4474,"kind":16777216,"name":"OrderPaymentCardRequest","url":"modules/shopperorders.html#orderpaymentcardrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4475,"kind":16777216,"name":"OrderPaymentInstrument","url":"modules/shopperorders.html#orderpaymentinstrument","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4476,"kind":16777216,"name":"OrderPaymentInstrumentPaymentReference","url":"modules/shopperorders.html#orderpaymentinstrumentpaymentreference","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4477,"kind":16777216,"name":"OrderPaymentInstrumentPaymentReferenceGatewayEnum","url":"modules/shopperorders.html#orderpaymentinstrumentpaymentreferencegatewayenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4478,"kind":16777216,"name":"OrderPaymentInstrumentPaymentReferenceGatewayProperties","url":"modules/shopperorders.html#orderpaymentinstrumentpaymentreferencegatewayproperties","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4479,"kind":16777216,"name":"OrderPaymentInstrumentRequest","url":"modules/shopperorders.html#orderpaymentinstrumentrequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4480,"kind":16777216,"name":"OrderProductItem","url":"modules/shopperorders.html#orderproductitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4481,"kind":16777216,"name":"PaymentCard","url":"modules/shopperorders.html#paymentcard","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4482,"kind":16777216,"name":"PaymentCardSpec","url":"modules/shopperorders.html#paymentcardspec","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4483,"kind":16777216,"name":"PaymentMethod","url":"modules/shopperorders.html#paymentmethod","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4484,"kind":16777216,"name":"PaymentMethodResult","url":"modules/shopperorders.html#paymentmethodresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4485,"kind":16777216,"name":"PaymentReferenceRequest","url":"modules/shopperorders.html#paymentreferencerequest","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4486,"kind":16777216,"name":"PaymentReferenceRequestGatewayEnum","url":"modules/shopperorders.html#paymentreferencerequestgatewayenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4487,"kind":16777216,"name":"PaymentReferenceRequestGatewayProperties","url":"modules/shopperorders.html#paymentreferencerequestgatewayproperties","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4488,"kind":16777216,"name":"PriceAdjustment","url":"modules/shopperorders.html#priceadjustment","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4489,"kind":16777216,"name":"ProductDetailsLink","url":"modules/shopperorders.html#productdetailslink","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4490,"kind":16777216,"name":"ProductItem","url":"modules/shopperorders.html#productitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4491,"kind":16777216,"name":"ProductListItemReference","url":"modules/shopperorders.html#productlistitemreference","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4492,"kind":16777216,"name":"ProductListItemReferenceTypeEnum","url":"modules/shopperorders.html#productlistitemreferencetypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4493,"kind":16777216,"name":"ProductListLink","url":"modules/shopperorders.html#productlistlink","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4494,"kind":16777216,"name":"ProductListLinkTypeEnum","url":"modules/shopperorders.html#productlistlinktypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4495,"kind":16777216,"name":"Shipment","url":"modules/shopperorders.html#shipment","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4496,"kind":16777216,"name":"ShipmentShippingStatusEnum","url":"modules/shopperorders.html#shipmentshippingstatusenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4497,"kind":16777216,"name":"ShippingItem","url":"modules/shopperorders.html#shippingitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4498,"kind":16777216,"name":"ShippingMethod","url":"modules/shopperorders.html#shippingmethod","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4499,"kind":16777216,"name":"ShippingPromotion","url":"modules/shopperorders.html#shippingpromotion","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4500,"kind":16777216,"name":"Status","url":"modules/shopperorders.html#status","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4501,"kind":16777216,"name":"TaxItem","url":"modules/shopperorders.html#taxitem","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4502,"kind":16777216,"name":"TaxItems","url":"modules/shopperorders.html#taxitems","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4503,"kind":16777216,"name":"Taxes","url":"modules/shopperorders.html#taxes","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4504,"kind":128,"name":"ShopperOrders","url":"classes/shopperorders.shopperorders-3.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"shopperOrders"},{"id":4505,"kind":1024,"name":"clientConfig","url":"classes/shopperorders.shopperorders-3.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class","parent":"shopperOrders.ShopperOrders"},{"id":4506,"kind":1024,"name":"defaultBaseUri","url":"classes/shopperorders.shopperorders-3.html#defaultbaseuri","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperOrders.ShopperOrders"},{"id":4507,"kind":2097152,"name":"apiPaths","url":"classes/shopperorders.shopperorders-3.html#apipaths","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-static","parent":"shopperOrders.ShopperOrders"},{"id":4508,"kind":32,"name":"createOrder","url":"classes/shopperorders.shopperorders-3.html#apipaths.createorder-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperOrders.ShopperOrders.apiPaths"},{"id":4509,"kind":32,"name":"createPaymentInstrumentForOrder","url":"classes/shopperorders.shopperorders-3.html#apipaths.createpaymentinstrumentfororder-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperOrders.ShopperOrders.apiPaths"},{"id":4510,"kind":32,"name":"failOrder","url":"classes/shopperorders.shopperorders-3.html#apipaths.failorder-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperOrders.ShopperOrders.apiPaths"},{"id":4511,"kind":32,"name":"getOrder","url":"classes/shopperorders.shopperorders-3.html#apipaths.getorder-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperOrders.ShopperOrders.apiPaths"},{"id":4512,"kind":32,"name":"getPaymentMethodsForOrder","url":"classes/shopperorders.shopperorders-3.html#apipaths.getpaymentmethodsfororder-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperOrders.ShopperOrders.apiPaths"},{"id":4513,"kind":32,"name":"getTaxesFromOrder","url":"classes/shopperorders.shopperorders-3.html#apipaths.gettaxesfromorder-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperOrders.ShopperOrders.apiPaths"},{"id":4514,"kind":32,"name":"guestOrderLookup","url":"classes/shopperorders.shopperorders-3.html#apipaths.guestorderlookup-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperOrders.ShopperOrders.apiPaths"},{"id":4515,"kind":32,"name":"removePaymentInstrumentFromOrder","url":"classes/shopperorders.shopperorders-3.html#apipaths.removepaymentinstrumentfromorder-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperOrders.ShopperOrders.apiPaths"},{"id":4516,"kind":32,"name":"updatePaymentInstrumentForOrder","url":"classes/shopperorders.shopperorders-3.html#apipaths.updatepaymentinstrumentfororder-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperOrders.ShopperOrders.apiPaths"},{"id":4517,"kind":512,"name":"constructor","url":"classes/shopperorders.shopperorders-3.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"shopperOrders.ShopperOrders"},{"id":4518,"kind":1024,"name":"paramKeys","url":"classes/shopperorders.shopperorders-3.html#paramkeys","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperOrders.ShopperOrders"},{"id":4519,"kind":65536,"name":"__type","url":"classes/shopperorders.shopperorders-3.html#paramkeys.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"shopperOrders.ShopperOrders.paramKeys"},{"id":4520,"kind":32,"name":"createOrder","url":"classes/shopperorders.shopperorders-3.html#paramkeys.__type.createorder","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.ShopperOrders.paramKeys.__type"},{"id":4521,"kind":32,"name":"createOrderRequired","url":"classes/shopperorders.shopperorders-3.html#paramkeys.__type.createorderrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.ShopperOrders.paramKeys.__type"},{"id":4522,"kind":32,"name":"createPaymentInstrumentForOrder","url":"classes/shopperorders.shopperorders-3.html#paramkeys.__type.createpaymentinstrumentfororder","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.ShopperOrders.paramKeys.__type"},{"id":4523,"kind":32,"name":"createPaymentInstrumentForOrderRequired","url":"classes/shopperorders.shopperorders-3.html#paramkeys.__type.createpaymentinstrumentfororderrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.ShopperOrders.paramKeys.__type"},{"id":4524,"kind":32,"name":"failOrder","url":"classes/shopperorders.shopperorders-3.html#paramkeys.__type.failorder","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.ShopperOrders.paramKeys.__type"},{"id":4525,"kind":32,"name":"failOrderRequired","url":"classes/shopperorders.shopperorders-3.html#paramkeys.__type.failorderrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.ShopperOrders.paramKeys.__type"},{"id":4526,"kind":32,"name":"getOrder","url":"classes/shopperorders.shopperorders-3.html#paramkeys.__type.getorder","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.ShopperOrders.paramKeys.__type"},{"id":4527,"kind":32,"name":"getOrderRequired","url":"classes/shopperorders.shopperorders-3.html#paramkeys.__type.getorderrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.ShopperOrders.paramKeys.__type"},{"id":4528,"kind":32,"name":"getPaymentMethodsForOrder","url":"classes/shopperorders.shopperorders-3.html#paramkeys.__type.getpaymentmethodsfororder","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.ShopperOrders.paramKeys.__type"},{"id":4529,"kind":32,"name":"getPaymentMethodsForOrderRequired","url":"classes/shopperorders.shopperorders-3.html#paramkeys.__type.getpaymentmethodsfororderrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.ShopperOrders.paramKeys.__type"},{"id":4530,"kind":32,"name":"getTaxesFromOrder","url":"classes/shopperorders.shopperorders-3.html#paramkeys.__type.gettaxesfromorder","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.ShopperOrders.paramKeys.__type"},{"id":4531,"kind":32,"name":"getTaxesFromOrderRequired","url":"classes/shopperorders.shopperorders-3.html#paramkeys.__type.gettaxesfromorderrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.ShopperOrders.paramKeys.__type"},{"id":4532,"kind":32,"name":"guestOrderLookup","url":"classes/shopperorders.shopperorders-3.html#paramkeys.__type.guestorderlookup","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.ShopperOrders.paramKeys.__type"},{"id":4533,"kind":32,"name":"guestOrderLookupRequired","url":"classes/shopperorders.shopperorders-3.html#paramkeys.__type.guestorderlookuprequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.ShopperOrders.paramKeys.__type"},{"id":4534,"kind":32,"name":"removePaymentInstrumentFromOrder","url":"classes/shopperorders.shopperorders-3.html#paramkeys.__type.removepaymentinstrumentfromorder","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.ShopperOrders.paramKeys.__type"},{"id":4535,"kind":32,"name":"removePaymentInstrumentFromOrderRequired","url":"classes/shopperorders.shopperorders-3.html#paramkeys.__type.removepaymentinstrumentfromorderrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.ShopperOrders.paramKeys.__type"},{"id":4536,"kind":32,"name":"updatePaymentInstrumentForOrder","url":"classes/shopperorders.shopperorders-3.html#paramkeys.__type.updatepaymentinstrumentfororder","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.ShopperOrders.paramKeys.__type"},{"id":4537,"kind":32,"name":"updatePaymentInstrumentForOrderRequired","url":"classes/shopperorders.shopperorders-3.html#paramkeys.__type.updatepaymentinstrumentfororderrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.ShopperOrders.paramKeys.__type"},{"id":4538,"kind":2048,"name":"createOrder","url":"classes/shopperorders.shopperorders-3.html#createorder-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperOrders.ShopperOrders"},{"id":4539,"kind":2048,"name":"createPaymentInstrumentForOrder","url":"classes/shopperorders.shopperorders-3.html#createpaymentinstrumentfororder-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperOrders.ShopperOrders"},{"id":4540,"kind":2048,"name":"failOrder","url":"classes/shopperorders.shopperorders-3.html#failorder-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperOrders.ShopperOrders"},{"id":4541,"kind":2048,"name":"getOrder","url":"classes/shopperorders.shopperorders-3.html#getorder-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperOrders.ShopperOrders"},{"id":4542,"kind":2048,"name":"getPaymentMethodsForOrder","url":"classes/shopperorders.shopperorders-3.html#getpaymentmethodsfororder-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperOrders.ShopperOrders"},{"id":4543,"kind":2048,"name":"getTaxesFromOrder","url":"classes/shopperorders.shopperorders-3.html#gettaxesfromorder-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperOrders.ShopperOrders"},{"id":4544,"kind":2048,"name":"guestOrderLookup","url":"classes/shopperorders.shopperorders-3.html#guestorderlookup-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperOrders.ShopperOrders"},{"id":4545,"kind":2048,"name":"removePaymentInstrumentFromOrder","url":"classes/shopperorders.shopperorders-3.html#removepaymentinstrumentfromorder-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperOrders.ShopperOrders"},{"id":4546,"kind":2048,"name":"updatePaymentInstrumentForOrder","url":"classes/shopperorders.shopperorders-3.html#updatepaymentinstrumentfororder-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperOrders.ShopperOrders"},{"id":4547,"kind":4194304,"name":"GetOrderExpandEnum","url":"modules/shopperorders.html#getorderexpandenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4548,"kind":4194304,"name":"createOrderQueryParameters","url":"modules/shopperorders.html#createorderqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4549,"kind":65536,"name":"__type","url":"modules/shopperorders.html#createorderqueryparameters-2.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperOrders.createOrderQueryParameters"},{"id":4550,"kind":32,"name":"siteId","url":"modules/shopperorders.html#createorderqueryparameters-2.__type-1.siteid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.createOrderQueryParameters.__type"},{"id":4551,"kind":32,"name":"locale","url":"modules/shopperorders.html#createorderqueryparameters-2.__type-1.locale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.createOrderQueryParameters.__type"},{"id":4552,"kind":4194304,"name":"createOrderPathParameters","url":"modules/shopperorders.html#createorderpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4553,"kind":65536,"name":"__type","url":"modules/shopperorders.html#createorderpathparameters-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperOrders.createOrderPathParameters"},{"id":4554,"kind":32,"name":"organizationId","url":"modules/shopperorders.html#createorderpathparameters-2.__type.organizationid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.createOrderPathParameters.__type"},{"id":4555,"kind":4194304,"name":"createPaymentInstrumentForOrderQueryParameters","url":"modules/shopperorders.html#createpaymentinstrumentfororderqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4556,"kind":65536,"name":"__type","url":"modules/shopperorders.html#createpaymentinstrumentfororderqueryparameters-2.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperOrders.createPaymentInstrumentForOrderQueryParameters"},{"id":4557,"kind":32,"name":"siteId","url":"modules/shopperorders.html#createpaymentinstrumentfororderqueryparameters-2.__type-3.siteid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.createPaymentInstrumentForOrderQueryParameters.__type"},{"id":4558,"kind":32,"name":"locale","url":"modules/shopperorders.html#createpaymentinstrumentfororderqueryparameters-2.__type-3.locale-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.createPaymentInstrumentForOrderQueryParameters.__type"},{"id":4559,"kind":4194304,"name":"createPaymentInstrumentForOrderPathParameters","url":"modules/shopperorders.html#createpaymentinstrumentfororderpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4560,"kind":65536,"name":"__type","url":"modules/shopperorders.html#createpaymentinstrumentfororderpathparameters-2.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperOrders.createPaymentInstrumentForOrderPathParameters"},{"id":4561,"kind":32,"name":"organizationId","url":"modules/shopperorders.html#createpaymentinstrumentfororderpathparameters-2.__type-2.organizationid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.createPaymentInstrumentForOrderPathParameters.__type"},{"id":4562,"kind":32,"name":"orderNo","url":"modules/shopperorders.html#createpaymentinstrumentfororderpathparameters-2.__type-2.orderno","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.createPaymentInstrumentForOrderPathParameters.__type"},{"id":4563,"kind":4194304,"name":"failOrderQueryParameters","url":"modules/shopperorders.html#failorderqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4564,"kind":65536,"name":"__type","url":"modules/shopperorders.html#failorderqueryparameters-2.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperOrders.failOrderQueryParameters"},{"id":4565,"kind":32,"name":"siteId","url":"modules/shopperorders.html#failorderqueryparameters-2.__type-5.siteid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.failOrderQueryParameters.__type"},{"id":4566,"kind":32,"name":"locale","url":"modules/shopperorders.html#failorderqueryparameters-2.__type-5.locale-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.failOrderQueryParameters.__type"},{"id":4567,"kind":32,"name":"reopenBasket","url":"modules/shopperorders.html#failorderqueryparameters-2.__type-5.reopenbasket","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.failOrderQueryParameters.__type"},{"id":4568,"kind":4194304,"name":"failOrderPathParameters","url":"modules/shopperorders.html#failorderpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4569,"kind":65536,"name":"__type","url":"modules/shopperorders.html#failorderpathparameters-2.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperOrders.failOrderPathParameters"},{"id":4570,"kind":32,"name":"organizationId","url":"modules/shopperorders.html#failorderpathparameters-2.__type-4.organizationid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.failOrderPathParameters.__type"},{"id":4571,"kind":32,"name":"orderNo","url":"modules/shopperorders.html#failorderpathparameters-2.__type-4.orderno-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.failOrderPathParameters.__type"},{"id":4572,"kind":4194304,"name":"getOrderQueryParameters","url":"modules/shopperorders.html#getorderqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4573,"kind":65536,"name":"__type","url":"modules/shopperorders.html#getorderqueryparameters-2.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperOrders.getOrderQueryParameters"},{"id":4574,"kind":32,"name":"siteId","url":"modules/shopperorders.html#getorderqueryparameters-2.__type-7.siteid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.getOrderQueryParameters.__type"},{"id":4575,"kind":32,"name":"locale","url":"modules/shopperorders.html#getorderqueryparameters-2.__type-7.locale-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.getOrderQueryParameters.__type"},{"id":4576,"kind":32,"name":"expand","url":"modules/shopperorders.html#getorderqueryparameters-2.__type-7.expand","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.getOrderQueryParameters.__type"},{"id":4577,"kind":4194304,"name":"getOrderPathParameters","url":"modules/shopperorders.html#getorderpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4578,"kind":65536,"name":"__type","url":"modules/shopperorders.html#getorderpathparameters-2.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperOrders.getOrderPathParameters"},{"id":4579,"kind":32,"name":"orderNo","url":"modules/shopperorders.html#getorderpathparameters-2.__type-6.orderno-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.getOrderPathParameters.__type"},{"id":4580,"kind":32,"name":"organizationId","url":"modules/shopperorders.html#getorderpathparameters-2.__type-6.organizationid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.getOrderPathParameters.__type"},{"id":4581,"kind":4194304,"name":"getPaymentMethodsForOrderQueryParameters","url":"modules/shopperorders.html#getpaymentmethodsfororderqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4582,"kind":65536,"name":"__type","url":"modules/shopperorders.html#getpaymentmethodsfororderqueryparameters-2.__type-9","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperOrders.getPaymentMethodsForOrderQueryParameters"},{"id":4583,"kind":32,"name":"siteId","url":"modules/shopperorders.html#getpaymentmethodsfororderqueryparameters-2.__type-9.siteid-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.getPaymentMethodsForOrderQueryParameters.__type"},{"id":4584,"kind":32,"name":"locale","url":"modules/shopperorders.html#getpaymentmethodsfororderqueryparameters-2.__type-9.locale-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.getPaymentMethodsForOrderQueryParameters.__type"},{"id":4585,"kind":4194304,"name":"getPaymentMethodsForOrderPathParameters","url":"modules/shopperorders.html#getpaymentmethodsfororderpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4586,"kind":65536,"name":"__type","url":"modules/shopperorders.html#getpaymentmethodsfororderpathparameters-2.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperOrders.getPaymentMethodsForOrderPathParameters"},{"id":4587,"kind":32,"name":"organizationId","url":"modules/shopperorders.html#getpaymentmethodsfororderpathparameters-2.__type-8.organizationid-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.getPaymentMethodsForOrderPathParameters.__type"},{"id":4588,"kind":32,"name":"orderNo","url":"modules/shopperorders.html#getpaymentmethodsfororderpathparameters-2.__type-8.orderno-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.getPaymentMethodsForOrderPathParameters.__type"},{"id":4589,"kind":4194304,"name":"getTaxesFromOrderQueryParameters","url":"modules/shopperorders.html#gettaxesfromorderqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4590,"kind":65536,"name":"__type","url":"modules/shopperorders.html#gettaxesfromorderqueryparameters-2.__type-11","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperOrders.getTaxesFromOrderQueryParameters"},{"id":4591,"kind":32,"name":"siteId","url":"modules/shopperorders.html#gettaxesfromorderqueryparameters-2.__type-11.siteid-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.getTaxesFromOrderQueryParameters.__type"},{"id":4592,"kind":4194304,"name":"getTaxesFromOrderPathParameters","url":"modules/shopperorders.html#gettaxesfromorderpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4593,"kind":65536,"name":"__type","url":"modules/shopperorders.html#gettaxesfromorderpathparameters-2.__type-10","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperOrders.getTaxesFromOrderPathParameters"},{"id":4594,"kind":32,"name":"organizationId","url":"modules/shopperorders.html#gettaxesfromorderpathparameters-2.__type-10.organizationid-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.getTaxesFromOrderPathParameters.__type"},{"id":4595,"kind":32,"name":"orderNo","url":"modules/shopperorders.html#gettaxesfromorderpathparameters-2.__type-10.orderno-4","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.getTaxesFromOrderPathParameters.__type"},{"id":4596,"kind":4194304,"name":"guestOrderLookupQueryParameters","url":"modules/shopperorders.html#guestorderlookupqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4597,"kind":65536,"name":"__type","url":"modules/shopperorders.html#guestorderlookupqueryparameters-2.__type-13","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperOrders.guestOrderLookupQueryParameters"},{"id":4598,"kind":32,"name":"siteId","url":"modules/shopperorders.html#guestorderlookupqueryparameters-2.__type-13.siteid-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.guestOrderLookupQueryParameters.__type"},{"id":4599,"kind":32,"name":"locale","url":"modules/shopperorders.html#guestorderlookupqueryparameters-2.__type-13.locale-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.guestOrderLookupQueryParameters.__type"},{"id":4600,"kind":4194304,"name":"guestOrderLookupPathParameters","url":"modules/shopperorders.html#guestorderlookuppathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4601,"kind":65536,"name":"__type","url":"modules/shopperorders.html#guestorderlookuppathparameters-2.__type-12","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperOrders.guestOrderLookupPathParameters"},{"id":4602,"kind":32,"name":"organizationId","url":"modules/shopperorders.html#guestorderlookuppathparameters-2.__type-12.organizationid-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.guestOrderLookupPathParameters.__type"},{"id":4603,"kind":32,"name":"orderNo","url":"modules/shopperorders.html#guestorderlookuppathparameters-2.__type-12.orderno-5","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.guestOrderLookupPathParameters.__type"},{"id":4604,"kind":4194304,"name":"removePaymentInstrumentFromOrderQueryParameters","url":"modules/shopperorders.html#removepaymentinstrumentfromorderqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4605,"kind":65536,"name":"__type","url":"modules/shopperorders.html#removepaymentinstrumentfromorderqueryparameters-2.__type-15","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperOrders.removePaymentInstrumentFromOrderQueryParameters"},{"id":4606,"kind":32,"name":"siteId","url":"modules/shopperorders.html#removepaymentinstrumentfromorderqueryparameters-2.__type-15.siteid-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.removePaymentInstrumentFromOrderQueryParameters.__type"},{"id":4607,"kind":32,"name":"locale","url":"modules/shopperorders.html#removepaymentinstrumentfromorderqueryparameters-2.__type-15.locale-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.removePaymentInstrumentFromOrderQueryParameters.__type"},{"id":4608,"kind":4194304,"name":"removePaymentInstrumentFromOrderPathParameters","url":"modules/shopperorders.html#removepaymentinstrumentfromorderpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4609,"kind":65536,"name":"__type","url":"modules/shopperorders.html#removepaymentinstrumentfromorderpathparameters-2.__type-14","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperOrders.removePaymentInstrumentFromOrderPathParameters"},{"id":4610,"kind":32,"name":"paymentInstrumentId","url":"modules/shopperorders.html#removepaymentinstrumentfromorderpathparameters-2.__type-14.paymentinstrumentid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.removePaymentInstrumentFromOrderPathParameters.__type"},{"id":4611,"kind":32,"name":"organizationId","url":"modules/shopperorders.html#removepaymentinstrumentfromorderpathparameters-2.__type-14.organizationid-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.removePaymentInstrumentFromOrderPathParameters.__type"},{"id":4612,"kind":32,"name":"orderNo","url":"modules/shopperorders.html#removepaymentinstrumentfromorderpathparameters-2.__type-14.orderno-6","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.removePaymentInstrumentFromOrderPathParameters.__type"},{"id":4613,"kind":4194304,"name":"updatePaymentInstrumentForOrderQueryParameters","url":"modules/shopperorders.html#updatepaymentinstrumentfororderqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4614,"kind":65536,"name":"__type","url":"modules/shopperorders.html#updatepaymentinstrumentfororderqueryparameters-2.__type-17","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperOrders.updatePaymentInstrumentForOrderQueryParameters"},{"id":4615,"kind":32,"name":"siteId","url":"modules/shopperorders.html#updatepaymentinstrumentfororderqueryparameters-2.__type-17.siteid-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.updatePaymentInstrumentForOrderQueryParameters.__type"},{"id":4616,"kind":32,"name":"locale","url":"modules/shopperorders.html#updatepaymentinstrumentfororderqueryparameters-2.__type-17.locale-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.updatePaymentInstrumentForOrderQueryParameters.__type"},{"id":4617,"kind":4194304,"name":"updatePaymentInstrumentForOrderPathParameters","url":"modules/shopperorders.html#updatepaymentinstrumentfororderpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4618,"kind":65536,"name":"__type","url":"modules/shopperorders.html#updatepaymentinstrumentfororderpathparameters-2.__type-16","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperOrders.updatePaymentInstrumentForOrderPathParameters"},{"id":4619,"kind":32,"name":"paymentInstrumentId","url":"modules/shopperorders.html#updatepaymentinstrumentfororderpathparameters-2.__type-16.paymentinstrumentid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.updatePaymentInstrumentForOrderPathParameters.__type"},{"id":4620,"kind":32,"name":"organizationId","url":"modules/shopperorders.html#updatepaymentinstrumentfororderpathparameters-2.__type-16.organizationid-8","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.updatePaymentInstrumentForOrderPathParameters.__type"},{"id":4621,"kind":32,"name":"orderNo","url":"modules/shopperorders.html#updatepaymentinstrumentfororderpathparameters-2.__type-16.orderno-7","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperOrders.updatePaymentInstrumentForOrderPathParameters.__type"},{"id":4622,"kind":4194304,"name":"ShopperOrdersPathParameters","url":"modules/shopperorders.html#shopperorderspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4623,"kind":4194304,"name":"ShopperOrdersQueryParameters","url":"modules/shopperorders.html#shopperordersqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4624,"kind":4194304,"name":"ShopperOrdersParameters","url":"modules/shopperorders.html#shopperordersparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperOrders"},{"id":4625,"kind":16777216,"name":"GetOrderExpandEnum","url":"modules/shopperorders.html#getorderexpandenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4626,"kind":16777216,"name":"createOrderQueryParameters","url":"modules/shopperorders.html#createorderqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4627,"kind":16777216,"name":"createOrderPathParameters","url":"modules/shopperorders.html#createorderpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4628,"kind":16777216,"name":"createPaymentInstrumentForOrderQueryParameters","url":"modules/shopperorders.html#createpaymentinstrumentfororderqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4629,"kind":16777216,"name":"createPaymentInstrumentForOrderPathParameters","url":"modules/shopperorders.html#createpaymentinstrumentfororderpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4630,"kind":16777216,"name":"failOrderQueryParameters","url":"modules/shopperorders.html#failorderqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4631,"kind":16777216,"name":"failOrderPathParameters","url":"modules/shopperorders.html#failorderpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4632,"kind":16777216,"name":"getOrderQueryParameters","url":"modules/shopperorders.html#getorderqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4633,"kind":16777216,"name":"getOrderPathParameters","url":"modules/shopperorders.html#getorderpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4634,"kind":16777216,"name":"getPaymentMethodsForOrderQueryParameters","url":"modules/shopperorders.html#getpaymentmethodsfororderqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4635,"kind":16777216,"name":"getPaymentMethodsForOrderPathParameters","url":"modules/shopperorders.html#getpaymentmethodsfororderpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4636,"kind":16777216,"name":"getTaxesFromOrderQueryParameters","url":"modules/shopperorders.html#gettaxesfromorderqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4637,"kind":16777216,"name":"getTaxesFromOrderPathParameters","url":"modules/shopperorders.html#gettaxesfromorderpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4638,"kind":16777216,"name":"guestOrderLookupQueryParameters","url":"modules/shopperorders.html#guestorderlookupqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4639,"kind":16777216,"name":"guestOrderLookupPathParameters","url":"modules/shopperorders.html#guestorderlookuppathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4640,"kind":16777216,"name":"removePaymentInstrumentFromOrderQueryParameters","url":"modules/shopperorders.html#removepaymentinstrumentfromorderqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4641,"kind":16777216,"name":"removePaymentInstrumentFromOrderPathParameters","url":"modules/shopperorders.html#removepaymentinstrumentfromorderpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4642,"kind":16777216,"name":"updatePaymentInstrumentForOrderQueryParameters","url":"modules/shopperorders.html#updatepaymentinstrumentfororderqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4643,"kind":16777216,"name":"updatePaymentInstrumentForOrderPathParameters","url":"modules/shopperorders.html#updatepaymentinstrumentfororderpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4644,"kind":16777216,"name":"ShopperOrdersPathParameters","url":"modules/shopperorders.html#shopperorderspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4645,"kind":16777216,"name":"ShopperOrdersQueryParameters","url":"modules/shopperorders.html#shopperordersqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4646,"kind":16777216,"name":"ShopperOrdersParameters","url":"modules/shopperorders.html#shopperordersparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4647,"kind":16777216,"name":"ShopperOrders","url":"modules/shopperorders.html#shopperorders-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4648,"kind":16777216,"name":"defaultBaseUri","url":"modules/shopperorders.html#defaultbaseuri","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4649,"kind":16777216,"name":"GetOrderExpandEnum","url":"modules/shopperorders.html#getorderexpandenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4650,"kind":16777216,"name":"createOrderQueryParameters","url":"modules/shopperorders.html#createorderqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4651,"kind":16777216,"name":"createOrderPathParameters","url":"modules/shopperorders.html#createorderpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4652,"kind":16777216,"name":"createPaymentInstrumentForOrderQueryParameters","url":"modules/shopperorders.html#createpaymentinstrumentfororderqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4653,"kind":16777216,"name":"createPaymentInstrumentForOrderPathParameters","url":"modules/shopperorders.html#createpaymentinstrumentfororderpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4654,"kind":16777216,"name":"failOrderQueryParameters","url":"modules/shopperorders.html#failorderqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4655,"kind":16777216,"name":"failOrderPathParameters","url":"modules/shopperorders.html#failorderpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4656,"kind":16777216,"name":"getOrderQueryParameters","url":"modules/shopperorders.html#getorderqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4657,"kind":16777216,"name":"getOrderPathParameters","url":"modules/shopperorders.html#getorderpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4658,"kind":16777216,"name":"getPaymentMethodsForOrderQueryParameters","url":"modules/shopperorders.html#getpaymentmethodsfororderqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4659,"kind":16777216,"name":"getPaymentMethodsForOrderPathParameters","url":"modules/shopperorders.html#getpaymentmethodsfororderpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4660,"kind":16777216,"name":"getTaxesFromOrderQueryParameters","url":"modules/shopperorders.html#gettaxesfromorderqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4661,"kind":16777216,"name":"getTaxesFromOrderPathParameters","url":"modules/shopperorders.html#gettaxesfromorderpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4662,"kind":16777216,"name":"guestOrderLookupQueryParameters","url":"modules/shopperorders.html#guestorderlookupqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4663,"kind":16777216,"name":"guestOrderLookupPathParameters","url":"modules/shopperorders.html#guestorderlookuppathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4664,"kind":16777216,"name":"removePaymentInstrumentFromOrderQueryParameters","url":"modules/shopperorders.html#removepaymentinstrumentfromorderqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4665,"kind":16777216,"name":"removePaymentInstrumentFromOrderPathParameters","url":"modules/shopperorders.html#removepaymentinstrumentfromorderpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4666,"kind":16777216,"name":"updatePaymentInstrumentForOrderQueryParameters","url":"modules/shopperorders.html#updatepaymentinstrumentfororderqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4667,"kind":16777216,"name":"updatePaymentInstrumentForOrderPathParameters","url":"modules/shopperorders.html#updatepaymentinstrumentfororderpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4668,"kind":16777216,"name":"ShopperOrdersPathParameters","url":"modules/shopperorders.html#shopperorderspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4669,"kind":16777216,"name":"ShopperOrdersQueryParameters","url":"modules/shopperorders.html#shopperordersqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4670,"kind":16777216,"name":"ShopperOrdersParameters","url":"modules/shopperorders.html#shopperordersparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4671,"kind":16777216,"name":"ShopperOrders","url":"modules/shopperorders.html#shopperorders-2","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4672,"kind":16777216,"name":"Basket","url":"modules/shopperorders.html#basket-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4673,"kind":16777216,"name":"BasketChannelTypeEnum","url":"modules/shopperorders.html#basketchanneltypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4674,"kind":16777216,"name":"BasketTaxationEnum","url":"modules/shopperorders.html#baskettaxationenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4675,"kind":16777216,"name":"BasketProductItem","url":"modules/shopperorders.html#basketproductitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4676,"kind":16777216,"name":"BonusDiscountLineItem","url":"modules/shopperorders.html#bonusdiscountlineitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4677,"kind":16777216,"name":"CouponItem","url":"modules/shopperorders.html#couponitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4678,"kind":16777216,"name":"CouponItemStatusCodeEnum","url":"modules/shopperorders.html#couponitemstatuscodeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4679,"kind":16777216,"name":"CustomerInfo","url":"modules/shopperorders.html#customerinfo-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4680,"kind":16777216,"name":"Discount","url":"modules/shopperorders.html#discount-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4681,"kind":16777216,"name":"DiscountTypeEnum","url":"modules/shopperorders.html#discounttypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4682,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperorders.html#errorresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4683,"kind":16777216,"name":"FailOrderRequest","url":"modules/shopperorders.html#failorderrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4684,"kind":16777216,"name":"FailOrderRequestReasonCodeEnum","url":"modules/shopperorders.html#failorderrequestreasoncodeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4685,"kind":16777216,"name":"GiftCardRequest","url":"modules/shopperorders.html#giftcardrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4686,"kind":16777216,"name":"GiftCardResponse","url":"modules/shopperorders.html#giftcardresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4687,"kind":16777216,"name":"GiftCertificateItem","url":"modules/shopperorders.html#giftcertificateitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4688,"kind":16777216,"name":"GroupedTaxItem","url":"modules/shopperorders.html#groupedtaxitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4689,"kind":16777216,"name":"LocaleCode","url":"modules/shopperorders.html#localecode-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4690,"kind":16777216,"name":"OmsData","url":"modules/shopperorders.html#omsdata-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4691,"kind":16777216,"name":"OmsProductData","url":"modules/shopperorders.html#omsproductdata-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4692,"kind":16777216,"name":"OmsProductDataStatusEnum","url":"modules/shopperorders.html#omsproductdatastatusenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4693,"kind":16777216,"name":"OmsShipment","url":"modules/shopperorders.html#omsshipment-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4694,"kind":16777216,"name":"OmsShipmentItem","url":"modules/shopperorders.html#omsshipmentitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4695,"kind":16777216,"name":"OptionItem","url":"modules/shopperorders.html#optionitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4696,"kind":16777216,"name":"Order","url":"modules/shopperorders.html#order-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4697,"kind":16777216,"name":"OrderChannelTypeEnum","url":"modules/shopperorders.html#orderchanneltypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4698,"kind":16777216,"name":"OrderConfirmationStatusEnum","url":"modules/shopperorders.html#orderconfirmationstatusenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4699,"kind":16777216,"name":"OrderExportStatusEnum","url":"modules/shopperorders.html#orderexportstatusenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4700,"kind":16777216,"name":"OrderPaymentStatusEnum","url":"modules/shopperorders.html#orderpaymentstatusenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4701,"kind":16777216,"name":"OrderShippingStatusEnum","url":"modules/shopperorders.html#ordershippingstatusenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4702,"kind":16777216,"name":"OrderStatusEnum","url":"modules/shopperorders.html#orderstatusenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4703,"kind":16777216,"name":"OrderTaxationEnum","url":"modules/shopperorders.html#ordertaxationenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4704,"kind":16777216,"name":"OrderAddress","url":"modules/shopperorders.html#orderaddress-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4705,"kind":16777216,"name":"OrderLookupRequest","url":"modules/shopperorders.html#orderlookuprequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4706,"kind":16777216,"name":"OrderPaymentCardRequest","url":"modules/shopperorders.html#orderpaymentcardrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4707,"kind":16777216,"name":"OrderPaymentInstrument","url":"modules/shopperorders.html#orderpaymentinstrument-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4708,"kind":16777216,"name":"OrderPaymentInstrumentPaymentReference","url":"modules/shopperorders.html#orderpaymentinstrumentpaymentreference-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4709,"kind":16777216,"name":"OrderPaymentInstrumentPaymentReferenceGatewayEnum","url":"modules/shopperorders.html#orderpaymentinstrumentpaymentreferencegatewayenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4710,"kind":16777216,"name":"OrderPaymentInstrumentPaymentReferenceGatewayProperties","url":"modules/shopperorders.html#orderpaymentinstrumentpaymentreferencegatewayproperties-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4711,"kind":16777216,"name":"OrderPaymentInstrumentRequest","url":"modules/shopperorders.html#orderpaymentinstrumentrequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4712,"kind":16777216,"name":"OrderProductItem","url":"modules/shopperorders.html#orderproductitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4713,"kind":16777216,"name":"PaymentCard","url":"modules/shopperorders.html#paymentcard-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4714,"kind":16777216,"name":"PaymentCardSpec","url":"modules/shopperorders.html#paymentcardspec-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4715,"kind":16777216,"name":"PaymentMethod","url":"modules/shopperorders.html#paymentmethod-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4716,"kind":16777216,"name":"PaymentMethodResult","url":"modules/shopperorders.html#paymentmethodresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4717,"kind":16777216,"name":"PaymentReferenceRequest","url":"modules/shopperorders.html#paymentreferencerequest-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4718,"kind":16777216,"name":"PaymentReferenceRequestGatewayEnum","url":"modules/shopperorders.html#paymentreferencerequestgatewayenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4719,"kind":16777216,"name":"PaymentReferenceRequestGatewayProperties","url":"modules/shopperorders.html#paymentreferencerequestgatewayproperties-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4720,"kind":16777216,"name":"PriceAdjustment","url":"modules/shopperorders.html#priceadjustment-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4721,"kind":16777216,"name":"ProductDetailsLink","url":"modules/shopperorders.html#productdetailslink-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4722,"kind":16777216,"name":"ProductItem","url":"modules/shopperorders.html#productitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4723,"kind":16777216,"name":"ProductListItemReference","url":"modules/shopperorders.html#productlistitemreference-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4724,"kind":16777216,"name":"ProductListItemReferenceTypeEnum","url":"modules/shopperorders.html#productlistitemreferencetypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4725,"kind":16777216,"name":"ProductListLink","url":"modules/shopperorders.html#productlistlink-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4726,"kind":16777216,"name":"ProductListLinkTypeEnum","url":"modules/shopperorders.html#productlistlinktypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4727,"kind":16777216,"name":"Shipment","url":"modules/shopperorders.html#shipment-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4728,"kind":16777216,"name":"ShipmentShippingStatusEnum","url":"modules/shopperorders.html#shipmentshippingstatusenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4729,"kind":16777216,"name":"ShippingItem","url":"modules/shopperorders.html#shippingitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4730,"kind":16777216,"name":"ShippingMethod","url":"modules/shopperorders.html#shippingmethod-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4731,"kind":16777216,"name":"ShippingPromotion","url":"modules/shopperorders.html#shippingpromotion-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4732,"kind":16777216,"name":"Status","url":"modules/shopperorders.html#status-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4733,"kind":16777216,"name":"TaxItem","url":"modules/shopperorders.html#taxitem-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4734,"kind":16777216,"name":"TaxItems","url":"modules/shopperorders.html#taxitems-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4735,"kind":16777216,"name":"Taxes","url":"modules/shopperorders.html#taxes-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperOrders"},{"id":4736,"kind":2,"name":"ShopperOrdersTypes","url":"modules/shopperorders.shopperorderstypes.html","classes":"tsd-kind-namespace tsd-parent-kind-module","parent":"shopperOrders"},{"id":4737,"kind":4194304,"name":"ShopperOrdersPathParameters","url":"modules/shopperorders.shopperorderstypes.html#shopperorderspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4738,"kind":4194304,"name":"ShopperOrdersQueryParameters","url":"modules/shopperorders.shopperorderstypes.html#shopperordersqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4739,"kind":4194304,"name":"createOrderQueryParameters","url":"modules/shopperorders.shopperorderstypes.html#createorderqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4740,"kind":4194304,"name":"createOrderPathParameters","url":"modules/shopperorders.shopperorderstypes.html#createorderpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4741,"kind":4194304,"name":"createPaymentInstrumentForOrderQueryParameters","url":"modules/shopperorders.shopperorderstypes.html#createpaymentinstrumentfororderqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4742,"kind":4194304,"name":"createPaymentInstrumentForOrderPathParameters","url":"modules/shopperorders.shopperorderstypes.html#createpaymentinstrumentfororderpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4743,"kind":4194304,"name":"failOrderQueryParameters","url":"modules/shopperorders.shopperorderstypes.html#failorderqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4744,"kind":4194304,"name":"failOrderPathParameters","url":"modules/shopperorders.shopperorderstypes.html#failorderpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4745,"kind":4194304,"name":"GetOrderExpandEnum","url":"modules/shopperorders.shopperorderstypes.html#getorderexpandenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4746,"kind":4194304,"name":"getOrderQueryParameters","url":"modules/shopperorders.shopperorderstypes.html#getorderqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4747,"kind":4194304,"name":"getOrderPathParameters","url":"modules/shopperorders.shopperorderstypes.html#getorderpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4748,"kind":4194304,"name":"getPaymentMethodsForOrderQueryParameters","url":"modules/shopperorders.shopperorderstypes.html#getpaymentmethodsfororderqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4749,"kind":4194304,"name":"getPaymentMethodsForOrderPathParameters","url":"modules/shopperorders.shopperorderstypes.html#getpaymentmethodsfororderpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4750,"kind":4194304,"name":"getTaxesFromOrderQueryParameters","url":"modules/shopperorders.shopperorderstypes.html#gettaxesfromorderqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4751,"kind":4194304,"name":"getTaxesFromOrderPathParameters","url":"modules/shopperorders.shopperorderstypes.html#gettaxesfromorderpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4752,"kind":4194304,"name":"guestOrderLookupQueryParameters","url":"modules/shopperorders.shopperorderstypes.html#guestorderlookupqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4753,"kind":4194304,"name":"guestOrderLookupPathParameters","url":"modules/shopperorders.shopperorderstypes.html#guestorderlookuppathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4754,"kind":4194304,"name":"removePaymentInstrumentFromOrderQueryParameters","url":"modules/shopperorders.shopperorderstypes.html#removepaymentinstrumentfromorderqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4755,"kind":4194304,"name":"removePaymentInstrumentFromOrderPathParameters","url":"modules/shopperorders.shopperorderstypes.html#removepaymentinstrumentfromorderpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4756,"kind":4194304,"name":"updatePaymentInstrumentForOrderQueryParameters","url":"modules/shopperorders.shopperorderstypes.html#updatepaymentinstrumentfororderqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4757,"kind":4194304,"name":"updatePaymentInstrumentForOrderPathParameters","url":"modules/shopperorders.shopperorderstypes.html#updatepaymentinstrumentfororderpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4758,"kind":4194304,"name":"Basket","url":"modules/shopperorders.shopperorderstypes.html#basket","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4759,"kind":4194304,"name":"BasketChannelTypeEnum","url":"modules/shopperorders.shopperorderstypes.html#basketchanneltypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4760,"kind":4194304,"name":"BasketTaxationEnum","url":"modules/shopperorders.shopperorderstypes.html#baskettaxationenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4761,"kind":4194304,"name":"BasketProductItem","url":"modules/shopperorders.shopperorderstypes.html#basketproductitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4762,"kind":4194304,"name":"BonusDiscountLineItem","url":"modules/shopperorders.shopperorderstypes.html#bonusdiscountlineitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4763,"kind":4194304,"name":"CouponItem","url":"modules/shopperorders.shopperorderstypes.html#couponitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4764,"kind":4194304,"name":"CouponItemStatusCodeEnum","url":"modules/shopperorders.shopperorderstypes.html#couponitemstatuscodeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4765,"kind":4194304,"name":"CustomerInfo","url":"modules/shopperorders.shopperorderstypes.html#customerinfo","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4766,"kind":4194304,"name":"Discount","url":"modules/shopperorders.shopperorderstypes.html#discount","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4767,"kind":4194304,"name":"DiscountTypeEnum","url":"modules/shopperorders.shopperorderstypes.html#discounttypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4768,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperorders.shopperorderstypes.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4769,"kind":4194304,"name":"FailOrderRequest","url":"modules/shopperorders.shopperorderstypes.html#failorderrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4770,"kind":4194304,"name":"FailOrderRequestReasonCodeEnum","url":"modules/shopperorders.shopperorderstypes.html#failorderrequestreasoncodeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4771,"kind":4194304,"name":"GiftCardRequest","url":"modules/shopperorders.shopperorderstypes.html#giftcardrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4772,"kind":4194304,"name":"GiftCardResponse","url":"modules/shopperorders.shopperorderstypes.html#giftcardresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4773,"kind":4194304,"name":"GiftCertificateItem","url":"modules/shopperorders.shopperorderstypes.html#giftcertificateitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4774,"kind":4194304,"name":"GroupedTaxItem","url":"modules/shopperorders.shopperorderstypes.html#groupedtaxitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4775,"kind":4194304,"name":"LocaleCode","url":"modules/shopperorders.shopperorderstypes.html#localecode","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4776,"kind":4194304,"name":"OmsData","url":"modules/shopperorders.shopperorderstypes.html#omsdata","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4777,"kind":4194304,"name":"OmsProductData","url":"modules/shopperorders.shopperorderstypes.html#omsproductdata","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4778,"kind":4194304,"name":"OmsProductDataStatusEnum","url":"modules/shopperorders.shopperorderstypes.html#omsproductdatastatusenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4779,"kind":4194304,"name":"OmsShipment","url":"modules/shopperorders.shopperorderstypes.html#omsshipment","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4780,"kind":4194304,"name":"OmsShipmentItem","url":"modules/shopperorders.shopperorderstypes.html#omsshipmentitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4781,"kind":4194304,"name":"OptionItem","url":"modules/shopperorders.shopperorderstypes.html#optionitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4782,"kind":4194304,"name":"Order","url":"modules/shopperorders.shopperorderstypes.html#order","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4783,"kind":4194304,"name":"OrderChannelTypeEnum","url":"modules/shopperorders.shopperorderstypes.html#orderchanneltypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4784,"kind":4194304,"name":"OrderConfirmationStatusEnum","url":"modules/shopperorders.shopperorderstypes.html#orderconfirmationstatusenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4785,"kind":4194304,"name":"OrderExportStatusEnum","url":"modules/shopperorders.shopperorderstypes.html#orderexportstatusenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4786,"kind":4194304,"name":"OrderPaymentStatusEnum","url":"modules/shopperorders.shopperorderstypes.html#orderpaymentstatusenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4787,"kind":4194304,"name":"OrderShippingStatusEnum","url":"modules/shopperorders.shopperorderstypes.html#ordershippingstatusenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4788,"kind":4194304,"name":"OrderStatusEnum","url":"modules/shopperorders.shopperorderstypes.html#orderstatusenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4789,"kind":4194304,"name":"OrderTaxationEnum","url":"modules/shopperorders.shopperorderstypes.html#ordertaxationenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4790,"kind":4194304,"name":"OrderAddress","url":"modules/shopperorders.shopperorderstypes.html#orderaddress","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4791,"kind":4194304,"name":"OrderLookupRequest","url":"modules/shopperorders.shopperorderstypes.html#orderlookuprequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4792,"kind":4194304,"name":"OrderPaymentCardRequest","url":"modules/shopperorders.shopperorderstypes.html#orderpaymentcardrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4793,"kind":4194304,"name":"OrderPaymentInstrument","url":"modules/shopperorders.shopperorderstypes.html#orderpaymentinstrument","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4794,"kind":4194304,"name":"OrderPaymentInstrumentPaymentReference","url":"modules/shopperorders.shopperorderstypes.html#orderpaymentinstrumentpaymentreference","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4795,"kind":4194304,"name":"OrderPaymentInstrumentPaymentReferenceGatewayEnum","url":"modules/shopperorders.shopperorderstypes.html#orderpaymentinstrumentpaymentreferencegatewayenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4796,"kind":4194304,"name":"OrderPaymentInstrumentPaymentReferenceGatewayProperties","url":"modules/shopperorders.shopperorderstypes.html#orderpaymentinstrumentpaymentreferencegatewayproperties","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4797,"kind":4194304,"name":"OrderPaymentInstrumentRequest","url":"modules/shopperorders.shopperorderstypes.html#orderpaymentinstrumentrequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4798,"kind":4194304,"name":"OrderProductItem","url":"modules/shopperorders.shopperorderstypes.html#orderproductitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4799,"kind":4194304,"name":"PaymentCard","url":"modules/shopperorders.shopperorderstypes.html#paymentcard","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4800,"kind":4194304,"name":"PaymentCardSpec","url":"modules/shopperorders.shopperorderstypes.html#paymentcardspec","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4801,"kind":4194304,"name":"PaymentMethod","url":"modules/shopperorders.shopperorderstypes.html#paymentmethod","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4802,"kind":4194304,"name":"PaymentMethodResult","url":"modules/shopperorders.shopperorderstypes.html#paymentmethodresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4803,"kind":4194304,"name":"PaymentReferenceRequest","url":"modules/shopperorders.shopperorderstypes.html#paymentreferencerequest","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4804,"kind":4194304,"name":"PaymentReferenceRequestGatewayEnum","url":"modules/shopperorders.shopperorderstypes.html#paymentreferencerequestgatewayenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4805,"kind":4194304,"name":"PaymentReferenceRequestGatewayProperties","url":"modules/shopperorders.shopperorderstypes.html#paymentreferencerequestgatewayproperties","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4806,"kind":4194304,"name":"PriceAdjustment","url":"modules/shopperorders.shopperorderstypes.html#priceadjustment","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4807,"kind":4194304,"name":"ProductDetailsLink","url":"modules/shopperorders.shopperorderstypes.html#productdetailslink","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4808,"kind":4194304,"name":"ProductItem","url":"modules/shopperorders.shopperorderstypes.html#productitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4809,"kind":4194304,"name":"ProductListItemReference","url":"modules/shopperorders.shopperorderstypes.html#productlistitemreference","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4810,"kind":4194304,"name":"ProductListItemReferenceTypeEnum","url":"modules/shopperorders.shopperorderstypes.html#productlistitemreferencetypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4811,"kind":4194304,"name":"ProductListLink","url":"modules/shopperorders.shopperorderstypes.html#productlistlink","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4812,"kind":4194304,"name":"ProductListLinkTypeEnum","url":"modules/shopperorders.shopperorderstypes.html#productlistlinktypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4813,"kind":4194304,"name":"Shipment","url":"modules/shopperorders.shopperorderstypes.html#shipment","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4814,"kind":4194304,"name":"ShipmentShippingStatusEnum","url":"modules/shopperorders.shopperorderstypes.html#shipmentshippingstatusenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4815,"kind":4194304,"name":"ShippingItem","url":"modules/shopperorders.shopperorderstypes.html#shippingitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4816,"kind":4194304,"name":"ShippingMethod","url":"modules/shopperorders.shopperorderstypes.html#shippingmethod","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4817,"kind":4194304,"name":"ShippingPromotion","url":"modules/shopperorders.shopperorderstypes.html#shippingpromotion","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4818,"kind":4194304,"name":"Status","url":"modules/shopperorders.shopperorderstypes.html#status","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4819,"kind":4194304,"name":"TaxItem","url":"modules/shopperorders.shopperorderstypes.html#taxitem","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4820,"kind":4194304,"name":"TaxItems","url":"modules/shopperorders.shopperorderstypes.html#taxitems","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4821,"kind":4194304,"name":"Taxes","url":"modules/shopperorders.shopperorderstypes.html#taxes","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperOrders.ShopperOrdersTypes"},{"id":4822,"kind":1,"name":"shopperPayments","url":"modules/shopperpayments.html","classes":"tsd-kind-module"},{"id":4823,"kind":32,"name":"defaultBaseUri","url":"modules/shopperpayments.html#defaultbaseuri-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"shopperPayments"},{"id":4824,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperpayments.html#errorresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperPayments"},{"id":4825,"kind":4194304,"name":"PaymentConfigurationPaymentMethodsInner","url":"modules/shopperpayments.html#paymentconfigurationpaymentmethodsinner-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperPayments"},{"id":4826,"kind":4194304,"name":"PaymentConfigurationPaymentMethodSetAccountsInnerConfig","url":"modules/shopperpayments.html#paymentconfigurationpaymentmethodsetaccountsinnerconfig-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperPayments"},{"id":4827,"kind":4194304,"name":"PaymentConfigurationPaymentMethodSetAccountsInner","url":"modules/shopperpayments.html#paymentconfigurationpaymentmethodsetaccountsinner-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperPayments"},{"id":4828,"kind":4194304,"name":"PaymentConfiguration","url":"modules/shopperpayments.html#paymentconfiguration-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperPayments"},{"id":4829,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperpayments.html#errorresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPayments"},{"id":4830,"kind":16777216,"name":"PaymentConfiguration","url":"modules/shopperpayments.html#paymentconfiguration","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPayments"},{"id":4831,"kind":16777216,"name":"PaymentConfigurationPaymentMethodSetAccountsInner","url":"modules/shopperpayments.html#paymentconfigurationpaymentmethodsetaccountsinner","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPayments"},{"id":4832,"kind":16777216,"name":"PaymentConfigurationPaymentMethodSetAccountsInnerConfig","url":"modules/shopperpayments.html#paymentconfigurationpaymentmethodsetaccountsinnerconfig","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPayments"},{"id":4833,"kind":16777216,"name":"PaymentConfigurationPaymentMethodsInner","url":"modules/shopperpayments.html#paymentconfigurationpaymentmethodsinner","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPayments"},{"id":4834,"kind":128,"name":"ShopperPayments","url":"classes/shopperpayments.shopperpayments-3.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"shopperPayments"},{"id":4835,"kind":1024,"name":"clientConfig","url":"classes/shopperpayments.shopperpayments-3.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class","parent":"shopperPayments.ShopperPayments"},{"id":4836,"kind":1024,"name":"defaultBaseUri","url":"classes/shopperpayments.shopperpayments-3.html#defaultbaseuri","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperPayments.ShopperPayments"},{"id":4837,"kind":2097152,"name":"apiPaths","url":"classes/shopperpayments.shopperpayments-3.html#apipaths","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-static","parent":"shopperPayments.ShopperPayments"},{"id":4838,"kind":32,"name":"getPaymentConfiguration","url":"classes/shopperpayments.shopperpayments-3.html#apipaths.getpaymentconfiguration-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperPayments.ShopperPayments.apiPaths"},{"id":4839,"kind":512,"name":"constructor","url":"classes/shopperpayments.shopperpayments-3.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"shopperPayments.ShopperPayments"},{"id":4840,"kind":1024,"name":"paramKeys","url":"classes/shopperpayments.shopperpayments-3.html#paramkeys","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperPayments.ShopperPayments"},{"id":4841,"kind":65536,"name":"__type","url":"classes/shopperpayments.shopperpayments-3.html#paramkeys.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"shopperPayments.ShopperPayments.paramKeys"},{"id":4842,"kind":32,"name":"getPaymentConfiguration","url":"classes/shopperpayments.shopperpayments-3.html#paramkeys.__type.getpaymentconfiguration","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperPayments.ShopperPayments.paramKeys.__type"},{"id":4843,"kind":32,"name":"getPaymentConfigurationRequired","url":"classes/shopperpayments.shopperpayments-3.html#paramkeys.__type.getpaymentconfigurationrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperPayments.ShopperPayments.paramKeys.__type"},{"id":4844,"kind":2048,"name":"getPaymentConfiguration","url":"classes/shopperpayments.shopperpayments-3.html#getpaymentconfiguration-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperPayments.ShopperPayments"},{"id":4845,"kind":4194304,"name":"getPaymentConfigurationQueryParameters","url":"modules/shopperpayments.html#getpaymentconfigurationqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperPayments"},{"id":4846,"kind":65536,"name":"__type","url":"modules/shopperpayments.html#getpaymentconfigurationqueryparameters-2.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperPayments.getPaymentConfigurationQueryParameters"},{"id":4847,"kind":32,"name":"siteId","url":"modules/shopperpayments.html#getpaymentconfigurationqueryparameters-2.__type-1.siteid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperPayments.getPaymentConfigurationQueryParameters.__type"},{"id":4848,"kind":32,"name":"currency","url":"modules/shopperpayments.html#getpaymentconfigurationqueryparameters-2.__type-1.currency","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperPayments.getPaymentConfigurationQueryParameters.__type"},{"id":4849,"kind":32,"name":"countryCode","url":"modules/shopperpayments.html#getpaymentconfigurationqueryparameters-2.__type-1.countrycode","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperPayments.getPaymentConfigurationQueryParameters.__type"},{"id":4850,"kind":32,"name":"zoneId","url":"modules/shopperpayments.html#getpaymentconfigurationqueryparameters-2.__type-1.zoneid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperPayments.getPaymentConfigurationQueryParameters.__type"},{"id":4851,"kind":32,"name":"amount","url":"modules/shopperpayments.html#getpaymentconfigurationqueryparameters-2.__type-1.amount","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperPayments.getPaymentConfigurationQueryParameters.__type"},{"id":4852,"kind":4194304,"name":"getPaymentConfigurationPathParameters","url":"modules/shopperpayments.html#getpaymentconfigurationpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperPayments"},{"id":4853,"kind":65536,"name":"__type","url":"modules/shopperpayments.html#getpaymentconfigurationpathparameters-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperPayments.getPaymentConfigurationPathParameters"},{"id":4854,"kind":32,"name":"organizationId","url":"modules/shopperpayments.html#getpaymentconfigurationpathparameters-2.__type.organizationid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperPayments.getPaymentConfigurationPathParameters.__type"},{"id":4855,"kind":4194304,"name":"ShopperPaymentsPathParameters","url":"modules/shopperpayments.html#shopperpaymentspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperPayments"},{"id":4856,"kind":4194304,"name":"ShopperPaymentsQueryParameters","url":"modules/shopperpayments.html#shopperpaymentsqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperPayments"},{"id":4857,"kind":4194304,"name":"ShopperPaymentsParameters","url":"modules/shopperpayments.html#shopperpaymentsparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperPayments"},{"id":4858,"kind":16777216,"name":"getPaymentConfigurationQueryParameters","url":"modules/shopperpayments.html#getpaymentconfigurationqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPayments"},{"id":4859,"kind":16777216,"name":"getPaymentConfigurationPathParameters","url":"modules/shopperpayments.html#getpaymentconfigurationpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPayments"},{"id":4860,"kind":16777216,"name":"ShopperPaymentsPathParameters","url":"modules/shopperpayments.html#shopperpaymentspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPayments"},{"id":4861,"kind":16777216,"name":"ShopperPaymentsQueryParameters","url":"modules/shopperpayments.html#shopperpaymentsqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPayments"},{"id":4862,"kind":16777216,"name":"ShopperPaymentsParameters","url":"modules/shopperpayments.html#shopperpaymentsparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPayments"},{"id":4863,"kind":16777216,"name":"ShopperPayments","url":"modules/shopperpayments.html#shopperpayments-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPayments"},{"id":4864,"kind":16777216,"name":"defaultBaseUri","url":"modules/shopperpayments.html#defaultbaseuri","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPayments"},{"id":4865,"kind":16777216,"name":"getPaymentConfigurationQueryParameters","url":"modules/shopperpayments.html#getpaymentconfigurationqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPayments"},{"id":4866,"kind":16777216,"name":"getPaymentConfigurationPathParameters","url":"modules/shopperpayments.html#getpaymentconfigurationpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPayments"},{"id":4867,"kind":16777216,"name":"ShopperPaymentsPathParameters","url":"modules/shopperpayments.html#shopperpaymentspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPayments"},{"id":4868,"kind":16777216,"name":"ShopperPaymentsQueryParameters","url":"modules/shopperpayments.html#shopperpaymentsqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPayments"},{"id":4869,"kind":16777216,"name":"ShopperPaymentsParameters","url":"modules/shopperpayments.html#shopperpaymentsparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPayments"},{"id":4870,"kind":16777216,"name":"ShopperPayments","url":"modules/shopperpayments.html#shopperpayments-2","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPayments"},{"id":4871,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperpayments.html#errorresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPayments"},{"id":4872,"kind":16777216,"name":"PaymentConfiguration","url":"modules/shopperpayments.html#paymentconfiguration-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPayments"},{"id":4873,"kind":16777216,"name":"PaymentConfigurationPaymentMethodSetAccountsInner","url":"modules/shopperpayments.html#paymentconfigurationpaymentmethodsetaccountsinner-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPayments"},{"id":4874,"kind":16777216,"name":"PaymentConfigurationPaymentMethodSetAccountsInnerConfig","url":"modules/shopperpayments.html#paymentconfigurationpaymentmethodsetaccountsinnerconfig-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPayments"},{"id":4875,"kind":16777216,"name":"PaymentConfigurationPaymentMethodsInner","url":"modules/shopperpayments.html#paymentconfigurationpaymentmethodsinner-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPayments"},{"id":4876,"kind":2,"name":"ShopperPaymentsTypes","url":"modules/shopperpayments.shopperpaymentstypes.html","classes":"tsd-kind-namespace tsd-parent-kind-module","parent":"shopperPayments"},{"id":4877,"kind":4194304,"name":"ShopperPaymentsPathParameters","url":"modules/shopperpayments.shopperpaymentstypes.html#shopperpaymentspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperPayments.ShopperPaymentsTypes"},{"id":4878,"kind":4194304,"name":"ShopperPaymentsQueryParameters","url":"modules/shopperpayments.shopperpaymentstypes.html#shopperpaymentsqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperPayments.ShopperPaymentsTypes"},{"id":4879,"kind":4194304,"name":"getPaymentConfigurationQueryParameters","url":"modules/shopperpayments.shopperpaymentstypes.html#getpaymentconfigurationqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperPayments.ShopperPaymentsTypes"},{"id":4880,"kind":4194304,"name":"getPaymentConfigurationPathParameters","url":"modules/shopperpayments.shopperpaymentstypes.html#getpaymentconfigurationpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperPayments.ShopperPaymentsTypes"},{"id":4881,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperpayments.shopperpaymentstypes.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperPayments.ShopperPaymentsTypes"},{"id":4882,"kind":4194304,"name":"PaymentConfiguration","url":"modules/shopperpayments.shopperpaymentstypes.html#paymentconfiguration","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperPayments.ShopperPaymentsTypes"},{"id":4883,"kind":4194304,"name":"PaymentConfigurationPaymentMethodSetAccountsInner","url":"modules/shopperpayments.shopperpaymentstypes.html#paymentconfigurationpaymentmethodsetaccountsinner","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperPayments.ShopperPaymentsTypes"},{"id":4884,"kind":4194304,"name":"PaymentConfigurationPaymentMethodSetAccountsInnerConfig","url":"modules/shopperpayments.shopperpaymentstypes.html#paymentconfigurationpaymentmethodsetaccountsinnerconfig","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperPayments.ShopperPaymentsTypes"},{"id":4885,"kind":4194304,"name":"PaymentConfigurationPaymentMethodsInner","url":"modules/shopperpayments.shopperpaymentstypes.html#paymentconfigurationpaymentmethodsinner","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperPayments.ShopperPaymentsTypes"},{"id":4886,"kind":1,"name":"shopperProducts","url":"modules/shopperproducts.html","classes":"tsd-kind-module"},{"id":4887,"kind":32,"name":"defaultBaseUri","url":"modules/shopperproducts.html#defaultbaseuri-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"shopperProducts"},{"id":4888,"kind":4194304,"name":"Image","url":"modules/shopperproducts.html#image-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4889,"kind":4194304,"name":"VariationAttributeValue","url":"modules/shopperproducts.html#variationattributevalue-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4890,"kind":4194304,"name":"VariationAttribute","url":"modules/shopperproducts.html#variationattribute-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4891,"kind":4194304,"name":"ShippingPromotion","url":"modules/shopperproducts.html#shippingpromotion-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4892,"kind":4194304,"name":"ShippingMethod","url":"modules/shopperproducts.html#shippingmethod-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4893,"kind":4194304,"name":"VariationGroup","url":"modules/shopperproducts.html#variationgroup-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4894,"kind":4194304,"name":"ProductType","url":"modules/shopperproducts.html#producttype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4895,"kind":4194304,"name":"ProductPriceTable","url":"modules/shopperproducts.html#productpricetable-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4896,"kind":4194304,"name":"RecommendationType","url":"modules/shopperproducts.html#recommendationtype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4897,"kind":4194304,"name":"Recommendation","url":"modules/shopperproducts.html#recommendation-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4898,"kind":4194304,"name":"PriceRange","url":"modules/shopperproducts.html#pricerange-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4899,"kind":4194304,"name":"ProductPromotion","url":"modules/shopperproducts.html#productpromotion-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4900,"kind":4194304,"name":"Master","url":"modules/shopperproducts.html#master-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4901,"kind":4194304,"name":"Variant","url":"modules/shopperproducts.html#variant-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4902,"kind":4194304,"name":"PageMetaTag","url":"modules/shopperproducts.html#pagemetatag-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4903,"kind":4194304,"name":"ProductLink","url":"modules/shopperproducts.html#productlink-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4904,"kind":4194304,"name":"ProductLinkTypeEnum","url":"modules/shopperproducts.html#productlinktypeenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4905,"kind":4194304,"name":"OptionValue","url":"modules/shopperproducts.html#optionvalue-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4906,"kind":4194304,"name":"Option","url":"modules/shopperproducts.html#option-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4907,"kind":4194304,"name":"ImageGroup","url":"modules/shopperproducts.html#imagegroup-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4908,"kind":4194304,"name":"Inventory","url":"modules/shopperproducts.html#inventory-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4909,"kind":4194304,"name":"Product","url":"modules/shopperproducts.html#product-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4910,"kind":4194304,"name":"BundledProduct","url":"modules/shopperproducts.html#bundledproduct-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4911,"kind":4194304,"name":"PathRecord","url":"modules/shopperproducts.html#pathrecord-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4912,"kind":4194304,"name":"Category","url":"modules/shopperproducts.html#category-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4913,"kind":4194304,"name":"CategoryResult","url":"modules/shopperproducts.html#categoryresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4914,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperproducts.html#errorresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4915,"kind":4194304,"name":"LocaleCode","url":"modules/shopperproducts.html#localecode-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4916,"kind":4194304,"name":"ProductResult","url":"modules/shopperproducts.html#productresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4917,"kind":4194304,"name":"ResultBase","url":"modules/shopperproducts.html#resultbase-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4918,"kind":16777216,"name":"BundledProduct","url":"modules/shopperproducts.html#bundledproduct","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4919,"kind":16777216,"name":"Category","url":"modules/shopperproducts.html#category","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4920,"kind":16777216,"name":"CategoryResult","url":"modules/shopperproducts.html#categoryresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4921,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperproducts.html#errorresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4922,"kind":16777216,"name":"Image","url":"modules/shopperproducts.html#image","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4923,"kind":16777216,"name":"ImageGroup","url":"modules/shopperproducts.html#imagegroup","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4924,"kind":16777216,"name":"Inventory","url":"modules/shopperproducts.html#inventory","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4925,"kind":16777216,"name":"LocaleCode","url":"modules/shopperproducts.html#localecode","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4926,"kind":16777216,"name":"Master","url":"modules/shopperproducts.html#master","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4927,"kind":16777216,"name":"Option","url":"modules/shopperproducts.html#option","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4928,"kind":16777216,"name":"OptionValue","url":"modules/shopperproducts.html#optionvalue","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4929,"kind":16777216,"name":"PageMetaTag","url":"modules/shopperproducts.html#pagemetatag","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4930,"kind":16777216,"name":"PathRecord","url":"modules/shopperproducts.html#pathrecord","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4931,"kind":16777216,"name":"PriceRange","url":"modules/shopperproducts.html#pricerange","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4932,"kind":16777216,"name":"Product","url":"modules/shopperproducts.html#product","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4933,"kind":16777216,"name":"ProductLink","url":"modules/shopperproducts.html#productlink","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4934,"kind":16777216,"name":"ProductLinkTypeEnum","url":"modules/shopperproducts.html#productlinktypeenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4935,"kind":16777216,"name":"ProductPriceTable","url":"modules/shopperproducts.html#productpricetable","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4936,"kind":16777216,"name":"ProductPromotion","url":"modules/shopperproducts.html#productpromotion","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4937,"kind":16777216,"name":"ProductResult","url":"modules/shopperproducts.html#productresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4938,"kind":16777216,"name":"ProductType","url":"modules/shopperproducts.html#producttype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4939,"kind":16777216,"name":"Recommendation","url":"modules/shopperproducts.html#recommendation","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4940,"kind":16777216,"name":"RecommendationType","url":"modules/shopperproducts.html#recommendationtype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4941,"kind":16777216,"name":"ResultBase","url":"modules/shopperproducts.html#resultbase","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4942,"kind":16777216,"name":"ShippingMethod","url":"modules/shopperproducts.html#shippingmethod","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4943,"kind":16777216,"name":"ShippingPromotion","url":"modules/shopperproducts.html#shippingpromotion","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4944,"kind":16777216,"name":"Variant","url":"modules/shopperproducts.html#variant","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4945,"kind":16777216,"name":"VariationAttribute","url":"modules/shopperproducts.html#variationattribute","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4946,"kind":16777216,"name":"VariationAttributeValue","url":"modules/shopperproducts.html#variationattributevalue","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4947,"kind":16777216,"name":"VariationGroup","url":"modules/shopperproducts.html#variationgroup","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":4948,"kind":128,"name":"ShopperProducts","url":"classes/shopperproducts.shopperproducts-3.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"shopperProducts"},{"id":4949,"kind":1024,"name":"clientConfig","url":"classes/shopperproducts.shopperproducts-3.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class","parent":"shopperProducts.ShopperProducts"},{"id":4950,"kind":1024,"name":"defaultBaseUri","url":"classes/shopperproducts.shopperproducts-3.html#defaultbaseuri","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperProducts.ShopperProducts"},{"id":4951,"kind":2097152,"name":"apiPaths","url":"classes/shopperproducts.shopperproducts-3.html#apipaths","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-static","parent":"shopperProducts.ShopperProducts"},{"id":4952,"kind":32,"name":"getCategories","url":"classes/shopperproducts.shopperproducts-3.html#apipaths.getcategories-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperProducts.ShopperProducts.apiPaths"},{"id":4953,"kind":32,"name":"getCategory","url":"classes/shopperproducts.shopperproducts-3.html#apipaths.getcategory-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperProducts.ShopperProducts.apiPaths"},{"id":4954,"kind":32,"name":"getProduct","url":"classes/shopperproducts.shopperproducts-3.html#apipaths.getproduct-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperProducts.ShopperProducts.apiPaths"},{"id":4955,"kind":32,"name":"getProducts","url":"classes/shopperproducts.shopperproducts-3.html#apipaths.getproducts-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperProducts.ShopperProducts.apiPaths"},{"id":4956,"kind":512,"name":"constructor","url":"classes/shopperproducts.shopperproducts-3.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"shopperProducts.ShopperProducts"},{"id":4957,"kind":1024,"name":"paramKeys","url":"classes/shopperproducts.shopperproducts-3.html#paramkeys","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperProducts.ShopperProducts"},{"id":4958,"kind":65536,"name":"__type","url":"classes/shopperproducts.shopperproducts-3.html#paramkeys.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"shopperProducts.ShopperProducts.paramKeys"},{"id":4959,"kind":32,"name":"getCategories","url":"classes/shopperproducts.shopperproducts-3.html#paramkeys.__type.getcategories","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.ShopperProducts.paramKeys.__type"},{"id":4960,"kind":32,"name":"getCategoriesRequired","url":"classes/shopperproducts.shopperproducts-3.html#paramkeys.__type.getcategoriesrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.ShopperProducts.paramKeys.__type"},{"id":4961,"kind":32,"name":"getCategory","url":"classes/shopperproducts.shopperproducts-3.html#paramkeys.__type.getcategory","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.ShopperProducts.paramKeys.__type"},{"id":4962,"kind":32,"name":"getCategoryRequired","url":"classes/shopperproducts.shopperproducts-3.html#paramkeys.__type.getcategoryrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.ShopperProducts.paramKeys.__type"},{"id":4963,"kind":32,"name":"getProduct","url":"classes/shopperproducts.shopperproducts-3.html#paramkeys.__type.getproduct","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.ShopperProducts.paramKeys.__type"},{"id":4964,"kind":32,"name":"getProductRequired","url":"classes/shopperproducts.shopperproducts-3.html#paramkeys.__type.getproductrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.ShopperProducts.paramKeys.__type"},{"id":4965,"kind":32,"name":"getProducts","url":"classes/shopperproducts.shopperproducts-3.html#paramkeys.__type.getproducts","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.ShopperProducts.paramKeys.__type"},{"id":4966,"kind":32,"name":"getProductsRequired","url":"classes/shopperproducts.shopperproducts-3.html#paramkeys.__type.getproductsrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.ShopperProducts.paramKeys.__type"},{"id":4967,"kind":2048,"name":"getCategories","url":"classes/shopperproducts.shopperproducts-3.html#getcategories-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperProducts.ShopperProducts"},{"id":4968,"kind":2048,"name":"getCategory","url":"classes/shopperproducts.shopperproducts-3.html#getcategory-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperProducts.ShopperProducts"},{"id":4969,"kind":2048,"name":"getProduct","url":"classes/shopperproducts.shopperproducts-3.html#getproduct-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperProducts.ShopperProducts"},{"id":4970,"kind":2048,"name":"getProducts","url":"classes/shopperproducts.shopperproducts-3.html#getproducts-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperProducts.ShopperProducts"},{"id":4971,"kind":4194304,"name":"GetCategoriesLevelsEnum","url":"modules/shopperproducts.html#getcategorieslevelsenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4972,"kind":4194304,"name":"GetCategoryLevelsEnum","url":"modules/shopperproducts.html#getcategorylevelsenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4973,"kind":4194304,"name":"GetProductExpandEnum","url":"modules/shopperproducts.html#getproductexpandenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4974,"kind":4194304,"name":"GetProductsExpandEnum","url":"modules/shopperproducts.html#getproductsexpandenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4975,"kind":4194304,"name":"getCategoriesQueryParameters","url":"modules/shopperproducts.html#getcategoriesqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4976,"kind":65536,"name":"__type","url":"modules/shopperproducts.html#getcategoriesqueryparameters-2.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperProducts.getCategoriesQueryParameters"},{"id":4977,"kind":32,"name":"ids","url":"modules/shopperproducts.html#getcategoriesqueryparameters-2.__type-1.ids","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getCategoriesQueryParameters.__type"},{"id":4978,"kind":32,"name":"levels","url":"modules/shopperproducts.html#getcategoriesqueryparameters-2.__type-1.levels","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getCategoriesQueryParameters.__type"},{"id":4979,"kind":32,"name":"locale","url":"modules/shopperproducts.html#getcategoriesqueryparameters-2.__type-1.locale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getCategoriesQueryParameters.__type"},{"id":4980,"kind":32,"name":"siteId","url":"modules/shopperproducts.html#getcategoriesqueryparameters-2.__type-1.siteid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getCategoriesQueryParameters.__type"},{"id":4981,"kind":4194304,"name":"getCategoriesPathParameters","url":"modules/shopperproducts.html#getcategoriespathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4982,"kind":65536,"name":"__type","url":"modules/shopperproducts.html#getcategoriespathparameters-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperProducts.getCategoriesPathParameters"},{"id":4983,"kind":32,"name":"organizationId","url":"modules/shopperproducts.html#getcategoriespathparameters-2.__type.organizationid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getCategoriesPathParameters.__type"},{"id":4984,"kind":4194304,"name":"getCategoryQueryParameters","url":"modules/shopperproducts.html#getcategoryqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4985,"kind":65536,"name":"__type","url":"modules/shopperproducts.html#getcategoryqueryparameters-2.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperProducts.getCategoryQueryParameters"},{"id":4986,"kind":32,"name":"levels","url":"modules/shopperproducts.html#getcategoryqueryparameters-2.__type-3.levels-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getCategoryQueryParameters.__type"},{"id":4987,"kind":32,"name":"locale","url":"modules/shopperproducts.html#getcategoryqueryparameters-2.__type-3.locale-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getCategoryQueryParameters.__type"},{"id":4988,"kind":32,"name":"siteId","url":"modules/shopperproducts.html#getcategoryqueryparameters-2.__type-3.siteid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getCategoryQueryParameters.__type"},{"id":4989,"kind":4194304,"name":"getCategoryPathParameters","url":"modules/shopperproducts.html#getcategorypathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4990,"kind":65536,"name":"__type","url":"modules/shopperproducts.html#getcategorypathparameters-2.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperProducts.getCategoryPathParameters"},{"id":4991,"kind":32,"name":"id","url":"modules/shopperproducts.html#getcategorypathparameters-2.__type-2.id","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getCategoryPathParameters.__type"},{"id":4992,"kind":32,"name":"organizationId","url":"modules/shopperproducts.html#getcategorypathparameters-2.__type-2.organizationid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getCategoryPathParameters.__type"},{"id":4993,"kind":4194304,"name":"getProductQueryParameters","url":"modules/shopperproducts.html#getproductqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":4994,"kind":65536,"name":"__type","url":"modules/shopperproducts.html#getproductqueryparameters-2.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperProducts.getProductQueryParameters"},{"id":4995,"kind":32,"name":"inventoryIds","url":"modules/shopperproducts.html#getproductqueryparameters-2.__type-5.inventoryids","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductQueryParameters.__type"},{"id":4996,"kind":32,"name":"expand","url":"modules/shopperproducts.html#getproductqueryparameters-2.__type-5.expand","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductQueryParameters.__type"},{"id":4997,"kind":32,"name":"allImages","url":"modules/shopperproducts.html#getproductqueryparameters-2.__type-5.allimages","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductQueryParameters.__type"},{"id":4998,"kind":32,"name":"perPricebook","url":"modules/shopperproducts.html#getproductqueryparameters-2.__type-5.perpricebook","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductQueryParameters.__type"},{"id":4999,"kind":32,"name":"select","url":"modules/shopperproducts.html#getproductqueryparameters-2.__type-5.select","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductQueryParameters.__type"},{"id":5000,"kind":32,"name":"currency","url":"modules/shopperproducts.html#getproductqueryparameters-2.__type-5.currency","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductQueryParameters.__type"},{"id":5001,"kind":32,"name":"locale","url":"modules/shopperproducts.html#getproductqueryparameters-2.__type-5.locale-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductQueryParameters.__type"},{"id":5002,"kind":32,"name":"siteId","url":"modules/shopperproducts.html#getproductqueryparameters-2.__type-5.siteid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductQueryParameters.__type"},{"id":5003,"kind":4194304,"name":"getProductPathParameters","url":"modules/shopperproducts.html#getproductpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":5004,"kind":65536,"name":"__type","url":"modules/shopperproducts.html#getproductpathparameters-2.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperProducts.getProductPathParameters"},{"id":5005,"kind":32,"name":"organizationId","url":"modules/shopperproducts.html#getproductpathparameters-2.__type-4.organizationid-2","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductPathParameters.__type"},{"id":5006,"kind":32,"name":"id","url":"modules/shopperproducts.html#getproductpathparameters-2.__type-4.id-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductPathParameters.__type"},{"id":5007,"kind":4194304,"name":"getProductsQueryParameters","url":"modules/shopperproducts.html#getproductsqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":5008,"kind":65536,"name":"__type","url":"modules/shopperproducts.html#getproductsqueryparameters-2.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperProducts.getProductsQueryParameters"},{"id":5009,"kind":32,"name":"ids","url":"modules/shopperproducts.html#getproductsqueryparameters-2.__type-7.ids-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductsQueryParameters.__type"},{"id":5010,"kind":32,"name":"inventoryIds","url":"modules/shopperproducts.html#getproductsqueryparameters-2.__type-7.inventoryids-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductsQueryParameters.__type"},{"id":5011,"kind":32,"name":"expand","url":"modules/shopperproducts.html#getproductsqueryparameters-2.__type-7.expand-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductsQueryParameters.__type"},{"id":5012,"kind":32,"name":"allImages","url":"modules/shopperproducts.html#getproductsqueryparameters-2.__type-7.allimages-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductsQueryParameters.__type"},{"id":5013,"kind":32,"name":"perPricebook","url":"modules/shopperproducts.html#getproductsqueryparameters-2.__type-7.perpricebook-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductsQueryParameters.__type"},{"id":5014,"kind":32,"name":"siteId","url":"modules/shopperproducts.html#getproductsqueryparameters-2.__type-7.siteid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductsQueryParameters.__type"},{"id":5015,"kind":32,"name":"select","url":"modules/shopperproducts.html#getproductsqueryparameters-2.__type-7.select-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductsQueryParameters.__type"},{"id":5016,"kind":32,"name":"locale","url":"modules/shopperproducts.html#getproductsqueryparameters-2.__type-7.locale-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductsQueryParameters.__type"},{"id":5017,"kind":32,"name":"currency","url":"modules/shopperproducts.html#getproductsqueryparameters-2.__type-7.currency-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductsQueryParameters.__type"},{"id":5018,"kind":4194304,"name":"getProductsPathParameters","url":"modules/shopperproducts.html#getproductspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":5019,"kind":65536,"name":"__type","url":"modules/shopperproducts.html#getproductspathparameters-2.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperProducts.getProductsPathParameters"},{"id":5020,"kind":32,"name":"organizationId","url":"modules/shopperproducts.html#getproductspathparameters-2.__type-6.organizationid-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperProducts.getProductsPathParameters.__type"},{"id":5021,"kind":4194304,"name":"ShopperProductsPathParameters","url":"modules/shopperproducts.html#shopperproductspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":5022,"kind":4194304,"name":"ShopperProductsQueryParameters","url":"modules/shopperproducts.html#shopperproductsqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":5023,"kind":4194304,"name":"ShopperProductsParameters","url":"modules/shopperproducts.html#shopperproductsparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperProducts"},{"id":5024,"kind":16777216,"name":"GetCategoriesLevelsEnum","url":"modules/shopperproducts.html#getcategorieslevelsenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5025,"kind":16777216,"name":"GetCategoryLevelsEnum","url":"modules/shopperproducts.html#getcategorylevelsenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5026,"kind":16777216,"name":"GetProductExpandEnum","url":"modules/shopperproducts.html#getproductexpandenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5027,"kind":16777216,"name":"GetProductsExpandEnum","url":"modules/shopperproducts.html#getproductsexpandenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5028,"kind":16777216,"name":"getCategoriesQueryParameters","url":"modules/shopperproducts.html#getcategoriesqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5029,"kind":16777216,"name":"getCategoriesPathParameters","url":"modules/shopperproducts.html#getcategoriespathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5030,"kind":16777216,"name":"getCategoryQueryParameters","url":"modules/shopperproducts.html#getcategoryqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5031,"kind":16777216,"name":"getCategoryPathParameters","url":"modules/shopperproducts.html#getcategorypathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5032,"kind":16777216,"name":"getProductQueryParameters","url":"modules/shopperproducts.html#getproductqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5033,"kind":16777216,"name":"getProductPathParameters","url":"modules/shopperproducts.html#getproductpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5034,"kind":16777216,"name":"getProductsQueryParameters","url":"modules/shopperproducts.html#getproductsqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5035,"kind":16777216,"name":"getProductsPathParameters","url":"modules/shopperproducts.html#getproductspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5036,"kind":16777216,"name":"ShopperProductsPathParameters","url":"modules/shopperproducts.html#shopperproductspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5037,"kind":16777216,"name":"ShopperProductsQueryParameters","url":"modules/shopperproducts.html#shopperproductsqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5038,"kind":16777216,"name":"ShopperProductsParameters","url":"modules/shopperproducts.html#shopperproductsparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5039,"kind":16777216,"name":"ShopperProducts","url":"modules/shopperproducts.html#shopperproducts-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5040,"kind":16777216,"name":"defaultBaseUri","url":"modules/shopperproducts.html#defaultbaseuri","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5041,"kind":16777216,"name":"GetCategoriesLevelsEnum","url":"modules/shopperproducts.html#getcategorieslevelsenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5042,"kind":16777216,"name":"GetCategoryLevelsEnum","url":"modules/shopperproducts.html#getcategorylevelsenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5043,"kind":16777216,"name":"GetProductExpandEnum","url":"modules/shopperproducts.html#getproductexpandenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5044,"kind":16777216,"name":"GetProductsExpandEnum","url":"modules/shopperproducts.html#getproductsexpandenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5045,"kind":16777216,"name":"getCategoriesQueryParameters","url":"modules/shopperproducts.html#getcategoriesqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5046,"kind":16777216,"name":"getCategoriesPathParameters","url":"modules/shopperproducts.html#getcategoriespathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5047,"kind":16777216,"name":"getCategoryQueryParameters","url":"modules/shopperproducts.html#getcategoryqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5048,"kind":16777216,"name":"getCategoryPathParameters","url":"modules/shopperproducts.html#getcategorypathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5049,"kind":16777216,"name":"getProductQueryParameters","url":"modules/shopperproducts.html#getproductqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5050,"kind":16777216,"name":"getProductPathParameters","url":"modules/shopperproducts.html#getproductpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5051,"kind":16777216,"name":"getProductsQueryParameters","url":"modules/shopperproducts.html#getproductsqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5052,"kind":16777216,"name":"getProductsPathParameters","url":"modules/shopperproducts.html#getproductspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5053,"kind":16777216,"name":"ShopperProductsPathParameters","url":"modules/shopperproducts.html#shopperproductspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5054,"kind":16777216,"name":"ShopperProductsQueryParameters","url":"modules/shopperproducts.html#shopperproductsqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5055,"kind":16777216,"name":"ShopperProductsParameters","url":"modules/shopperproducts.html#shopperproductsparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5056,"kind":16777216,"name":"ShopperProducts","url":"modules/shopperproducts.html#shopperproducts-2","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5057,"kind":16777216,"name":"BundledProduct","url":"modules/shopperproducts.html#bundledproduct-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5058,"kind":16777216,"name":"Category","url":"modules/shopperproducts.html#category-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5059,"kind":16777216,"name":"CategoryResult","url":"modules/shopperproducts.html#categoryresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5060,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperproducts.html#errorresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5061,"kind":16777216,"name":"Image","url":"modules/shopperproducts.html#image-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5062,"kind":16777216,"name":"ImageGroup","url":"modules/shopperproducts.html#imagegroup-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5063,"kind":16777216,"name":"Inventory","url":"modules/shopperproducts.html#inventory-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5064,"kind":16777216,"name":"LocaleCode","url":"modules/shopperproducts.html#localecode-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5065,"kind":16777216,"name":"Master","url":"modules/shopperproducts.html#master-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5066,"kind":16777216,"name":"Option","url":"modules/shopperproducts.html#option-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5067,"kind":16777216,"name":"OptionValue","url":"modules/shopperproducts.html#optionvalue-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5068,"kind":16777216,"name":"PageMetaTag","url":"modules/shopperproducts.html#pagemetatag-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5069,"kind":16777216,"name":"PathRecord","url":"modules/shopperproducts.html#pathrecord-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5070,"kind":16777216,"name":"PriceRange","url":"modules/shopperproducts.html#pricerange-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5071,"kind":16777216,"name":"Product","url":"modules/shopperproducts.html#product-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5072,"kind":16777216,"name":"ProductLink","url":"modules/shopperproducts.html#productlink-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5073,"kind":16777216,"name":"ProductLinkTypeEnum","url":"modules/shopperproducts.html#productlinktypeenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5074,"kind":16777216,"name":"ProductPriceTable","url":"modules/shopperproducts.html#productpricetable-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5075,"kind":16777216,"name":"ProductPromotion","url":"modules/shopperproducts.html#productpromotion-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5076,"kind":16777216,"name":"ProductResult","url":"modules/shopperproducts.html#productresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5077,"kind":16777216,"name":"ProductType","url":"modules/shopperproducts.html#producttype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5078,"kind":16777216,"name":"Recommendation","url":"modules/shopperproducts.html#recommendation-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5079,"kind":16777216,"name":"RecommendationType","url":"modules/shopperproducts.html#recommendationtype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5080,"kind":16777216,"name":"ResultBase","url":"modules/shopperproducts.html#resultbase-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5081,"kind":16777216,"name":"ShippingMethod","url":"modules/shopperproducts.html#shippingmethod-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5082,"kind":16777216,"name":"ShippingPromotion","url":"modules/shopperproducts.html#shippingpromotion-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5083,"kind":16777216,"name":"Variant","url":"modules/shopperproducts.html#variant-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5084,"kind":16777216,"name":"VariationAttribute","url":"modules/shopperproducts.html#variationattribute-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5085,"kind":16777216,"name":"VariationAttributeValue","url":"modules/shopperproducts.html#variationattributevalue-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5086,"kind":16777216,"name":"VariationGroup","url":"modules/shopperproducts.html#variationgroup-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperProducts"},{"id":5087,"kind":2,"name":"ShopperProductsTypes","url":"modules/shopperproducts.shopperproductstypes.html","classes":"tsd-kind-namespace tsd-parent-kind-module","parent":"shopperProducts"},{"id":5088,"kind":4194304,"name":"ShopperProductsPathParameters","url":"modules/shopperproducts.shopperproductstypes.html#shopperproductspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5089,"kind":4194304,"name":"ShopperProductsQueryParameters","url":"modules/shopperproducts.shopperproductstypes.html#shopperproductsqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5090,"kind":4194304,"name":"GetCategoriesLevelsEnum","url":"modules/shopperproducts.shopperproductstypes.html#getcategorieslevelsenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5091,"kind":4194304,"name":"getCategoriesQueryParameters","url":"modules/shopperproducts.shopperproductstypes.html#getcategoriesqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5092,"kind":4194304,"name":"getCategoriesPathParameters","url":"modules/shopperproducts.shopperproductstypes.html#getcategoriespathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5093,"kind":4194304,"name":"GetCategoryLevelsEnum","url":"modules/shopperproducts.shopperproductstypes.html#getcategorylevelsenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5094,"kind":4194304,"name":"getCategoryQueryParameters","url":"modules/shopperproducts.shopperproductstypes.html#getcategoryqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5095,"kind":4194304,"name":"getCategoryPathParameters","url":"modules/shopperproducts.shopperproductstypes.html#getcategorypathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5096,"kind":4194304,"name":"GetProductExpandEnum","url":"modules/shopperproducts.shopperproductstypes.html#getproductexpandenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5097,"kind":4194304,"name":"getProductQueryParameters","url":"modules/shopperproducts.shopperproductstypes.html#getproductqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5098,"kind":4194304,"name":"getProductPathParameters","url":"modules/shopperproducts.shopperproductstypes.html#getproductpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5099,"kind":4194304,"name":"GetProductsExpandEnum","url":"modules/shopperproducts.shopperproductstypes.html#getproductsexpandenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5100,"kind":4194304,"name":"getProductsQueryParameters","url":"modules/shopperproducts.shopperproductstypes.html#getproductsqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5101,"kind":4194304,"name":"getProductsPathParameters","url":"modules/shopperproducts.shopperproductstypes.html#getproductspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5102,"kind":4194304,"name":"BundledProduct","url":"modules/shopperproducts.shopperproductstypes.html#bundledproduct","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5103,"kind":4194304,"name":"Category","url":"modules/shopperproducts.shopperproductstypes.html#category","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5104,"kind":4194304,"name":"CategoryResult","url":"modules/shopperproducts.shopperproductstypes.html#categoryresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5105,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperproducts.shopperproductstypes.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5106,"kind":4194304,"name":"Image","url":"modules/shopperproducts.shopperproductstypes.html#image","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5107,"kind":4194304,"name":"ImageGroup","url":"modules/shopperproducts.shopperproductstypes.html#imagegroup","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5108,"kind":4194304,"name":"Inventory","url":"modules/shopperproducts.shopperproductstypes.html#inventory","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5109,"kind":4194304,"name":"LocaleCode","url":"modules/shopperproducts.shopperproductstypes.html#localecode","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5110,"kind":4194304,"name":"Master","url":"modules/shopperproducts.shopperproductstypes.html#master","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5111,"kind":4194304,"name":"Option","url":"modules/shopperproducts.shopperproductstypes.html#option","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5112,"kind":4194304,"name":"OptionValue","url":"modules/shopperproducts.shopperproductstypes.html#optionvalue","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5113,"kind":4194304,"name":"PageMetaTag","url":"modules/shopperproducts.shopperproductstypes.html#pagemetatag","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5114,"kind":4194304,"name":"PathRecord","url":"modules/shopperproducts.shopperproductstypes.html#pathrecord","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5115,"kind":4194304,"name":"PriceRange","url":"modules/shopperproducts.shopperproductstypes.html#pricerange","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5116,"kind":4194304,"name":"Product","url":"modules/shopperproducts.shopperproductstypes.html#product","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5117,"kind":4194304,"name":"ProductLink","url":"modules/shopperproducts.shopperproductstypes.html#productlink","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5118,"kind":4194304,"name":"ProductLinkTypeEnum","url":"modules/shopperproducts.shopperproductstypes.html#productlinktypeenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5119,"kind":4194304,"name":"ProductPriceTable","url":"modules/shopperproducts.shopperproductstypes.html#productpricetable","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5120,"kind":4194304,"name":"ProductPromotion","url":"modules/shopperproducts.shopperproductstypes.html#productpromotion","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5121,"kind":4194304,"name":"ProductResult","url":"modules/shopperproducts.shopperproductstypes.html#productresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5122,"kind":4194304,"name":"ProductType","url":"modules/shopperproducts.shopperproductstypes.html#producttype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5123,"kind":4194304,"name":"Recommendation","url":"modules/shopperproducts.shopperproductstypes.html#recommendation","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5124,"kind":4194304,"name":"RecommendationType","url":"modules/shopperproducts.shopperproductstypes.html#recommendationtype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5125,"kind":4194304,"name":"ResultBase","url":"modules/shopperproducts.shopperproductstypes.html#resultbase","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5126,"kind":4194304,"name":"ShippingMethod","url":"modules/shopperproducts.shopperproductstypes.html#shippingmethod","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5127,"kind":4194304,"name":"ShippingPromotion","url":"modules/shopperproducts.shopperproductstypes.html#shippingpromotion","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5128,"kind":4194304,"name":"Variant","url":"modules/shopperproducts.shopperproductstypes.html#variant","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5129,"kind":4194304,"name":"VariationAttribute","url":"modules/shopperproducts.shopperproductstypes.html#variationattribute","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5130,"kind":4194304,"name":"VariationAttributeValue","url":"modules/shopperproducts.shopperproductstypes.html#variationattributevalue","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5131,"kind":4194304,"name":"VariationGroup","url":"modules/shopperproducts.shopperproductstypes.html#variationgroup","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperProducts.ShopperProductsTypes"},{"id":5132,"kind":1,"name":"shopperPromotions","url":"modules/shopperpromotions.html","classes":"tsd-kind-module"},{"id":5133,"kind":32,"name":"defaultBaseUri","url":"modules/shopperpromotions.html#defaultbaseuri-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5134,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperpromotions.html#errorresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5135,"kind":4194304,"name":"LocaleCode","url":"modules/shopperpromotions.html#localecode-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5136,"kind":4194304,"name":"Promotion","url":"modules/shopperpromotions.html#promotion-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5137,"kind":4194304,"name":"PromotionResult","url":"modules/shopperpromotions.html#promotionresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5138,"kind":4194304,"name":"ResultBase","url":"modules/shopperpromotions.html#resultbase-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5139,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperpromotions.html#errorresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5140,"kind":16777216,"name":"LocaleCode","url":"modules/shopperpromotions.html#localecode","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5141,"kind":16777216,"name":"Promotion","url":"modules/shopperpromotions.html#promotion","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5142,"kind":16777216,"name":"PromotionResult","url":"modules/shopperpromotions.html#promotionresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5143,"kind":16777216,"name":"ResultBase","url":"modules/shopperpromotions.html#resultbase","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5144,"kind":128,"name":"ShopperPromotions","url":"classes/shopperpromotions.shopperpromotions-3.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"shopperPromotions"},{"id":5145,"kind":1024,"name":"clientConfig","url":"classes/shopperpromotions.shopperpromotions-3.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class","parent":"shopperPromotions.ShopperPromotions"},{"id":5146,"kind":1024,"name":"defaultBaseUri","url":"classes/shopperpromotions.shopperpromotions-3.html#defaultbaseuri","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperPromotions.ShopperPromotions"},{"id":5147,"kind":2097152,"name":"apiPaths","url":"classes/shopperpromotions.shopperpromotions-3.html#apipaths","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-static","parent":"shopperPromotions.ShopperPromotions"},{"id":5148,"kind":32,"name":"getPromotions","url":"classes/shopperpromotions.shopperpromotions-3.html#apipaths.getpromotions-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperPromotions.ShopperPromotions.apiPaths"},{"id":5149,"kind":32,"name":"getPromotionsForCampaign","url":"classes/shopperpromotions.shopperpromotions-3.html#apipaths.getpromotionsforcampaign-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperPromotions.ShopperPromotions.apiPaths"},{"id":5150,"kind":512,"name":"constructor","url":"classes/shopperpromotions.shopperpromotions-3.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"shopperPromotions.ShopperPromotions"},{"id":5151,"kind":1024,"name":"paramKeys","url":"classes/shopperpromotions.shopperpromotions-3.html#paramkeys","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperPromotions.ShopperPromotions"},{"id":5152,"kind":65536,"name":"__type","url":"classes/shopperpromotions.shopperpromotions-3.html#paramkeys.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"shopperPromotions.ShopperPromotions.paramKeys"},{"id":5153,"kind":32,"name":"getPromotions","url":"classes/shopperpromotions.shopperpromotions-3.html#paramkeys.__type.getpromotions","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperPromotions.ShopperPromotions.paramKeys.__type"},{"id":5154,"kind":32,"name":"getPromotionsRequired","url":"classes/shopperpromotions.shopperpromotions-3.html#paramkeys.__type.getpromotionsrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperPromotions.ShopperPromotions.paramKeys.__type"},{"id":5155,"kind":32,"name":"getPromotionsForCampaign","url":"classes/shopperpromotions.shopperpromotions-3.html#paramkeys.__type.getpromotionsforcampaign","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperPromotions.ShopperPromotions.paramKeys.__type"},{"id":5156,"kind":32,"name":"getPromotionsForCampaignRequired","url":"classes/shopperpromotions.shopperpromotions-3.html#paramkeys.__type.getpromotionsforcampaignrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperPromotions.ShopperPromotions.paramKeys.__type"},{"id":5157,"kind":2048,"name":"getPromotions","url":"classes/shopperpromotions.shopperpromotions-3.html#getpromotions-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperPromotions.ShopperPromotions"},{"id":5158,"kind":2048,"name":"getPromotionsForCampaign","url":"classes/shopperpromotions.shopperpromotions-3.html#getpromotionsforcampaign-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperPromotions.ShopperPromotions"},{"id":5159,"kind":4194304,"name":"getPromotionsQueryParameters","url":"modules/shopperpromotions.html#getpromotionsqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5160,"kind":65536,"name":"__type","url":"modules/shopperpromotions.html#getpromotionsqueryparameters-2.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperPromotions.getPromotionsQueryParameters"},{"id":5161,"kind":32,"name":"siteId","url":"modules/shopperpromotions.html#getpromotionsqueryparameters-2.__type-3.siteid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperPromotions.getPromotionsQueryParameters.__type"},{"id":5162,"kind":32,"name":"ids","url":"modules/shopperpromotions.html#getpromotionsqueryparameters-2.__type-3.ids","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperPromotions.getPromotionsQueryParameters.__type"},{"id":5163,"kind":32,"name":"locale","url":"modules/shopperpromotions.html#getpromotionsqueryparameters-2.__type-3.locale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperPromotions.getPromotionsQueryParameters.__type"},{"id":5164,"kind":4194304,"name":"getPromotionsPathParameters","url":"modules/shopperpromotions.html#getpromotionspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5165,"kind":65536,"name":"__type","url":"modules/shopperpromotions.html#getpromotionspathparameters-2.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperPromotions.getPromotionsPathParameters"},{"id":5166,"kind":32,"name":"organizationId","url":"modules/shopperpromotions.html#getpromotionspathparameters-2.__type-2.organizationid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperPromotions.getPromotionsPathParameters.__type"},{"id":5167,"kind":4194304,"name":"getPromotionsForCampaignQueryParameters","url":"modules/shopperpromotions.html#getpromotionsforcampaignqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5168,"kind":65536,"name":"__type","url":"modules/shopperpromotions.html#getpromotionsforcampaignqueryparameters-2.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperPromotions.getPromotionsForCampaignQueryParameters"},{"id":5169,"kind":32,"name":"siteId","url":"modules/shopperpromotions.html#getpromotionsforcampaignqueryparameters-2.__type-1.siteid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperPromotions.getPromotionsForCampaignQueryParameters.__type"},{"id":5170,"kind":32,"name":"startDate","url":"modules/shopperpromotions.html#getpromotionsforcampaignqueryparameters-2.__type-1.startdate","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperPromotions.getPromotionsForCampaignQueryParameters.__type"},{"id":5171,"kind":32,"name":"endDate","url":"modules/shopperpromotions.html#getpromotionsforcampaignqueryparameters-2.__type-1.enddate","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperPromotions.getPromotionsForCampaignQueryParameters.__type"},{"id":5172,"kind":32,"name":"currency","url":"modules/shopperpromotions.html#getpromotionsforcampaignqueryparameters-2.__type-1.currency","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperPromotions.getPromotionsForCampaignQueryParameters.__type"},{"id":5173,"kind":4194304,"name":"getPromotionsForCampaignPathParameters","url":"modules/shopperpromotions.html#getpromotionsforcampaignpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5174,"kind":65536,"name":"__type","url":"modules/shopperpromotions.html#getpromotionsforcampaignpathparameters-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperPromotions.getPromotionsForCampaignPathParameters"},{"id":5175,"kind":32,"name":"campaignId","url":"modules/shopperpromotions.html#getpromotionsforcampaignpathparameters-2.__type.campaignid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperPromotions.getPromotionsForCampaignPathParameters.__type"},{"id":5176,"kind":32,"name":"organizationId","url":"modules/shopperpromotions.html#getpromotionsforcampaignpathparameters-2.__type.organizationid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperPromotions.getPromotionsForCampaignPathParameters.__type"},{"id":5177,"kind":4194304,"name":"ShopperPromotionsPathParameters","url":"modules/shopperpromotions.html#shopperpromotionspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5178,"kind":4194304,"name":"ShopperPromotionsQueryParameters","url":"modules/shopperpromotions.html#shopperpromotionsqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5179,"kind":4194304,"name":"ShopperPromotionsParameters","url":"modules/shopperpromotions.html#shopperpromotionsparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5180,"kind":16777216,"name":"getPromotionsQueryParameters","url":"modules/shopperpromotions.html#getpromotionsqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5181,"kind":16777216,"name":"getPromotionsPathParameters","url":"modules/shopperpromotions.html#getpromotionspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5182,"kind":16777216,"name":"getPromotionsForCampaignQueryParameters","url":"modules/shopperpromotions.html#getpromotionsforcampaignqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5183,"kind":16777216,"name":"getPromotionsForCampaignPathParameters","url":"modules/shopperpromotions.html#getpromotionsforcampaignpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5184,"kind":16777216,"name":"ShopperPromotionsPathParameters","url":"modules/shopperpromotions.html#shopperpromotionspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5185,"kind":16777216,"name":"ShopperPromotionsQueryParameters","url":"modules/shopperpromotions.html#shopperpromotionsqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5186,"kind":16777216,"name":"ShopperPromotionsParameters","url":"modules/shopperpromotions.html#shopperpromotionsparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5187,"kind":16777216,"name":"ShopperPromotions","url":"modules/shopperpromotions.html#shopperpromotions-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5188,"kind":16777216,"name":"defaultBaseUri","url":"modules/shopperpromotions.html#defaultbaseuri","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5189,"kind":16777216,"name":"getPromotionsQueryParameters","url":"modules/shopperpromotions.html#getpromotionsqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5190,"kind":16777216,"name":"getPromotionsPathParameters","url":"modules/shopperpromotions.html#getpromotionspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5191,"kind":16777216,"name":"getPromotionsForCampaignQueryParameters","url":"modules/shopperpromotions.html#getpromotionsforcampaignqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5192,"kind":16777216,"name":"getPromotionsForCampaignPathParameters","url":"modules/shopperpromotions.html#getpromotionsforcampaignpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5193,"kind":16777216,"name":"ShopperPromotionsPathParameters","url":"modules/shopperpromotions.html#shopperpromotionspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5194,"kind":16777216,"name":"ShopperPromotionsQueryParameters","url":"modules/shopperpromotions.html#shopperpromotionsqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5195,"kind":16777216,"name":"ShopperPromotionsParameters","url":"modules/shopperpromotions.html#shopperpromotionsparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5196,"kind":16777216,"name":"ShopperPromotions","url":"modules/shopperpromotions.html#shopperpromotions-2","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5197,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperpromotions.html#errorresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5198,"kind":16777216,"name":"LocaleCode","url":"modules/shopperpromotions.html#localecode-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5199,"kind":16777216,"name":"Promotion","url":"modules/shopperpromotions.html#promotion-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5200,"kind":16777216,"name":"PromotionResult","url":"modules/shopperpromotions.html#promotionresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5201,"kind":16777216,"name":"ResultBase","url":"modules/shopperpromotions.html#resultbase-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5202,"kind":2,"name":"ShopperPromotionsTypes","url":"modules/shopperpromotions.shopperpromotionstypes.html","classes":"tsd-kind-namespace tsd-parent-kind-module","parent":"shopperPromotions"},{"id":5203,"kind":4194304,"name":"ShopperPromotionsPathParameters","url":"modules/shopperpromotions.shopperpromotionstypes.html#shopperpromotionspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperPromotions.ShopperPromotionsTypes"},{"id":5204,"kind":4194304,"name":"ShopperPromotionsQueryParameters","url":"modules/shopperpromotions.shopperpromotionstypes.html#shopperpromotionsqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperPromotions.ShopperPromotionsTypes"},{"id":5205,"kind":4194304,"name":"getPromotionsQueryParameters","url":"modules/shopperpromotions.shopperpromotionstypes.html#getpromotionsqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperPromotions.ShopperPromotionsTypes"},{"id":5206,"kind":4194304,"name":"getPromotionsPathParameters","url":"modules/shopperpromotions.shopperpromotionstypes.html#getpromotionspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperPromotions.ShopperPromotionsTypes"},{"id":5207,"kind":4194304,"name":"getPromotionsForCampaignQueryParameters","url":"modules/shopperpromotions.shopperpromotionstypes.html#getpromotionsforcampaignqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperPromotions.ShopperPromotionsTypes"},{"id":5208,"kind":4194304,"name":"getPromotionsForCampaignPathParameters","url":"modules/shopperpromotions.shopperpromotionstypes.html#getpromotionsforcampaignpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperPromotions.ShopperPromotionsTypes"},{"id":5209,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperpromotions.shopperpromotionstypes.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperPromotions.ShopperPromotionsTypes"},{"id":5210,"kind":4194304,"name":"LocaleCode","url":"modules/shopperpromotions.shopperpromotionstypes.html#localecode","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperPromotions.ShopperPromotionsTypes"},{"id":5211,"kind":4194304,"name":"Promotion","url":"modules/shopperpromotions.shopperpromotionstypes.html#promotion","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperPromotions.ShopperPromotionsTypes"},{"id":5212,"kind":4194304,"name":"PromotionResult","url":"modules/shopperpromotions.shopperpromotionstypes.html#promotionresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperPromotions.ShopperPromotionsTypes"},{"id":5213,"kind":4194304,"name":"ResultBase","url":"modules/shopperpromotions.shopperpromotionstypes.html#resultbase","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperPromotions.ShopperPromotionsTypes"},{"id":5214,"kind":1,"name":"shopperSearch","url":"modules/shoppersearch.html","classes":"tsd-kind-module"},{"id":5215,"kind":32,"name":"defaultBaseUri","url":"modules/shoppersearch.html#defaultbaseuri-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"shopperSearch"},{"id":5216,"kind":4194304,"name":"AppliedProcessor","url":"modules/shoppersearch.html#appliedprocessor-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5217,"kind":4194304,"name":"SuggestedTerm","url":"modules/shoppersearch.html#suggestedterm-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5218,"kind":4194304,"name":"SuggestedTerms","url":"modules/shoppersearch.html#suggestedterms-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5219,"kind":4194304,"name":"SuggestedPhrase","url":"modules/shoppersearch.html#suggestedphrase-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5220,"kind":4194304,"name":"BrandSuggestions","url":"modules/shoppersearch.html#brandsuggestions-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5221,"kind":4194304,"name":"SuggestedCategory","url":"modules/shoppersearch.html#suggestedcategory-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5222,"kind":4194304,"name":"CategorySuggestions","url":"modules/shoppersearch.html#categorysuggestions-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5223,"kind":4194304,"name":"CustomSuggestions","url":"modules/shoppersearch.html#customsuggestions-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5224,"kind":4194304,"name":"EinsteinSuggestedPhrases","url":"modules/shoppersearch.html#einsteinsuggestedphrases-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5225,"kind":4194304,"name":"ErrorResponse","url":"modules/shoppersearch.html#errorresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5226,"kind":4194304,"name":"Image","url":"modules/shoppersearch.html#image-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5227,"kind":4194304,"name":"VariationAttributeValue","url":"modules/shoppersearch.html#variationattributevalue-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5228,"kind":4194304,"name":"VariationAttribute","url":"modules/shoppersearch.html#variationattribute-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5229,"kind":4194304,"name":"ImageGroup","url":"modules/shoppersearch.html#imagegroup-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5230,"kind":4194304,"name":"LocaleCode","url":"modules/shoppersearch.html#localecode-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5231,"kind":4194304,"name":"PageMetaTag","url":"modules/shoppersearch.html#pagemetatag-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5232,"kind":4194304,"name":"PaginatedResultBase","url":"modules/shoppersearch.html#paginatedresultbase-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5233,"kind":4194304,"name":"PriceRange","url":"modules/shoppersearch.html#pricerange-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5234,"kind":4194304,"name":"ProcessedQuery","url":"modules/shoppersearch.html#processedquery-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5235,"kind":4194304,"name":"ProductPriceTable","url":"modules/shoppersearch.html#productpricetable-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5236,"kind":4194304,"name":"ProductPromotion","url":"modules/shoppersearch.html#productpromotion-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5237,"kind":4194304,"name":"ProductRef","url":"modules/shoppersearch.html#productref-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5238,"kind":4194304,"name":"Variant","url":"modules/shoppersearch.html#variant-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5239,"kind":4194304,"name":"VariationGroup","url":"modules/shoppersearch.html#variationgroup-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5240,"kind":4194304,"name":"ProductType","url":"modules/shoppersearch.html#producttype-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5241,"kind":4194304,"name":"ProductSearchHit","url":"modules/shoppersearch.html#productsearchhit-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5242,"kind":4194304,"name":"ProductSearchRefinementValue","url":"modules/shoppersearch.html#productsearchrefinementvalue-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5243,"kind":4194304,"name":"ProductSearchRefinement","url":"modules/shoppersearch.html#productsearchrefinement-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5244,"kind":4194304,"name":"Suggestion","url":"modules/shoppersearch.html#suggestion-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5245,"kind":4194304,"name":"ProductSearchSortingOption","url":"modules/shoppersearch.html#productsearchsortingoption-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5246,"kind":4194304,"name":"ProductSearchResult","url":"modules/shoppersearch.html#productsearchresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5247,"kind":4194304,"name":"SuggestedProduct","url":"modules/shoppersearch.html#suggestedproduct-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5248,"kind":4194304,"name":"ProductSuggestions","url":"modules/shoppersearch.html#productsuggestions-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5249,"kind":4194304,"name":"ResultBase","url":"modules/shoppersearch.html#resultbase-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5250,"kind":4194304,"name":"SuggestionResult","url":"modules/shoppersearch.html#suggestionresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5251,"kind":16777216,"name":"AppliedProcessor","url":"modules/shoppersearch.html#appliedprocessor","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5252,"kind":16777216,"name":"BrandSuggestions","url":"modules/shoppersearch.html#brandsuggestions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5253,"kind":16777216,"name":"CategorySuggestions","url":"modules/shoppersearch.html#categorysuggestions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5254,"kind":16777216,"name":"CustomSuggestions","url":"modules/shoppersearch.html#customsuggestions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5255,"kind":16777216,"name":"EinsteinSuggestedPhrases","url":"modules/shoppersearch.html#einsteinsuggestedphrases","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5256,"kind":16777216,"name":"ErrorResponse","url":"modules/shoppersearch.html#errorresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5257,"kind":16777216,"name":"Image","url":"modules/shoppersearch.html#image","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5258,"kind":16777216,"name":"ImageGroup","url":"modules/shoppersearch.html#imagegroup","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5259,"kind":16777216,"name":"LocaleCode","url":"modules/shoppersearch.html#localecode","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5260,"kind":16777216,"name":"PageMetaTag","url":"modules/shoppersearch.html#pagemetatag","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5261,"kind":16777216,"name":"PaginatedResultBase","url":"modules/shoppersearch.html#paginatedresultbase","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5262,"kind":16777216,"name":"PriceRange","url":"modules/shoppersearch.html#pricerange","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5263,"kind":16777216,"name":"ProcessedQuery","url":"modules/shoppersearch.html#processedquery","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5264,"kind":16777216,"name":"ProductPriceTable","url":"modules/shoppersearch.html#productpricetable","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5265,"kind":16777216,"name":"ProductPromotion","url":"modules/shoppersearch.html#productpromotion","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5266,"kind":16777216,"name":"ProductRef","url":"modules/shoppersearch.html#productref","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5267,"kind":16777216,"name":"ProductSearchHit","url":"modules/shoppersearch.html#productsearchhit","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5268,"kind":16777216,"name":"ProductSearchRefinement","url":"modules/shoppersearch.html#productsearchrefinement","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5269,"kind":16777216,"name":"ProductSearchRefinementValue","url":"modules/shoppersearch.html#productsearchrefinementvalue","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5270,"kind":16777216,"name":"ProductSearchResult","url":"modules/shoppersearch.html#productsearchresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5271,"kind":16777216,"name":"ProductSearchSortingOption","url":"modules/shoppersearch.html#productsearchsortingoption","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5272,"kind":16777216,"name":"ProductSuggestions","url":"modules/shoppersearch.html#productsuggestions","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5273,"kind":16777216,"name":"ProductType","url":"modules/shoppersearch.html#producttype","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5274,"kind":16777216,"name":"ResultBase","url":"modules/shoppersearch.html#resultbase","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5275,"kind":16777216,"name":"SuggestedCategory","url":"modules/shoppersearch.html#suggestedcategory","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5276,"kind":16777216,"name":"SuggestedPhrase","url":"modules/shoppersearch.html#suggestedphrase","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5277,"kind":16777216,"name":"SuggestedProduct","url":"modules/shoppersearch.html#suggestedproduct","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5278,"kind":16777216,"name":"SuggestedTerm","url":"modules/shoppersearch.html#suggestedterm","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5279,"kind":16777216,"name":"SuggestedTerms","url":"modules/shoppersearch.html#suggestedterms","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5280,"kind":16777216,"name":"Suggestion","url":"modules/shoppersearch.html#suggestion","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5281,"kind":16777216,"name":"SuggestionResult","url":"modules/shoppersearch.html#suggestionresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5282,"kind":16777216,"name":"Variant","url":"modules/shoppersearch.html#variant","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5283,"kind":16777216,"name":"VariationAttribute","url":"modules/shoppersearch.html#variationattribute","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5284,"kind":16777216,"name":"VariationAttributeValue","url":"modules/shoppersearch.html#variationattributevalue","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5285,"kind":16777216,"name":"VariationGroup","url":"modules/shoppersearch.html#variationgroup","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5286,"kind":128,"name":"ShopperSearch","url":"classes/shoppersearch.shoppersearch-3.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"shopperSearch"},{"id":5287,"kind":1024,"name":"clientConfig","url":"classes/shoppersearch.shoppersearch-3.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class","parent":"shopperSearch.ShopperSearch"},{"id":5288,"kind":1024,"name":"defaultBaseUri","url":"classes/shoppersearch.shoppersearch-3.html#defaultbaseuri","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperSearch.ShopperSearch"},{"id":5289,"kind":2097152,"name":"apiPaths","url":"classes/shoppersearch.shoppersearch-3.html#apipaths","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-static","parent":"shopperSearch.ShopperSearch"},{"id":5290,"kind":32,"name":"getSearchSuggestions","url":"classes/shoppersearch.shoppersearch-3.html#apipaths.getsearchsuggestions-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperSearch.ShopperSearch.apiPaths"},{"id":5291,"kind":32,"name":"productSearch","url":"classes/shoppersearch.shoppersearch-3.html#apipaths.productsearch-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperSearch.ShopperSearch.apiPaths"},{"id":5292,"kind":512,"name":"constructor","url":"classes/shoppersearch.shoppersearch-3.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"shopperSearch.ShopperSearch"},{"id":5293,"kind":1024,"name":"paramKeys","url":"classes/shoppersearch.shoppersearch-3.html#paramkeys","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperSearch.ShopperSearch"},{"id":5294,"kind":65536,"name":"__type","url":"classes/shoppersearch.shoppersearch-3.html#paramkeys.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"shopperSearch.ShopperSearch.paramKeys"},{"id":5295,"kind":32,"name":"getSearchSuggestions","url":"classes/shoppersearch.shoppersearch-3.html#paramkeys.__type.getsearchsuggestions","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.ShopperSearch.paramKeys.__type"},{"id":5296,"kind":32,"name":"getSearchSuggestionsRequired","url":"classes/shoppersearch.shoppersearch-3.html#paramkeys.__type.getsearchsuggestionsrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.ShopperSearch.paramKeys.__type"},{"id":5297,"kind":32,"name":"productSearch","url":"classes/shoppersearch.shoppersearch-3.html#paramkeys.__type.productsearch","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.ShopperSearch.paramKeys.__type"},{"id":5298,"kind":32,"name":"productSearchRequired","url":"classes/shoppersearch.shoppersearch-3.html#paramkeys.__type.productsearchrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.ShopperSearch.paramKeys.__type"},{"id":5299,"kind":2048,"name":"getSearchSuggestions","url":"classes/shoppersearch.shoppersearch-3.html#getsearchsuggestions-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperSearch.ShopperSearch"},{"id":5300,"kind":2048,"name":"productSearch","url":"classes/shoppersearch.shoppersearch-3.html#productsearch-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperSearch.ShopperSearch"},{"id":5301,"kind":4194304,"name":"GetSearchSuggestionsExpandEnum","url":"modules/shoppersearch.html#getsearchsuggestionsexpandenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5302,"kind":4194304,"name":"ProductSearchExpandEnum","url":"modules/shoppersearch.html#productsearchexpandenum-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5303,"kind":4194304,"name":"getSearchSuggestionsQueryParameters","url":"modules/shoppersearch.html#getsearchsuggestionsqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5304,"kind":65536,"name":"__type","url":"modules/shoppersearch.html#getsearchsuggestionsqueryparameters-2.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperSearch.getSearchSuggestionsQueryParameters"},{"id":5305,"kind":32,"name":"siteId","url":"modules/shoppersearch.html#getsearchsuggestionsqueryparameters-2.__type-1.siteid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.getSearchSuggestionsQueryParameters.__type"},{"id":5306,"kind":32,"name":"q","url":"modules/shoppersearch.html#getsearchsuggestionsqueryparameters-2.__type-1.q","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.getSearchSuggestionsQueryParameters.__type"},{"id":5307,"kind":32,"name":"limit","url":"modules/shoppersearch.html#getsearchsuggestionsqueryparameters-2.__type-1.limit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.getSearchSuggestionsQueryParameters.__type"},{"id":5308,"kind":32,"name":"currency","url":"modules/shoppersearch.html#getsearchsuggestionsqueryparameters-2.__type-1.currency","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.getSearchSuggestionsQueryParameters.__type"},{"id":5309,"kind":32,"name":"locale","url":"modules/shoppersearch.html#getsearchsuggestionsqueryparameters-2.__type-1.locale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.getSearchSuggestionsQueryParameters.__type"},{"id":5310,"kind":32,"name":"expand","url":"modules/shoppersearch.html#getsearchsuggestionsqueryparameters-2.__type-1.expand","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.getSearchSuggestionsQueryParameters.__type"},{"id":5311,"kind":32,"name":"includedCustomProductProperties","url":"modules/shoppersearch.html#getsearchsuggestionsqueryparameters-2.__type-1.includedcustomproductproperties","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.getSearchSuggestionsQueryParameters.__type"},{"id":5312,"kind":32,"name":"includeEinsteinSuggestedPhrases","url":"modules/shoppersearch.html#getsearchsuggestionsqueryparameters-2.__type-1.includeeinsteinsuggestedphrases","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.getSearchSuggestionsQueryParameters.__type"},{"id":5313,"kind":4194304,"name":"getSearchSuggestionsPathParameters","url":"modules/shoppersearch.html#getsearchsuggestionspathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5314,"kind":65536,"name":"__type","url":"modules/shoppersearch.html#getsearchsuggestionspathparameters-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperSearch.getSearchSuggestionsPathParameters"},{"id":5315,"kind":32,"name":"organizationId","url":"modules/shoppersearch.html#getsearchsuggestionspathparameters-2.__type.organizationid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.getSearchSuggestionsPathParameters.__type"},{"id":5316,"kind":4194304,"name":"productSearchQueryParameters","url":"modules/shoppersearch.html#productsearchqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5317,"kind":65536,"name":"__type","url":"modules/shoppersearch.html#productsearchqueryparameters-2.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperSearch.productSearchQueryParameters"},{"id":5318,"kind":32,"name":"select","url":"modules/shoppersearch.html#productsearchqueryparameters-2.__type-3.select","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.productSearchQueryParameters.__type"},{"id":5319,"kind":32,"name":"siteId","url":"modules/shoppersearch.html#productsearchqueryparameters-2.__type-3.siteid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.productSearchQueryParameters.__type"},{"id":5320,"kind":32,"name":"q","url":"modules/shoppersearch.html#productsearchqueryparameters-2.__type-3.q-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.productSearchQueryParameters.__type"},{"id":5321,"kind":32,"name":"refine","url":"modules/shoppersearch.html#productsearchqueryparameters-2.__type-3.refine","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.productSearchQueryParameters.__type"},{"id":5322,"kind":32,"name":"sort","url":"modules/shoppersearch.html#productsearchqueryparameters-2.__type-3.sort","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.productSearchQueryParameters.__type"},{"id":5323,"kind":32,"name":"currency","url":"modules/shoppersearch.html#productsearchqueryparameters-2.__type-3.currency-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.productSearchQueryParameters.__type"},{"id":5324,"kind":32,"name":"locale","url":"modules/shoppersearch.html#productsearchqueryparameters-2.__type-3.locale-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.productSearchQueryParameters.__type"},{"id":5325,"kind":32,"name":"expand","url":"modules/shoppersearch.html#productsearchqueryparameters-2.__type-3.expand-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.productSearchQueryParameters.__type"},{"id":5326,"kind":32,"name":"allImages","url":"modules/shoppersearch.html#productsearchqueryparameters-2.__type-3.allimages","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.productSearchQueryParameters.__type"},{"id":5327,"kind":32,"name":"perPricebook","url":"modules/shoppersearch.html#productsearchqueryparameters-2.__type-3.perpricebook","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.productSearchQueryParameters.__type"},{"id":5328,"kind":32,"name":"allVariationProperties","url":"modules/shoppersearch.html#productsearchqueryparameters-2.__type-3.allvariationproperties","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.productSearchQueryParameters.__type"},{"id":5329,"kind":32,"name":"includedCustomVariationProperties","url":"modules/shoppersearch.html#productsearchqueryparameters-2.__type-3.includedcustomvariationproperties","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.productSearchQueryParameters.__type"},{"id":5330,"kind":32,"name":"limit","url":"modules/shoppersearch.html#productsearchqueryparameters-2.__type-3.limit-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.productSearchQueryParameters.__type"},{"id":5331,"kind":32,"name":"offset","url":"modules/shoppersearch.html#productsearchqueryparameters-2.__type-3.offset","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.productSearchQueryParameters.__type"},{"id":5332,"kind":4194304,"name":"productSearchPathParameters","url":"modules/shoppersearch.html#productsearchpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5333,"kind":65536,"name":"__type","url":"modules/shoppersearch.html#productsearchpathparameters-2.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperSearch.productSearchPathParameters"},{"id":5334,"kind":32,"name":"organizationId","url":"modules/shoppersearch.html#productsearchpathparameters-2.__type-2.organizationid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSearch.productSearchPathParameters.__type"},{"id":5335,"kind":4194304,"name":"ShopperSearchPathParameters","url":"modules/shoppersearch.html#shoppersearchpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5336,"kind":4194304,"name":"ShopperSearchQueryParameters","url":"modules/shoppersearch.html#shoppersearchqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5337,"kind":4194304,"name":"ShopperSearchParameters","url":"modules/shoppersearch.html#shoppersearchparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSearch"},{"id":5338,"kind":16777216,"name":"GetSearchSuggestionsExpandEnum","url":"modules/shoppersearch.html#getsearchsuggestionsexpandenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5339,"kind":16777216,"name":"ProductSearchExpandEnum","url":"modules/shoppersearch.html#productsearchexpandenum","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5340,"kind":16777216,"name":"getSearchSuggestionsQueryParameters","url":"modules/shoppersearch.html#getsearchsuggestionsqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5341,"kind":16777216,"name":"getSearchSuggestionsPathParameters","url":"modules/shoppersearch.html#getsearchsuggestionspathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5342,"kind":16777216,"name":"productSearchQueryParameters","url":"modules/shoppersearch.html#productsearchqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5343,"kind":16777216,"name":"productSearchPathParameters","url":"modules/shoppersearch.html#productsearchpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5344,"kind":16777216,"name":"ShopperSearchPathParameters","url":"modules/shoppersearch.html#shoppersearchpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5345,"kind":16777216,"name":"ShopperSearchQueryParameters","url":"modules/shoppersearch.html#shoppersearchqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5346,"kind":16777216,"name":"ShopperSearchParameters","url":"modules/shoppersearch.html#shoppersearchparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5347,"kind":16777216,"name":"ShopperSearch","url":"modules/shoppersearch.html#shoppersearch-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5348,"kind":16777216,"name":"defaultBaseUri","url":"modules/shoppersearch.html#defaultbaseuri","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5349,"kind":16777216,"name":"GetSearchSuggestionsExpandEnum","url":"modules/shoppersearch.html#getsearchsuggestionsexpandenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5350,"kind":16777216,"name":"ProductSearchExpandEnum","url":"modules/shoppersearch.html#productsearchexpandenum-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5351,"kind":16777216,"name":"getSearchSuggestionsQueryParameters","url":"modules/shoppersearch.html#getsearchsuggestionsqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5352,"kind":16777216,"name":"getSearchSuggestionsPathParameters","url":"modules/shoppersearch.html#getsearchsuggestionspathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5353,"kind":16777216,"name":"productSearchQueryParameters","url":"modules/shoppersearch.html#productsearchqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5354,"kind":16777216,"name":"productSearchPathParameters","url":"modules/shoppersearch.html#productsearchpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5355,"kind":16777216,"name":"ShopperSearchPathParameters","url":"modules/shoppersearch.html#shoppersearchpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5356,"kind":16777216,"name":"ShopperSearchQueryParameters","url":"modules/shoppersearch.html#shoppersearchqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5357,"kind":16777216,"name":"ShopperSearchParameters","url":"modules/shoppersearch.html#shoppersearchparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5358,"kind":16777216,"name":"ShopperSearch","url":"modules/shoppersearch.html#shoppersearch-2","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5359,"kind":16777216,"name":"AppliedProcessor","url":"modules/shoppersearch.html#appliedprocessor-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5360,"kind":16777216,"name":"BrandSuggestions","url":"modules/shoppersearch.html#brandsuggestions-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5361,"kind":16777216,"name":"CategorySuggestions","url":"modules/shoppersearch.html#categorysuggestions-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5362,"kind":16777216,"name":"CustomSuggestions","url":"modules/shoppersearch.html#customsuggestions-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5363,"kind":16777216,"name":"EinsteinSuggestedPhrases","url":"modules/shoppersearch.html#einsteinsuggestedphrases-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5364,"kind":16777216,"name":"ErrorResponse","url":"modules/shoppersearch.html#errorresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5365,"kind":16777216,"name":"Image","url":"modules/shoppersearch.html#image-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5366,"kind":16777216,"name":"ImageGroup","url":"modules/shoppersearch.html#imagegroup-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5367,"kind":16777216,"name":"LocaleCode","url":"modules/shoppersearch.html#localecode-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5368,"kind":16777216,"name":"PageMetaTag","url":"modules/shoppersearch.html#pagemetatag-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5369,"kind":16777216,"name":"PaginatedResultBase","url":"modules/shoppersearch.html#paginatedresultbase-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5370,"kind":16777216,"name":"PriceRange","url":"modules/shoppersearch.html#pricerange-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5371,"kind":16777216,"name":"ProcessedQuery","url":"modules/shoppersearch.html#processedquery-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5372,"kind":16777216,"name":"ProductPriceTable","url":"modules/shoppersearch.html#productpricetable-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5373,"kind":16777216,"name":"ProductPromotion","url":"modules/shoppersearch.html#productpromotion-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5374,"kind":16777216,"name":"ProductRef","url":"modules/shoppersearch.html#productref-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5375,"kind":16777216,"name":"ProductSearchHit","url":"modules/shoppersearch.html#productsearchhit-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5376,"kind":16777216,"name":"ProductSearchRefinement","url":"modules/shoppersearch.html#productsearchrefinement-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5377,"kind":16777216,"name":"ProductSearchRefinementValue","url":"modules/shoppersearch.html#productsearchrefinementvalue-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5378,"kind":16777216,"name":"ProductSearchResult","url":"modules/shoppersearch.html#productsearchresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5379,"kind":16777216,"name":"ProductSearchSortingOption","url":"modules/shoppersearch.html#productsearchsortingoption-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5380,"kind":16777216,"name":"ProductSuggestions","url":"modules/shoppersearch.html#productsuggestions-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5381,"kind":16777216,"name":"ProductType","url":"modules/shoppersearch.html#producttype-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5382,"kind":16777216,"name":"ResultBase","url":"modules/shoppersearch.html#resultbase-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5383,"kind":16777216,"name":"SuggestedCategory","url":"modules/shoppersearch.html#suggestedcategory-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5384,"kind":16777216,"name":"SuggestedPhrase","url":"modules/shoppersearch.html#suggestedphrase-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5385,"kind":16777216,"name":"SuggestedProduct","url":"modules/shoppersearch.html#suggestedproduct-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5386,"kind":16777216,"name":"SuggestedTerm","url":"modules/shoppersearch.html#suggestedterm-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5387,"kind":16777216,"name":"SuggestedTerms","url":"modules/shoppersearch.html#suggestedterms-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5388,"kind":16777216,"name":"Suggestion","url":"modules/shoppersearch.html#suggestion-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5389,"kind":16777216,"name":"SuggestionResult","url":"modules/shoppersearch.html#suggestionresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5390,"kind":16777216,"name":"Variant","url":"modules/shoppersearch.html#variant-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5391,"kind":16777216,"name":"VariationAttribute","url":"modules/shoppersearch.html#variationattribute-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5392,"kind":16777216,"name":"VariationAttributeValue","url":"modules/shoppersearch.html#variationattributevalue-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5393,"kind":16777216,"name":"VariationGroup","url":"modules/shoppersearch.html#variationgroup-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSearch"},{"id":5394,"kind":2,"name":"ShopperSearchTypes","url":"modules/shoppersearch.shoppersearchtypes.html","classes":"tsd-kind-namespace tsd-parent-kind-module","parent":"shopperSearch"},{"id":5395,"kind":4194304,"name":"ShopperSearchPathParameters","url":"modules/shoppersearch.shoppersearchtypes.html#shoppersearchpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5396,"kind":4194304,"name":"ShopperSearchQueryParameters","url":"modules/shoppersearch.shoppersearchtypes.html#shoppersearchqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5397,"kind":4194304,"name":"GetSearchSuggestionsExpandEnum","url":"modules/shoppersearch.shoppersearchtypes.html#getsearchsuggestionsexpandenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5398,"kind":4194304,"name":"getSearchSuggestionsQueryParameters","url":"modules/shoppersearch.shoppersearchtypes.html#getsearchsuggestionsqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5399,"kind":4194304,"name":"getSearchSuggestionsPathParameters","url":"modules/shoppersearch.shoppersearchtypes.html#getsearchsuggestionspathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5400,"kind":4194304,"name":"ProductSearchExpandEnum","url":"modules/shoppersearch.shoppersearchtypes.html#productsearchexpandenum","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5401,"kind":4194304,"name":"productSearchQueryParameters","url":"modules/shoppersearch.shoppersearchtypes.html#productsearchqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5402,"kind":4194304,"name":"productSearchPathParameters","url":"modules/shoppersearch.shoppersearchtypes.html#productsearchpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5403,"kind":4194304,"name":"AppliedProcessor","url":"modules/shoppersearch.shoppersearchtypes.html#appliedprocessor","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5404,"kind":4194304,"name":"BrandSuggestions","url":"modules/shoppersearch.shoppersearchtypes.html#brandsuggestions","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5405,"kind":4194304,"name":"CategorySuggestions","url":"modules/shoppersearch.shoppersearchtypes.html#categorysuggestions","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5406,"kind":4194304,"name":"CustomSuggestions","url":"modules/shoppersearch.shoppersearchtypes.html#customsuggestions","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5407,"kind":4194304,"name":"EinsteinSuggestedPhrases","url":"modules/shoppersearch.shoppersearchtypes.html#einsteinsuggestedphrases","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5408,"kind":4194304,"name":"ErrorResponse","url":"modules/shoppersearch.shoppersearchtypes.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5409,"kind":4194304,"name":"Image","url":"modules/shoppersearch.shoppersearchtypes.html#image","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5410,"kind":4194304,"name":"ImageGroup","url":"modules/shoppersearch.shoppersearchtypes.html#imagegroup","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5411,"kind":4194304,"name":"LocaleCode","url":"modules/shoppersearch.shoppersearchtypes.html#localecode","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5412,"kind":4194304,"name":"PageMetaTag","url":"modules/shoppersearch.shoppersearchtypes.html#pagemetatag","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5413,"kind":4194304,"name":"PaginatedResultBase","url":"modules/shoppersearch.shoppersearchtypes.html#paginatedresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5414,"kind":4194304,"name":"PriceRange","url":"modules/shoppersearch.shoppersearchtypes.html#pricerange","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5415,"kind":4194304,"name":"ProcessedQuery","url":"modules/shoppersearch.shoppersearchtypes.html#processedquery","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5416,"kind":4194304,"name":"ProductPriceTable","url":"modules/shoppersearch.shoppersearchtypes.html#productpricetable","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5417,"kind":4194304,"name":"ProductPromotion","url":"modules/shoppersearch.shoppersearchtypes.html#productpromotion","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5418,"kind":4194304,"name":"ProductRef","url":"modules/shoppersearch.shoppersearchtypes.html#productref","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5419,"kind":4194304,"name":"ProductSearchHit","url":"modules/shoppersearch.shoppersearchtypes.html#productsearchhit","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5420,"kind":4194304,"name":"ProductSearchRefinement","url":"modules/shoppersearch.shoppersearchtypes.html#productsearchrefinement","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5421,"kind":4194304,"name":"ProductSearchRefinementValue","url":"modules/shoppersearch.shoppersearchtypes.html#productsearchrefinementvalue","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5422,"kind":4194304,"name":"ProductSearchResult","url":"modules/shoppersearch.shoppersearchtypes.html#productsearchresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5423,"kind":4194304,"name":"ProductSearchSortingOption","url":"modules/shoppersearch.shoppersearchtypes.html#productsearchsortingoption","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5424,"kind":4194304,"name":"ProductSuggestions","url":"modules/shoppersearch.shoppersearchtypes.html#productsuggestions","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5425,"kind":4194304,"name":"ProductType","url":"modules/shoppersearch.shoppersearchtypes.html#producttype","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5426,"kind":4194304,"name":"ResultBase","url":"modules/shoppersearch.shoppersearchtypes.html#resultbase","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5427,"kind":4194304,"name":"SuggestedCategory","url":"modules/shoppersearch.shoppersearchtypes.html#suggestedcategory","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5428,"kind":4194304,"name":"SuggestedPhrase","url":"modules/shoppersearch.shoppersearchtypes.html#suggestedphrase","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5429,"kind":4194304,"name":"SuggestedProduct","url":"modules/shoppersearch.shoppersearchtypes.html#suggestedproduct","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5430,"kind":4194304,"name":"SuggestedTerm","url":"modules/shoppersearch.shoppersearchtypes.html#suggestedterm","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5431,"kind":4194304,"name":"SuggestedTerms","url":"modules/shoppersearch.shoppersearchtypes.html#suggestedterms","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5432,"kind":4194304,"name":"Suggestion","url":"modules/shoppersearch.shoppersearchtypes.html#suggestion","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5433,"kind":4194304,"name":"SuggestionResult","url":"modules/shoppersearch.shoppersearchtypes.html#suggestionresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5434,"kind":4194304,"name":"Variant","url":"modules/shoppersearch.shoppersearchtypes.html#variant","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5435,"kind":4194304,"name":"VariationAttribute","url":"modules/shoppersearch.shoppersearchtypes.html#variationattribute","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5436,"kind":4194304,"name":"VariationAttributeValue","url":"modules/shoppersearch.shoppersearchtypes.html#variationattributevalue","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5437,"kind":4194304,"name":"VariationGroup","url":"modules/shoppersearch.shoppersearchtypes.html#variationgroup","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSearch.ShopperSearchTypes"},{"id":5438,"kind":1,"name":"shopperSeo","url":"modules/shopperseo.html","classes":"tsd-kind-module"},{"id":5439,"kind":32,"name":"defaultBaseUri","url":"modules/shopperseo.html#defaultbaseuri-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"shopperSeo"},{"id":5440,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperseo.html#errorresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSeo"},{"id":5441,"kind":4194304,"name":"LocaleCode","url":"modules/shopperseo.html#localecode-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSeo"},{"id":5442,"kind":4194304,"name":"UrlMapping","url":"modules/shopperseo.html#urlmapping-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSeo"},{"id":5443,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperseo.html#errorresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":5444,"kind":16777216,"name":"LocaleCode","url":"modules/shopperseo.html#localecode","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":5445,"kind":16777216,"name":"UrlMapping","url":"modules/shopperseo.html#urlmapping","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":5446,"kind":128,"name":"ShopperSEO","url":"classes/shopperseo.shopperseo-3.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"shopperSeo"},{"id":5447,"kind":1024,"name":"clientConfig","url":"classes/shopperseo.shopperseo-3.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class","parent":"shopperSeo.ShopperSEO"},{"id":5448,"kind":1024,"name":"defaultBaseUri","url":"classes/shopperseo.shopperseo-3.html#defaultbaseuri","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperSeo.ShopperSEO"},{"id":5449,"kind":2097152,"name":"apiPaths","url":"classes/shopperseo.shopperseo-3.html#apipaths","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-static","parent":"shopperSeo.ShopperSEO"},{"id":5450,"kind":32,"name":"getUrlMapping","url":"classes/shopperseo.shopperseo-3.html#apipaths.geturlmapping-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperSeo.ShopperSEO.apiPaths"},{"id":5451,"kind":512,"name":"constructor","url":"classes/shopperseo.shopperseo-3.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"shopperSeo.ShopperSEO"},{"id":5452,"kind":1024,"name":"paramKeys","url":"classes/shopperseo.shopperseo-3.html#paramkeys","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperSeo.ShopperSEO"},{"id":5453,"kind":65536,"name":"__type","url":"classes/shopperseo.shopperseo-3.html#paramkeys.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"shopperSeo.ShopperSEO.paramKeys"},{"id":5454,"kind":32,"name":"getUrlMapping","url":"classes/shopperseo.shopperseo-3.html#paramkeys.__type.geturlmapping","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSeo.ShopperSEO.paramKeys.__type"},{"id":5455,"kind":32,"name":"getUrlMappingRequired","url":"classes/shopperseo.shopperseo-3.html#paramkeys.__type.geturlmappingrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSeo.ShopperSEO.paramKeys.__type"},{"id":5456,"kind":2048,"name":"getUrlMapping","url":"classes/shopperseo.shopperseo-3.html#geturlmapping-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperSeo.ShopperSEO"},{"id":5457,"kind":4194304,"name":"getUrlMappingQueryParameters","url":"modules/shopperseo.html#geturlmappingqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSeo"},{"id":5458,"kind":65536,"name":"__type","url":"modules/shopperseo.html#geturlmappingqueryparameters-2.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperSeo.getUrlMappingQueryParameters"},{"id":5459,"kind":32,"name":"urlSegment","url":"modules/shopperseo.html#geturlmappingqueryparameters-2.__type-1.urlsegment","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSeo.getUrlMappingQueryParameters.__type"},{"id":5460,"kind":32,"name":"siteId","url":"modules/shopperseo.html#geturlmappingqueryparameters-2.__type-1.siteid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSeo.getUrlMappingQueryParameters.__type"},{"id":5461,"kind":32,"name":"locale","url":"modules/shopperseo.html#geturlmappingqueryparameters-2.__type-1.locale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSeo.getUrlMappingQueryParameters.__type"},{"id":5462,"kind":4194304,"name":"getUrlMappingPathParameters","url":"modules/shopperseo.html#geturlmappingpathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSeo"},{"id":5463,"kind":65536,"name":"__type","url":"modules/shopperseo.html#geturlmappingpathparameters-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperSeo.getUrlMappingPathParameters"},{"id":5464,"kind":32,"name":"organizationId","url":"modules/shopperseo.html#geturlmappingpathparameters-2.__type.organizationid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperSeo.getUrlMappingPathParameters.__type"},{"id":5465,"kind":4194304,"name":"ShopperSEOPathParameters","url":"modules/shopperseo.html#shopperseopathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSeo"},{"id":5466,"kind":4194304,"name":"ShopperSEOQueryParameters","url":"modules/shopperseo.html#shopperseoqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSeo"},{"id":5467,"kind":4194304,"name":"ShopperSEOParameters","url":"modules/shopperseo.html#shopperseoparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperSeo"},{"id":5468,"kind":16777216,"name":"getUrlMappingQueryParameters","url":"modules/shopperseo.html#geturlmappingqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":5469,"kind":16777216,"name":"getUrlMappingPathParameters","url":"modules/shopperseo.html#geturlmappingpathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":5470,"kind":16777216,"name":"ShopperSEOPathParameters","url":"modules/shopperseo.html#shopperseopathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":5471,"kind":16777216,"name":"ShopperSEOQueryParameters","url":"modules/shopperseo.html#shopperseoqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":5472,"kind":16777216,"name":"ShopperSEOParameters","url":"modules/shopperseo.html#shopperseoparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":5473,"kind":16777216,"name":"ShopperSEO","url":"modules/shopperseo.html#shopperseo-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":5474,"kind":16777216,"name":"defaultBaseUri","url":"modules/shopperseo.html#defaultbaseuri","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":5475,"kind":16777216,"name":"getUrlMappingQueryParameters","url":"modules/shopperseo.html#geturlmappingqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":5476,"kind":16777216,"name":"getUrlMappingPathParameters","url":"modules/shopperseo.html#geturlmappingpathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":5477,"kind":16777216,"name":"ShopperSEOPathParameters","url":"modules/shopperseo.html#shopperseopathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":5478,"kind":16777216,"name":"ShopperSEOQueryParameters","url":"modules/shopperseo.html#shopperseoqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":5479,"kind":16777216,"name":"ShopperSEOParameters","url":"modules/shopperseo.html#shopperseoparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":5480,"kind":16777216,"name":"ShopperSEO","url":"modules/shopperseo.html#shopperseo-2","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":5481,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperseo.html#errorresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":5482,"kind":16777216,"name":"LocaleCode","url":"modules/shopperseo.html#localecode-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":5483,"kind":16777216,"name":"UrlMapping","url":"modules/shopperseo.html#urlmapping-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperSeo"},{"id":5484,"kind":2,"name":"ShopperSEOTypes","url":"modules/shopperseo.shopperseotypes.html","classes":"tsd-kind-namespace tsd-parent-kind-module","parent":"shopperSeo"},{"id":5485,"kind":4194304,"name":"ShopperSEOPathParameters","url":"modules/shopperseo.shopperseotypes.html#shopperseopathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSeo.ShopperSEOTypes"},{"id":5486,"kind":4194304,"name":"ShopperSEOQueryParameters","url":"modules/shopperseo.shopperseotypes.html#shopperseoqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSeo.ShopperSEOTypes"},{"id":5487,"kind":4194304,"name":"getUrlMappingQueryParameters","url":"modules/shopperseo.shopperseotypes.html#geturlmappingqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSeo.ShopperSEOTypes"},{"id":5488,"kind":4194304,"name":"getUrlMappingPathParameters","url":"modules/shopperseo.shopperseotypes.html#geturlmappingpathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSeo.ShopperSEOTypes"},{"id":5489,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperseo.shopperseotypes.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSeo.ShopperSEOTypes"},{"id":5490,"kind":4194304,"name":"LocaleCode","url":"modules/shopperseo.shopperseotypes.html#localecode","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSeo.ShopperSEOTypes"},{"id":5491,"kind":4194304,"name":"UrlMapping","url":"modules/shopperseo.shopperseotypes.html#urlmapping","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperSeo.ShopperSEOTypes"},{"id":5492,"kind":1,"name":"shopperStores","url":"modules/shopperstores.html","classes":"tsd-kind-module"},{"id":5493,"kind":32,"name":"defaultBaseUri","url":"modules/shopperstores.html#defaultbaseuri-1","classes":"tsd-kind-variable tsd-parent-kind-module","parent":"shopperStores"},{"id":5494,"kind":4194304,"name":"DistanceUnit","url":"modules/shopperstores.html#distanceunit-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperStores"},{"id":5495,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperstores.html#errorresponse-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperStores"},{"id":5496,"kind":4194304,"name":"LocaleCode","url":"modules/shopperstores.html#localecode-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperStores"},{"id":5497,"kind":4194304,"name":"PaginatedResultBase","url":"modules/shopperstores.html#paginatedresultbase-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperStores"},{"id":5498,"kind":4194304,"name":"ResultBase","url":"modules/shopperstores.html#resultbase-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperStores"},{"id":5499,"kind":4194304,"name":"Store","url":"modules/shopperstores.html#store-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperStores"},{"id":5500,"kind":4194304,"name":"StoreResult","url":"modules/shopperstores.html#storeresult-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperStores"},{"id":5501,"kind":4194304,"name":"Stores","url":"modules/shopperstores.html#stores-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperStores"},{"id":5502,"kind":16777216,"name":"DistanceUnit","url":"modules/shopperstores.html#distanceunit","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":5503,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperstores.html#errorresponse","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":5504,"kind":16777216,"name":"LocaleCode","url":"modules/shopperstores.html#localecode","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":5505,"kind":16777216,"name":"PaginatedResultBase","url":"modules/shopperstores.html#paginatedresultbase","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":5506,"kind":16777216,"name":"ResultBase","url":"modules/shopperstores.html#resultbase","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":5507,"kind":16777216,"name":"Store","url":"modules/shopperstores.html#store","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":5508,"kind":16777216,"name":"StoreResult","url":"modules/shopperstores.html#storeresult","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":5509,"kind":16777216,"name":"Stores","url":"modules/shopperstores.html#stores","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":5510,"kind":128,"name":"ShopperStores","url":"classes/shopperstores.shopperstores-3.html","classes":"tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter","parent":"shopperStores"},{"id":5511,"kind":1024,"name":"clientConfig","url":"classes/shopperstores.shopperstores-3.html#clientconfig","classes":"tsd-kind-property tsd-parent-kind-class","parent":"shopperStores.ShopperStores"},{"id":5512,"kind":1024,"name":"defaultBaseUri","url":"classes/shopperstores.shopperstores-3.html#defaultbaseuri","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperStores.ShopperStores"},{"id":5513,"kind":2097152,"name":"apiPaths","url":"classes/shopperstores.shopperstores-3.html#apipaths","classes":"tsd-kind-object-literal tsd-parent-kind-class tsd-is-static","parent":"shopperStores.ShopperStores"},{"id":5514,"kind":32,"name":"getStores","url":"classes/shopperstores.shopperstores-3.html#apipaths.getstores-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperStores.ShopperStores.apiPaths"},{"id":5515,"kind":32,"name":"searchStores","url":"classes/shopperstores.shopperstores-3.html#apipaths.searchstores-2","classes":"tsd-kind-variable tsd-parent-kind-object-literal","parent":"shopperStores.ShopperStores.apiPaths"},{"id":5516,"kind":512,"name":"constructor","url":"classes/shopperstores.shopperstores-3.html#constructor","classes":"tsd-kind-constructor tsd-parent-kind-class","parent":"shopperStores.ShopperStores"},{"id":5517,"kind":1024,"name":"paramKeys","url":"classes/shopperstores.shopperstores-3.html#paramkeys","classes":"tsd-kind-property tsd-parent-kind-class tsd-is-static","parent":"shopperStores.ShopperStores"},{"id":5518,"kind":65536,"name":"__type","url":"classes/shopperstores.shopperstores-3.html#paramkeys.__type","classes":"tsd-kind-type-literal tsd-parent-kind-property","parent":"shopperStores.ShopperStores.paramKeys"},{"id":5519,"kind":32,"name":"getStores","url":"classes/shopperstores.shopperstores-3.html#paramkeys.__type.getstores","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.ShopperStores.paramKeys.__type"},{"id":5520,"kind":32,"name":"getStoresRequired","url":"classes/shopperstores.shopperstores-3.html#paramkeys.__type.getstoresrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.ShopperStores.paramKeys.__type"},{"id":5521,"kind":32,"name":"searchStores","url":"classes/shopperstores.shopperstores-3.html#paramkeys.__type.searchstores","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.ShopperStores.paramKeys.__type"},{"id":5522,"kind":32,"name":"searchStoresRequired","url":"classes/shopperstores.shopperstores-3.html#paramkeys.__type.searchstoresrequired","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.ShopperStores.paramKeys.__type"},{"id":5523,"kind":2048,"name":"getStores","url":"classes/shopperstores.shopperstores-3.html#getstores-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperStores.ShopperStores"},{"id":5524,"kind":2048,"name":"searchStores","url":"classes/shopperstores.shopperstores-3.html#searchstores-1","classes":"tsd-kind-method tsd-parent-kind-class tsd-has-type-parameter","parent":"shopperStores.ShopperStores"},{"id":5525,"kind":4194304,"name":"getStoresQueryParameters","url":"modules/shopperstores.html#getstoresqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperStores"},{"id":5526,"kind":65536,"name":"__type","url":"modules/shopperstores.html#getstoresqueryparameters-2.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperStores.getStoresQueryParameters"},{"id":5527,"kind":32,"name":"ids","url":"modules/shopperstores.html#getstoresqueryparameters-2.__type-1.ids","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.getStoresQueryParameters.__type"},{"id":5528,"kind":32,"name":"siteId","url":"modules/shopperstores.html#getstoresqueryparameters-2.__type-1.siteid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.getStoresQueryParameters.__type"},{"id":5529,"kind":32,"name":"locale","url":"modules/shopperstores.html#getstoresqueryparameters-2.__type-1.locale","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.getStoresQueryParameters.__type"},{"id":5530,"kind":4194304,"name":"getStoresPathParameters","url":"modules/shopperstores.html#getstorespathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperStores"},{"id":5531,"kind":65536,"name":"__type","url":"modules/shopperstores.html#getstorespathparameters-2.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperStores.getStoresPathParameters"},{"id":5532,"kind":32,"name":"organizationId","url":"modules/shopperstores.html#getstorespathparameters-2.__type.organizationid","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.getStoresPathParameters.__type"},{"id":5533,"kind":4194304,"name":"searchStoresQueryParameters","url":"modules/shopperstores.html#searchstoresqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperStores"},{"id":5534,"kind":65536,"name":"__type","url":"modules/shopperstores.html#searchstoresqueryparameters-2.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperStores.searchStoresQueryParameters"},{"id":5535,"kind":32,"name":"countryCode","url":"modules/shopperstores.html#searchstoresqueryparameters-2.__type-3.countrycode","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.searchStoresQueryParameters.__type"},{"id":5536,"kind":32,"name":"distanceUnit","url":"modules/shopperstores.html#searchstoresqueryparameters-2.__type-3.distanceunit-3","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.searchStoresQueryParameters.__type"},{"id":5537,"kind":32,"name":"latitude","url":"modules/shopperstores.html#searchstoresqueryparameters-2.__type-3.latitude","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.searchStoresQueryParameters.__type"},{"id":5538,"kind":32,"name":"longitude","url":"modules/shopperstores.html#searchstoresqueryparameters-2.__type-3.longitude","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.searchStoresQueryParameters.__type"},{"id":5539,"kind":32,"name":"maxDistance","url":"modules/shopperstores.html#searchstoresqueryparameters-2.__type-3.maxdistance","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.searchStoresQueryParameters.__type"},{"id":5540,"kind":32,"name":"postalCode","url":"modules/shopperstores.html#searchstoresqueryparameters-2.__type-3.postalcode","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.searchStoresQueryParameters.__type"},{"id":5541,"kind":32,"name":"siteId","url":"modules/shopperstores.html#searchstoresqueryparameters-2.__type-3.siteid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.searchStoresQueryParameters.__type"},{"id":5542,"kind":32,"name":"locale","url":"modules/shopperstores.html#searchstoresqueryparameters-2.__type-3.locale-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.searchStoresQueryParameters.__type"},{"id":5543,"kind":32,"name":"limit","url":"modules/shopperstores.html#searchstoresqueryparameters-2.__type-3.limit","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.searchStoresQueryParameters.__type"},{"id":5544,"kind":32,"name":"offset","url":"modules/shopperstores.html#searchstoresqueryparameters-2.__type-3.offset","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.searchStoresQueryParameters.__type"},{"id":5545,"kind":4194304,"name":"searchStoresPathParameters","url":"modules/shopperstores.html#searchstorespathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperStores"},{"id":5546,"kind":65536,"name":"__type","url":"modules/shopperstores.html#searchstorespathparameters-2.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"shopperStores.searchStoresPathParameters"},{"id":5547,"kind":32,"name":"organizationId","url":"modules/shopperstores.html#searchstorespathparameters-2.__type-2.organizationid-1","classes":"tsd-kind-variable tsd-parent-kind-type-literal","parent":"shopperStores.searchStoresPathParameters.__type"},{"id":5548,"kind":4194304,"name":"ShopperStoresPathParameters","url":"modules/shopperstores.html#shopperstorespathparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperStores"},{"id":5549,"kind":4194304,"name":"ShopperStoresQueryParameters","url":"modules/shopperstores.html#shopperstoresqueryparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperStores"},{"id":5550,"kind":4194304,"name":"ShopperStoresParameters","url":"modules/shopperstores.html#shopperstoresparameters-2","classes":"tsd-kind-type-alias tsd-parent-kind-module","parent":"shopperStores"},{"id":5551,"kind":16777216,"name":"getStoresQueryParameters","url":"modules/shopperstores.html#getstoresqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":5552,"kind":16777216,"name":"getStoresPathParameters","url":"modules/shopperstores.html#getstorespathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":5553,"kind":16777216,"name":"searchStoresQueryParameters","url":"modules/shopperstores.html#searchstoresqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":5554,"kind":16777216,"name":"searchStoresPathParameters","url":"modules/shopperstores.html#searchstorespathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":5555,"kind":16777216,"name":"ShopperStoresPathParameters","url":"modules/shopperstores.html#shopperstorespathparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":5556,"kind":16777216,"name":"ShopperStoresQueryParameters","url":"modules/shopperstores.html#shopperstoresqueryparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":5557,"kind":16777216,"name":"ShopperStoresParameters","url":"modules/shopperstores.html#shopperstoresparameters","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":5558,"kind":16777216,"name":"ShopperStores","url":"modules/shopperstores.html#shopperstores-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":5559,"kind":16777216,"name":"defaultBaseUri","url":"modules/shopperstores.html#defaultbaseuri","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":5560,"kind":16777216,"name":"getStoresQueryParameters","url":"modules/shopperstores.html#getstoresqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":5561,"kind":16777216,"name":"getStoresPathParameters","url":"modules/shopperstores.html#getstorespathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":5562,"kind":16777216,"name":"searchStoresQueryParameters","url":"modules/shopperstores.html#searchstoresqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":5563,"kind":16777216,"name":"searchStoresPathParameters","url":"modules/shopperstores.html#searchstorespathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":5564,"kind":16777216,"name":"ShopperStoresPathParameters","url":"modules/shopperstores.html#shopperstorespathparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":5565,"kind":16777216,"name":"ShopperStoresQueryParameters","url":"modules/shopperstores.html#shopperstoresqueryparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":5566,"kind":16777216,"name":"ShopperStoresParameters","url":"modules/shopperstores.html#shopperstoresparameters-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":5567,"kind":16777216,"name":"ShopperStores","url":"modules/shopperstores.html#shopperstores-2","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":5568,"kind":16777216,"name":"DistanceUnit","url":"modules/shopperstores.html#distanceunit-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":5569,"kind":16777216,"name":"ErrorResponse","url":"modules/shopperstores.html#errorresponse-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":5570,"kind":16777216,"name":"LocaleCode","url":"modules/shopperstores.html#localecode-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":5571,"kind":16777216,"name":"PaginatedResultBase","url":"modules/shopperstores.html#paginatedresultbase-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":5572,"kind":16777216,"name":"ResultBase","url":"modules/shopperstores.html#resultbase-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":5573,"kind":16777216,"name":"Store","url":"modules/shopperstores.html#store-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":5574,"kind":16777216,"name":"StoreResult","url":"modules/shopperstores.html#storeresult-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":5575,"kind":16777216,"name":"Stores","url":"modules/shopperstores.html#stores-1","classes":"tsd-kind-reference tsd-parent-kind-module","parent":"shopperStores"},{"id":5576,"kind":2,"name":"ShopperStoresTypes","url":"modules/shopperstores.shopperstorestypes.html","classes":"tsd-kind-namespace tsd-parent-kind-module","parent":"shopperStores"},{"id":5577,"kind":4194304,"name":"ShopperStoresPathParameters","url":"modules/shopperstores.shopperstorestypes.html#shopperstorespathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperStores.ShopperStoresTypes"},{"id":5578,"kind":4194304,"name":"ShopperStoresQueryParameters","url":"modules/shopperstores.shopperstorestypes.html#shopperstoresqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperStores.ShopperStoresTypes"},{"id":5579,"kind":4194304,"name":"getStoresQueryParameters","url":"modules/shopperstores.shopperstorestypes.html#getstoresqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperStores.ShopperStoresTypes"},{"id":5580,"kind":4194304,"name":"getStoresPathParameters","url":"modules/shopperstores.shopperstorestypes.html#getstorespathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperStores.ShopperStoresTypes"},{"id":5581,"kind":4194304,"name":"searchStoresQueryParameters","url":"modules/shopperstores.shopperstorestypes.html#searchstoresqueryparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperStores.ShopperStoresTypes"},{"id":5582,"kind":4194304,"name":"searchStoresPathParameters","url":"modules/shopperstores.shopperstorestypes.html#searchstorespathparameters","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperStores.ShopperStoresTypes"},{"id":5583,"kind":4194304,"name":"DistanceUnit","url":"modules/shopperstores.shopperstorestypes.html#distanceunit","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperStores.ShopperStoresTypes"},{"id":5584,"kind":4194304,"name":"ErrorResponse","url":"modules/shopperstores.shopperstorestypes.html#errorresponse","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperStores.ShopperStoresTypes"},{"id":5585,"kind":4194304,"name":"LocaleCode","url":"modules/shopperstores.shopperstorestypes.html#localecode","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperStores.ShopperStoresTypes"},{"id":5586,"kind":4194304,"name":"PaginatedResultBase","url":"modules/shopperstores.shopperstorestypes.html#paginatedresultbase","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperStores.ShopperStoresTypes"},{"id":5587,"kind":4194304,"name":"ResultBase","url":"modules/shopperstores.shopperstorestypes.html#resultbase","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperStores.ShopperStoresTypes"},{"id":5588,"kind":4194304,"name":"Store","url":"modules/shopperstores.shopperstorestypes.html#store","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperStores.ShopperStoresTypes"},{"id":5589,"kind":4194304,"name":"StoreResult","url":"modules/shopperstores.shopperstorestypes.html#storeresult","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperStores.ShopperStoresTypes"},{"id":5590,"kind":4194304,"name":"Stores","url":"modules/shopperstores.shopperstorestypes.html#stores","classes":"tsd-kind-type-alias tsd-parent-kind-namespace","parent":"shopperStores.ShopperStoresTypes"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,44.023]],["parent/0",[]],["name/1",[1,77.128]],["parent/1",[0,4.395]],["name/2",[2,77.128]],["parent/2",[3,8.21]],["name/3",[4,77.128]],["parent/3",[0,4.395]],["name/4",[5,77.128]],["parent/4",[0,4.395]],["name/5",[6,82.236]],["parent/5",[0,4.395]],["name/6",[7,77.128]],["parent/6",[0,4.395]],["name/7",[8,77.128]],["parent/7",[0,4.395]],["name/8",[9,48.796]],["parent/8",[0,4.395]],["name/9",[10,27.115]],["parent/9",[11,8.21]],["name/10",[12,77.128]],["parent/10",[0,4.395]],["name/11",[13,77.128]],["parent/11",[0,4.395]],["name/12",[10,27.115]],["parent/12",[14,8.21]],["name/13",[15,77.128]],["parent/13",[0,4.395]],["name/14",[10,27.115]],["parent/14",[16,8.21]],["name/15",[17,54.721]],["parent/15",[]],["name/16",[18,82.236]],["parent/16",[17,5.463]],["name/17",[19,77.128]],["parent/17",[20,6.479]],["name/18",[21,77.128]],["parent/18",[20,6.479]],["name/19",[22,77.128]],["parent/19",[20,6.479]],["name/20",[23,71.25]],["parent/20",[20,6.479]],["name/21",[24,73.763]],["parent/21",[20,6.479]],["name/22",[25,71.25]],["parent/22",[20,6.479]],["name/23",[26,73.763]],["parent/23",[20,6.479]],["name/24",[27,77.128]],["parent/24",[20,6.479]],["name/25",[17,54.721]],["parent/25",[17,5.463]],["name/26",[19,77.128]],["parent/26",[28,6.268]],["name/27",[21,77.128]],["parent/27",[28,6.268]],["name/28",[22,77.128]],["parent/28",[28,6.268]],["name/29",[10,27.115]],["parent/29",[29,8.21]],["name/30",[23,71.25]],["parent/30",[28,6.268]],["name/31",[24,73.763]],["parent/31",[28,6.268]],["name/32",[25,71.25]],["parent/32",[28,6.268]],["name/33",[26,73.763]],["parent/33",[28,6.268]],["name/34",[27,77.128]],["parent/34",[28,6.268]],["name/35",[30,56.587]],["parent/35",[28,6.268]],["name/36",[31,82.236]],["parent/36",[28,6.268]],["name/37",[26,73.763]],["parent/37",[32,8.21]],["name/38",[33,82.236]],["parent/38",[17,5.463]],["name/39",[24,73.763]],["parent/39",[17,5.463]],["name/40",[34,82.236]],["parent/40",[17,5.463]],["name/41",[10,27.115]],["parent/41",[35,8.21]],["name/42",[36,77.128]],["parent/42",[]],["name/43",[37,82.236]],["parent/43",[36,7.7]],["name/44",[38,77.128]],["parent/44",[0,4.395]],["name/45",[39,77.128]],["parent/45",[0,4.395]],["name/46",[40,77.128]],["parent/46",[0,4.395]],["name/47",[41,77.128]],["parent/47",[0,4.395]],["name/48",[25,71.25]],["parent/48",[0,4.395]],["name/49",[42,27.726]],["parent/49",[]],["name/50",[43,47.475]],["parent/50",[42,2.768]],["name/51",[44,73.763]],["parent/51",[]],["name/52",[44,73.763]],["parent/52",[44,7.364]],["name/53",[30,56.587]],["parent/53",[45,5.552]],["name/54",[46,82.236]],["parent/54",[45,5.552]],["name/55",[47,82.236]],["parent/55",[45,5.552]],["name/56",[48,82.236]],["parent/56",[45,5.552]],["name/57",[49,82.236]],["parent/57",[45,5.552]],["name/58",[50,82.236]],["parent/58",[45,5.552]],["name/59",[51,82.236]],["parent/59",[45,5.552]],["name/60",[52,82.236]],["parent/60",[45,5.552]],["name/61",[53,82.236]],["parent/61",[45,5.552]],["name/62",[54,82.236]],["parent/62",[45,5.552]],["name/63",[55,82.236]],["parent/63",[45,5.552]],["name/64",[56,82.236]],["parent/64",[45,5.552]],["name/65",[57,82.236]],["parent/65",[45,5.552]],["name/66",[58,82.236]],["parent/66",[45,5.552]],["name/67",[59,82.236]],["parent/67",[45,5.552]],["name/68",[60,82.236]],["parent/68",[45,5.552]],["name/69",[61,82.236]],["parent/69",[45,5.552]],["name/70",[62,82.236]],["parent/70",[45,5.552]],["name/71",[63,82.236]],["parent/71",[45,5.552]],["name/72",[64,82.236]],["parent/72",[45,5.552]],["name/73",[65,82.236]],["parent/73",[45,5.552]],["name/74",[66,73.763]],["parent/74",[]],["name/75",[67,82.236]],["parent/75",[66,7.364]],["name/76",[68,82.236]],["parent/76",[66,7.364]],["name/77",[69,71.25]],["parent/77",[42,2.768]],["name/78",[70,71.25]],["parent/78",[42,2.768]],["name/79",[71,71.25]],["parent/79",[42,2.768]],["name/80",[72,71.25]],["parent/80",[42,2.768]],["name/81",[73,71.25]],["parent/81",[42,2.768]],["name/82",[74,71.25]],["parent/82",[42,2.768]],["name/83",[75,71.25]],["parent/83",[42,2.768]],["name/84",[76,71.25]],["parent/84",[42,2.768]],["name/85",[77,71.25]],["parent/85",[42,2.768]],["name/86",[78,71.25]],["parent/86",[42,2.768]],["name/87",[79,71.25]],["parent/87",[42,2.768]],["name/88",[80,71.25]],["parent/88",[42,2.768]],["name/89",[81,71.25]],["parent/89",[42,2.768]],["name/90",[82,71.25]],["parent/90",[42,2.768]],["name/91",[83,71.25]],["parent/91",[42,2.768]],["name/92",[84,71.25]],["parent/92",[42,2.768]],["name/93",[85,71.25]],["parent/93",[42,2.768]],["name/94",[86,71.25]],["parent/94",[42,2.768]],["name/95",[87,71.25]],["parent/95",[42,2.768]],["name/96",[88,71.25]],["parent/96",[42,2.768]],["name/97",[89,71.25]],["parent/97",[42,2.768]],["name/98",[90,71.25]],["parent/98",[42,2.768]],["name/99",[91,71.25]],["parent/99",[42,2.768]],["name/100",[92,71.25]],["parent/100",[42,2.768]],["name/101",[93,71.25]],["parent/101",[42,2.768]],["name/102",[94,71.25]],["parent/102",[42,2.768]],["name/103",[95,71.25]],["parent/103",[42,2.768]],["name/104",[96,71.25]],["parent/104",[42,2.768]],["name/105",[80,71.25]],["parent/105",[42,2.768]],["name/106",[83,71.25]],["parent/106",[42,2.768]],["name/107",[76,71.25]],["parent/107",[42,2.768]],["name/108",[74,71.25]],["parent/108",[42,2.768]],["name/109",[75,71.25]],["parent/109",[42,2.768]],["name/110",[72,71.25]],["parent/110",[42,2.768]],["name/111",[73,71.25]],["parent/111",[42,2.768]],["name/112",[71,71.25]],["parent/112",[42,2.768]],["name/113",[70,71.25]],["parent/113",[42,2.768]],["name/114",[69,71.25]],["parent/114",[42,2.768]],["name/115",[84,71.25]],["parent/115",[42,2.768]],["name/116",[85,71.25]],["parent/116",[42,2.768]],["name/117",[86,71.25]],["parent/117",[42,2.768]],["name/118",[87,71.25]],["parent/118",[42,2.768]],["name/119",[88,71.25]],["parent/119",[42,2.768]],["name/120",[89,71.25]],["parent/120",[42,2.768]],["name/121",[90,71.25]],["parent/121",[42,2.768]],["name/122",[78,71.25]],["parent/122",[42,2.768]],["name/123",[79,71.25]],["parent/123",[42,2.768]],["name/124",[77,71.25]],["parent/124",[42,2.768]],["name/125",[91,71.25]],["parent/125",[42,2.768]],["name/126",[92,71.25]],["parent/126",[42,2.768]],["name/127",[93,71.25]],["parent/127",[42,2.768]],["name/128",[94,71.25]],["parent/128",[42,2.768]],["name/129",[95,71.25]],["parent/129",[42,2.768]],["name/130",[96,71.25]],["parent/130",[42,2.768]],["name/131",[82,71.25]],["parent/131",[42,2.768]],["name/132",[81,71.25]],["parent/132",[42,2.768]],["name/133",[42,27.726]],["parent/133",[42,2.768]],["name/134",[17,54.721]],["parent/134",[97,5.203]],["name/135",[43,47.475]],["parent/135",[97,5.203]],["name/136",[98,58.257]],["parent/136",[97,5.203]],["name/137",[99,73.763]],["parent/137",[100,5.382]],["name/138",[101,73.763]],["parent/138",[100,5.382]],["name/139",[102,73.763]],["parent/139",[100,5.382]],["name/140",[103,73.763]],["parent/140",[100,5.382]],["name/141",[104,73.763]],["parent/141",[100,5.382]],["name/142",[105,73.763]],["parent/142",[100,5.382]],["name/143",[106,73.763]],["parent/143",[100,5.382]],["name/144",[107,73.763]],["parent/144",[100,5.382]],["name/145",[108,73.763]],["parent/145",[100,5.382]],["name/146",[109,73.763]],["parent/146",[100,5.382]],["name/147",[110,73.763]],["parent/147",[100,5.382]],["name/148",[111,69.243]],["parent/148",[100,5.382]],["name/149",[112,73.763]],["parent/149",[100,5.382]],["name/150",[113,73.763]],["parent/150",[100,5.382]],["name/151",[114,73.763]],["parent/151",[100,5.382]],["name/152",[115,73.763]],["parent/152",[100,5.382]],["name/153",[116,73.763]],["parent/153",[100,5.382]],["name/154",[117,73.763]],["parent/154",[100,5.382]],["name/155",[118,73.763]],["parent/155",[100,5.382]],["name/156",[119,73.763]],["parent/156",[100,5.382]],["name/157",[120,73.763]],["parent/157",[100,5.382]],["name/158",[121,67.573]],["parent/158",[100,5.382]],["name/159",[122,73.763]],["parent/159",[100,5.382]],["name/160",[123,73.763]],["parent/160",[100,5.382]],["name/161",[124,73.763]],["parent/161",[100,5.382]],["name/162",[30,56.587]],["parent/162",[97,5.203]],["name/163",[125,58.257]],["parent/163",[97,5.203]],["name/164",[10,27.115]],["parent/164",[126,8.21]],["name/165",[99,73.763]],["parent/165",[127,4.7]],["name/166",[128,82.236]],["parent/166",[127,4.7]],["name/167",[101,73.763]],["parent/167",[127,4.7]],["name/168",[129,82.236]],["parent/168",[127,4.7]],["name/169",[102,73.763]],["parent/169",[127,4.7]],["name/170",[130,82.236]],["parent/170",[127,4.7]],["name/171",[103,73.763]],["parent/171",[127,4.7]],["name/172",[131,82.236]],["parent/172",[127,4.7]],["name/173",[104,73.763]],["parent/173",[127,4.7]],["name/174",[132,82.236]],["parent/174",[127,4.7]],["name/175",[105,73.763]],["parent/175",[127,4.7]],["name/176",[133,82.236]],["parent/176",[127,4.7]],["name/177",[106,73.763]],["parent/177",[127,4.7]],["name/178",[134,82.236]],["parent/178",[127,4.7]],["name/179",[107,73.763]],["parent/179",[127,4.7]],["name/180",[135,82.236]],["parent/180",[127,4.7]],["name/181",[108,73.763]],["parent/181",[127,4.7]],["name/182",[136,82.236]],["parent/182",[127,4.7]],["name/183",[109,73.763]],["parent/183",[127,4.7]],["name/184",[137,82.236]],["parent/184",[127,4.7]],["name/185",[110,73.763]],["parent/185",[127,4.7]],["name/186",[138,82.236]],["parent/186",[127,4.7]],["name/187",[111,69.243]],["parent/187",[127,4.7]],["name/188",[139,82.236]],["parent/188",[127,4.7]],["name/189",[112,73.763]],["parent/189",[127,4.7]],["name/190",[140,82.236]],["parent/190",[127,4.7]],["name/191",[113,73.763]],["parent/191",[127,4.7]],["name/192",[141,82.236]],["parent/192",[127,4.7]],["name/193",[114,73.763]],["parent/193",[127,4.7]],["name/194",[142,82.236]],["parent/194",[127,4.7]],["name/195",[115,73.763]],["parent/195",[127,4.7]],["name/196",[143,82.236]],["parent/196",[127,4.7]],["name/197",[116,73.763]],["parent/197",[127,4.7]],["name/198",[144,82.236]],["parent/198",[127,4.7]],["name/199",[117,73.763]],["parent/199",[127,4.7]],["name/200",[145,82.236]],["parent/200",[127,4.7]],["name/201",[118,73.763]],["parent/201",[127,4.7]],["name/202",[146,82.236]],["parent/202",[127,4.7]],["name/203",[119,73.763]],["parent/203",[127,4.7]],["name/204",[147,82.236]],["parent/204",[127,4.7]],["name/205",[120,73.763]],["parent/205",[127,4.7]],["name/206",[148,82.236]],["parent/206",[127,4.7]],["name/207",[121,67.573]],["parent/207",[127,4.7]],["name/208",[149,77.128]],["parent/208",[127,4.7]],["name/209",[122,73.763]],["parent/209",[127,4.7]],["name/210",[150,82.236]],["parent/210",[127,4.7]],["name/211",[123,73.763]],["parent/211",[127,4.7]],["name/212",[151,82.236]],["parent/212",[127,4.7]],["name/213",[124,73.763]],["parent/213",[127,4.7]],["name/214",[152,82.236]],["parent/214",[127,4.7]],["name/215",[99,73.763]],["parent/215",[97,5.203]],["name/216",[101,73.763]],["parent/216",[97,5.203]],["name/217",[102,73.763]],["parent/217",[97,5.203]],["name/218",[103,73.763]],["parent/218",[97,5.203]],["name/219",[104,73.763]],["parent/219",[97,5.203]],["name/220",[105,73.763]],["parent/220",[97,5.203]],["name/221",[106,73.763]],["parent/221",[97,5.203]],["name/222",[107,73.763]],["parent/222",[97,5.203]],["name/223",[108,73.763]],["parent/223",[97,5.203]],["name/224",[109,73.763]],["parent/224",[97,5.203]],["name/225",[110,73.763]],["parent/225",[97,5.203]],["name/226",[111,69.243]],["parent/226",[97,5.203]],["name/227",[112,73.763]],["parent/227",[97,5.203]],["name/228",[113,73.763]],["parent/228",[97,5.203]],["name/229",[114,73.763]],["parent/229",[97,5.203]],["name/230",[115,73.763]],["parent/230",[97,5.203]],["name/231",[116,73.763]],["parent/231",[97,5.203]],["name/232",[117,73.763]],["parent/232",[97,5.203]],["name/233",[118,73.763]],["parent/233",[97,5.203]],["name/234",[119,73.763]],["parent/234",[97,5.203]],["name/235",[120,73.763]],["parent/235",[97,5.203]],["name/236",[121,67.573]],["parent/236",[97,5.203]],["name/237",[122,73.763]],["parent/237",[97,5.203]],["name/238",[123,73.763]],["parent/238",[97,5.203]],["name/239",[124,73.763]],["parent/239",[97,5.203]],["name/240",[153,71.25]],["parent/240",[42,2.768]],["name/241",[154,71.25]],["parent/241",[42,2.768]],["name/242",[155,71.25]],["parent/242",[42,2.768]],["name/243",[156,71.25]],["parent/243",[42,2.768]],["name/244",[157,71.25]],["parent/244",[42,2.768]],["name/245",[158,71.25]],["parent/245",[42,2.768]],["name/246",[159,71.25]],["parent/246",[42,2.768]],["name/247",[160,71.25]],["parent/247",[42,2.768]],["name/248",[161,71.25]],["parent/248",[42,2.768]],["name/249",[162,71.25]],["parent/249",[42,2.768]],["name/250",[163,71.25]],["parent/250",[42,2.768]],["name/251",[164,71.25]],["parent/251",[42,2.768]],["name/252",[165,71.25]],["parent/252",[42,2.768]],["name/253",[166,71.25]],["parent/253",[42,2.768]],["name/254",[167,71.25]],["parent/254",[42,2.768]],["name/255",[168,71.25]],["parent/255",[42,2.768]],["name/256",[10,27.115]],["parent/256",[169,8.21]],["name/257",[170,71.25]],["parent/257",[42,2.768]],["name/258",[10,27.115]],["parent/258",[171,8.21]],["name/259",[172,34.962]],["parent/259",[173,8.21]],["name/260",[174,71.25]],["parent/260",[42,2.768]],["name/261",[10,27.115]],["parent/261",[175,8.21]],["name/262",[176,59.549]],["parent/262",[177,6.479]],["name/263",[178,73.763]],["parent/263",[177,6.479]],["name/264",[179,71.25]],["parent/264",[177,6.479]],["name/265",[180,73.763]],["parent/265",[177,6.479]],["name/266",[181,77.128]],["parent/266",[177,6.479]],["name/267",[182,61.867]],["parent/267",[177,6.479]],["name/268",[183,57.113]],["parent/268",[177,6.479]],["name/269",[184,69.243]],["parent/269",[177,6.479]],["name/270",[185,71.25]],["parent/270",[42,2.768]],["name/271",[10,27.115]],["parent/271",[186,8.21]],["name/272",[179,71.25]],["parent/272",[187,6.268]],["name/273",[178,73.763]],["parent/273",[187,6.268]],["name/274",[176,59.549]],["parent/274",[187,6.268]],["name/275",[181,77.128]],["parent/275",[187,6.268]],["name/276",[180,73.763]],["parent/276",[187,6.268]],["name/277",[182,61.867]],["parent/277",[187,6.268]],["name/278",[188,66.142]],["parent/278",[187,6.268]],["name/279",[183,57.113]],["parent/279",[187,6.268]],["name/280",[184,69.243]],["parent/280",[187,6.268]],["name/281",[189,82.236]],["parent/281",[187,6.268]],["name/282",[190,71.25]],["parent/282",[42,2.768]],["name/283",[10,27.115]],["parent/283",[191,8.21]],["name/284",[172,34.962]],["parent/284",[192,8.21]],["name/285",[193,71.25]],["parent/285",[42,2.768]],["name/286",[10,27.115]],["parent/286",[194,8.21]],["name/287",[195,82.236]],["parent/287",[196,8.21]],["name/288",[197,71.25]],["parent/288",[42,2.768]],["name/289",[10,27.115]],["parent/289",[198,8.21]],["name/290",[172,34.962]],["parent/290",[199,8.21]],["name/291",[200,71.25]],["parent/291",[42,2.768]],["name/292",[10,27.115]],["parent/292",[201,8.21]],["name/293",[202,67.573]],["parent/293",[203,6.177]],["name/294",[204,73.763]],["parent/294",[203,6.177]],["name/295",[205,41.128]],["parent/295",[203,6.177]],["name/296",[182,61.867]],["parent/296",[203,6.177]],["name/297",[183,57.113]],["parent/297",[203,6.177]],["name/298",[206,73.763]],["parent/298",[203,6.177]],["name/299",[207,82.236]],["parent/299",[203,6.177]],["name/300",[208,77.128]],["parent/300",[203,6.177]],["name/301",[209,82.236]],["parent/301",[203,6.177]],["name/302",[210,82.236]],["parent/302",[203,6.177]],["name/303",[211,82.236]],["parent/303",[203,6.177]],["name/304",[212,71.25]],["parent/304",[42,2.768]],["name/305",[10,27.115]],["parent/305",[213,8.21]],["name/306",[214,71.25]],["parent/306",[42,2.768]],["name/307",[10,27.115]],["parent/307",[215,8.21]],["name/308",[172,34.962]],["parent/308",[216,8.21]],["name/309",[217,71.25]],["parent/309",[42,2.768]],["name/310",[10,27.115]],["parent/310",[218,8.21]],["name/311",[202,67.573]],["parent/311",[219,6.368]],["name/312",[204,73.763]],["parent/312",[219,6.368]],["name/313",[183,57.113]],["parent/313",[219,6.368]],["name/314",[205,41.128]],["parent/314",[219,6.368]],["name/315",[176,59.549]],["parent/315",[219,6.368]],["name/316",[184,69.243]],["parent/316",[219,6.368]],["name/317",[206,73.763]],["parent/317",[219,6.368]],["name/318",[220,77.128]],["parent/318",[219,6.368]],["name/319",[188,66.142]],["parent/319",[219,6.368]],["name/320",[221,71.25]],["parent/320",[42,2.768]],["name/321",[10,27.115]],["parent/321",[222,8.21]],["name/322",[183,57.113]],["parent/322",[223,8.21]],["name/323",[224,71.25]],["parent/323",[42,2.768]],["name/324",[10,27.115]],["parent/324",[225,8.21]],["name/325",[172,34.962]],["parent/325",[226,7.364]],["name/326",[227,73.763]],["parent/326",[226,7.364]],["name/327",[228,82.236]],["parent/327",[226,7.364]],["name/328",[229,71.25]],["parent/328",[42,2.768]],["name/329",[10,27.115]],["parent/329",[230,8.21]],["name/330",[183,57.113]],["parent/330",[231,8.21]],["name/331",[232,71.25]],["parent/331",[42,2.768]],["name/332",[10,27.115]],["parent/332",[233,8.21]],["name/333",[172,34.962]],["parent/333",[234,7.7]],["name/334",[227,73.763]],["parent/334",[234,7.7]],["name/335",[235,71.25]],["parent/335",[42,2.768]],["name/336",[10,27.115]],["parent/336",[236,8.21]],["name/337",[237,71.25]],["parent/337",[42,2.768]],["name/338",[10,27.115]],["parent/338",[238,8.21]],["name/339",[172,34.962]],["parent/339",[239,8.21]],["name/340",[240,71.25]],["parent/340",[42,2.768]],["name/341",[10,27.115]],["parent/341",[241,8.21]],["name/342",[242,71.25]],["parent/342",[42,2.768]],["name/343",[10,27.115]],["parent/343",[243,8.21]],["name/344",[172,34.962]],["parent/344",[244,8.21]],["name/345",[245,71.25]],["parent/345",[42,2.768]],["name/346",[10,27.115]],["parent/346",[246,8.21]],["name/347",[247,71.25]],["parent/347",[42,2.768]],["name/348",[10,27.115]],["parent/348",[248,8.21]],["name/349",[172,34.962]],["parent/349",[249,8.21]],["name/350",[250,71.25]],["parent/350",[42,2.768]],["name/351",[10,27.115]],["parent/351",[251,8.21]],["name/352",[252,77.128]],["parent/352",[253,6.368]],["name/353",[254,77.128]],["parent/353",[253,6.368]],["name/354",[182,61.867]],["parent/354",[253,6.368]],["name/355",[255,69.243]],["parent/355",[253,6.368]],["name/356",[179,71.25]],["parent/356",[253,6.368]],["name/357",[256,69.243]],["parent/357",[253,6.368]],["name/358",[176,59.549]],["parent/358",[253,6.368]],["name/359",[183,57.113]],["parent/359",[253,6.368]],["name/360",[257,71.25]],["parent/360",[253,6.368]],["name/361",[258,71.25]],["parent/361",[42,2.768]],["name/362",[10,27.115]],["parent/362",[259,8.21]],["name/363",[260,71.25]],["parent/363",[42,2.768]],["name/364",[10,27.115]],["parent/364",[261,8.21]],["name/365",[172,34.962]],["parent/365",[262,8.21]],["name/366",[263,71.25]],["parent/366",[42,2.768]],["name/367",[10,27.115]],["parent/367",[264,8.21]],["name/368",[183,57.113]],["parent/368",[265,8.21]],["name/369",[266,71.25]],["parent/369",[42,2.768]],["name/370",[10,27.115]],["parent/370",[267,8.21]],["name/371",[172,34.962]],["parent/371",[268,7.7]],["name/372",[227,73.763]],["parent/372",[268,7.7]],["name/373",[269,71.25]],["parent/373",[42,2.768]],["name/374",[10,27.115]],["parent/374",[270,8.21]],["name/375",[271,71.25]],["parent/375",[42,2.768]],["name/376",[10,27.115]],["parent/376",[272,8.21]],["name/377",[172,34.962]],["parent/377",[273,8.21]],["name/378",[274,71.25]],["parent/378",[42,2.768]],["name/379",[10,27.115]],["parent/379",[275,8.21]],["name/380",[255,69.243]],["parent/380",[276,6.746]],["name/381",[188,66.142]],["parent/381",[276,6.746]],["name/382",[277,82.236]],["parent/382",[276,6.746]],["name/383",[176,59.549]],["parent/383",[276,6.746]],["name/384",[256,69.243]],["parent/384",[276,6.746]],["name/385",[278,69.243]],["parent/385",[276,6.746]],["name/386",[279,71.25]],["parent/386",[42,2.768]],["name/387",[10,27.115]],["parent/387",[280,8.21]],["name/388",[281,71.25]],["parent/388",[42,2.768]],["name/389",[10,27.115]],["parent/389",[282,8.21]],["name/390",[172,34.962]],["parent/390",[283,8.21]],["name/391",[284,71.25]],["parent/391",[42,2.768]],["name/392",[10,27.115]],["parent/392",[285,8.21]],["name/393",[202,67.573]],["parent/393",[286,6.368]],["name/394",[204,73.763]],["parent/394",[286,6.368]],["name/395",[183,57.113]],["parent/395",[286,6.368]],["name/396",[205,41.128]],["parent/396",[286,6.368]],["name/397",[176,59.549]],["parent/397",[286,6.368]],["name/398",[184,69.243]],["parent/398",[286,6.368]],["name/399",[206,73.763]],["parent/399",[286,6.368]],["name/400",[220,77.128]],["parent/400",[286,6.368]],["name/401",[188,66.142]],["parent/401",[286,6.368]],["name/402",[287,71.25]],["parent/402",[42,2.768]],["name/403",[10,27.115]],["parent/403",[288,8.21]],["name/404",[289,71.25]],["parent/404",[42,2.768]],["name/405",[10,27.115]],["parent/405",[290,8.21]],["name/406",[172,34.962]],["parent/406",[291,8.21]],["name/407",[292,71.25]],["parent/407",[42,2.768]],["name/408",[10,27.115]],["parent/408",[293,8.21]],["name/409",[254,77.128]],["parent/409",[294,6.177]],["name/410",[176,59.549]],["parent/410",[294,6.177]],["name/411",[183,57.113]],["parent/411",[294,6.177]],["name/412",[256,69.243]],["parent/412",[294,6.177]],["name/413",[295,82.236]],["parent/413",[294,6.177]],["name/414",[255,69.243]],["parent/414",[294,6.177]],["name/415",[278,69.243]],["parent/415",[294,6.177]],["name/416",[296,82.236]],["parent/416",[294,6.177]],["name/417",[297,82.236]],["parent/417",[294,6.177]],["name/418",[182,61.867]],["parent/418",[294,6.177]],["name/419",[257,71.25]],["parent/419",[294,6.177]],["name/420",[298,71.25]],["parent/420",[42,2.768]],["name/421",[10,27.115]],["parent/421",[299,8.21]],["name/422",[300,71.25]],["parent/422",[42,2.768]],["name/423",[10,27.115]],["parent/423",[301,8.21]],["name/424",[172,34.962]],["parent/424",[302,8.21]],["name/425",[303,71.25]],["parent/425",[42,2.768]],["name/426",[10,27.115]],["parent/426",[304,8.21]],["name/427",[305,82.236]],["parent/427",[306,6.268]],["name/428",[176,59.549]],["parent/428",[306,6.268]],["name/429",[183,57.113]],["parent/429",[306,6.268]],["name/430",[256,69.243]],["parent/430",[306,6.268]],["name/431",[255,69.243]],["parent/431",[306,6.268]],["name/432",[278,69.243]],["parent/432",[306,6.268]],["name/433",[307,73.763]],["parent/433",[306,6.268]],["name/434",[182,61.867]],["parent/434",[306,6.268]],["name/435",[257,71.25]],["parent/435",[306,6.268]],["name/436",[180,73.763]],["parent/436",[306,6.268]],["name/437",[308,71.25]],["parent/437",[42,2.768]],["name/438",[10,27.115]],["parent/438",[309,8.21]],["name/439",[176,59.549]],["parent/439",[310,6.604]],["name/440",[183,57.113]],["parent/440",[310,6.604]],["name/441",[184,69.243]],["parent/441",[310,6.604]],["name/442",[278,69.243]],["parent/442",[310,6.604]],["name/443",[307,73.763]],["parent/443",[310,6.604]],["name/444",[179,71.25]],["parent/444",[310,6.604]],["name/445",[178,73.763]],["parent/445",[310,6.604]],["name/446",[311,71.25]],["parent/446",[42,2.768]],["name/447",[10,27.115]],["parent/447",[312,8.21]],["name/448",[172,34.962]],["parent/448",[313,8.21]],["name/449",[314,71.25]],["parent/449",[42,2.768]],["name/450",[10,27.115]],["parent/450",[315,8.21]],["name/451",[316,71.25]],["parent/451",[42,2.768]],["name/452",[10,27.115]],["parent/452",[317,8.21]],["name/453",[172,34.962]],["parent/453",[318,8.21]],["name/454",[319,71.25]],["parent/454",[42,2.768]],["name/455",[10,27.115]],["parent/455",[320,8.21]],["name/456",[182,61.867]],["parent/456",[321,6.368]],["name/457",[255,69.243]],["parent/457",[321,6.368]],["name/458",[188,66.142]],["parent/458",[321,6.368]],["name/459",[278,69.243]],["parent/459",[321,6.368]],["name/460",[307,73.763]],["parent/460",[321,6.368]],["name/461",[176,59.549]],["parent/461",[321,6.368]],["name/462",[183,57.113]],["parent/462",[321,6.368]],["name/463",[322,82.236]],["parent/463",[321,6.368]],["name/464",[257,71.25]],["parent/464",[321,6.368]],["name/465",[323,71.25]],["parent/465",[42,2.768]],["name/466",[10,27.115]],["parent/466",[324,8.21]],["name/467",[183,57.113]],["parent/467",[325,8.21]],["name/468",[326,71.25]],["parent/468",[42,2.768]],["name/469",[10,27.115]],["parent/469",[327,8.21]],["name/470",[172,34.962]],["parent/470",[328,8.21]],["name/471",[329,71.25]],["parent/471",[42,2.768]],["name/472",[10,27.115]],["parent/472",[330,8.21]],["name/473",[331,71.25]],["parent/473",[42,2.768]],["name/474",[10,27.115]],["parent/474",[332,8.21]],["name/475",[172,34.962]],["parent/475",[333,8.21]],["name/476",[334,71.25]],["parent/476",[42,2.768]],["name/477",[10,27.115]],["parent/477",[335,8.21]],["name/478",[336,71.25]],["parent/478",[42,2.768]],["name/479",[10,27.115]],["parent/479",[337,8.21]],["name/480",[172,34.962]],["parent/480",[338,8.21]],["name/481",[339,71.25]],["parent/481",[42,2.768]],["name/482",[10,27.115]],["parent/482",[340,8.21]],["name/483",[341,77.128]],["parent/483",[342,7.7]],["name/484",[343,77.128]],["parent/484",[342,7.7]],["name/485",[344,71.25]],["parent/485",[42,2.768]],["name/486",[10,27.115]],["parent/486",[345,8.21]],["name/487",[176,59.549]],["parent/487",[346,7.114]],["name/488",[252,77.128]],["parent/488",[346,7.114]],["name/489",[183,57.113]],["parent/489",[346,7.114]],["name/490",[188,66.142]],["parent/490",[346,7.114]],["name/491",[347,71.25]],["parent/491",[42,2.768]],["name/492",[10,27.115]],["parent/492",[348,8.21]],["name/493",[172,34.962]],["parent/493",[349,8.21]],["name/494",[350,64.89]],["parent/494",[42,2.768]],["name/495",[10,27.115]],["parent/495",[351,8.21]],["name/496",[352,64.89]],["parent/496",[42,2.768]],["name/497",[10,27.115]],["parent/497",[353,8.21]],["name/498",[172,34.962]],["parent/498",[354,8.21]],["name/499",[355,71.25]],["parent/499",[42,2.768]],["name/500",[10,27.115]],["parent/500",[356,8.21]],["name/501",[176,59.549]],["parent/501",[357,6.604]],["name/502",[358,77.128]],["parent/502",[357,6.604]],["name/503",[256,69.243]],["parent/503",[357,6.604]],["name/504",[359,82.236]],["parent/504",[357,6.604]],["name/505",[183,57.113]],["parent/505",[357,6.604]],["name/506",[188,66.142]],["parent/506",[357,6.604]],["name/507",[202,67.573]],["parent/507",[357,6.604]],["name/508",[360,71.25]],["parent/508",[42,2.768]],["name/509",[10,27.115]],["parent/509",[361,8.21]],["name/510",[362,71.25]],["parent/510",[42,2.768]],["name/511",[10,27.115]],["parent/511",[363,8.21]],["name/512",[172,34.962]],["parent/512",[364,8.21]],["name/513",[365,71.25]],["parent/513",[42,2.768]],["name/514",[10,27.115]],["parent/514",[366,8.21]],["name/515",[341,77.128]],["parent/515",[367,7.7]],["name/516",[343,77.128]],["parent/516",[367,7.7]],["name/517",[368,71.25]],["parent/517",[42,2.768]],["name/518",[10,27.115]],["parent/518",[369,8.21]],["name/519",[370,71.25]],["parent/519",[42,2.768]],["name/520",[10,27.115]],["parent/520",[371,8.21]],["name/521",[172,34.962]],["parent/521",[372,8.21]],["name/522",[373,71.25]],["parent/522",[42,2.768]],["name/523",[10,27.115]],["parent/523",[374,8.21]],["name/524",[375,82.236]],["parent/524",[376,7.114]],["name/525",[176,59.549]],["parent/525",[376,7.114]],["name/526",[183,57.113]],["parent/526",[376,7.114]],["name/527",[202,67.573]],["parent/527",[376,7.114]],["name/528",[377,71.25]],["parent/528",[42,2.768]],["name/529",[10,27.115]],["parent/529",[378,8.21]],["name/530",[379,71.25]],["parent/530",[42,2.768]],["name/531",[10,27.115]],["parent/531",[380,8.21]],["name/532",[172,34.962]],["parent/532",[381,8.21]],["name/533",[382,71.25]],["parent/533",[42,2.768]],["name/534",[10,27.115]],["parent/534",[383,8.21]],["name/535",[176,59.549]],["parent/535",[384,6.746]],["name/536",[358,77.128]],["parent/536",[384,6.746]],["name/537",[202,67.573]],["parent/537",[384,6.746]],["name/538",[183,57.113]],["parent/538",[384,6.746]],["name/539",[385,82.236]],["parent/539",[384,6.746]],["name/540",[386,82.236]],["parent/540",[384,6.746]],["name/541",[387,71.25]],["parent/541",[42,2.768]],["name/542",[388,71.25]],["parent/542",[42,2.768]],["name/543",[389,73.763]],["parent/543",[42,2.768]],["name/544",[390,73.763]],["parent/544",[42,2.768]],["name/545",[391,73.763]],["parent/545",[42,2.768]],["name/546",[392,73.763]],["parent/546",[42,2.768]],["name/547",[153,71.25]],["parent/547",[42,2.768]],["name/548",[154,71.25]],["parent/548",[42,2.768]],["name/549",[155,71.25]],["parent/549",[42,2.768]],["name/550",[156,71.25]],["parent/550",[42,2.768]],["name/551",[157,71.25]],["parent/551",[42,2.768]],["name/552",[158,71.25]],["parent/552",[42,2.768]],["name/553",[159,71.25]],["parent/553",[42,2.768]],["name/554",[160,71.25]],["parent/554",[42,2.768]],["name/555",[161,71.25]],["parent/555",[42,2.768]],["name/556",[162,71.25]],["parent/556",[42,2.768]],["name/557",[163,71.25]],["parent/557",[42,2.768]],["name/558",[164,71.25]],["parent/558",[42,2.768]],["name/559",[165,71.25]],["parent/559",[42,2.768]],["name/560",[166,71.25]],["parent/560",[42,2.768]],["name/561",[167,71.25]],["parent/561",[42,2.768]],["name/562",[168,71.25]],["parent/562",[42,2.768]],["name/563",[170,71.25]],["parent/563",[42,2.768]],["name/564",[174,71.25]],["parent/564",[42,2.768]],["name/565",[185,71.25]],["parent/565",[42,2.768]],["name/566",[190,71.25]],["parent/566",[42,2.768]],["name/567",[193,71.25]],["parent/567",[42,2.768]],["name/568",[197,71.25]],["parent/568",[42,2.768]],["name/569",[200,71.25]],["parent/569",[42,2.768]],["name/570",[212,71.25]],["parent/570",[42,2.768]],["name/571",[214,71.25]],["parent/571",[42,2.768]],["name/572",[217,71.25]],["parent/572",[42,2.768]],["name/573",[221,71.25]],["parent/573",[42,2.768]],["name/574",[224,71.25]],["parent/574",[42,2.768]],["name/575",[229,71.25]],["parent/575",[42,2.768]],["name/576",[232,71.25]],["parent/576",[42,2.768]],["name/577",[235,71.25]],["parent/577",[42,2.768]],["name/578",[237,71.25]],["parent/578",[42,2.768]],["name/579",[240,71.25]],["parent/579",[42,2.768]],["name/580",[242,71.25]],["parent/580",[42,2.768]],["name/581",[245,71.25]],["parent/581",[42,2.768]],["name/582",[247,71.25]],["parent/582",[42,2.768]],["name/583",[250,71.25]],["parent/583",[42,2.768]],["name/584",[258,71.25]],["parent/584",[42,2.768]],["name/585",[260,71.25]],["parent/585",[42,2.768]],["name/586",[263,71.25]],["parent/586",[42,2.768]],["name/587",[266,71.25]],["parent/587",[42,2.768]],["name/588",[269,71.25]],["parent/588",[42,2.768]],["name/589",[271,71.25]],["parent/589",[42,2.768]],["name/590",[274,71.25]],["parent/590",[42,2.768]],["name/591",[279,71.25]],["parent/591",[42,2.768]],["name/592",[281,71.25]],["parent/592",[42,2.768]],["name/593",[284,71.25]],["parent/593",[42,2.768]],["name/594",[287,71.25]],["parent/594",[42,2.768]],["name/595",[289,71.25]],["parent/595",[42,2.768]],["name/596",[292,71.25]],["parent/596",[42,2.768]],["name/597",[298,71.25]],["parent/597",[42,2.768]],["name/598",[300,71.25]],["parent/598",[42,2.768]],["name/599",[303,71.25]],["parent/599",[42,2.768]],["name/600",[308,71.25]],["parent/600",[42,2.768]],["name/601",[311,71.25]],["parent/601",[42,2.768]],["name/602",[314,71.25]],["parent/602",[42,2.768]],["name/603",[316,71.25]],["parent/603",[42,2.768]],["name/604",[319,71.25]],["parent/604",[42,2.768]],["name/605",[323,71.25]],["parent/605",[42,2.768]],["name/606",[326,71.25]],["parent/606",[42,2.768]],["name/607",[329,71.25]],["parent/607",[42,2.768]],["name/608",[331,71.25]],["parent/608",[42,2.768]],["name/609",[334,71.25]],["parent/609",[42,2.768]],["name/610",[336,71.25]],["parent/610",[42,2.768]],["name/611",[339,71.25]],["parent/611",[42,2.768]],["name/612",[344,71.25]],["parent/612",[42,2.768]],["name/613",[347,71.25]],["parent/613",[42,2.768]],["name/614",[350,64.89]],["parent/614",[42,2.768]],["name/615",[352,64.89]],["parent/615",[42,2.768]],["name/616",[355,71.25]],["parent/616",[42,2.768]],["name/617",[360,71.25]],["parent/617",[42,2.768]],["name/618",[362,71.25]],["parent/618",[42,2.768]],["name/619",[365,71.25]],["parent/619",[42,2.768]],["name/620",[368,71.25]],["parent/620",[42,2.768]],["name/621",[370,71.25]],["parent/621",[42,2.768]],["name/622",[373,71.25]],["parent/622",[42,2.768]],["name/623",[377,71.25]],["parent/623",[42,2.768]],["name/624",[379,71.25]],["parent/624",[42,2.768]],["name/625",[382,71.25]],["parent/625",[42,2.768]],["name/626",[387,71.25]],["parent/626",[42,2.768]],["name/627",[388,71.25]],["parent/627",[42,2.768]],["name/628",[389,73.763]],["parent/628",[42,2.768]],["name/629",[390,73.763]],["parent/629",[42,2.768]],["name/630",[391,73.763]],["parent/630",[42,2.768]],["name/631",[392,73.763]],["parent/631",[42,2.768]],["name/632",[42,27.726]],["parent/632",[42,2.768]],["name/633",[393,73.763]],["parent/633",[]],["name/634",[393,73.763]],["parent/634",[393,7.364]],["name/635",[30,56.587]],["parent/635",[394,6.746]],["name/636",[395,82.236]],["parent/636",[394,6.746]],["name/637",[396,82.236]],["parent/637",[394,6.746]],["name/638",[397,82.236]],["parent/638",[394,6.746]],["name/639",[398,82.236]],["parent/639",[394,6.746]],["name/640",[399,82.236]],["parent/640",[394,6.746]],["name/641",[400,77.128]],["parent/641",[0,4.395]],["name/642",[401,77.128]],["parent/642",[0,4.395]],["name/643",[402,82.236]],["parent/643",[0,4.395]],["name/644",[403,77.128]],["parent/644",[0,4.395]],["name/645",[404,77.128]],["parent/645",[0,4.395]],["name/646",[405,77.128]],["parent/646",[0,4.395]],["name/647",[406,77.128]],["parent/647",[0,4.395]],["name/648",[407,77.128]],["parent/648",[0,4.395]],["name/649",[408,77.128]],["parent/649",[0,4.395]],["name/650",[409,77.128]],["parent/650",[0,4.395]],["name/651",[410,77.128]],["parent/651",[0,4.395]],["name/652",[411,77.128]],["parent/652",[0,4.395]],["name/653",[111,69.243]],["parent/653",[0,4.395]],["name/654",[412,77.128]],["parent/654",[0,4.395]],["name/655",[413,77.128]],["parent/655",[0,4.395]],["name/656",[38,77.128]],["parent/656",[0,4.395]],["name/657",[39,77.128]],["parent/657",[0,4.395]],["name/658",[40,77.128]],["parent/658",[0,4.395]],["name/659",[41,77.128]],["parent/659",[0,4.395]],["name/660",[25,71.25]],["parent/660",[0,4.395]],["name/661",[405,77.128]],["parent/661",[0,4.395]],["name/662",[406,77.128]],["parent/662",[0,4.395]],["name/663",[407,77.128]],["parent/663",[0,4.395]],["name/664",[408,77.128]],["parent/664",[0,4.395]],["name/665",[409,77.128]],["parent/665",[0,4.395]],["name/666",[410,77.128]],["parent/666",[0,4.395]],["name/667",[411,77.128]],["parent/667",[0,4.395]],["name/668",[111,69.243]],["parent/668",[0,4.395]],["name/669",[412,77.128]],["parent/669",[0,4.395]],["name/670",[413,77.128]],["parent/670",[0,4.395]],["name/671",[400,77.128]],["parent/671",[0,4.395]],["name/672",[401,77.128]],["parent/672",[0,4.395]],["name/673",[403,77.128]],["parent/673",[0,4.395]],["name/674",[404,77.128]],["parent/674",[0,4.395]],["name/675",[7,77.128]],["parent/675",[0,4.395]],["name/676",[8,77.128]],["parent/676",[0,4.395]],["name/677",[1,77.128]],["parent/677",[0,4.395]],["name/678",[9,48.796]],["parent/678",[0,4.395]],["name/679",[4,77.128]],["parent/679",[0,4.395]],["name/680",[5,77.128]],["parent/680",[0,4.395]],["name/681",[12,77.128]],["parent/681",[0,4.395]],["name/682",[13,77.128]],["parent/682",[0,4.395]],["name/683",[15,77.128]],["parent/683",[0,4.395]],["name/684",[414,77.128]],["parent/684",[0,4.395]],["name/685",[415,77.128]],["parent/685",[0,4.395]],["name/686",[416,77.128]],["parent/686",[0,4.395]],["name/687",[417,77.128]],["parent/687",[0,4.395]],["name/688",[416,77.128]],["parent/688",[0,4.395]],["name/689",[417,77.128]],["parent/689",[0,4.395]],["name/690",[414,77.128]],["parent/690",[0,4.395]],["name/691",[418,82.236]],["parent/691",[419,6.913]],["name/692",[420,82.236]],["parent/692",[419,6.913]],["name/693",[421,82.236]],["parent/693",[419,6.913]],["name/694",[172,34.962]],["parent/694",[419,6.913]],["name/695",[2,77.128]],["parent/695",[419,6.913]],["name/696",[422,82.236]],["parent/696",[0,4.395]],["name/697",[415,77.128]],["parent/697",[0,4.395]],["name/698",[423,27.062]],["parent/698",[]],["name/699",[43,47.475]],["parent/699",[423,2.702]],["name/700",[424,58.257]],["parent/700",[423,2.702]],["name/701",[425,57.669]],["parent/701",[423,2.702]],["name/702",[426,58.257]],["parent/702",[423,2.702]],["name/703",[427,58.257]],["parent/703",[423,2.702]],["name/704",[428,58.257]],["parent/704",[423,2.702]],["name/705",[429,58.257]],["parent/705",[423,2.702]],["name/706",[430,58.257]],["parent/706",[423,2.702]],["name/707",[431,58.257]],["parent/707",[423,2.702]],["name/708",[432,58.257]],["parent/708",[423,2.702]],["name/709",[433,58.257]],["parent/709",[423,2.702]],["name/710",[434,58.257]],["parent/710",[423,2.702]],["name/711",[435,56.087]],["parent/711",[423,2.702]],["name/712",[436,56.087]],["parent/712",[423,2.702]],["name/713",[437,58.257]],["parent/713",[423,2.702]],["name/714",[438,58.257]],["parent/714",[423,2.702]],["name/715",[439,58.257]],["parent/715",[423,2.702]],["name/716",[440,58.257]],["parent/716",[423,2.702]],["name/717",[441,58.257]],["parent/717",[423,2.702]],["name/718",[442,58.257]],["parent/718",[423,2.702]],["name/719",[443,58.257]],["parent/719",[423,2.702]],["name/720",[444,58.257]],["parent/720",[423,2.702]],["name/721",[445,58.257]],["parent/721",[423,2.702]],["name/722",[446,58.257]],["parent/722",[423,2.702]],["name/723",[447,58.257]],["parent/723",[423,2.702]],["name/724",[448,58.257]],["parent/724",[423,2.702]],["name/725",[449,58.257]],["parent/725",[423,2.702]],["name/726",[450,58.257]],["parent/726",[423,2.702]],["name/727",[451,61.034]],["parent/727",[423,2.702]],["name/728",[452,64.89]],["parent/728",[423,2.702]],["name/729",[453,64.89]],["parent/729",[423,2.702]],["name/730",[454,64.89]],["parent/730",[423,2.702]],["name/731",[455,45.264]],["parent/731",[423,2.702]],["name/732",[9,48.796]],["parent/732",[423,2.702]],["name/733",[456,61.034]],["parent/733",[423,2.702]],["name/734",[457,61.034]],["parent/734",[423,2.702]],["name/735",[458,61.034]],["parent/735",[423,2.702]],["name/736",[459,64.89]],["parent/736",[423,2.702]],["name/737",[460,64.89]],["parent/737",[423,2.702]],["name/738",[461,64.89]],["parent/738",[423,2.702]],["name/739",[462,61.034]],["parent/739",[423,2.702]],["name/740",[463,61.034]],["parent/740",[423,2.702]],["name/741",[464,61.034]],["parent/741",[423,2.702]],["name/742",[448,58.257]],["parent/742",[423,2.702]],["name/743",[449,58.257]],["parent/743",[423,2.702]],["name/744",[450,58.257]],["parent/744",[423,2.702]],["name/745",[452,64.89]],["parent/745",[423,2.702]],["name/746",[429,58.257]],["parent/746",[423,2.702]],["name/747",[439,58.257]],["parent/747",[423,2.702]],["name/748",[440,58.257]],["parent/748",[423,2.702]],["name/749",[441,58.257]],["parent/749",[423,2.702]],["name/750",[430,58.257]],["parent/750",[423,2.702]],["name/751",[431,58.257]],["parent/751",[423,2.702]],["name/752",[453,64.89]],["parent/752",[423,2.702]],["name/753",[454,64.89]],["parent/753",[423,2.702]],["name/754",[455,45.264]],["parent/754",[423,2.702]],["name/755",[424,58.257]],["parent/755",[423,2.702]],["name/756",[9,48.796]],["parent/756",[423,2.702]],["name/757",[446,58.257]],["parent/757",[423,2.702]],["name/758",[434,58.257]],["parent/758",[423,2.702]],["name/759",[451,61.034]],["parent/759",[423,2.702]],["name/760",[427,58.257]],["parent/760",[423,2.702]],["name/761",[426,58.257]],["parent/761",[423,2.702]],["name/762",[456,61.034]],["parent/762",[423,2.702]],["name/763",[457,61.034]],["parent/763",[423,2.702]],["name/764",[458,61.034]],["parent/764",[423,2.702]],["name/765",[432,58.257]],["parent/765",[423,2.702]],["name/766",[459,64.89]],["parent/766",[423,2.702]],["name/767",[460,64.89]],["parent/767",[423,2.702]],["name/768",[428,58.257]],["parent/768",[423,2.702]],["name/769",[447,58.257]],["parent/769",[423,2.702]],["name/770",[444,58.257]],["parent/770",[423,2.702]],["name/771",[445,58.257]],["parent/771",[423,2.702]],["name/772",[442,58.257]],["parent/772",[423,2.702]],["name/773",[443,58.257]],["parent/773",[423,2.702]],["name/774",[437,58.257]],["parent/774",[423,2.702]],["name/775",[438,58.257]],["parent/775",[423,2.702]],["name/776",[433,58.257]],["parent/776",[423,2.702]],["name/777",[436,56.087]],["parent/777",[423,2.702]],["name/778",[461,64.89]],["parent/778",[423,2.702]],["name/779",[435,56.087]],["parent/779",[423,2.702]],["name/780",[425,57.669]],["parent/780",[423,2.702]],["name/781",[462,61.034]],["parent/781",[423,2.702]],["name/782",[463,61.034]],["parent/782",[423,2.702]],["name/783",[464,61.034]],["parent/783",[423,2.702]],["name/784",[423,27.062]],["parent/784",[423,2.702]],["name/785",[17,54.721]],["parent/785",[465,4.872]],["name/786",[43,47.475]],["parent/786",[465,4.872]],["name/787",[98,58.257]],["parent/787",[465,4.872]],["name/788",[466,67.573]],["parent/788",[467,4.997]],["name/789",[468,67.573]],["parent/789",[467,4.997]],["name/790",[469,67.573]],["parent/790",[467,4.997]],["name/791",[470,67.573]],["parent/791",[467,4.997]],["name/792",[471,67.573]],["parent/792",[467,4.997]],["name/793",[472,67.573]],["parent/793",[467,4.997]],["name/794",[473,67.573]],["parent/794",[467,4.997]],["name/795",[474,67.573]],["parent/795",[467,4.997]],["name/796",[475,67.573]],["parent/796",[467,4.997]],["name/797",[476,67.573]],["parent/797",[467,4.997]],["name/798",[477,67.573]],["parent/798",[467,4.997]],["name/799",[478,67.573]],["parent/799",[467,4.997]],["name/800",[479,67.573]],["parent/800",[467,4.997]],["name/801",[480,67.573]],["parent/801",[467,4.997]],["name/802",[481,67.573]],["parent/802",[467,4.997]],["name/803",[482,67.573]],["parent/803",[467,4.997]],["name/804",[483,67.573]],["parent/804",[467,4.997]],["name/805",[484,67.573]],["parent/805",[467,4.997]],["name/806",[485,67.573]],["parent/806",[467,4.997]],["name/807",[486,67.573]],["parent/807",[467,4.997]],["name/808",[487,67.573]],["parent/808",[467,4.997]],["name/809",[488,67.573]],["parent/809",[467,4.997]],["name/810",[489,67.573]],["parent/810",[467,4.997]],["name/811",[490,67.573]],["parent/811",[467,4.997]],["name/812",[491,67.573]],["parent/812",[467,4.997]],["name/813",[492,67.573]],["parent/813",[467,4.997]],["name/814",[493,67.573]],["parent/814",[467,4.997]],["name/815",[494,67.573]],["parent/815",[467,4.997]],["name/816",[495,67.573]],["parent/816",[467,4.997]],["name/817",[496,67.573]],["parent/817",[467,4.997]],["name/818",[497,67.573]],["parent/818",[467,4.997]],["name/819",[498,67.573]],["parent/819",[467,4.997]],["name/820",[499,67.573]],["parent/820",[467,4.997]],["name/821",[500,67.573]],["parent/821",[467,4.997]],["name/822",[501,67.573]],["parent/822",[467,4.997]],["name/823",[502,67.573]],["parent/823",[467,4.997]],["name/824",[503,67.573]],["parent/824",[467,4.997]],["name/825",[30,56.587]],["parent/825",[465,4.872]],["name/826",[125,58.257]],["parent/826",[465,4.872]],["name/827",[10,27.115]],["parent/827",[504,8.21]],["name/828",[466,67.573]],["parent/828",[505,4.311]],["name/829",[506,77.128]],["parent/829",[505,4.311]],["name/830",[468,67.573]],["parent/830",[505,4.311]],["name/831",[507,77.128]],["parent/831",[505,4.311]],["name/832",[469,67.573]],["parent/832",[505,4.311]],["name/833",[508,77.128]],["parent/833",[505,4.311]],["name/834",[470,67.573]],["parent/834",[505,4.311]],["name/835",[509,77.128]],["parent/835",[505,4.311]],["name/836",[471,67.573]],["parent/836",[505,4.311]],["name/837",[510,77.128]],["parent/837",[505,4.311]],["name/838",[472,67.573]],["parent/838",[505,4.311]],["name/839",[511,77.128]],["parent/839",[505,4.311]],["name/840",[473,67.573]],["parent/840",[505,4.311]],["name/841",[512,77.128]],["parent/841",[505,4.311]],["name/842",[474,67.573]],["parent/842",[505,4.311]],["name/843",[513,77.128]],["parent/843",[505,4.311]],["name/844",[475,67.573]],["parent/844",[505,4.311]],["name/845",[514,77.128]],["parent/845",[505,4.311]],["name/846",[476,67.573]],["parent/846",[505,4.311]],["name/847",[515,77.128]],["parent/847",[505,4.311]],["name/848",[477,67.573]],["parent/848",[505,4.311]],["name/849",[516,77.128]],["parent/849",[505,4.311]],["name/850",[478,67.573]],["parent/850",[505,4.311]],["name/851",[517,77.128]],["parent/851",[505,4.311]],["name/852",[479,67.573]],["parent/852",[505,4.311]],["name/853",[518,77.128]],["parent/853",[505,4.311]],["name/854",[480,67.573]],["parent/854",[505,4.311]],["name/855",[519,77.128]],["parent/855",[505,4.311]],["name/856",[481,67.573]],["parent/856",[505,4.311]],["name/857",[520,77.128]],["parent/857",[505,4.311]],["name/858",[482,67.573]],["parent/858",[505,4.311]],["name/859",[521,77.128]],["parent/859",[505,4.311]],["name/860",[483,67.573]],["parent/860",[505,4.311]],["name/861",[522,77.128]],["parent/861",[505,4.311]],["name/862",[484,67.573]],["parent/862",[505,4.311]],["name/863",[523,77.128]],["parent/863",[505,4.311]],["name/864",[485,67.573]],["parent/864",[505,4.311]],["name/865",[524,77.128]],["parent/865",[505,4.311]],["name/866",[486,67.573]],["parent/866",[505,4.311]],["name/867",[525,77.128]],["parent/867",[505,4.311]],["name/868",[487,67.573]],["parent/868",[505,4.311]],["name/869",[526,77.128]],["parent/869",[505,4.311]],["name/870",[488,67.573]],["parent/870",[505,4.311]],["name/871",[527,77.128]],["parent/871",[505,4.311]],["name/872",[489,67.573]],["parent/872",[505,4.311]],["name/873",[528,77.128]],["parent/873",[505,4.311]],["name/874",[490,67.573]],["parent/874",[505,4.311]],["name/875",[529,77.128]],["parent/875",[505,4.311]],["name/876",[491,67.573]],["parent/876",[505,4.311]],["name/877",[530,77.128]],["parent/877",[505,4.311]],["name/878",[492,67.573]],["parent/878",[505,4.311]],["name/879",[531,77.128]],["parent/879",[505,4.311]],["name/880",[493,67.573]],["parent/880",[505,4.311]],["name/881",[532,77.128]],["parent/881",[505,4.311]],["name/882",[494,67.573]],["parent/882",[505,4.311]],["name/883",[533,77.128]],["parent/883",[505,4.311]],["name/884",[495,67.573]],["parent/884",[505,4.311]],["name/885",[534,77.128]],["parent/885",[505,4.311]],["name/886",[496,67.573]],["parent/886",[505,4.311]],["name/887",[535,77.128]],["parent/887",[505,4.311]],["name/888",[497,67.573]],["parent/888",[505,4.311]],["name/889",[536,77.128]],["parent/889",[505,4.311]],["name/890",[498,67.573]],["parent/890",[505,4.311]],["name/891",[537,77.128]],["parent/891",[505,4.311]],["name/892",[499,67.573]],["parent/892",[505,4.311]],["name/893",[538,77.128]],["parent/893",[505,4.311]],["name/894",[500,67.573]],["parent/894",[505,4.311]],["name/895",[539,77.128]],["parent/895",[505,4.311]],["name/896",[501,67.573]],["parent/896",[505,4.311]],["name/897",[540,77.128]],["parent/897",[505,4.311]],["name/898",[502,67.573]],["parent/898",[505,4.311]],["name/899",[541,77.128]],["parent/899",[505,4.311]],["name/900",[503,67.573]],["parent/900",[505,4.311]],["name/901",[542,77.128]],["parent/901",[505,4.311]],["name/902",[466,67.573]],["parent/902",[465,4.872]],["name/903",[468,67.573]],["parent/903",[465,4.872]],["name/904",[469,67.573]],["parent/904",[465,4.872]],["name/905",[470,67.573]],["parent/905",[465,4.872]],["name/906",[471,67.573]],["parent/906",[465,4.872]],["name/907",[472,67.573]],["parent/907",[465,4.872]],["name/908",[473,67.573]],["parent/908",[465,4.872]],["name/909",[474,67.573]],["parent/909",[465,4.872]],["name/910",[475,67.573]],["parent/910",[465,4.872]],["name/911",[476,67.573]],["parent/911",[465,4.872]],["name/912",[477,67.573]],["parent/912",[465,4.872]],["name/913",[478,67.573]],["parent/913",[465,4.872]],["name/914",[479,67.573]],["parent/914",[465,4.872]],["name/915",[480,67.573]],["parent/915",[465,4.872]],["name/916",[481,67.573]],["parent/916",[465,4.872]],["name/917",[482,67.573]],["parent/917",[465,4.872]],["name/918",[483,67.573]],["parent/918",[465,4.872]],["name/919",[484,67.573]],["parent/919",[465,4.872]],["name/920",[485,67.573]],["parent/920",[465,4.872]],["name/921",[486,67.573]],["parent/921",[465,4.872]],["name/922",[487,67.573]],["parent/922",[465,4.872]],["name/923",[488,67.573]],["parent/923",[465,4.872]],["name/924",[489,67.573]],["parent/924",[465,4.872]],["name/925",[490,67.573]],["parent/925",[465,4.872]],["name/926",[491,67.573]],["parent/926",[465,4.872]],["name/927",[492,67.573]],["parent/927",[465,4.872]],["name/928",[493,67.573]],["parent/928",[465,4.872]],["name/929",[494,67.573]],["parent/929",[465,4.872]],["name/930",[495,67.573]],["parent/930",[465,4.872]],["name/931",[496,67.573]],["parent/931",[465,4.872]],["name/932",[497,67.573]],["parent/932",[465,4.872]],["name/933",[498,67.573]],["parent/933",[465,4.872]],["name/934",[499,67.573]],["parent/934",[465,4.872]],["name/935",[500,67.573]],["parent/935",[465,4.872]],["name/936",[501,67.573]],["parent/936",[465,4.872]],["name/937",[502,67.573]],["parent/937",[465,4.872]],["name/938",[503,67.573]],["parent/938",[465,4.872]],["name/939",[543,64.89]],["parent/939",[423,2.702]],["name/940",[544,64.89]],["parent/940",[423,2.702]],["name/941",[545,64.89]],["parent/941",[423,2.702]],["name/942",[10,27.115]],["parent/942",[546,8.21]],["name/943",[547,36.628]],["parent/943",[548,7.7]],["name/944",[205,41.128]],["parent/944",[548,7.7]],["name/945",[549,64.89]],["parent/945",[423,2.702]],["name/946",[10,27.115]],["parent/946",[550,8.21]],["name/947",[172,34.962]],["parent/947",[551,7.7]],["name/948",[552,44.023]],["parent/948",[551,7.7]],["name/949",[553,64.89]],["parent/949",[423,2.702]],["name/950",[10,27.115]],["parent/950",[554,8.21]],["name/951",[547,36.628]],["parent/951",[555,7.7]],["name/952",[205,41.128]],["parent/952",[555,7.7]],["name/953",[556,64.89]],["parent/953",[423,2.702]],["name/954",[10,27.115]],["parent/954",[557,8.21]],["name/955",[172,34.962]],["parent/955",[558,7.7]],["name/956",[552,44.023]],["parent/956",[558,7.7]],["name/957",[559,64.89]],["parent/957",[423,2.702]],["name/958",[10,27.115]],["parent/958",[560,8.21]],["name/959",[547,36.628]],["parent/959",[561,7.7]],["name/960",[205,41.128]],["parent/960",[561,7.7]],["name/961",[562,64.89]],["parent/961",[423,2.702]],["name/962",[10,27.115]],["parent/962",[563,8.21]],["name/963",[172,34.962]],["parent/963",[564,7.7]],["name/964",[552,44.023]],["parent/964",[564,7.7]],["name/965",[565,64.89]],["parent/965",[423,2.702]],["name/966",[10,27.115]],["parent/966",[566,8.21]],["name/967",[547,36.628]],["parent/967",[567,7.7]],["name/968",[205,41.128]],["parent/968",[567,7.7]],["name/969",[568,64.89]],["parent/969",[423,2.702]],["name/970",[10,27.115]],["parent/970",[569,8.21]],["name/971",[172,34.962]],["parent/971",[570,7.7]],["name/972",[552,44.023]],["parent/972",[570,7.7]],["name/973",[571,64.89]],["parent/973",[423,2.702]],["name/974",[10,27.115]],["parent/974",[572,8.21]],["name/975",[547,36.628]],["parent/975",[573,7.7]],["name/976",[205,41.128]],["parent/976",[573,7.7]],["name/977",[574,64.89]],["parent/977",[423,2.702]],["name/978",[10,27.115]],["parent/978",[575,8.21]],["name/979",[172,34.962]],["parent/979",[576,7.7]],["name/980",[552,44.023]],["parent/980",[576,7.7]],["name/981",[577,64.89]],["parent/981",[423,2.702]],["name/982",[10,27.115]],["parent/982",[578,8.21]],["name/983",[547,36.628]],["parent/983",[579,8.21]],["name/984",[580,64.89]],["parent/984",[423,2.702]],["name/985",[10,27.115]],["parent/985",[581,8.21]],["name/986",[172,34.962]],["parent/986",[582,7.7]],["name/987",[552,44.023]],["parent/987",[582,7.7]],["name/988",[583,64.89]],["parent/988",[423,2.702]],["name/989",[10,27.115]],["parent/989",[584,8.21]],["name/990",[547,36.628]],["parent/990",[585,8.21]],["name/991",[586,64.89]],["parent/991",[423,2.702]],["name/992",[10,27.115]],["parent/992",[587,8.21]],["name/993",[172,34.962]],["parent/993",[588,7.7]],["name/994",[552,44.023]],["parent/994",[588,7.7]],["name/995",[589,64.89]],["parent/995",[423,2.702]],["name/996",[10,27.115]],["parent/996",[590,8.21]],["name/997",[547,36.628]],["parent/997",[591,8.21]],["name/998",[592,64.89]],["parent/998",[423,2.702]],["name/999",[10,27.115]],["parent/999",[593,8.21]],["name/1000",[172,34.962]],["parent/1000",[594,7.364]],["name/1001",[595,62.777]],["parent/1001",[594,7.364]],["name/1002",[552,44.023]],["parent/1002",[594,7.364]],["name/1003",[596,64.89]],["parent/1003",[423,2.702]],["name/1004",[10,27.115]],["parent/1004",[597,8.21]],["name/1005",[547,36.628]],["parent/1005",[598,7.364]],["name/1006",[599,77.128]],["parent/1006",[598,7.364]],["name/1007",[205,41.128]],["parent/1007",[598,7.364]],["name/1008",[600,64.89]],["parent/1008",[423,2.702]],["name/1009",[10,27.115]],["parent/1009",[601,8.21]],["name/1010",[172,34.962]],["parent/1010",[602,8.21]],["name/1011",[603,64.89]],["parent/1011",[423,2.702]],["name/1012",[10,27.115]],["parent/1012",[604,8.21]],["name/1013",[547,36.628]],["parent/1013",[605,7.7]],["name/1014",[205,41.128]],["parent/1014",[605,7.7]],["name/1015",[606,64.89]],["parent/1015",[423,2.702]],["name/1016",[10,27.115]],["parent/1016",[607,8.21]],["name/1017",[172,34.962]],["parent/1017",[608,7.7]],["name/1018",[552,44.023]],["parent/1018",[608,7.7]],["name/1019",[609,64.89]],["parent/1019",[423,2.702]],["name/1020",[10,27.115]],["parent/1020",[610,8.21]],["name/1021",[547,36.628]],["parent/1021",[611,8.21]],["name/1022",[612,64.89]],["parent/1022",[423,2.702]],["name/1023",[10,27.115]],["parent/1023",[613,8.21]],["name/1024",[172,34.962]],["parent/1024",[614,7.7]],["name/1025",[552,44.023]],["parent/1025",[614,7.7]],["name/1026",[615,64.89]],["parent/1026",[423,2.702]],["name/1027",[10,27.115]],["parent/1027",[616,8.21]],["name/1028",[547,36.628]],["parent/1028",[617,7.7]],["name/1029",[205,41.128]],["parent/1029",[617,7.7]],["name/1030",[618,64.89]],["parent/1030",[423,2.702]],["name/1031",[10,27.115]],["parent/1031",[619,8.21]],["name/1032",[172,34.962]],["parent/1032",[620,7.7]],["name/1033",[552,44.023]],["parent/1033",[620,7.7]],["name/1034",[621,64.89]],["parent/1034",[423,2.702]],["name/1035",[10,27.115]],["parent/1035",[622,8.21]],["name/1036",[547,36.628]],["parent/1036",[623,7.7]],["name/1037",[205,41.128]],["parent/1037",[623,7.7]],["name/1038",[624,64.89]],["parent/1038",[423,2.702]],["name/1039",[10,27.115]],["parent/1039",[625,8.21]],["name/1040",[172,34.962]],["parent/1040",[626,7.7]],["name/1041",[552,44.023]],["parent/1041",[626,7.7]],["name/1042",[627,64.89]],["parent/1042",[423,2.702]],["name/1043",[10,27.115]],["parent/1043",[628,8.21]],["name/1044",[547,36.628]],["parent/1044",[629,8.21]],["name/1045",[630,64.89]],["parent/1045",[423,2.702]],["name/1046",[10,27.115]],["parent/1046",[631,8.21]],["name/1047",[172,34.962]],["parent/1047",[632,7.7]],["name/1048",[552,44.023]],["parent/1048",[632,7.7]],["name/1049",[633,64.89]],["parent/1049",[423,2.702]],["name/1050",[10,27.115]],["parent/1050",[634,8.21]],["name/1051",[547,36.628]],["parent/1051",[635,7.7]],["name/1052",[205,41.128]],["parent/1052",[635,7.7]],["name/1053",[636,64.89]],["parent/1053",[423,2.702]],["name/1054",[10,27.115]],["parent/1054",[637,8.21]],["name/1055",[172,34.962]],["parent/1055",[638,7.364]],["name/1056",[639,62.777]],["parent/1056",[638,7.364]],["name/1057",[552,44.023]],["parent/1057",[638,7.364]],["name/1058",[640,64.89]],["parent/1058",[423,2.702]],["name/1059",[10,27.115]],["parent/1059",[641,8.21]],["name/1060",[547,36.628]],["parent/1060",[642,8.21]],["name/1061",[643,64.89]],["parent/1061",[423,2.702]],["name/1062",[10,27.115]],["parent/1062",[644,8.21]],["name/1063",[172,34.962]],["parent/1063",[645,7.7]],["name/1064",[552,44.023]],["parent/1064",[645,7.7]],["name/1065",[646,64.89]],["parent/1065",[423,2.702]],["name/1066",[10,27.115]],["parent/1066",[647,8.21]],["name/1067",[547,36.628]],["parent/1067",[648,7.114]],["name/1068",[649,77.128]],["parent/1068",[648,7.114]],["name/1069",[650,77.128]],["parent/1069",[648,7.114]],["name/1070",[205,41.128]],["parent/1070",[648,7.114]],["name/1071",[651,64.89]],["parent/1071",[423,2.702]],["name/1072",[10,27.115]],["parent/1072",[652,8.21]],["name/1073",[172,34.962]],["parent/1073",[653,8.21]],["name/1074",[654,64.89]],["parent/1074",[423,2.702]],["name/1075",[10,27.115]],["parent/1075",[655,8.21]],["name/1076",[547,36.628]],["parent/1076",[656,7.7]],["name/1077",[205,41.128]],["parent/1077",[656,7.7]],["name/1078",[657,64.89]],["parent/1078",[423,2.702]],["name/1079",[10,27.115]],["parent/1079",[658,8.21]],["name/1080",[172,34.962]],["parent/1080",[659,7.364]],["name/1081",[552,44.023]],["parent/1081",[659,7.364]],["name/1082",[660,77.128]],["parent/1082",[659,7.364]],["name/1083",[661,64.89]],["parent/1083",[423,2.702]],["name/1084",[10,27.115]],["parent/1084",[662,8.21]],["name/1085",[547,36.628]],["parent/1085",[663,7.7]],["name/1086",[205,41.128]],["parent/1086",[663,7.7]],["name/1087",[664,64.89]],["parent/1087",[423,2.702]],["name/1088",[10,27.115]],["parent/1088",[665,8.21]],["name/1089",[172,34.962]],["parent/1089",[666,7.364]],["name/1090",[552,44.023]],["parent/1090",[666,7.364]],["name/1091",[667,71.25]],["parent/1091",[666,7.364]],["name/1092",[668,64.89]],["parent/1092",[423,2.702]],["name/1093",[10,27.115]],["parent/1093",[669,8.21]],["name/1094",[547,36.628]],["parent/1094",[670,7.7]],["name/1095",[205,41.128]],["parent/1095",[670,7.7]],["name/1096",[671,64.89]],["parent/1096",[423,2.702]],["name/1097",[10,27.115]],["parent/1097",[672,8.21]],["name/1098",[595,62.777]],["parent/1098",[673,7.364]],["name/1099",[172,34.962]],["parent/1099",[673,7.364]],["name/1100",[552,44.023]],["parent/1100",[673,7.364]],["name/1101",[674,64.89]],["parent/1101",[423,2.702]],["name/1102",[10,27.115]],["parent/1102",[675,8.21]],["name/1103",[547,36.628]],["parent/1103",[676,7.7]],["name/1104",[205,41.128]],["parent/1104",[676,7.7]],["name/1105",[677,64.89]],["parent/1105",[423,2.702]],["name/1106",[10,27.115]],["parent/1106",[678,8.21]],["name/1107",[679,63.778]],["parent/1107",[680,7.364]],["name/1108",[172,34.962]],["parent/1108",[680,7.364]],["name/1109",[552,44.023]],["parent/1109",[680,7.364]],["name/1110",[681,64.89]],["parent/1110",[423,2.702]],["name/1111",[10,27.115]],["parent/1111",[682,8.21]],["name/1112",[547,36.628]],["parent/1112",[683,7.7]],["name/1113",[205,41.128]],["parent/1113",[683,7.7]],["name/1114",[684,64.89]],["parent/1114",[423,2.702]],["name/1115",[10,27.115]],["parent/1115",[685,8.21]],["name/1116",[686,71.25]],["parent/1116",[687,7.364]],["name/1117",[172,34.962]],["parent/1117",[687,7.364]],["name/1118",[552,44.023]],["parent/1118",[687,7.364]],["name/1119",[688,64.89]],["parent/1119",[423,2.702]],["name/1120",[10,27.115]],["parent/1120",[689,8.21]],["name/1121",[547,36.628]],["parent/1121",[690,7.7]],["name/1122",[205,41.128]],["parent/1122",[690,7.7]],["name/1123",[691,64.89]],["parent/1123",[423,2.702]],["name/1124",[10,27.115]],["parent/1124",[692,8.21]],["name/1125",[639,62.777]],["parent/1125",[693,7.364]],["name/1126",[172,34.962]],["parent/1126",[693,7.364]],["name/1127",[552,44.023]],["parent/1127",[693,7.364]],["name/1128",[694,64.89]],["parent/1128",[423,2.702]],["name/1129",[10,27.115]],["parent/1129",[695,8.21]],["name/1130",[547,36.628]],["parent/1130",[696,7.114]],["name/1131",[697,77.128]],["parent/1131",[696,7.114]],["name/1132",[698,77.128]],["parent/1132",[696,7.114]],["name/1133",[205,41.128]],["parent/1133",[696,7.114]],["name/1134",[699,64.89]],["parent/1134",[423,2.702]],["name/1135",[10,27.115]],["parent/1135",[700,8.21]],["name/1136",[172,34.962]],["parent/1136",[701,8.21]],["name/1137",[702,64.89]],["parent/1137",[423,2.702]],["name/1138",[10,27.115]],["parent/1138",[703,8.21]],["name/1139",[547,36.628]],["parent/1139",[704,7.7]],["name/1140",[205,41.128]],["parent/1140",[704,7.7]],["name/1141",[705,64.89]],["parent/1141",[423,2.702]],["name/1142",[10,27.115]],["parent/1142",[706,8.21]],["name/1143",[172,34.962]],["parent/1143",[707,7.7]],["name/1144",[552,44.023]],["parent/1144",[707,7.7]],["name/1145",[708,64.89]],["parent/1145",[423,2.702]],["name/1146",[10,27.115]],["parent/1146",[709,8.21]],["name/1147",[547,36.628]],["parent/1147",[710,7.364]],["name/1148",[711,77.128]],["parent/1148",[710,7.364]],["name/1149",[205,41.128]],["parent/1149",[710,7.364]],["name/1150",[712,64.89]],["parent/1150",[423,2.702]],["name/1151",[10,27.115]],["parent/1151",[713,8.21]],["name/1152",[172,34.962]],["parent/1152",[714,7.7]],["name/1153",[552,44.023]],["parent/1153",[714,7.7]],["name/1154",[715,64.89]],["parent/1154",[423,2.702]],["name/1155",[10,27.115]],["parent/1155",[716,8.21]],["name/1156",[547,36.628]],["parent/1156",[717,7.364]],["name/1157",[718,61.034]],["parent/1157",[717,7.364]],["name/1158",[205,41.128]],["parent/1158",[717,7.364]],["name/1159",[719,64.89]],["parent/1159",[423,2.702]],["name/1160",[10,27.115]],["parent/1160",[720,8.21]],["name/1161",[172,34.962]],["parent/1161",[721,7.7]],["name/1162",[552,44.023]],["parent/1162",[721,7.7]],["name/1163",[722,64.89]],["parent/1163",[423,2.702]],["name/1164",[10,27.115]],["parent/1164",[723,8.21]],["name/1165",[547,36.628]],["parent/1165",[724,7.114]],["name/1166",[205,41.128]],["parent/1166",[724,7.114]],["name/1167",[725,77.128]],["parent/1167",[724,7.114]],["name/1168",[718,61.034]],["parent/1168",[724,7.114]],["name/1169",[726,64.89]],["parent/1169",[423,2.702]],["name/1170",[10,27.115]],["parent/1170",[727,8.21]],["name/1171",[172,34.962]],["parent/1171",[728,7.7]],["name/1172",[552,44.023]],["parent/1172",[728,7.7]],["name/1173",[729,64.89]],["parent/1173",[423,2.702]],["name/1174",[10,27.115]],["parent/1174",[730,8.21]],["name/1175",[547,36.628]],["parent/1175",[731,7.7]],["name/1176",[205,41.128]],["parent/1176",[731,7.7]],["name/1177",[732,64.89]],["parent/1177",[423,2.702]],["name/1178",[10,27.115]],["parent/1178",[733,8.21]],["name/1179",[172,34.962]],["parent/1179",[734,7.7]],["name/1180",[552,44.023]],["parent/1180",[734,7.7]],["name/1181",[735,64.89]],["parent/1181",[423,2.702]],["name/1182",[10,27.115]],["parent/1182",[736,8.21]],["name/1183",[547,36.628]],["parent/1183",[737,7.7]],["name/1184",[205,41.128]],["parent/1184",[737,7.7]],["name/1185",[738,64.89]],["parent/1185",[423,2.702]],["name/1186",[10,27.115]],["parent/1186",[739,8.21]],["name/1187",[172,34.962]],["parent/1187",[740,7.364]],["name/1188",[552,44.023]],["parent/1188",[740,7.364]],["name/1189",[667,71.25]],["parent/1189",[740,7.364]],["name/1190",[741,64.89]],["parent/1190",[423,2.702]],["name/1191",[10,27.115]],["parent/1191",[742,8.21]],["name/1192",[718,61.034]],["parent/1192",[743,7.364]],["name/1193",[547,36.628]],["parent/1193",[743,7.364]],["name/1194",[205,41.128]],["parent/1194",[743,7.364]],["name/1195",[744,64.89]],["parent/1195",[423,2.702]],["name/1196",[10,27.115]],["parent/1196",[745,8.21]],["name/1197",[595,62.777]],["parent/1197",[746,7.364]],["name/1198",[172,34.962]],["parent/1198",[746,7.364]],["name/1199",[552,44.023]],["parent/1199",[746,7.364]],["name/1200",[747,64.89]],["parent/1200",[423,2.702]],["name/1201",[10,27.115]],["parent/1201",[748,8.21]],["name/1202",[547,36.628]],["parent/1202",[749,7.364]],["name/1203",[718,61.034]],["parent/1203",[749,7.364]],["name/1204",[205,41.128]],["parent/1204",[749,7.364]],["name/1205",[750,64.89]],["parent/1205",[423,2.702]],["name/1206",[10,27.115]],["parent/1206",[751,8.21]],["name/1207",[172,34.962]],["parent/1207",[752,7.7]],["name/1208",[552,44.023]],["parent/1208",[752,7.7]],["name/1209",[753,64.89]],["parent/1209",[423,2.702]],["name/1210",[10,27.115]],["parent/1210",[754,8.21]],["name/1211",[718,61.034]],["parent/1211",[755,7.364]],["name/1212",[547,36.628]],["parent/1212",[755,7.364]],["name/1213",[205,41.128]],["parent/1213",[755,7.364]],["name/1214",[756,64.89]],["parent/1214",[423,2.702]],["name/1215",[10,27.115]],["parent/1215",[757,8.21]],["name/1216",[679,63.778]],["parent/1216",[758,7.364]],["name/1217",[172,34.962]],["parent/1217",[758,7.364]],["name/1218",[552,44.023]],["parent/1218",[758,7.364]],["name/1219",[759,64.89]],["parent/1219",[423,2.702]],["name/1220",[10,27.115]],["parent/1220",[760,8.21]],["name/1221",[547,36.628]],["parent/1221",[761,8.21]],["name/1222",[762,64.89]],["parent/1222",[423,2.702]],["name/1223",[10,27.115]],["parent/1223",[763,8.21]],["name/1224",[686,71.25]],["parent/1224",[764,7.364]],["name/1225",[172,34.962]],["parent/1225",[764,7.364]],["name/1226",[552,44.023]],["parent/1226",[764,7.364]],["name/1227",[765,64.89]],["parent/1227",[423,2.702]],["name/1228",[10,27.115]],["parent/1228",[766,8.21]],["name/1229",[547,36.628]],["parent/1229",[767,7.7]],["name/1230",[205,41.128]],["parent/1230",[767,7.7]],["name/1231",[768,64.89]],["parent/1231",[423,2.702]],["name/1232",[10,27.115]],["parent/1232",[769,8.21]],["name/1233",[639,62.777]],["parent/1233",[770,7.364]],["name/1234",[172,34.962]],["parent/1234",[770,7.364]],["name/1235",[552,44.023]],["parent/1235",[770,7.364]],["name/1236",[771,64.89]],["parent/1236",[423,2.702]],["name/1237",[10,27.115]],["parent/1237",[772,8.21]],["name/1238",[773,77.128]],["parent/1238",[774,7.114]],["name/1239",[718,61.034]],["parent/1239",[774,7.114]],["name/1240",[547,36.628]],["parent/1240",[774,7.114]],["name/1241",[205,41.128]],["parent/1241",[774,7.114]],["name/1242",[775,64.89]],["parent/1242",[423,2.702]],["name/1243",[10,27.115]],["parent/1243",[776,8.21]],["name/1244",[172,34.962]],["parent/1244",[777,7.364]],["name/1245",[639,62.777]],["parent/1245",[777,7.364]],["name/1246",[552,44.023]],["parent/1246",[777,7.364]],["name/1247",[778,64.89]],["parent/1247",[423,2.702]],["name/1248",[10,27.115]],["parent/1248",[779,8.21]],["name/1249",[547,36.628]],["parent/1249",[780,7.7]],["name/1250",[205,41.128]],["parent/1250",[780,7.7]],["name/1251",[781,64.89]],["parent/1251",[423,2.702]],["name/1252",[10,27.115]],["parent/1252",[782,8.21]],["name/1253",[172,34.962]],["parent/1253",[783,7.364]],["name/1254",[639,62.777]],["parent/1254",[783,7.364]],["name/1255",[552,44.023]],["parent/1255",[783,7.364]],["name/1256",[784,66.142]],["parent/1256",[423,2.702]],["name/1257",[785,66.142]],["parent/1257",[423,2.702]],["name/1258",[786,67.573]],["parent/1258",[423,2.702]],["name/1259",[543,64.89]],["parent/1259",[423,2.702]],["name/1260",[544,64.89]],["parent/1260",[423,2.702]],["name/1261",[545,64.89]],["parent/1261",[423,2.702]],["name/1262",[549,64.89]],["parent/1262",[423,2.702]],["name/1263",[553,64.89]],["parent/1263",[423,2.702]],["name/1264",[556,64.89]],["parent/1264",[423,2.702]],["name/1265",[559,64.89]],["parent/1265",[423,2.702]],["name/1266",[562,64.89]],["parent/1266",[423,2.702]],["name/1267",[565,64.89]],["parent/1267",[423,2.702]],["name/1268",[568,64.89]],["parent/1268",[423,2.702]],["name/1269",[571,64.89]],["parent/1269",[423,2.702]],["name/1270",[574,64.89]],["parent/1270",[423,2.702]],["name/1271",[577,64.89]],["parent/1271",[423,2.702]],["name/1272",[580,64.89]],["parent/1272",[423,2.702]],["name/1273",[583,64.89]],["parent/1273",[423,2.702]],["name/1274",[586,64.89]],["parent/1274",[423,2.702]],["name/1275",[589,64.89]],["parent/1275",[423,2.702]],["name/1276",[592,64.89]],["parent/1276",[423,2.702]],["name/1277",[596,64.89]],["parent/1277",[423,2.702]],["name/1278",[600,64.89]],["parent/1278",[423,2.702]],["name/1279",[603,64.89]],["parent/1279",[423,2.702]],["name/1280",[606,64.89]],["parent/1280",[423,2.702]],["name/1281",[609,64.89]],["parent/1281",[423,2.702]],["name/1282",[612,64.89]],["parent/1282",[423,2.702]],["name/1283",[615,64.89]],["parent/1283",[423,2.702]],["name/1284",[618,64.89]],["parent/1284",[423,2.702]],["name/1285",[621,64.89]],["parent/1285",[423,2.702]],["name/1286",[624,64.89]],["parent/1286",[423,2.702]],["name/1287",[627,64.89]],["parent/1287",[423,2.702]],["name/1288",[630,64.89]],["parent/1288",[423,2.702]],["name/1289",[633,64.89]],["parent/1289",[423,2.702]],["name/1290",[636,64.89]],["parent/1290",[423,2.702]],["name/1291",[640,64.89]],["parent/1291",[423,2.702]],["name/1292",[643,64.89]],["parent/1292",[423,2.702]],["name/1293",[646,64.89]],["parent/1293",[423,2.702]],["name/1294",[651,64.89]],["parent/1294",[423,2.702]],["name/1295",[654,64.89]],["parent/1295",[423,2.702]],["name/1296",[657,64.89]],["parent/1296",[423,2.702]],["name/1297",[661,64.89]],["parent/1297",[423,2.702]],["name/1298",[664,64.89]],["parent/1298",[423,2.702]],["name/1299",[668,64.89]],["parent/1299",[423,2.702]],["name/1300",[671,64.89]],["parent/1300",[423,2.702]],["name/1301",[674,64.89]],["parent/1301",[423,2.702]],["name/1302",[677,64.89]],["parent/1302",[423,2.702]],["name/1303",[681,64.89]],["parent/1303",[423,2.702]],["name/1304",[684,64.89]],["parent/1304",[423,2.702]],["name/1305",[688,64.89]],["parent/1305",[423,2.702]],["name/1306",[691,64.89]],["parent/1306",[423,2.702]],["name/1307",[694,64.89]],["parent/1307",[423,2.702]],["name/1308",[699,64.89]],["parent/1308",[423,2.702]],["name/1309",[702,64.89]],["parent/1309",[423,2.702]],["name/1310",[705,64.89]],["parent/1310",[423,2.702]],["name/1311",[708,64.89]],["parent/1311",[423,2.702]],["name/1312",[712,64.89]],["parent/1312",[423,2.702]],["name/1313",[715,64.89]],["parent/1313",[423,2.702]],["name/1314",[719,64.89]],["parent/1314",[423,2.702]],["name/1315",[722,64.89]],["parent/1315",[423,2.702]],["name/1316",[726,64.89]],["parent/1316",[423,2.702]],["name/1317",[729,64.89]],["parent/1317",[423,2.702]],["name/1318",[732,64.89]],["parent/1318",[423,2.702]],["name/1319",[735,64.89]],["parent/1319",[423,2.702]],["name/1320",[738,64.89]],["parent/1320",[423,2.702]],["name/1321",[741,64.89]],["parent/1321",[423,2.702]],["name/1322",[744,64.89]],["parent/1322",[423,2.702]],["name/1323",[747,64.89]],["parent/1323",[423,2.702]],["name/1324",[750,64.89]],["parent/1324",[423,2.702]],["name/1325",[753,64.89]],["parent/1325",[423,2.702]],["name/1326",[756,64.89]],["parent/1326",[423,2.702]],["name/1327",[759,64.89]],["parent/1327",[423,2.702]],["name/1328",[762,64.89]],["parent/1328",[423,2.702]],["name/1329",[765,64.89]],["parent/1329",[423,2.702]],["name/1330",[768,64.89]],["parent/1330",[423,2.702]],["name/1331",[771,64.89]],["parent/1331",[423,2.702]],["name/1332",[775,64.89]],["parent/1332",[423,2.702]],["name/1333",[778,64.89]],["parent/1333",[423,2.702]],["name/1334",[781,64.89]],["parent/1334",[423,2.702]],["name/1335",[784,66.142]],["parent/1335",[423,2.702]],["name/1336",[785,66.142]],["parent/1336",[423,2.702]],["name/1337",[786,67.573]],["parent/1337",[423,2.702]],["name/1338",[423,27.062]],["parent/1338",[423,2.702]],["name/1339",[43,47.475]],["parent/1339",[423,2.702]],["name/1340",[543,64.89]],["parent/1340",[423,2.702]],["name/1341",[544,64.89]],["parent/1341",[423,2.702]],["name/1342",[545,64.89]],["parent/1342",[423,2.702]],["name/1343",[549,64.89]],["parent/1343",[423,2.702]],["name/1344",[553,64.89]],["parent/1344",[423,2.702]],["name/1345",[556,64.89]],["parent/1345",[423,2.702]],["name/1346",[559,64.89]],["parent/1346",[423,2.702]],["name/1347",[562,64.89]],["parent/1347",[423,2.702]],["name/1348",[565,64.89]],["parent/1348",[423,2.702]],["name/1349",[568,64.89]],["parent/1349",[423,2.702]],["name/1350",[571,64.89]],["parent/1350",[423,2.702]],["name/1351",[574,64.89]],["parent/1351",[423,2.702]],["name/1352",[577,64.89]],["parent/1352",[423,2.702]],["name/1353",[580,64.89]],["parent/1353",[423,2.702]],["name/1354",[583,64.89]],["parent/1354",[423,2.702]],["name/1355",[586,64.89]],["parent/1355",[423,2.702]],["name/1356",[589,64.89]],["parent/1356",[423,2.702]],["name/1357",[592,64.89]],["parent/1357",[423,2.702]],["name/1358",[596,64.89]],["parent/1358",[423,2.702]],["name/1359",[600,64.89]],["parent/1359",[423,2.702]],["name/1360",[603,64.89]],["parent/1360",[423,2.702]],["name/1361",[606,64.89]],["parent/1361",[423,2.702]],["name/1362",[609,64.89]],["parent/1362",[423,2.702]],["name/1363",[612,64.89]],["parent/1363",[423,2.702]],["name/1364",[615,64.89]],["parent/1364",[423,2.702]],["name/1365",[618,64.89]],["parent/1365",[423,2.702]],["name/1366",[621,64.89]],["parent/1366",[423,2.702]],["name/1367",[624,64.89]],["parent/1367",[423,2.702]],["name/1368",[627,64.89]],["parent/1368",[423,2.702]],["name/1369",[630,64.89]],["parent/1369",[423,2.702]],["name/1370",[633,64.89]],["parent/1370",[423,2.702]],["name/1371",[636,64.89]],["parent/1371",[423,2.702]],["name/1372",[640,64.89]],["parent/1372",[423,2.702]],["name/1373",[643,64.89]],["parent/1373",[423,2.702]],["name/1374",[646,64.89]],["parent/1374",[423,2.702]],["name/1375",[651,64.89]],["parent/1375",[423,2.702]],["name/1376",[654,64.89]],["parent/1376",[423,2.702]],["name/1377",[657,64.89]],["parent/1377",[423,2.702]],["name/1378",[661,64.89]],["parent/1378",[423,2.702]],["name/1379",[664,64.89]],["parent/1379",[423,2.702]],["name/1380",[668,64.89]],["parent/1380",[423,2.702]],["name/1381",[671,64.89]],["parent/1381",[423,2.702]],["name/1382",[674,64.89]],["parent/1382",[423,2.702]],["name/1383",[677,64.89]],["parent/1383",[423,2.702]],["name/1384",[681,64.89]],["parent/1384",[423,2.702]],["name/1385",[684,64.89]],["parent/1385",[423,2.702]],["name/1386",[688,64.89]],["parent/1386",[423,2.702]],["name/1387",[691,64.89]],["parent/1387",[423,2.702]],["name/1388",[694,64.89]],["parent/1388",[423,2.702]],["name/1389",[699,64.89]],["parent/1389",[423,2.702]],["name/1390",[702,64.89]],["parent/1390",[423,2.702]],["name/1391",[705,64.89]],["parent/1391",[423,2.702]],["name/1392",[708,64.89]],["parent/1392",[423,2.702]],["name/1393",[712,64.89]],["parent/1393",[423,2.702]],["name/1394",[715,64.89]],["parent/1394",[423,2.702]],["name/1395",[719,64.89]],["parent/1395",[423,2.702]],["name/1396",[722,64.89]],["parent/1396",[423,2.702]],["name/1397",[726,64.89]],["parent/1397",[423,2.702]],["name/1398",[729,64.89]],["parent/1398",[423,2.702]],["name/1399",[732,64.89]],["parent/1399",[423,2.702]],["name/1400",[735,64.89]],["parent/1400",[423,2.702]],["name/1401",[738,64.89]],["parent/1401",[423,2.702]],["name/1402",[741,64.89]],["parent/1402",[423,2.702]],["name/1403",[744,64.89]],["parent/1403",[423,2.702]],["name/1404",[747,64.89]],["parent/1404",[423,2.702]],["name/1405",[750,64.89]],["parent/1405",[423,2.702]],["name/1406",[753,64.89]],["parent/1406",[423,2.702]],["name/1407",[756,64.89]],["parent/1407",[423,2.702]],["name/1408",[759,64.89]],["parent/1408",[423,2.702]],["name/1409",[762,64.89]],["parent/1409",[423,2.702]],["name/1410",[765,64.89]],["parent/1410",[423,2.702]],["name/1411",[768,64.89]],["parent/1411",[423,2.702]],["name/1412",[771,64.89]],["parent/1412",[423,2.702]],["name/1413",[775,64.89]],["parent/1413",[423,2.702]],["name/1414",[778,64.89]],["parent/1414",[423,2.702]],["name/1415",[781,64.89]],["parent/1415",[423,2.702]],["name/1416",[784,66.142]],["parent/1416",[423,2.702]],["name/1417",[785,66.142]],["parent/1417",[423,2.702]],["name/1418",[786,67.573]],["parent/1418",[423,2.702]],["name/1419",[423,27.062]],["parent/1419",[423,2.702]],["name/1420",[448,58.257]],["parent/1420",[423,2.702]],["name/1421",[449,58.257]],["parent/1421",[423,2.702]],["name/1422",[450,58.257]],["parent/1422",[423,2.702]],["name/1423",[452,64.89]],["parent/1423",[423,2.702]],["name/1424",[429,58.257]],["parent/1424",[423,2.702]],["name/1425",[439,58.257]],["parent/1425",[423,2.702]],["name/1426",[440,58.257]],["parent/1426",[423,2.702]],["name/1427",[441,58.257]],["parent/1427",[423,2.702]],["name/1428",[430,58.257]],["parent/1428",[423,2.702]],["name/1429",[431,58.257]],["parent/1429",[423,2.702]],["name/1430",[453,64.89]],["parent/1430",[423,2.702]],["name/1431",[454,64.89]],["parent/1431",[423,2.702]],["name/1432",[455,45.264]],["parent/1432",[423,2.702]],["name/1433",[424,58.257]],["parent/1433",[423,2.702]],["name/1434",[9,48.796]],["parent/1434",[423,2.702]],["name/1435",[446,58.257]],["parent/1435",[423,2.702]],["name/1436",[434,58.257]],["parent/1436",[423,2.702]],["name/1437",[451,61.034]],["parent/1437",[423,2.702]],["name/1438",[427,58.257]],["parent/1438",[423,2.702]],["name/1439",[426,58.257]],["parent/1439",[423,2.702]],["name/1440",[456,61.034]],["parent/1440",[423,2.702]],["name/1441",[457,61.034]],["parent/1441",[423,2.702]],["name/1442",[458,61.034]],["parent/1442",[423,2.702]],["name/1443",[432,58.257]],["parent/1443",[423,2.702]],["name/1444",[459,64.89]],["parent/1444",[423,2.702]],["name/1445",[460,64.89]],["parent/1445",[423,2.702]],["name/1446",[428,58.257]],["parent/1446",[423,2.702]],["name/1447",[447,58.257]],["parent/1447",[423,2.702]],["name/1448",[444,58.257]],["parent/1448",[423,2.702]],["name/1449",[445,58.257]],["parent/1449",[423,2.702]],["name/1450",[442,58.257]],["parent/1450",[423,2.702]],["name/1451",[443,58.257]],["parent/1451",[423,2.702]],["name/1452",[437,58.257]],["parent/1452",[423,2.702]],["name/1453",[438,58.257]],["parent/1453",[423,2.702]],["name/1454",[433,58.257]],["parent/1454",[423,2.702]],["name/1455",[436,56.087]],["parent/1455",[423,2.702]],["name/1456",[461,64.89]],["parent/1456",[423,2.702]],["name/1457",[435,56.087]],["parent/1457",[423,2.702]],["name/1458",[425,57.669]],["parent/1458",[423,2.702]],["name/1459",[462,61.034]],["parent/1459",[423,2.702]],["name/1460",[463,61.034]],["parent/1460",[423,2.702]],["name/1461",[464,61.034]],["parent/1461",[423,2.702]],["name/1462",[787,82.236]],["parent/1462",[423,2.702]],["name/1463",[784,66.142]],["parent/1463",[788,3.831]],["name/1464",[785,66.142]],["parent/1464",[788,3.831]],["name/1465",[545,64.89]],["parent/1465",[788,3.831]],["name/1466",[549,64.89]],["parent/1466",[788,3.831]],["name/1467",[553,64.89]],["parent/1467",[788,3.831]],["name/1468",[556,64.89]],["parent/1468",[788,3.831]],["name/1469",[559,64.89]],["parent/1469",[788,3.831]],["name/1470",[562,64.89]],["parent/1470",[788,3.831]],["name/1471",[565,64.89]],["parent/1471",[788,3.831]],["name/1472",[568,64.89]],["parent/1472",[788,3.831]],["name/1473",[571,64.89]],["parent/1473",[788,3.831]],["name/1474",[574,64.89]],["parent/1474",[788,3.831]],["name/1475",[577,64.89]],["parent/1475",[788,3.831]],["name/1476",[580,64.89]],["parent/1476",[788,3.831]],["name/1477",[583,64.89]],["parent/1477",[788,3.831]],["name/1478",[586,64.89]],["parent/1478",[788,3.831]],["name/1479",[589,64.89]],["parent/1479",[788,3.831]],["name/1480",[592,64.89]],["parent/1480",[788,3.831]],["name/1481",[543,64.89]],["parent/1481",[788,3.831]],["name/1482",[596,64.89]],["parent/1482",[788,3.831]],["name/1483",[600,64.89]],["parent/1483",[788,3.831]],["name/1484",[603,64.89]],["parent/1484",[788,3.831]],["name/1485",[606,64.89]],["parent/1485",[788,3.831]],["name/1486",[609,64.89]],["parent/1486",[788,3.831]],["name/1487",[612,64.89]],["parent/1487",[788,3.831]],["name/1488",[615,64.89]],["parent/1488",[788,3.831]],["name/1489",[618,64.89]],["parent/1489",[788,3.831]],["name/1490",[621,64.89]],["parent/1490",[788,3.831]],["name/1491",[624,64.89]],["parent/1491",[788,3.831]],["name/1492",[627,64.89]],["parent/1492",[788,3.831]],["name/1493",[630,64.89]],["parent/1493",[788,3.831]],["name/1494",[633,64.89]],["parent/1494",[788,3.831]],["name/1495",[636,64.89]],["parent/1495",[788,3.831]],["name/1496",[640,64.89]],["parent/1496",[788,3.831]],["name/1497",[643,64.89]],["parent/1497",[788,3.831]],["name/1498",[544,64.89]],["parent/1498",[788,3.831]],["name/1499",[646,64.89]],["parent/1499",[788,3.831]],["name/1500",[651,64.89]],["parent/1500",[788,3.831]],["name/1501",[654,64.89]],["parent/1501",[788,3.831]],["name/1502",[657,64.89]],["parent/1502",[788,3.831]],["name/1503",[661,64.89]],["parent/1503",[788,3.831]],["name/1504",[664,64.89]],["parent/1504",[788,3.831]],["name/1505",[668,64.89]],["parent/1505",[788,3.831]],["name/1506",[671,64.89]],["parent/1506",[788,3.831]],["name/1507",[674,64.89]],["parent/1507",[788,3.831]],["name/1508",[677,64.89]],["parent/1508",[788,3.831]],["name/1509",[681,64.89]],["parent/1509",[788,3.831]],["name/1510",[684,64.89]],["parent/1510",[788,3.831]],["name/1511",[688,64.89]],["parent/1511",[788,3.831]],["name/1512",[691,64.89]],["parent/1512",[788,3.831]],["name/1513",[694,64.89]],["parent/1513",[788,3.831]],["name/1514",[699,64.89]],["parent/1514",[788,3.831]],["name/1515",[702,64.89]],["parent/1515",[788,3.831]],["name/1516",[705,64.89]],["parent/1516",[788,3.831]],["name/1517",[708,64.89]],["parent/1517",[788,3.831]],["name/1518",[712,64.89]],["parent/1518",[788,3.831]],["name/1519",[715,64.89]],["parent/1519",[788,3.831]],["name/1520",[719,64.89]],["parent/1520",[788,3.831]],["name/1521",[722,64.89]],["parent/1521",[788,3.831]],["name/1522",[726,64.89]],["parent/1522",[788,3.831]],["name/1523",[729,64.89]],["parent/1523",[788,3.831]],["name/1524",[732,64.89]],["parent/1524",[788,3.831]],["name/1525",[735,64.89]],["parent/1525",[788,3.831]],["name/1526",[738,64.89]],["parent/1526",[788,3.831]],["name/1527",[741,64.89]],["parent/1527",[788,3.831]],["name/1528",[744,64.89]],["parent/1528",[788,3.831]],["name/1529",[747,64.89]],["parent/1529",[788,3.831]],["name/1530",[750,64.89]],["parent/1530",[788,3.831]],["name/1531",[753,64.89]],["parent/1531",[788,3.831]],["name/1532",[756,64.89]],["parent/1532",[788,3.831]],["name/1533",[759,64.89]],["parent/1533",[788,3.831]],["name/1534",[762,64.89]],["parent/1534",[788,3.831]],["name/1535",[765,64.89]],["parent/1535",[788,3.831]],["name/1536",[768,64.89]],["parent/1536",[788,3.831]],["name/1537",[771,64.89]],["parent/1537",[788,3.831]],["name/1538",[775,64.89]],["parent/1538",[788,3.831]],["name/1539",[778,64.89]],["parent/1539",[788,3.831]],["name/1540",[781,64.89]],["parent/1540",[788,3.831]],["name/1541",[448,58.257]],["parent/1541",[788,3.831]],["name/1542",[449,58.257]],["parent/1542",[788,3.831]],["name/1543",[450,58.257]],["parent/1543",[788,3.831]],["name/1544",[452,64.89]],["parent/1544",[788,3.831]],["name/1545",[429,58.257]],["parent/1545",[788,3.831]],["name/1546",[439,58.257]],["parent/1546",[788,3.831]],["name/1547",[440,58.257]],["parent/1547",[788,3.831]],["name/1548",[441,58.257]],["parent/1548",[788,3.831]],["name/1549",[430,58.257]],["parent/1549",[788,3.831]],["name/1550",[431,58.257]],["parent/1550",[788,3.831]],["name/1551",[453,64.89]],["parent/1551",[788,3.831]],["name/1552",[454,64.89]],["parent/1552",[788,3.831]],["name/1553",[455,45.264]],["parent/1553",[788,3.831]],["name/1554",[424,58.257]],["parent/1554",[788,3.831]],["name/1555",[9,48.796]],["parent/1555",[788,3.831]],["name/1556",[446,58.257]],["parent/1556",[788,3.831]],["name/1557",[434,58.257]],["parent/1557",[788,3.831]],["name/1558",[451,61.034]],["parent/1558",[788,3.831]],["name/1559",[427,58.257]],["parent/1559",[788,3.831]],["name/1560",[426,58.257]],["parent/1560",[788,3.831]],["name/1561",[456,61.034]],["parent/1561",[788,3.831]],["name/1562",[457,61.034]],["parent/1562",[788,3.831]],["name/1563",[458,61.034]],["parent/1563",[788,3.831]],["name/1564",[432,58.257]],["parent/1564",[788,3.831]],["name/1565",[459,64.89]],["parent/1565",[788,3.831]],["name/1566",[460,64.89]],["parent/1566",[788,3.831]],["name/1567",[428,58.257]],["parent/1567",[788,3.831]],["name/1568",[447,58.257]],["parent/1568",[788,3.831]],["name/1569",[444,58.257]],["parent/1569",[788,3.831]],["name/1570",[445,58.257]],["parent/1570",[788,3.831]],["name/1571",[442,58.257]],["parent/1571",[788,3.831]],["name/1572",[443,58.257]],["parent/1572",[788,3.831]],["name/1573",[437,58.257]],["parent/1573",[788,3.831]],["name/1574",[438,58.257]],["parent/1574",[788,3.831]],["name/1575",[433,58.257]],["parent/1575",[788,3.831]],["name/1576",[436,56.087]],["parent/1576",[788,3.831]],["name/1577",[461,64.89]],["parent/1577",[788,3.831]],["name/1578",[435,56.087]],["parent/1578",[788,3.831]],["name/1579",[425,57.669]],["parent/1579",[788,3.831]],["name/1580",[462,61.034]],["parent/1580",[788,3.831]],["name/1581",[463,61.034]],["parent/1581",[788,3.831]],["name/1582",[464,61.034]],["parent/1582",[788,3.831]],["name/1583",[789,26.069]],["parent/1583",[]],["name/1584",[43,47.475]],["parent/1584",[789,2.603]],["name/1585",[424,58.257]],["parent/1585",[789,2.603]],["name/1586",[425,57.669]],["parent/1586",[789,2.603]],["name/1587",[790,61.034]],["parent/1587",[789,2.603]],["name/1588",[791,61.034]],["parent/1588",[789,2.603]],["name/1589",[792,61.034]],["parent/1589",[789,2.603]],["name/1590",[793,61.034]],["parent/1590",[789,2.603]],["name/1591",[426,58.257]],["parent/1591",[789,2.603]],["name/1592",[427,58.257]],["parent/1592",[789,2.603]],["name/1593",[428,58.257]],["parent/1593",[789,2.603]],["name/1594",[429,58.257]],["parent/1594",[789,2.603]],["name/1595",[430,58.257]],["parent/1595",[789,2.603]],["name/1596",[431,58.257]],["parent/1596",[789,2.603]],["name/1597",[432,58.257]],["parent/1597",[789,2.603]],["name/1598",[433,58.257]],["parent/1598",[789,2.603]],["name/1599",[434,58.257]],["parent/1599",[789,2.603]],["name/1600",[435,56.087]],["parent/1600",[789,2.603]],["name/1601",[436,56.087]],["parent/1601",[789,2.603]],["name/1602",[437,58.257]],["parent/1602",[789,2.603]],["name/1603",[438,58.257]],["parent/1603",[789,2.603]],["name/1604",[439,58.257]],["parent/1604",[789,2.603]],["name/1605",[440,58.257]],["parent/1605",[789,2.603]],["name/1606",[441,58.257]],["parent/1606",[789,2.603]],["name/1607",[442,58.257]],["parent/1607",[789,2.603]],["name/1608",[443,58.257]],["parent/1608",[789,2.603]],["name/1609",[444,58.257]],["parent/1609",[789,2.603]],["name/1610",[445,58.257]],["parent/1610",[789,2.603]],["name/1611",[447,58.257]],["parent/1611",[789,2.603]],["name/1612",[446,58.257]],["parent/1612",[789,2.603]],["name/1613",[794,61.034]],["parent/1613",[789,2.603]],["name/1614",[795,61.034]],["parent/1614",[789,2.603]],["name/1615",[448,58.257]],["parent/1615",[789,2.603]],["name/1616",[449,58.257]],["parent/1616",[789,2.603]],["name/1617",[450,58.257]],["parent/1617",[789,2.603]],["name/1618",[451,61.034]],["parent/1618",[789,2.603]],["name/1619",[796,64.89]],["parent/1619",[789,2.603]],["name/1620",[797,64.89]],["parent/1620",[789,2.603]],["name/1621",[798,64.89]],["parent/1621",[789,2.603]],["name/1622",[799,64.89]],["parent/1622",[789,2.603]],["name/1623",[452,64.89]],["parent/1623",[789,2.603]],["name/1624",[453,64.89]],["parent/1624",[789,2.603]],["name/1625",[454,64.89]],["parent/1625",[789,2.603]],["name/1626",[455,45.264]],["parent/1626",[789,2.603]],["name/1627",[9,48.796]],["parent/1627",[789,2.603]],["name/1628",[456,61.034]],["parent/1628",[789,2.603]],["name/1629",[457,61.034]],["parent/1629",[789,2.603]],["name/1630",[458,61.034]],["parent/1630",[789,2.603]],["name/1631",[459,64.89]],["parent/1631",[789,2.603]],["name/1632",[460,64.89]],["parent/1632",[789,2.603]],["name/1633",[461,64.89]],["parent/1633",[789,2.603]],["name/1634",[462,61.034]],["parent/1634",[789,2.603]],["name/1635",[463,61.034]],["parent/1635",[789,2.603]],["name/1636",[464,61.034]],["parent/1636",[789,2.603]],["name/1637",[448,58.257]],["parent/1637",[789,2.603]],["name/1638",[449,58.257]],["parent/1638",[789,2.603]],["name/1639",[450,58.257]],["parent/1639",[789,2.603]],["name/1640",[452,64.89]],["parent/1640",[789,2.603]],["name/1641",[794,61.034]],["parent/1641",[789,2.603]],["name/1642",[429,58.257]],["parent/1642",[789,2.603]],["name/1643",[439,58.257]],["parent/1643",[789,2.603]],["name/1644",[440,58.257]],["parent/1644",[789,2.603]],["name/1645",[441,58.257]],["parent/1645",[789,2.603]],["name/1646",[430,58.257]],["parent/1646",[789,2.603]],["name/1647",[431,58.257]],["parent/1647",[789,2.603]],["name/1648",[453,64.89]],["parent/1648",[789,2.603]],["name/1649",[454,64.89]],["parent/1649",[789,2.603]],["name/1650",[455,45.264]],["parent/1650",[789,2.603]],["name/1651",[796,64.89]],["parent/1651",[789,2.603]],["name/1652",[793,61.034]],["parent/1652",[789,2.603]],["name/1653",[424,58.257]],["parent/1653",[789,2.603]],["name/1654",[795,61.034]],["parent/1654",[789,2.603]],["name/1655",[9,48.796]],["parent/1655",[789,2.603]],["name/1656",[446,58.257]],["parent/1656",[789,2.603]],["name/1657",[434,58.257]],["parent/1657",[789,2.603]],["name/1658",[451,61.034]],["parent/1658",[789,2.603]],["name/1659",[427,58.257]],["parent/1659",[789,2.603]],["name/1660",[791,61.034]],["parent/1660",[789,2.603]],["name/1661",[792,61.034]],["parent/1661",[789,2.603]],["name/1662",[790,61.034]],["parent/1662",[789,2.603]],["name/1663",[426,58.257]],["parent/1663",[789,2.603]],["name/1664",[456,61.034]],["parent/1664",[789,2.603]],["name/1665",[457,61.034]],["parent/1665",[789,2.603]],["name/1666",[458,61.034]],["parent/1666",[789,2.603]],["name/1667",[798,64.89]],["parent/1667",[789,2.603]],["name/1668",[799,64.89]],["parent/1668",[789,2.603]],["name/1669",[797,64.89]],["parent/1669",[789,2.603]],["name/1670",[432,58.257]],["parent/1670",[789,2.603]],["name/1671",[459,64.89]],["parent/1671",[789,2.603]],["name/1672",[460,64.89]],["parent/1672",[789,2.603]],["name/1673",[428,58.257]],["parent/1673",[789,2.603]],["name/1674",[447,58.257]],["parent/1674",[789,2.603]],["name/1675",[444,58.257]],["parent/1675",[789,2.603]],["name/1676",[445,58.257]],["parent/1676",[789,2.603]],["name/1677",[442,58.257]],["parent/1677",[789,2.603]],["name/1678",[443,58.257]],["parent/1678",[789,2.603]],["name/1679",[437,58.257]],["parent/1679",[789,2.603]],["name/1680",[438,58.257]],["parent/1680",[789,2.603]],["name/1681",[433,58.257]],["parent/1681",[789,2.603]],["name/1682",[436,56.087]],["parent/1682",[789,2.603]],["name/1683",[461,64.89]],["parent/1683",[789,2.603]],["name/1684",[435,56.087]],["parent/1684",[789,2.603]],["name/1685",[425,57.669]],["parent/1685",[789,2.603]],["name/1686",[462,61.034]],["parent/1686",[789,2.603]],["name/1687",[463,61.034]],["parent/1687",[789,2.603]],["name/1688",[464,61.034]],["parent/1688",[789,2.603]],["name/1689",[789,26.069]],["parent/1689",[789,2.603]],["name/1690",[17,54.721]],["parent/1690",[800,4.872]],["name/1691",[43,47.475]],["parent/1691",[800,4.872]],["name/1692",[98,58.257]],["parent/1692",[800,4.872]],["name/1693",[466,67.573]],["parent/1693",[801,4.997]],["name/1694",[468,67.573]],["parent/1694",[801,4.997]],["name/1695",[469,67.573]],["parent/1695",[801,4.997]],["name/1696",[470,67.573]],["parent/1696",[801,4.997]],["name/1697",[471,67.573]],["parent/1697",[801,4.997]],["name/1698",[472,67.573]],["parent/1698",[801,4.997]],["name/1699",[473,67.573]],["parent/1699",[801,4.997]],["name/1700",[474,67.573]],["parent/1700",[801,4.997]],["name/1701",[475,67.573]],["parent/1701",[801,4.997]],["name/1702",[476,67.573]],["parent/1702",[801,4.997]],["name/1703",[477,67.573]],["parent/1703",[801,4.997]],["name/1704",[478,67.573]],["parent/1704",[801,4.997]],["name/1705",[479,67.573]],["parent/1705",[801,4.997]],["name/1706",[480,67.573]],["parent/1706",[801,4.997]],["name/1707",[481,67.573]],["parent/1707",[801,4.997]],["name/1708",[482,67.573]],["parent/1708",[801,4.997]],["name/1709",[483,67.573]],["parent/1709",[801,4.997]],["name/1710",[484,67.573]],["parent/1710",[801,4.997]],["name/1711",[485,67.573]],["parent/1711",[801,4.997]],["name/1712",[486,67.573]],["parent/1712",[801,4.997]],["name/1713",[487,67.573]],["parent/1713",[801,4.997]],["name/1714",[488,67.573]],["parent/1714",[801,4.997]],["name/1715",[489,67.573]],["parent/1715",[801,4.997]],["name/1716",[490,67.573]],["parent/1716",[801,4.997]],["name/1717",[491,67.573]],["parent/1717",[801,4.997]],["name/1718",[492,67.573]],["parent/1718",[801,4.997]],["name/1719",[493,67.573]],["parent/1719",[801,4.997]],["name/1720",[494,67.573]],["parent/1720",[801,4.997]],["name/1721",[495,67.573]],["parent/1721",[801,4.997]],["name/1722",[496,67.573]],["parent/1722",[801,4.997]],["name/1723",[497,67.573]],["parent/1723",[801,4.997]],["name/1724",[498,67.573]],["parent/1724",[801,4.997]],["name/1725",[499,67.573]],["parent/1725",[801,4.997]],["name/1726",[500,67.573]],["parent/1726",[801,4.997]],["name/1727",[501,67.573]],["parent/1727",[801,4.997]],["name/1728",[502,67.573]],["parent/1728",[801,4.997]],["name/1729",[503,67.573]],["parent/1729",[801,4.997]],["name/1730",[30,56.587]],["parent/1730",[800,4.872]],["name/1731",[125,58.257]],["parent/1731",[800,4.872]],["name/1732",[10,27.115]],["parent/1732",[802,8.21]],["name/1733",[466,67.573]],["parent/1733",[803,4.311]],["name/1734",[506,77.128]],["parent/1734",[803,4.311]],["name/1735",[468,67.573]],["parent/1735",[803,4.311]],["name/1736",[507,77.128]],["parent/1736",[803,4.311]],["name/1737",[469,67.573]],["parent/1737",[803,4.311]],["name/1738",[508,77.128]],["parent/1738",[803,4.311]],["name/1739",[470,67.573]],["parent/1739",[803,4.311]],["name/1740",[509,77.128]],["parent/1740",[803,4.311]],["name/1741",[471,67.573]],["parent/1741",[803,4.311]],["name/1742",[510,77.128]],["parent/1742",[803,4.311]],["name/1743",[472,67.573]],["parent/1743",[803,4.311]],["name/1744",[511,77.128]],["parent/1744",[803,4.311]],["name/1745",[473,67.573]],["parent/1745",[803,4.311]],["name/1746",[512,77.128]],["parent/1746",[803,4.311]],["name/1747",[474,67.573]],["parent/1747",[803,4.311]],["name/1748",[513,77.128]],["parent/1748",[803,4.311]],["name/1749",[475,67.573]],["parent/1749",[803,4.311]],["name/1750",[514,77.128]],["parent/1750",[803,4.311]],["name/1751",[476,67.573]],["parent/1751",[803,4.311]],["name/1752",[515,77.128]],["parent/1752",[803,4.311]],["name/1753",[477,67.573]],["parent/1753",[803,4.311]],["name/1754",[516,77.128]],["parent/1754",[803,4.311]],["name/1755",[478,67.573]],["parent/1755",[803,4.311]],["name/1756",[517,77.128]],["parent/1756",[803,4.311]],["name/1757",[479,67.573]],["parent/1757",[803,4.311]],["name/1758",[518,77.128]],["parent/1758",[803,4.311]],["name/1759",[480,67.573]],["parent/1759",[803,4.311]],["name/1760",[519,77.128]],["parent/1760",[803,4.311]],["name/1761",[481,67.573]],["parent/1761",[803,4.311]],["name/1762",[520,77.128]],["parent/1762",[803,4.311]],["name/1763",[482,67.573]],["parent/1763",[803,4.311]],["name/1764",[521,77.128]],["parent/1764",[803,4.311]],["name/1765",[483,67.573]],["parent/1765",[803,4.311]],["name/1766",[522,77.128]],["parent/1766",[803,4.311]],["name/1767",[484,67.573]],["parent/1767",[803,4.311]],["name/1768",[523,77.128]],["parent/1768",[803,4.311]],["name/1769",[485,67.573]],["parent/1769",[803,4.311]],["name/1770",[524,77.128]],["parent/1770",[803,4.311]],["name/1771",[486,67.573]],["parent/1771",[803,4.311]],["name/1772",[525,77.128]],["parent/1772",[803,4.311]],["name/1773",[487,67.573]],["parent/1773",[803,4.311]],["name/1774",[526,77.128]],["parent/1774",[803,4.311]],["name/1775",[488,67.573]],["parent/1775",[803,4.311]],["name/1776",[527,77.128]],["parent/1776",[803,4.311]],["name/1777",[489,67.573]],["parent/1777",[803,4.311]],["name/1778",[528,77.128]],["parent/1778",[803,4.311]],["name/1779",[490,67.573]],["parent/1779",[803,4.311]],["name/1780",[529,77.128]],["parent/1780",[803,4.311]],["name/1781",[491,67.573]],["parent/1781",[803,4.311]],["name/1782",[530,77.128]],["parent/1782",[803,4.311]],["name/1783",[492,67.573]],["parent/1783",[803,4.311]],["name/1784",[531,77.128]],["parent/1784",[803,4.311]],["name/1785",[493,67.573]],["parent/1785",[803,4.311]],["name/1786",[532,77.128]],["parent/1786",[803,4.311]],["name/1787",[494,67.573]],["parent/1787",[803,4.311]],["name/1788",[533,77.128]],["parent/1788",[803,4.311]],["name/1789",[495,67.573]],["parent/1789",[803,4.311]],["name/1790",[534,77.128]],["parent/1790",[803,4.311]],["name/1791",[496,67.573]],["parent/1791",[803,4.311]],["name/1792",[535,77.128]],["parent/1792",[803,4.311]],["name/1793",[497,67.573]],["parent/1793",[803,4.311]],["name/1794",[536,77.128]],["parent/1794",[803,4.311]],["name/1795",[498,67.573]],["parent/1795",[803,4.311]],["name/1796",[537,77.128]],["parent/1796",[803,4.311]],["name/1797",[499,67.573]],["parent/1797",[803,4.311]],["name/1798",[538,77.128]],["parent/1798",[803,4.311]],["name/1799",[500,67.573]],["parent/1799",[803,4.311]],["name/1800",[539,77.128]],["parent/1800",[803,4.311]],["name/1801",[501,67.573]],["parent/1801",[803,4.311]],["name/1802",[540,77.128]],["parent/1802",[803,4.311]],["name/1803",[502,67.573]],["parent/1803",[803,4.311]],["name/1804",[541,77.128]],["parent/1804",[803,4.311]],["name/1805",[503,67.573]],["parent/1805",[803,4.311]],["name/1806",[542,77.128]],["parent/1806",[803,4.311]],["name/1807",[466,67.573]],["parent/1807",[800,4.872]],["name/1808",[468,67.573]],["parent/1808",[800,4.872]],["name/1809",[469,67.573]],["parent/1809",[800,4.872]],["name/1810",[470,67.573]],["parent/1810",[800,4.872]],["name/1811",[471,67.573]],["parent/1811",[800,4.872]],["name/1812",[472,67.573]],["parent/1812",[800,4.872]],["name/1813",[473,67.573]],["parent/1813",[800,4.872]],["name/1814",[474,67.573]],["parent/1814",[800,4.872]],["name/1815",[475,67.573]],["parent/1815",[800,4.872]],["name/1816",[476,67.573]],["parent/1816",[800,4.872]],["name/1817",[477,67.573]],["parent/1817",[800,4.872]],["name/1818",[478,67.573]],["parent/1818",[800,4.872]],["name/1819",[479,67.573]],["parent/1819",[800,4.872]],["name/1820",[480,67.573]],["parent/1820",[800,4.872]],["name/1821",[481,67.573]],["parent/1821",[800,4.872]],["name/1822",[482,67.573]],["parent/1822",[800,4.872]],["name/1823",[483,67.573]],["parent/1823",[800,4.872]],["name/1824",[484,67.573]],["parent/1824",[800,4.872]],["name/1825",[485,67.573]],["parent/1825",[800,4.872]],["name/1826",[486,67.573]],["parent/1826",[800,4.872]],["name/1827",[487,67.573]],["parent/1827",[800,4.872]],["name/1828",[488,67.573]],["parent/1828",[800,4.872]],["name/1829",[489,67.573]],["parent/1829",[800,4.872]],["name/1830",[490,67.573]],["parent/1830",[800,4.872]],["name/1831",[491,67.573]],["parent/1831",[800,4.872]],["name/1832",[492,67.573]],["parent/1832",[800,4.872]],["name/1833",[493,67.573]],["parent/1833",[800,4.872]],["name/1834",[494,67.573]],["parent/1834",[800,4.872]],["name/1835",[495,67.573]],["parent/1835",[800,4.872]],["name/1836",[496,67.573]],["parent/1836",[800,4.872]],["name/1837",[497,67.573]],["parent/1837",[800,4.872]],["name/1838",[498,67.573]],["parent/1838",[800,4.872]],["name/1839",[499,67.573]],["parent/1839",[800,4.872]],["name/1840",[500,67.573]],["parent/1840",[800,4.872]],["name/1841",[501,67.573]],["parent/1841",[800,4.872]],["name/1842",[502,67.573]],["parent/1842",[800,4.872]],["name/1843",[503,67.573]],["parent/1843",[800,4.872]],["name/1844",[543,64.89]],["parent/1844",[789,2.603]],["name/1845",[544,64.89]],["parent/1845",[789,2.603]],["name/1846",[545,64.89]],["parent/1846",[789,2.603]],["name/1847",[10,27.115]],["parent/1847",[804,8.21]],["name/1848",[547,36.628]],["parent/1848",[805,7.7]],["name/1849",[205,41.128]],["parent/1849",[805,7.7]],["name/1850",[549,64.89]],["parent/1850",[789,2.603]],["name/1851",[10,27.115]],["parent/1851",[806,8.21]],["name/1852",[172,34.962]],["parent/1852",[807,7.7]],["name/1853",[552,44.023]],["parent/1853",[807,7.7]],["name/1854",[553,64.89]],["parent/1854",[789,2.603]],["name/1855",[10,27.115]],["parent/1855",[808,8.21]],["name/1856",[547,36.628]],["parent/1856",[809,7.7]],["name/1857",[205,41.128]],["parent/1857",[809,7.7]],["name/1858",[556,64.89]],["parent/1858",[789,2.603]],["name/1859",[10,27.115]],["parent/1859",[810,8.21]],["name/1860",[172,34.962]],["parent/1860",[811,7.7]],["name/1861",[552,44.023]],["parent/1861",[811,7.7]],["name/1862",[559,64.89]],["parent/1862",[789,2.603]],["name/1863",[10,27.115]],["parent/1863",[812,8.21]],["name/1864",[547,36.628]],["parent/1864",[813,7.7]],["name/1865",[205,41.128]],["parent/1865",[813,7.7]],["name/1866",[562,64.89]],["parent/1866",[789,2.603]],["name/1867",[10,27.115]],["parent/1867",[814,8.21]],["name/1868",[172,34.962]],["parent/1868",[815,7.7]],["name/1869",[552,44.023]],["parent/1869",[815,7.7]],["name/1870",[565,64.89]],["parent/1870",[789,2.603]],["name/1871",[10,27.115]],["parent/1871",[816,8.21]],["name/1872",[547,36.628]],["parent/1872",[817,7.7]],["name/1873",[205,41.128]],["parent/1873",[817,7.7]],["name/1874",[568,64.89]],["parent/1874",[789,2.603]],["name/1875",[10,27.115]],["parent/1875",[818,8.21]],["name/1876",[172,34.962]],["parent/1876",[819,7.7]],["name/1877",[552,44.023]],["parent/1877",[819,7.7]],["name/1878",[571,64.89]],["parent/1878",[789,2.603]],["name/1879",[10,27.115]],["parent/1879",[820,8.21]],["name/1880",[547,36.628]],["parent/1880",[821,7.7]],["name/1881",[205,41.128]],["parent/1881",[821,7.7]],["name/1882",[574,64.89]],["parent/1882",[789,2.603]],["name/1883",[10,27.115]],["parent/1883",[822,8.21]],["name/1884",[172,34.962]],["parent/1884",[823,7.7]],["name/1885",[552,44.023]],["parent/1885",[823,7.7]],["name/1886",[577,64.89]],["parent/1886",[789,2.603]],["name/1887",[10,27.115]],["parent/1887",[824,8.21]],["name/1888",[547,36.628]],["parent/1888",[825,8.21]],["name/1889",[580,64.89]],["parent/1889",[789,2.603]],["name/1890",[10,27.115]],["parent/1890",[826,8.21]],["name/1891",[172,34.962]],["parent/1891",[827,7.7]],["name/1892",[552,44.023]],["parent/1892",[827,7.7]],["name/1893",[583,64.89]],["parent/1893",[789,2.603]],["name/1894",[10,27.115]],["parent/1894",[828,8.21]],["name/1895",[547,36.628]],["parent/1895",[829,8.21]],["name/1896",[586,64.89]],["parent/1896",[789,2.603]],["name/1897",[10,27.115]],["parent/1897",[830,8.21]],["name/1898",[172,34.962]],["parent/1898",[831,7.7]],["name/1899",[552,44.023]],["parent/1899",[831,7.7]],["name/1900",[589,64.89]],["parent/1900",[789,2.603]],["name/1901",[10,27.115]],["parent/1901",[832,8.21]],["name/1902",[547,36.628]],["parent/1902",[833,8.21]],["name/1903",[592,64.89]],["parent/1903",[789,2.603]],["name/1904",[10,27.115]],["parent/1904",[834,8.21]],["name/1905",[172,34.962]],["parent/1905",[835,7.364]],["name/1906",[595,62.777]],["parent/1906",[835,7.364]],["name/1907",[552,44.023]],["parent/1907",[835,7.364]],["name/1908",[596,64.89]],["parent/1908",[789,2.603]],["name/1909",[10,27.115]],["parent/1909",[836,8.21]],["name/1910",[547,36.628]],["parent/1910",[837,6.913]],["name/1911",[599,77.128]],["parent/1911",[837,6.913]],["name/1912",[838,82.236]],["parent/1912",[837,6.913]],["name/1913",[839,77.128]],["parent/1913",[837,6.913]],["name/1914",[205,41.128]],["parent/1914",[837,6.913]],["name/1915",[600,64.89]],["parent/1915",[789,2.603]],["name/1916",[10,27.115]],["parent/1916",[840,8.21]],["name/1917",[172,34.962]],["parent/1917",[841,8.21]],["name/1918",[603,64.89]],["parent/1918",[789,2.603]],["name/1919",[10,27.115]],["parent/1919",[842,8.21]],["name/1920",[547,36.628]],["parent/1920",[843,7.7]],["name/1921",[205,41.128]],["parent/1921",[843,7.7]],["name/1922",[606,64.89]],["parent/1922",[789,2.603]],["name/1923",[10,27.115]],["parent/1923",[844,8.21]],["name/1924",[172,34.962]],["parent/1924",[845,7.7]],["name/1925",[552,44.023]],["parent/1925",[845,7.7]],["name/1926",[609,64.89]],["parent/1926",[789,2.603]],["name/1927",[10,27.115]],["parent/1927",[846,8.21]],["name/1928",[547,36.628]],["parent/1928",[847,8.21]],["name/1929",[612,64.89]],["parent/1929",[789,2.603]],["name/1930",[10,27.115]],["parent/1930",[848,8.21]],["name/1931",[172,34.962]],["parent/1931",[849,7.7]],["name/1932",[552,44.023]],["parent/1932",[849,7.7]],["name/1933",[615,64.89]],["parent/1933",[789,2.603]],["name/1934",[10,27.115]],["parent/1934",[850,8.21]],["name/1935",[547,36.628]],["parent/1935",[851,7.7]],["name/1936",[205,41.128]],["parent/1936",[851,7.7]],["name/1937",[618,64.89]],["parent/1937",[789,2.603]],["name/1938",[10,27.115]],["parent/1938",[852,8.21]],["name/1939",[172,34.962]],["parent/1939",[853,7.7]],["name/1940",[552,44.023]],["parent/1940",[853,7.7]],["name/1941",[621,64.89]],["parent/1941",[789,2.603]],["name/1942",[10,27.115]],["parent/1942",[854,8.21]],["name/1943",[547,36.628]],["parent/1943",[855,7.7]],["name/1944",[205,41.128]],["parent/1944",[855,7.7]],["name/1945",[624,64.89]],["parent/1945",[789,2.603]],["name/1946",[10,27.115]],["parent/1946",[856,8.21]],["name/1947",[172,34.962]],["parent/1947",[857,7.7]],["name/1948",[552,44.023]],["parent/1948",[857,7.7]],["name/1949",[627,64.89]],["parent/1949",[789,2.603]],["name/1950",[10,27.115]],["parent/1950",[858,8.21]],["name/1951",[547,36.628]],["parent/1951",[859,8.21]],["name/1952",[630,64.89]],["parent/1952",[789,2.603]],["name/1953",[10,27.115]],["parent/1953",[860,8.21]],["name/1954",[172,34.962]],["parent/1954",[861,7.7]],["name/1955",[552,44.023]],["parent/1955",[861,7.7]],["name/1956",[633,64.89]],["parent/1956",[789,2.603]],["name/1957",[10,27.115]],["parent/1957",[862,8.21]],["name/1958",[547,36.628]],["parent/1958",[863,7.7]],["name/1959",[205,41.128]],["parent/1959",[863,7.7]],["name/1960",[636,64.89]],["parent/1960",[789,2.603]],["name/1961",[10,27.115]],["parent/1961",[864,8.21]],["name/1962",[172,34.962]],["parent/1962",[865,7.364]],["name/1963",[639,62.777]],["parent/1963",[865,7.364]],["name/1964",[552,44.023]],["parent/1964",[865,7.364]],["name/1965",[640,64.89]],["parent/1965",[789,2.603]],["name/1966",[10,27.115]],["parent/1966",[866,8.21]],["name/1967",[547,36.628]],["parent/1967",[867,8.21]],["name/1968",[643,64.89]],["parent/1968",[789,2.603]],["name/1969",[10,27.115]],["parent/1969",[868,8.21]],["name/1970",[172,34.962]],["parent/1970",[869,7.7]],["name/1971",[552,44.023]],["parent/1971",[869,7.7]],["name/1972",[646,64.89]],["parent/1972",[789,2.603]],["name/1973",[10,27.115]],["parent/1973",[870,8.21]],["name/1974",[547,36.628]],["parent/1974",[871,7.114]],["name/1975",[649,77.128]],["parent/1975",[871,7.114]],["name/1976",[650,77.128]],["parent/1976",[871,7.114]],["name/1977",[205,41.128]],["parent/1977",[871,7.114]],["name/1978",[651,64.89]],["parent/1978",[789,2.603]],["name/1979",[10,27.115]],["parent/1979",[872,8.21]],["name/1980",[172,34.962]],["parent/1980",[873,8.21]],["name/1981",[654,64.89]],["parent/1981",[789,2.603]],["name/1982",[10,27.115]],["parent/1982",[874,8.21]],["name/1983",[547,36.628]],["parent/1983",[875,7.7]],["name/1984",[205,41.128]],["parent/1984",[875,7.7]],["name/1985",[657,64.89]],["parent/1985",[789,2.603]],["name/1986",[10,27.115]],["parent/1986",[876,8.21]],["name/1987",[172,34.962]],["parent/1987",[877,7.364]],["name/1988",[552,44.023]],["parent/1988",[877,7.364]],["name/1989",[660,77.128]],["parent/1989",[877,7.364]],["name/1990",[661,64.89]],["parent/1990",[789,2.603]],["name/1991",[10,27.115]],["parent/1991",[878,8.21]],["name/1992",[547,36.628]],["parent/1992",[879,7.7]],["name/1993",[205,41.128]],["parent/1993",[879,7.7]],["name/1994",[664,64.89]],["parent/1994",[789,2.603]],["name/1995",[10,27.115]],["parent/1995",[880,8.21]],["name/1996",[172,34.962]],["parent/1996",[881,7.364]],["name/1997",[552,44.023]],["parent/1997",[881,7.364]],["name/1998",[667,71.25]],["parent/1998",[881,7.364]],["name/1999",[668,64.89]],["parent/1999",[789,2.603]],["name/2000",[10,27.115]],["parent/2000",[882,8.21]],["name/2001",[547,36.628]],["parent/2001",[883,7.7]],["name/2002",[205,41.128]],["parent/2002",[883,7.7]],["name/2003",[671,64.89]],["parent/2003",[789,2.603]],["name/2004",[10,27.115]],["parent/2004",[884,8.21]],["name/2005",[595,62.777]],["parent/2005",[885,7.364]],["name/2006",[172,34.962]],["parent/2006",[885,7.364]],["name/2007",[552,44.023]],["parent/2007",[885,7.364]],["name/2008",[674,64.89]],["parent/2008",[789,2.603]],["name/2009",[10,27.115]],["parent/2009",[886,8.21]],["name/2010",[547,36.628]],["parent/2010",[887,7.7]],["name/2011",[205,41.128]],["parent/2011",[887,7.7]],["name/2012",[677,64.89]],["parent/2012",[789,2.603]],["name/2013",[10,27.115]],["parent/2013",[888,8.21]],["name/2014",[679,63.778]],["parent/2014",[889,7.364]],["name/2015",[172,34.962]],["parent/2015",[889,7.364]],["name/2016",[552,44.023]],["parent/2016",[889,7.364]],["name/2017",[681,64.89]],["parent/2017",[789,2.603]],["name/2018",[10,27.115]],["parent/2018",[890,8.21]],["name/2019",[547,36.628]],["parent/2019",[891,7.7]],["name/2020",[205,41.128]],["parent/2020",[891,7.7]],["name/2021",[684,64.89]],["parent/2021",[789,2.603]],["name/2022",[10,27.115]],["parent/2022",[892,8.21]],["name/2023",[686,71.25]],["parent/2023",[893,7.364]],["name/2024",[172,34.962]],["parent/2024",[893,7.364]],["name/2025",[552,44.023]],["parent/2025",[893,7.364]],["name/2026",[688,64.89]],["parent/2026",[789,2.603]],["name/2027",[10,27.115]],["parent/2027",[894,8.21]],["name/2028",[547,36.628]],["parent/2028",[895,7.7]],["name/2029",[205,41.128]],["parent/2029",[895,7.7]],["name/2030",[691,64.89]],["parent/2030",[789,2.603]],["name/2031",[10,27.115]],["parent/2031",[896,8.21]],["name/2032",[639,62.777]],["parent/2032",[897,7.364]],["name/2033",[172,34.962]],["parent/2033",[897,7.364]],["name/2034",[552,44.023]],["parent/2034",[897,7.364]],["name/2035",[694,64.89]],["parent/2035",[789,2.603]],["name/2036",[10,27.115]],["parent/2036",[898,8.21]],["name/2037",[547,36.628]],["parent/2037",[899,6.913]],["name/2038",[697,77.128]],["parent/2038",[899,6.913]],["name/2039",[698,77.128]],["parent/2039",[899,6.913]],["name/2040",[839,77.128]],["parent/2040",[899,6.913]],["name/2041",[205,41.128]],["parent/2041",[899,6.913]],["name/2042",[699,64.89]],["parent/2042",[789,2.603]],["name/2043",[10,27.115]],["parent/2043",[900,8.21]],["name/2044",[172,34.962]],["parent/2044",[901,8.21]],["name/2045",[702,64.89]],["parent/2045",[789,2.603]],["name/2046",[10,27.115]],["parent/2046",[902,8.21]],["name/2047",[547,36.628]],["parent/2047",[903,7.7]],["name/2048",[205,41.128]],["parent/2048",[903,7.7]],["name/2049",[705,64.89]],["parent/2049",[789,2.603]],["name/2050",[10,27.115]],["parent/2050",[904,8.21]],["name/2051",[172,34.962]],["parent/2051",[905,7.7]],["name/2052",[552,44.023]],["parent/2052",[905,7.7]],["name/2053",[708,64.89]],["parent/2053",[789,2.603]],["name/2054",[10,27.115]],["parent/2054",[906,8.21]],["name/2055",[547,36.628]],["parent/2055",[907,7.364]],["name/2056",[711,77.128]],["parent/2056",[907,7.364]],["name/2057",[205,41.128]],["parent/2057",[907,7.364]],["name/2058",[712,64.89]],["parent/2058",[789,2.603]],["name/2059",[10,27.115]],["parent/2059",[908,8.21]],["name/2060",[172,34.962]],["parent/2060",[909,7.7]],["name/2061",[552,44.023]],["parent/2061",[909,7.7]],["name/2062",[715,64.89]],["parent/2062",[789,2.603]],["name/2063",[10,27.115]],["parent/2063",[910,8.21]],["name/2064",[547,36.628]],["parent/2064",[911,7.364]],["name/2065",[718,61.034]],["parent/2065",[911,7.364]],["name/2066",[205,41.128]],["parent/2066",[911,7.364]],["name/2067",[719,64.89]],["parent/2067",[789,2.603]],["name/2068",[10,27.115]],["parent/2068",[912,8.21]],["name/2069",[172,34.962]],["parent/2069",[913,7.7]],["name/2070",[552,44.023]],["parent/2070",[913,7.7]],["name/2071",[722,64.89]],["parent/2071",[789,2.603]],["name/2072",[10,27.115]],["parent/2072",[914,8.21]],["name/2073",[547,36.628]],["parent/2073",[915,7.114]],["name/2074",[205,41.128]],["parent/2074",[915,7.114]],["name/2075",[725,77.128]],["parent/2075",[915,7.114]],["name/2076",[718,61.034]],["parent/2076",[915,7.114]],["name/2077",[726,64.89]],["parent/2077",[789,2.603]],["name/2078",[10,27.115]],["parent/2078",[916,8.21]],["name/2079",[172,34.962]],["parent/2079",[917,7.7]],["name/2080",[552,44.023]],["parent/2080",[917,7.7]],["name/2081",[729,64.89]],["parent/2081",[789,2.603]],["name/2082",[10,27.115]],["parent/2082",[918,8.21]],["name/2083",[547,36.628]],["parent/2083",[919,7.7]],["name/2084",[205,41.128]],["parent/2084",[919,7.7]],["name/2085",[732,64.89]],["parent/2085",[789,2.603]],["name/2086",[10,27.115]],["parent/2086",[920,8.21]],["name/2087",[172,34.962]],["parent/2087",[921,7.7]],["name/2088",[552,44.023]],["parent/2088",[921,7.7]],["name/2089",[735,64.89]],["parent/2089",[789,2.603]],["name/2090",[10,27.115]],["parent/2090",[922,8.21]],["name/2091",[547,36.628]],["parent/2091",[923,7.7]],["name/2092",[205,41.128]],["parent/2092",[923,7.7]],["name/2093",[738,64.89]],["parent/2093",[789,2.603]],["name/2094",[10,27.115]],["parent/2094",[924,8.21]],["name/2095",[172,34.962]],["parent/2095",[925,7.364]],["name/2096",[552,44.023]],["parent/2096",[925,7.364]],["name/2097",[667,71.25]],["parent/2097",[925,7.364]],["name/2098",[741,64.89]],["parent/2098",[789,2.603]],["name/2099",[10,27.115]],["parent/2099",[926,8.21]],["name/2100",[718,61.034]],["parent/2100",[927,7.364]],["name/2101",[547,36.628]],["parent/2101",[927,7.364]],["name/2102",[205,41.128]],["parent/2102",[927,7.364]],["name/2103",[744,64.89]],["parent/2103",[789,2.603]],["name/2104",[10,27.115]],["parent/2104",[928,8.21]],["name/2105",[595,62.777]],["parent/2105",[929,7.364]],["name/2106",[172,34.962]],["parent/2106",[929,7.364]],["name/2107",[552,44.023]],["parent/2107",[929,7.364]],["name/2108",[747,64.89]],["parent/2108",[789,2.603]],["name/2109",[10,27.115]],["parent/2109",[930,8.21]],["name/2110",[547,36.628]],["parent/2110",[931,7.364]],["name/2111",[718,61.034]],["parent/2111",[931,7.364]],["name/2112",[205,41.128]],["parent/2112",[931,7.364]],["name/2113",[750,64.89]],["parent/2113",[789,2.603]],["name/2114",[10,27.115]],["parent/2114",[932,8.21]],["name/2115",[172,34.962]],["parent/2115",[933,7.7]],["name/2116",[552,44.023]],["parent/2116",[933,7.7]],["name/2117",[753,64.89]],["parent/2117",[789,2.603]],["name/2118",[10,27.115]],["parent/2118",[934,8.21]],["name/2119",[718,61.034]],["parent/2119",[935,7.364]],["name/2120",[547,36.628]],["parent/2120",[935,7.364]],["name/2121",[205,41.128]],["parent/2121",[935,7.364]],["name/2122",[756,64.89]],["parent/2122",[789,2.603]],["name/2123",[10,27.115]],["parent/2123",[936,8.21]],["name/2124",[679,63.778]],["parent/2124",[937,7.364]],["name/2125",[172,34.962]],["parent/2125",[937,7.364]],["name/2126",[552,44.023]],["parent/2126",[937,7.364]],["name/2127",[759,64.89]],["parent/2127",[789,2.603]],["name/2128",[10,27.115]],["parent/2128",[938,8.21]],["name/2129",[547,36.628]],["parent/2129",[939,8.21]],["name/2130",[762,64.89]],["parent/2130",[789,2.603]],["name/2131",[10,27.115]],["parent/2131",[940,8.21]],["name/2132",[686,71.25]],["parent/2132",[941,7.364]],["name/2133",[172,34.962]],["parent/2133",[941,7.364]],["name/2134",[552,44.023]],["parent/2134",[941,7.364]],["name/2135",[765,64.89]],["parent/2135",[789,2.603]],["name/2136",[10,27.115]],["parent/2136",[942,8.21]],["name/2137",[547,36.628]],["parent/2137",[943,7.7]],["name/2138",[205,41.128]],["parent/2138",[943,7.7]],["name/2139",[768,64.89]],["parent/2139",[789,2.603]],["name/2140",[10,27.115]],["parent/2140",[944,8.21]],["name/2141",[639,62.777]],["parent/2141",[945,7.364]],["name/2142",[172,34.962]],["parent/2142",[945,7.364]],["name/2143",[552,44.023]],["parent/2143",[945,7.364]],["name/2144",[771,64.89]],["parent/2144",[789,2.603]],["name/2145",[10,27.115]],["parent/2145",[946,8.21]],["name/2146",[773,77.128]],["parent/2146",[947,7.114]],["name/2147",[718,61.034]],["parent/2147",[947,7.114]],["name/2148",[547,36.628]],["parent/2148",[947,7.114]],["name/2149",[205,41.128]],["parent/2149",[947,7.114]],["name/2150",[775,64.89]],["parent/2150",[789,2.603]],["name/2151",[10,27.115]],["parent/2151",[948,8.21]],["name/2152",[172,34.962]],["parent/2152",[949,7.364]],["name/2153",[639,62.777]],["parent/2153",[949,7.364]],["name/2154",[552,44.023]],["parent/2154",[949,7.364]],["name/2155",[778,64.89]],["parent/2155",[789,2.603]],["name/2156",[10,27.115]],["parent/2156",[950,8.21]],["name/2157",[547,36.628]],["parent/2157",[951,7.7]],["name/2158",[205,41.128]],["parent/2158",[951,7.7]],["name/2159",[781,64.89]],["parent/2159",[789,2.603]],["name/2160",[10,27.115]],["parent/2160",[952,8.21]],["name/2161",[172,34.962]],["parent/2161",[953,7.364]],["name/2162",[639,62.777]],["parent/2162",[953,7.364]],["name/2163",[552,44.023]],["parent/2163",[953,7.364]],["name/2164",[954,71.25]],["parent/2164",[789,2.603]],["name/2165",[955,71.25]],["parent/2165",[789,2.603]],["name/2166",[956,73.763]],["parent/2166",[789,2.603]],["name/2167",[784,66.142]],["parent/2167",[789,2.603]],["name/2168",[785,66.142]],["parent/2168",[789,2.603]],["name/2169",[786,67.573]],["parent/2169",[789,2.603]],["name/2170",[543,64.89]],["parent/2170",[789,2.603]],["name/2171",[544,64.89]],["parent/2171",[789,2.603]],["name/2172",[545,64.89]],["parent/2172",[789,2.603]],["name/2173",[549,64.89]],["parent/2173",[789,2.603]],["name/2174",[553,64.89]],["parent/2174",[789,2.603]],["name/2175",[556,64.89]],["parent/2175",[789,2.603]],["name/2176",[559,64.89]],["parent/2176",[789,2.603]],["name/2177",[562,64.89]],["parent/2177",[789,2.603]],["name/2178",[565,64.89]],["parent/2178",[789,2.603]],["name/2179",[568,64.89]],["parent/2179",[789,2.603]],["name/2180",[571,64.89]],["parent/2180",[789,2.603]],["name/2181",[574,64.89]],["parent/2181",[789,2.603]],["name/2182",[577,64.89]],["parent/2182",[789,2.603]],["name/2183",[580,64.89]],["parent/2183",[789,2.603]],["name/2184",[583,64.89]],["parent/2184",[789,2.603]],["name/2185",[586,64.89]],["parent/2185",[789,2.603]],["name/2186",[589,64.89]],["parent/2186",[789,2.603]],["name/2187",[592,64.89]],["parent/2187",[789,2.603]],["name/2188",[596,64.89]],["parent/2188",[789,2.603]],["name/2189",[600,64.89]],["parent/2189",[789,2.603]],["name/2190",[603,64.89]],["parent/2190",[789,2.603]],["name/2191",[606,64.89]],["parent/2191",[789,2.603]],["name/2192",[609,64.89]],["parent/2192",[789,2.603]],["name/2193",[612,64.89]],["parent/2193",[789,2.603]],["name/2194",[615,64.89]],["parent/2194",[789,2.603]],["name/2195",[618,64.89]],["parent/2195",[789,2.603]],["name/2196",[621,64.89]],["parent/2196",[789,2.603]],["name/2197",[624,64.89]],["parent/2197",[789,2.603]],["name/2198",[627,64.89]],["parent/2198",[789,2.603]],["name/2199",[630,64.89]],["parent/2199",[789,2.603]],["name/2200",[633,64.89]],["parent/2200",[789,2.603]],["name/2201",[636,64.89]],["parent/2201",[789,2.603]],["name/2202",[640,64.89]],["parent/2202",[789,2.603]],["name/2203",[643,64.89]],["parent/2203",[789,2.603]],["name/2204",[646,64.89]],["parent/2204",[789,2.603]],["name/2205",[651,64.89]],["parent/2205",[789,2.603]],["name/2206",[654,64.89]],["parent/2206",[789,2.603]],["name/2207",[657,64.89]],["parent/2207",[789,2.603]],["name/2208",[661,64.89]],["parent/2208",[789,2.603]],["name/2209",[664,64.89]],["parent/2209",[789,2.603]],["name/2210",[668,64.89]],["parent/2210",[789,2.603]],["name/2211",[671,64.89]],["parent/2211",[789,2.603]],["name/2212",[674,64.89]],["parent/2212",[789,2.603]],["name/2213",[677,64.89]],["parent/2213",[789,2.603]],["name/2214",[681,64.89]],["parent/2214",[789,2.603]],["name/2215",[684,64.89]],["parent/2215",[789,2.603]],["name/2216",[688,64.89]],["parent/2216",[789,2.603]],["name/2217",[691,64.89]],["parent/2217",[789,2.603]],["name/2218",[694,64.89]],["parent/2218",[789,2.603]],["name/2219",[699,64.89]],["parent/2219",[789,2.603]],["name/2220",[702,64.89]],["parent/2220",[789,2.603]],["name/2221",[705,64.89]],["parent/2221",[789,2.603]],["name/2222",[708,64.89]],["parent/2222",[789,2.603]],["name/2223",[712,64.89]],["parent/2223",[789,2.603]],["name/2224",[715,64.89]],["parent/2224",[789,2.603]],["name/2225",[719,64.89]],["parent/2225",[789,2.603]],["name/2226",[722,64.89]],["parent/2226",[789,2.603]],["name/2227",[726,64.89]],["parent/2227",[789,2.603]],["name/2228",[729,64.89]],["parent/2228",[789,2.603]],["name/2229",[732,64.89]],["parent/2229",[789,2.603]],["name/2230",[735,64.89]],["parent/2230",[789,2.603]],["name/2231",[738,64.89]],["parent/2231",[789,2.603]],["name/2232",[741,64.89]],["parent/2232",[789,2.603]],["name/2233",[744,64.89]],["parent/2233",[789,2.603]],["name/2234",[747,64.89]],["parent/2234",[789,2.603]],["name/2235",[750,64.89]],["parent/2235",[789,2.603]],["name/2236",[753,64.89]],["parent/2236",[789,2.603]],["name/2237",[756,64.89]],["parent/2237",[789,2.603]],["name/2238",[759,64.89]],["parent/2238",[789,2.603]],["name/2239",[762,64.89]],["parent/2239",[789,2.603]],["name/2240",[765,64.89]],["parent/2240",[789,2.603]],["name/2241",[768,64.89]],["parent/2241",[789,2.603]],["name/2242",[771,64.89]],["parent/2242",[789,2.603]],["name/2243",[775,64.89]],["parent/2243",[789,2.603]],["name/2244",[778,64.89]],["parent/2244",[789,2.603]],["name/2245",[781,64.89]],["parent/2245",[789,2.603]],["name/2246",[954,71.25]],["parent/2246",[789,2.603]],["name/2247",[955,71.25]],["parent/2247",[789,2.603]],["name/2248",[956,73.763]],["parent/2248",[789,2.603]],["name/2249",[784,66.142]],["parent/2249",[789,2.603]],["name/2250",[785,66.142]],["parent/2250",[789,2.603]],["name/2251",[786,67.573]],["parent/2251",[789,2.603]],["name/2252",[789,26.069]],["parent/2252",[789,2.603]],["name/2253",[43,47.475]],["parent/2253",[789,2.603]],["name/2254",[543,64.89]],["parent/2254",[789,2.603]],["name/2255",[544,64.89]],["parent/2255",[789,2.603]],["name/2256",[545,64.89]],["parent/2256",[789,2.603]],["name/2257",[549,64.89]],["parent/2257",[789,2.603]],["name/2258",[553,64.89]],["parent/2258",[789,2.603]],["name/2259",[556,64.89]],["parent/2259",[789,2.603]],["name/2260",[559,64.89]],["parent/2260",[789,2.603]],["name/2261",[562,64.89]],["parent/2261",[789,2.603]],["name/2262",[565,64.89]],["parent/2262",[789,2.603]],["name/2263",[568,64.89]],["parent/2263",[789,2.603]],["name/2264",[571,64.89]],["parent/2264",[789,2.603]],["name/2265",[574,64.89]],["parent/2265",[789,2.603]],["name/2266",[577,64.89]],["parent/2266",[789,2.603]],["name/2267",[580,64.89]],["parent/2267",[789,2.603]],["name/2268",[583,64.89]],["parent/2268",[789,2.603]],["name/2269",[586,64.89]],["parent/2269",[789,2.603]],["name/2270",[589,64.89]],["parent/2270",[789,2.603]],["name/2271",[592,64.89]],["parent/2271",[789,2.603]],["name/2272",[596,64.89]],["parent/2272",[789,2.603]],["name/2273",[600,64.89]],["parent/2273",[789,2.603]],["name/2274",[603,64.89]],["parent/2274",[789,2.603]],["name/2275",[606,64.89]],["parent/2275",[789,2.603]],["name/2276",[609,64.89]],["parent/2276",[789,2.603]],["name/2277",[612,64.89]],["parent/2277",[789,2.603]],["name/2278",[615,64.89]],["parent/2278",[789,2.603]],["name/2279",[618,64.89]],["parent/2279",[789,2.603]],["name/2280",[621,64.89]],["parent/2280",[789,2.603]],["name/2281",[624,64.89]],["parent/2281",[789,2.603]],["name/2282",[627,64.89]],["parent/2282",[789,2.603]],["name/2283",[630,64.89]],["parent/2283",[789,2.603]],["name/2284",[633,64.89]],["parent/2284",[789,2.603]],["name/2285",[636,64.89]],["parent/2285",[789,2.603]],["name/2286",[640,64.89]],["parent/2286",[789,2.603]],["name/2287",[643,64.89]],["parent/2287",[789,2.603]],["name/2288",[646,64.89]],["parent/2288",[789,2.603]],["name/2289",[651,64.89]],["parent/2289",[789,2.603]],["name/2290",[654,64.89]],["parent/2290",[789,2.603]],["name/2291",[657,64.89]],["parent/2291",[789,2.603]],["name/2292",[661,64.89]],["parent/2292",[789,2.603]],["name/2293",[664,64.89]],["parent/2293",[789,2.603]],["name/2294",[668,64.89]],["parent/2294",[789,2.603]],["name/2295",[671,64.89]],["parent/2295",[789,2.603]],["name/2296",[674,64.89]],["parent/2296",[789,2.603]],["name/2297",[677,64.89]],["parent/2297",[789,2.603]],["name/2298",[681,64.89]],["parent/2298",[789,2.603]],["name/2299",[684,64.89]],["parent/2299",[789,2.603]],["name/2300",[688,64.89]],["parent/2300",[789,2.603]],["name/2301",[691,64.89]],["parent/2301",[789,2.603]],["name/2302",[694,64.89]],["parent/2302",[789,2.603]],["name/2303",[699,64.89]],["parent/2303",[789,2.603]],["name/2304",[702,64.89]],["parent/2304",[789,2.603]],["name/2305",[705,64.89]],["parent/2305",[789,2.603]],["name/2306",[708,64.89]],["parent/2306",[789,2.603]],["name/2307",[712,64.89]],["parent/2307",[789,2.603]],["name/2308",[715,64.89]],["parent/2308",[789,2.603]],["name/2309",[719,64.89]],["parent/2309",[789,2.603]],["name/2310",[722,64.89]],["parent/2310",[789,2.603]],["name/2311",[726,64.89]],["parent/2311",[789,2.603]],["name/2312",[729,64.89]],["parent/2312",[789,2.603]],["name/2313",[732,64.89]],["parent/2313",[789,2.603]],["name/2314",[735,64.89]],["parent/2314",[789,2.603]],["name/2315",[738,64.89]],["parent/2315",[789,2.603]],["name/2316",[741,64.89]],["parent/2316",[789,2.603]],["name/2317",[744,64.89]],["parent/2317",[789,2.603]],["name/2318",[747,64.89]],["parent/2318",[789,2.603]],["name/2319",[750,64.89]],["parent/2319",[789,2.603]],["name/2320",[753,64.89]],["parent/2320",[789,2.603]],["name/2321",[756,64.89]],["parent/2321",[789,2.603]],["name/2322",[759,64.89]],["parent/2322",[789,2.603]],["name/2323",[762,64.89]],["parent/2323",[789,2.603]],["name/2324",[765,64.89]],["parent/2324",[789,2.603]],["name/2325",[768,64.89]],["parent/2325",[789,2.603]],["name/2326",[771,64.89]],["parent/2326",[789,2.603]],["name/2327",[775,64.89]],["parent/2327",[789,2.603]],["name/2328",[778,64.89]],["parent/2328",[789,2.603]],["name/2329",[781,64.89]],["parent/2329",[789,2.603]],["name/2330",[954,71.25]],["parent/2330",[789,2.603]],["name/2331",[955,71.25]],["parent/2331",[789,2.603]],["name/2332",[956,73.763]],["parent/2332",[789,2.603]],["name/2333",[784,66.142]],["parent/2333",[789,2.603]],["name/2334",[785,66.142]],["parent/2334",[789,2.603]],["name/2335",[786,67.573]],["parent/2335",[789,2.603]],["name/2336",[789,26.069]],["parent/2336",[789,2.603]],["name/2337",[448,58.257]],["parent/2337",[789,2.603]],["name/2338",[449,58.257]],["parent/2338",[789,2.603]],["name/2339",[450,58.257]],["parent/2339",[789,2.603]],["name/2340",[452,64.89]],["parent/2340",[789,2.603]],["name/2341",[794,61.034]],["parent/2341",[789,2.603]],["name/2342",[429,58.257]],["parent/2342",[789,2.603]],["name/2343",[439,58.257]],["parent/2343",[789,2.603]],["name/2344",[440,58.257]],["parent/2344",[789,2.603]],["name/2345",[441,58.257]],["parent/2345",[789,2.603]],["name/2346",[430,58.257]],["parent/2346",[789,2.603]],["name/2347",[431,58.257]],["parent/2347",[789,2.603]],["name/2348",[453,64.89]],["parent/2348",[789,2.603]],["name/2349",[454,64.89]],["parent/2349",[789,2.603]],["name/2350",[455,45.264]],["parent/2350",[789,2.603]],["name/2351",[796,64.89]],["parent/2351",[789,2.603]],["name/2352",[793,61.034]],["parent/2352",[789,2.603]],["name/2353",[424,58.257]],["parent/2353",[789,2.603]],["name/2354",[795,61.034]],["parent/2354",[789,2.603]],["name/2355",[9,48.796]],["parent/2355",[789,2.603]],["name/2356",[446,58.257]],["parent/2356",[789,2.603]],["name/2357",[434,58.257]],["parent/2357",[789,2.603]],["name/2358",[451,61.034]],["parent/2358",[789,2.603]],["name/2359",[427,58.257]],["parent/2359",[789,2.603]],["name/2360",[791,61.034]],["parent/2360",[789,2.603]],["name/2361",[792,61.034]],["parent/2361",[789,2.603]],["name/2362",[790,61.034]],["parent/2362",[789,2.603]],["name/2363",[426,58.257]],["parent/2363",[789,2.603]],["name/2364",[456,61.034]],["parent/2364",[789,2.603]],["name/2365",[457,61.034]],["parent/2365",[789,2.603]],["name/2366",[458,61.034]],["parent/2366",[789,2.603]],["name/2367",[798,64.89]],["parent/2367",[789,2.603]],["name/2368",[799,64.89]],["parent/2368",[789,2.603]],["name/2369",[797,64.89]],["parent/2369",[789,2.603]],["name/2370",[432,58.257]],["parent/2370",[789,2.603]],["name/2371",[459,64.89]],["parent/2371",[789,2.603]],["name/2372",[460,64.89]],["parent/2372",[789,2.603]],["name/2373",[428,58.257]],["parent/2373",[789,2.603]],["name/2374",[447,58.257]],["parent/2374",[789,2.603]],["name/2375",[444,58.257]],["parent/2375",[789,2.603]],["name/2376",[445,58.257]],["parent/2376",[789,2.603]],["name/2377",[442,58.257]],["parent/2377",[789,2.603]],["name/2378",[443,58.257]],["parent/2378",[789,2.603]],["name/2379",[437,58.257]],["parent/2379",[789,2.603]],["name/2380",[438,58.257]],["parent/2380",[789,2.603]],["name/2381",[433,58.257]],["parent/2381",[789,2.603]],["name/2382",[436,56.087]],["parent/2382",[789,2.603]],["name/2383",[461,64.89]],["parent/2383",[789,2.603]],["name/2384",[435,56.087]],["parent/2384",[789,2.603]],["name/2385",[425,57.669]],["parent/2385",[789,2.603]],["name/2386",[462,61.034]],["parent/2386",[789,2.603]],["name/2387",[463,61.034]],["parent/2387",[789,2.603]],["name/2388",[464,61.034]],["parent/2388",[789,2.603]],["name/2389",[957,82.236]],["parent/2389",[789,2.603]],["name/2390",[954,71.25]],["parent/2390",[958,3.752]],["name/2391",[955,71.25]],["parent/2391",[958,3.752]],["name/2392",[545,64.89]],["parent/2392",[958,3.752]],["name/2393",[549,64.89]],["parent/2393",[958,3.752]],["name/2394",[553,64.89]],["parent/2394",[958,3.752]],["name/2395",[556,64.89]],["parent/2395",[958,3.752]],["name/2396",[559,64.89]],["parent/2396",[958,3.752]],["name/2397",[562,64.89]],["parent/2397",[958,3.752]],["name/2398",[565,64.89]],["parent/2398",[958,3.752]],["name/2399",[568,64.89]],["parent/2399",[958,3.752]],["name/2400",[571,64.89]],["parent/2400",[958,3.752]],["name/2401",[574,64.89]],["parent/2401",[958,3.752]],["name/2402",[577,64.89]],["parent/2402",[958,3.752]],["name/2403",[580,64.89]],["parent/2403",[958,3.752]],["name/2404",[583,64.89]],["parent/2404",[958,3.752]],["name/2405",[586,64.89]],["parent/2405",[958,3.752]],["name/2406",[589,64.89]],["parent/2406",[958,3.752]],["name/2407",[592,64.89]],["parent/2407",[958,3.752]],["name/2408",[543,64.89]],["parent/2408",[958,3.752]],["name/2409",[596,64.89]],["parent/2409",[958,3.752]],["name/2410",[600,64.89]],["parent/2410",[958,3.752]],["name/2411",[603,64.89]],["parent/2411",[958,3.752]],["name/2412",[606,64.89]],["parent/2412",[958,3.752]],["name/2413",[609,64.89]],["parent/2413",[958,3.752]],["name/2414",[612,64.89]],["parent/2414",[958,3.752]],["name/2415",[615,64.89]],["parent/2415",[958,3.752]],["name/2416",[618,64.89]],["parent/2416",[958,3.752]],["name/2417",[621,64.89]],["parent/2417",[958,3.752]],["name/2418",[624,64.89]],["parent/2418",[958,3.752]],["name/2419",[627,64.89]],["parent/2419",[958,3.752]],["name/2420",[630,64.89]],["parent/2420",[958,3.752]],["name/2421",[633,64.89]],["parent/2421",[958,3.752]],["name/2422",[636,64.89]],["parent/2422",[958,3.752]],["name/2423",[640,64.89]],["parent/2423",[958,3.752]],["name/2424",[643,64.89]],["parent/2424",[958,3.752]],["name/2425",[544,64.89]],["parent/2425",[958,3.752]],["name/2426",[646,64.89]],["parent/2426",[958,3.752]],["name/2427",[651,64.89]],["parent/2427",[958,3.752]],["name/2428",[654,64.89]],["parent/2428",[958,3.752]],["name/2429",[657,64.89]],["parent/2429",[958,3.752]],["name/2430",[661,64.89]],["parent/2430",[958,3.752]],["name/2431",[664,64.89]],["parent/2431",[958,3.752]],["name/2432",[668,64.89]],["parent/2432",[958,3.752]],["name/2433",[671,64.89]],["parent/2433",[958,3.752]],["name/2434",[674,64.89]],["parent/2434",[958,3.752]],["name/2435",[677,64.89]],["parent/2435",[958,3.752]],["name/2436",[681,64.89]],["parent/2436",[958,3.752]],["name/2437",[684,64.89]],["parent/2437",[958,3.752]],["name/2438",[688,64.89]],["parent/2438",[958,3.752]],["name/2439",[691,64.89]],["parent/2439",[958,3.752]],["name/2440",[694,64.89]],["parent/2440",[958,3.752]],["name/2441",[699,64.89]],["parent/2441",[958,3.752]],["name/2442",[702,64.89]],["parent/2442",[958,3.752]],["name/2443",[705,64.89]],["parent/2443",[958,3.752]],["name/2444",[708,64.89]],["parent/2444",[958,3.752]],["name/2445",[712,64.89]],["parent/2445",[958,3.752]],["name/2446",[715,64.89]],["parent/2446",[958,3.752]],["name/2447",[719,64.89]],["parent/2447",[958,3.752]],["name/2448",[722,64.89]],["parent/2448",[958,3.752]],["name/2449",[726,64.89]],["parent/2449",[958,3.752]],["name/2450",[729,64.89]],["parent/2450",[958,3.752]],["name/2451",[732,64.89]],["parent/2451",[958,3.752]],["name/2452",[735,64.89]],["parent/2452",[958,3.752]],["name/2453",[738,64.89]],["parent/2453",[958,3.752]],["name/2454",[741,64.89]],["parent/2454",[958,3.752]],["name/2455",[744,64.89]],["parent/2455",[958,3.752]],["name/2456",[747,64.89]],["parent/2456",[958,3.752]],["name/2457",[750,64.89]],["parent/2457",[958,3.752]],["name/2458",[753,64.89]],["parent/2458",[958,3.752]],["name/2459",[756,64.89]],["parent/2459",[958,3.752]],["name/2460",[759,64.89]],["parent/2460",[958,3.752]],["name/2461",[762,64.89]],["parent/2461",[958,3.752]],["name/2462",[765,64.89]],["parent/2462",[958,3.752]],["name/2463",[768,64.89]],["parent/2463",[958,3.752]],["name/2464",[771,64.89]],["parent/2464",[958,3.752]],["name/2465",[775,64.89]],["parent/2465",[958,3.752]],["name/2466",[778,64.89]],["parent/2466",[958,3.752]],["name/2467",[781,64.89]],["parent/2467",[958,3.752]],["name/2468",[448,58.257]],["parent/2468",[958,3.752]],["name/2469",[449,58.257]],["parent/2469",[958,3.752]],["name/2470",[450,58.257]],["parent/2470",[958,3.752]],["name/2471",[452,64.89]],["parent/2471",[958,3.752]],["name/2472",[794,61.034]],["parent/2472",[958,3.752]],["name/2473",[429,58.257]],["parent/2473",[958,3.752]],["name/2474",[439,58.257]],["parent/2474",[958,3.752]],["name/2475",[440,58.257]],["parent/2475",[958,3.752]],["name/2476",[441,58.257]],["parent/2476",[958,3.752]],["name/2477",[430,58.257]],["parent/2477",[958,3.752]],["name/2478",[431,58.257]],["parent/2478",[958,3.752]],["name/2479",[453,64.89]],["parent/2479",[958,3.752]],["name/2480",[454,64.89]],["parent/2480",[958,3.752]],["name/2481",[455,45.264]],["parent/2481",[958,3.752]],["name/2482",[796,64.89]],["parent/2482",[958,3.752]],["name/2483",[793,61.034]],["parent/2483",[958,3.752]],["name/2484",[424,58.257]],["parent/2484",[958,3.752]],["name/2485",[795,61.034]],["parent/2485",[958,3.752]],["name/2486",[9,48.796]],["parent/2486",[958,3.752]],["name/2487",[446,58.257]],["parent/2487",[958,3.752]],["name/2488",[434,58.257]],["parent/2488",[958,3.752]],["name/2489",[451,61.034]],["parent/2489",[958,3.752]],["name/2490",[427,58.257]],["parent/2490",[958,3.752]],["name/2491",[791,61.034]],["parent/2491",[958,3.752]],["name/2492",[792,61.034]],["parent/2492",[958,3.752]],["name/2493",[790,61.034]],["parent/2493",[958,3.752]],["name/2494",[426,58.257]],["parent/2494",[958,3.752]],["name/2495",[456,61.034]],["parent/2495",[958,3.752]],["name/2496",[457,61.034]],["parent/2496",[958,3.752]],["name/2497",[458,61.034]],["parent/2497",[958,3.752]],["name/2498",[798,64.89]],["parent/2498",[958,3.752]],["name/2499",[799,64.89]],["parent/2499",[958,3.752]],["name/2500",[797,64.89]],["parent/2500",[958,3.752]],["name/2501",[432,58.257]],["parent/2501",[958,3.752]],["name/2502",[459,64.89]],["parent/2502",[958,3.752]],["name/2503",[460,64.89]],["parent/2503",[958,3.752]],["name/2504",[428,58.257]],["parent/2504",[958,3.752]],["name/2505",[447,58.257]],["parent/2505",[958,3.752]],["name/2506",[444,58.257]],["parent/2506",[958,3.752]],["name/2507",[445,58.257]],["parent/2507",[958,3.752]],["name/2508",[442,58.257]],["parent/2508",[958,3.752]],["name/2509",[443,58.257]],["parent/2509",[958,3.752]],["name/2510",[437,58.257]],["parent/2510",[958,3.752]],["name/2511",[438,58.257]],["parent/2511",[958,3.752]],["name/2512",[433,58.257]],["parent/2512",[958,3.752]],["name/2513",[436,56.087]],["parent/2513",[958,3.752]],["name/2514",[461,64.89]],["parent/2514",[958,3.752]],["name/2515",[435,56.087]],["parent/2515",[958,3.752]],["name/2516",[425,57.669]],["parent/2516",[958,3.752]],["name/2517",[462,61.034]],["parent/2517",[958,3.752]],["name/2518",[463,61.034]],["parent/2518",[958,3.752]],["name/2519",[464,61.034]],["parent/2519",[958,3.752]],["name/2520",[959,50.881]],["parent/2520",[]],["name/2521",[43,47.475]],["parent/2521",[959,5.08]],["name/2522",[455,45.264]],["parent/2522",[959,5.08]],["name/2523",[960,71.25]],["parent/2523",[959,5.08]],["name/2524",[961,71.25]],["parent/2524",[959,5.08]],["name/2525",[455,45.264]],["parent/2525",[959,5.08]],["name/2526",[960,71.25]],["parent/2526",[959,5.08]],["name/2527",[961,71.25]],["parent/2527",[959,5.08]],["name/2528",[959,50.881]],["parent/2528",[959,5.08]],["name/2529",[17,54.721]],["parent/2529",[962,6.746]],["name/2530",[43,47.475]],["parent/2530",[962,6.746]],["name/2531",[98,58.257]],["parent/2531",[962,6.746]],["name/2532",[963,73.763]],["parent/2532",[964,8.21]],["name/2533",[30,56.587]],["parent/2533",[962,6.746]],["name/2534",[125,58.257]],["parent/2534",[962,6.746]],["name/2535",[10,27.115]],["parent/2535",[965,8.21]],["name/2536",[963,73.763]],["parent/2536",[966,7.7]],["name/2537",[967,82.236]],["parent/2537",[966,7.7]],["name/2538",[963,73.763]],["parent/2538",[962,6.746]],["name/2539",[968,71.25]],["parent/2539",[959,5.08]],["name/2540",[10,27.115]],["parent/2540",[969,8.21]],["name/2541",[547,36.628]],["parent/2541",[970,8.21]],["name/2542",[971,71.25]],["parent/2542",[959,5.08]],["name/2543",[10,27.115]],["parent/2543",[972,8.21]],["name/2544",[172,34.962]],["parent/2544",[973,8.21]],["name/2545",[974,71.25]],["parent/2545",[959,5.08]],["name/2546",[975,71.25]],["parent/2546",[959,5.08]],["name/2547",[976,73.763]],["parent/2547",[959,5.08]],["name/2548",[968,71.25]],["parent/2548",[959,5.08]],["name/2549",[971,71.25]],["parent/2549",[959,5.08]],["name/2550",[974,71.25]],["parent/2550",[959,5.08]],["name/2551",[975,71.25]],["parent/2551",[959,5.08]],["name/2552",[976,73.763]],["parent/2552",[959,5.08]],["name/2553",[959,50.881]],["parent/2553",[959,5.08]],["name/2554",[43,47.475]],["parent/2554",[959,5.08]],["name/2555",[968,71.25]],["parent/2555",[959,5.08]],["name/2556",[971,71.25]],["parent/2556",[959,5.08]],["name/2557",[974,71.25]],["parent/2557",[959,5.08]],["name/2558",[975,71.25]],["parent/2558",[959,5.08]],["name/2559",[976,73.763]],["parent/2559",[959,5.08]],["name/2560",[959,50.881]],["parent/2560",[959,5.08]],["name/2561",[455,45.264]],["parent/2561",[959,5.08]],["name/2562",[960,71.25]],["parent/2562",[959,5.08]],["name/2563",[961,71.25]],["parent/2563",[959,5.08]],["name/2564",[977,82.236]],["parent/2564",[959,5.08]],["name/2565",[974,71.25]],["parent/2565",[978,6.604]],["name/2566",[975,71.25]],["parent/2566",[978,6.604]],["name/2567",[968,71.25]],["parent/2567",[978,6.604]],["name/2568",[971,71.25]],["parent/2568",[978,6.604]],["name/2569",[455,45.264]],["parent/2569",[978,6.604]],["name/2570",[960,71.25]],["parent/2570",[978,6.604]],["name/2571",[961,71.25]],["parent/2571",[978,6.604]],["name/2572",[979,41.806]],["parent/2572",[]],["name/2573",[43,47.475]],["parent/2573",[979,4.174]],["name/2574",[980,71.25]],["parent/2574",[979,4.174]],["name/2575",[981,71.25]],["parent/2575",[979,4.174]],["name/2576",[982,71.25]],["parent/2576",[979,4.174]],["name/2577",[983,71.25]],["parent/2577",[979,4.174]],["name/2578",[984,71.25]],["parent/2578",[979,4.174]],["name/2579",[985,71.25]],["parent/2579",[979,4.174]],["name/2580",[986,71.25]],["parent/2580",[979,4.174]],["name/2581",[987,71.25]],["parent/2581",[979,4.174]],["name/2582",[988,71.25]],["parent/2582",[979,4.174]],["name/2583",[989,71.25]],["parent/2583",[979,4.174]],["name/2584",[990,71.25]],["parent/2584",[979,4.174]],["name/2585",[991,71.25]],["parent/2585",[979,4.174]],["name/2586",[992,71.25]],["parent/2586",[979,4.174]],["name/2587",[455,45.264]],["parent/2587",[979,4.174]],["name/2588",[9,48.796]],["parent/2588",[979,4.174]],["name/2589",[980,71.25]],["parent/2589",[979,4.174]],["name/2590",[981,71.25]],["parent/2590",[979,4.174]],["name/2591",[983,71.25]],["parent/2591",[979,4.174]],["name/2592",[984,71.25]],["parent/2592",[979,4.174]],["name/2593",[985,71.25]],["parent/2593",[979,4.174]],["name/2594",[987,71.25]],["parent/2594",[979,4.174]],["name/2595",[990,71.25]],["parent/2595",[979,4.174]],["name/2596",[988,71.25]],["parent/2596",[979,4.174]],["name/2597",[986,71.25]],["parent/2597",[979,4.174]],["name/2598",[991,71.25]],["parent/2598",[979,4.174]],["name/2599",[989,71.25]],["parent/2599",[979,4.174]],["name/2600",[992,71.25]],["parent/2600",[979,4.174]],["name/2601",[455,45.264]],["parent/2601",[979,4.174]],["name/2602",[9,48.796]],["parent/2602",[979,4.174]],["name/2603",[982,71.25]],["parent/2603",[979,4.174]],["name/2604",[979,41.806]],["parent/2604",[979,4.174]],["name/2605",[17,54.721]],["parent/2605",[993,6.479]],["name/2606",[43,47.475]],["parent/2606",[993,6.479]],["name/2607",[98,58.257]],["parent/2607",[993,6.479]],["name/2608",[994,73.763]],["parent/2608",[995,7.364]],["name/2609",[996,73.763]],["parent/2609",[995,7.364]],["name/2610",[997,73.763]],["parent/2610",[995,7.364]],["name/2611",[30,56.587]],["parent/2611",[993,6.479]],["name/2612",[125,58.257]],["parent/2612",[993,6.479]],["name/2613",[10,27.115]],["parent/2613",[998,8.21]],["name/2614",[994,73.763]],["parent/2614",[999,6.746]],["name/2615",[1000,82.236]],["parent/2615",[999,6.746]],["name/2616",[996,73.763]],["parent/2616",[999,6.746]],["name/2617",[1001,82.236]],["parent/2617",[999,6.746]],["name/2618",[997,73.763]],["parent/2618",[999,6.746]],["name/2619",[1002,82.236]],["parent/2619",[999,6.746]],["name/2620",[994,73.763]],["parent/2620",[993,6.479]],["name/2621",[996,73.763]],["parent/2621",[993,6.479]],["name/2622",[997,73.763]],["parent/2622",[993,6.479]],["name/2623",[1003,71.25]],["parent/2623",[979,4.174]],["name/2624",[1004,71.25]],["parent/2624",[979,4.174]],["name/2625",[10,27.115]],["parent/2625",[1005,8.21]],["name/2626",[547,36.628]],["parent/2626",[1006,7.114]],["name/2627",[205,41.128]],["parent/2627",[1006,7.114]],["name/2628",[1007,82.236]],["parent/2628",[1006,7.114]],["name/2629",[1008,63.778]],["parent/2629",[1006,7.114]],["name/2630",[1009,71.25]],["parent/2630",[979,4.174]],["name/2631",[10,27.115]],["parent/2631",[1010,8.21]],["name/2632",[172,34.962]],["parent/2632",[1011,8.21]],["name/2633",[1012,71.25]],["parent/2633",[979,4.174]],["name/2634",[10,27.115]],["parent/2634",[1013,8.21]],["name/2635",[547,36.628]],["parent/2635",[1014,7.7]],["name/2636",[205,41.128]],["parent/2636",[1014,7.7]],["name/2637",[1015,71.25]],["parent/2637",[979,4.174]],["name/2638",[10,27.115]],["parent/2638",[1016,8.21]],["name/2639",[172,34.962]],["parent/2639",[1017,8.21]],["name/2640",[1018,71.25]],["parent/2640",[979,4.174]],["name/2641",[10,27.115]],["parent/2641",[1019,8.21]],["name/2642",[547,36.628]],["parent/2642",[1020,7.7]],["name/2643",[205,41.128]],["parent/2643",[1020,7.7]],["name/2644",[1021,71.25]],["parent/2644",[979,4.174]],["name/2645",[10,27.115]],["parent/2645",[1022,8.21]],["name/2646",[172,34.962]],["parent/2646",[1023,8.21]],["name/2647",[1024,71.25]],["parent/2647",[979,4.174]],["name/2648",[1025,71.25]],["parent/2648",[979,4.174]],["name/2649",[1026,73.763]],["parent/2649",[979,4.174]],["name/2650",[1003,71.25]],["parent/2650",[979,4.174]],["name/2651",[1004,71.25]],["parent/2651",[979,4.174]],["name/2652",[1009,71.25]],["parent/2652",[979,4.174]],["name/2653",[1012,71.25]],["parent/2653",[979,4.174]],["name/2654",[1015,71.25]],["parent/2654",[979,4.174]],["name/2655",[1018,71.25]],["parent/2655",[979,4.174]],["name/2656",[1021,71.25]],["parent/2656",[979,4.174]],["name/2657",[1024,71.25]],["parent/2657",[979,4.174]],["name/2658",[1025,71.25]],["parent/2658",[979,4.174]],["name/2659",[1026,73.763]],["parent/2659",[979,4.174]],["name/2660",[979,41.806]],["parent/2660",[979,4.174]],["name/2661",[43,47.475]],["parent/2661",[979,4.174]],["name/2662",[1003,71.25]],["parent/2662",[979,4.174]],["name/2663",[1004,71.25]],["parent/2663",[979,4.174]],["name/2664",[1009,71.25]],["parent/2664",[979,4.174]],["name/2665",[1012,71.25]],["parent/2665",[979,4.174]],["name/2666",[1015,71.25]],["parent/2666",[979,4.174]],["name/2667",[1018,71.25]],["parent/2667",[979,4.174]],["name/2668",[1021,71.25]],["parent/2668",[979,4.174]],["name/2669",[1024,71.25]],["parent/2669",[979,4.174]],["name/2670",[1025,71.25]],["parent/2670",[979,4.174]],["name/2671",[1026,73.763]],["parent/2671",[979,4.174]],["name/2672",[979,41.806]],["parent/2672",[979,4.174]],["name/2673",[980,71.25]],["parent/2673",[979,4.174]],["name/2674",[981,71.25]],["parent/2674",[979,4.174]],["name/2675",[983,71.25]],["parent/2675",[979,4.174]],["name/2676",[984,71.25]],["parent/2676",[979,4.174]],["name/2677",[985,71.25]],["parent/2677",[979,4.174]],["name/2678",[987,71.25]],["parent/2678",[979,4.174]],["name/2679",[990,71.25]],["parent/2679",[979,4.174]],["name/2680",[988,71.25]],["parent/2680",[979,4.174]],["name/2681",[986,71.25]],["parent/2681",[979,4.174]],["name/2682",[991,71.25]],["parent/2682",[979,4.174]],["name/2683",[989,71.25]],["parent/2683",[979,4.174]],["name/2684",[992,71.25]],["parent/2684",[979,4.174]],["name/2685",[455,45.264]],["parent/2685",[979,4.174]],["name/2686",[9,48.796]],["parent/2686",[979,4.174]],["name/2687",[982,71.25]],["parent/2687",[979,4.174]],["name/2688",[1027,82.236]],["parent/2688",[979,4.174]],["name/2689",[1024,71.25]],["parent/2689",[1028,5.422]],["name/2690",[1025,71.25]],["parent/2690",[1028,5.422]],["name/2691",[1003,71.25]],["parent/2691",[1028,5.422]],["name/2692",[1004,71.25]],["parent/2692",[1028,5.422]],["name/2693",[1009,71.25]],["parent/2693",[1028,5.422]],["name/2694",[1012,71.25]],["parent/2694",[1028,5.422]],["name/2695",[1015,71.25]],["parent/2695",[1028,5.422]],["name/2696",[1018,71.25]],["parent/2696",[1028,5.422]],["name/2697",[1021,71.25]],["parent/2697",[1028,5.422]],["name/2698",[980,71.25]],["parent/2698",[1028,5.422]],["name/2699",[981,71.25]],["parent/2699",[1028,5.422]],["name/2700",[983,71.25]],["parent/2700",[1028,5.422]],["name/2701",[984,71.25]],["parent/2701",[1028,5.422]],["name/2702",[985,71.25]],["parent/2702",[1028,5.422]],["name/2703",[987,71.25]],["parent/2703",[1028,5.422]],["name/2704",[990,71.25]],["parent/2704",[1028,5.422]],["name/2705",[988,71.25]],["parent/2705",[1028,5.422]],["name/2706",[986,71.25]],["parent/2706",[1028,5.422]],["name/2707",[991,71.25]],["parent/2707",[1028,5.422]],["name/2708",[989,71.25]],["parent/2708",[1028,5.422]],["name/2709",[992,71.25]],["parent/2709",[1028,5.422]],["name/2710",[455,45.264]],["parent/2710",[1028,5.422]],["name/2711",[9,48.796]],["parent/2711",[1028,5.422]],["name/2712",[982,71.25]],["parent/2712",[1028,5.422]],["name/2713",[1029,44.939]],["parent/2713",[]],["name/2714",[43,47.475]],["parent/2714",[1029,4.487]],["name/2715",[455,45.264]],["parent/2715",[1029,4.487]],["name/2716",[1030,71.25]],["parent/2716",[1029,4.487]],["name/2717",[1029,44.939]],["parent/2717",[1029,4.487]],["name/2718",[455,45.264]],["parent/2718",[1029,4.487]],["name/2719",[1029,44.939]],["parent/2719",[1029,4.487]],["name/2720",[1030,71.25]],["parent/2720",[1029,4.487]],["name/2721",[1031,73.763]],["parent/2721",[1029,4.487]],["name/2722",[17,54.721]],["parent/2722",[1032,6.368]],["name/2723",[43,47.475]],["parent/2723",[1032,6.368]],["name/2724",[98,58.257]],["parent/2724",[1032,6.368]],["name/2725",[1033,73.763]],["parent/2725",[1034,7.114]],["name/2726",[1035,73.763]],["parent/2726",[1034,7.114]],["name/2727",[1036,73.763]],["parent/2727",[1034,7.114]],["name/2728",[1037,73.763]],["parent/2728",[1034,7.114]],["name/2729",[30,56.587]],["parent/2729",[1032,6.368]],["name/2730",[125,58.257]],["parent/2730",[1032,6.368]],["name/2731",[10,27.115]],["parent/2731",[1038,8.21]],["name/2732",[1033,73.763]],["parent/2732",[1039,6.479]],["name/2733",[1040,82.236]],["parent/2733",[1039,6.479]],["name/2734",[1035,73.763]],["parent/2734",[1039,6.479]],["name/2735",[1041,82.236]],["parent/2735",[1039,6.479]],["name/2736",[1036,73.763]],["parent/2736",[1039,6.479]],["name/2737",[1042,82.236]],["parent/2737",[1039,6.479]],["name/2738",[1037,73.763]],["parent/2738",[1039,6.479]],["name/2739",[1043,82.236]],["parent/2739",[1039,6.479]],["name/2740",[1033,73.763]],["parent/2740",[1032,6.368]],["name/2741",[1035,73.763]],["parent/2741",[1032,6.368]],["name/2742",[1036,73.763]],["parent/2742",[1032,6.368]],["name/2743",[1037,73.763]],["parent/2743",[1032,6.368]],["name/2744",[1044,71.25]],["parent/2744",[1029,4.487]],["name/2745",[10,27.115]],["parent/2745",[1045,8.21]],["name/2746",[547,36.628]],["parent/2746",[1046,7.7]],["name/2747",[1047,77.128]],["parent/2747",[1046,7.7]],["name/2748",[1048,71.25]],["parent/2748",[1029,4.487]],["name/2749",[10,27.115]],["parent/2749",[1049,8.21]],["name/2750",[182,61.867]],["parent/2750",[1050,7.7]],["name/2751",[172,34.962]],["parent/2751",[1050,7.7]],["name/2752",[1051,71.25]],["parent/2752",[1029,4.487]],["name/2753",[10,27.115]],["parent/2753",[1052,8.21]],["name/2754",[547,36.628]],["parent/2754",[1053,8.21]],["name/2755",[1054,71.25]],["parent/2755",[1029,4.487]],["name/2756",[10,27.115]],["parent/2756",[1055,8.21]],["name/2757",[182,61.867]],["parent/2757",[1056,7.7]],["name/2758",[172,34.962]],["parent/2758",[1056,7.7]],["name/2759",[1057,71.25]],["parent/2759",[1029,4.487]],["name/2760",[10,27.115]],["parent/2760",[1058,8.21]],["name/2761",[547,36.628]],["parent/2761",[1059,8.21]],["name/2762",[1060,71.25]],["parent/2762",[1029,4.487]],["name/2763",[10,27.115]],["parent/2763",[1061,8.21]],["name/2764",[182,61.867]],["parent/2764",[1062,7.7]],["name/2765",[172,34.962]],["parent/2765",[1062,7.7]],["name/2766",[1063,71.25]],["parent/2766",[1029,4.487]],["name/2767",[10,27.115]],["parent/2767",[1064,8.21]],["name/2768",[547,36.628]],["parent/2768",[1065,7.7]],["name/2769",[1047,77.128]],["parent/2769",[1065,7.7]],["name/2770",[1066,71.25]],["parent/2770",[1029,4.487]],["name/2771",[10,27.115]],["parent/2771",[1067,8.21]],["name/2772",[182,61.867]],["parent/2772",[1068,7.7]],["name/2773",[172,34.962]],["parent/2773",[1068,7.7]],["name/2774",[1069,71.25]],["parent/2774",[1029,4.487]],["name/2775",[1070,71.25]],["parent/2775",[1029,4.487]],["name/2776",[1071,73.763]],["parent/2776",[1029,4.487]],["name/2777",[1072,73.763]],["parent/2777",[1029,4.487]],["name/2778",[1073,73.763]],["parent/2778",[1029,4.487]],["name/2779",[1074,73.763]],["parent/2779",[1029,4.487]],["name/2780",[1044,71.25]],["parent/2780",[1029,4.487]],["name/2781",[1048,71.25]],["parent/2781",[1029,4.487]],["name/2782",[1051,71.25]],["parent/2782",[1029,4.487]],["name/2783",[1054,71.25]],["parent/2783",[1029,4.487]],["name/2784",[1057,71.25]],["parent/2784",[1029,4.487]],["name/2785",[1060,71.25]],["parent/2785",[1029,4.487]],["name/2786",[1063,71.25]],["parent/2786",[1029,4.487]],["name/2787",[1066,71.25]],["parent/2787",[1029,4.487]],["name/2788",[1069,71.25]],["parent/2788",[1029,4.487]],["name/2789",[1070,71.25]],["parent/2789",[1029,4.487]],["name/2790",[1071,73.763]],["parent/2790",[1029,4.487]],["name/2791",[1072,73.763]],["parent/2791",[1029,4.487]],["name/2792",[1073,73.763]],["parent/2792",[1029,4.487]],["name/2793",[1074,73.763]],["parent/2793",[1029,4.487]],["name/2794",[1031,73.763]],["parent/2794",[1029,4.487]],["name/2795",[43,47.475]],["parent/2795",[1029,4.487]],["name/2796",[1044,71.25]],["parent/2796",[1029,4.487]],["name/2797",[1048,71.25]],["parent/2797",[1029,4.487]],["name/2798",[1051,71.25]],["parent/2798",[1029,4.487]],["name/2799",[1054,71.25]],["parent/2799",[1029,4.487]],["name/2800",[1057,71.25]],["parent/2800",[1029,4.487]],["name/2801",[1060,71.25]],["parent/2801",[1029,4.487]],["name/2802",[1063,71.25]],["parent/2802",[1029,4.487]],["name/2803",[1066,71.25]],["parent/2803",[1029,4.487]],["name/2804",[1069,71.25]],["parent/2804",[1029,4.487]],["name/2805",[1070,71.25]],["parent/2805",[1029,4.487]],["name/2806",[1071,73.763]],["parent/2806",[1029,4.487]],["name/2807",[1072,73.763]],["parent/2807",[1029,4.487]],["name/2808",[1073,73.763]],["parent/2808",[1029,4.487]],["name/2809",[1074,73.763]],["parent/2809",[1029,4.487]],["name/2810",[1031,73.763]],["parent/2810",[1029,4.487]],["name/2811",[455,45.264]],["parent/2811",[1029,4.487]],["name/2812",[1029,44.939]],["parent/2812",[1029,4.487]],["name/2813",[1030,71.25]],["parent/2813",[1029,4.487]],["name/2814",[1075,82.236]],["parent/2814",[1029,4.487]],["name/2815",[1069,71.25]],["parent/2815",[1076,6.017]],["name/2816",[1070,71.25]],["parent/2816",[1076,6.017]],["name/2817",[1044,71.25]],["parent/2817",[1076,6.017]],["name/2818",[1048,71.25]],["parent/2818",[1076,6.017]],["name/2819",[1051,71.25]],["parent/2819",[1076,6.017]],["name/2820",[1054,71.25]],["parent/2820",[1076,6.017]],["name/2821",[1057,71.25]],["parent/2821",[1076,6.017]],["name/2822",[1060,71.25]],["parent/2822",[1076,6.017]],["name/2823",[1063,71.25]],["parent/2823",[1076,6.017]],["name/2824",[1066,71.25]],["parent/2824",[1076,6.017]],["name/2825",[455,45.264]],["parent/2825",[1076,6.017]],["name/2826",[1029,44.939]],["parent/2826",[1076,6.017]],["name/2827",[1030,71.25]],["parent/2827",[1076,6.017]],["name/2828",[1077,23.237]],["parent/2828",[]],["name/2829",[43,47.475]],["parent/2829",[1077,2.32]],["name/2830",[424,58.257]],["parent/2830",[1077,2.32]],["name/2831",[425,57.669]],["parent/2831",[1077,2.32]],["name/2832",[790,61.034]],["parent/2832",[1077,2.32]],["name/2833",[791,61.034]],["parent/2833",[1077,2.32]],["name/2834",[792,61.034]],["parent/2834",[1077,2.32]],["name/2835",[793,61.034]],["parent/2835",[1077,2.32]],["name/2836",[426,58.257]],["parent/2836",[1077,2.32]],["name/2837",[427,58.257]],["parent/2837",[1077,2.32]],["name/2838",[428,58.257]],["parent/2838",[1077,2.32]],["name/2839",[429,58.257]],["parent/2839",[1077,2.32]],["name/2840",[430,58.257]],["parent/2840",[1077,2.32]],["name/2841",[431,58.257]],["parent/2841",[1077,2.32]],["name/2842",[432,58.257]],["parent/2842",[1077,2.32]],["name/2843",[433,58.257]],["parent/2843",[1077,2.32]],["name/2844",[434,58.257]],["parent/2844",[1077,2.32]],["name/2845",[435,56.087]],["parent/2845",[1077,2.32]],["name/2846",[436,56.087]],["parent/2846",[1077,2.32]],["name/2847",[437,58.257]],["parent/2847",[1077,2.32]],["name/2848",[438,58.257]],["parent/2848",[1077,2.32]],["name/2849",[439,58.257]],["parent/2849",[1077,2.32]],["name/2850",[440,58.257]],["parent/2850",[1077,2.32]],["name/2851",[441,58.257]],["parent/2851",[1077,2.32]],["name/2852",[442,58.257]],["parent/2852",[1077,2.32]],["name/2853",[443,58.257]],["parent/2853",[1077,2.32]],["name/2854",[444,58.257]],["parent/2854",[1077,2.32]],["name/2855",[445,58.257]],["parent/2855",[1077,2.32]],["name/2856",[447,58.257]],["parent/2856",[1077,2.32]],["name/2857",[446,58.257]],["parent/2857",[1077,2.32]],["name/2858",[794,61.034]],["parent/2858",[1077,2.32]],["name/2859",[795,61.034]],["parent/2859",[1077,2.32]],["name/2860",[448,58.257]],["parent/2860",[1077,2.32]],["name/2861",[449,58.257]],["parent/2861",[1077,2.32]],["name/2862",[450,58.257]],["parent/2862",[1077,2.32]],["name/2863",[1078,71.25]],["parent/2863",[1077,2.32]],["name/2864",[1079,61.034]],["parent/2864",[1077,2.32]],["name/2865",[1080,61.034]],["parent/2865",[1077,2.32]],["name/2866",[1081,61.034]],["parent/2866",[1077,2.32]],["name/2867",[1082,61.034]],["parent/2867",[1077,2.32]],["name/2868",[1083,61.034]],["parent/2868",[1077,2.32]],["name/2869",[1084,61.034]],["parent/2869",[1077,2.32]],["name/2870",[1085,64.89]],["parent/2870",[1077,2.32]],["name/2871",[1086,64.89]],["parent/2871",[1077,2.32]],["name/2872",[1087,61.034]],["parent/2872",[1077,2.32]],["name/2873",[1088,61.034]],["parent/2873",[1077,2.32]],["name/2874",[1089,64.89]],["parent/2874",[1077,2.32]],["name/2875",[1090,61.034]],["parent/2875",[1077,2.32]],["name/2876",[1091,61.034]],["parent/2876",[1077,2.32]],["name/2877",[1092,64.89]],["parent/2877",[1077,2.32]],["name/2878",[1093,64.89]],["parent/2878",[1077,2.32]],["name/2879",[1094,64.89]],["parent/2879",[1077,2.32]],["name/2880",[1095,64.89]],["parent/2880",[1077,2.32]],["name/2881",[1096,61.034]],["parent/2881",[1077,2.32]],["name/2882",[1097,64.89]],["parent/2882",[1077,2.32]],["name/2883",[1098,64.89]],["parent/2883",[1077,2.32]],["name/2884",[1099,64.89]],["parent/2884",[1077,2.32]],["name/2885",[1100,71.25]],["parent/2885",[1077,2.32]],["name/2886",[1101,71.25]],["parent/2886",[1077,2.32]],["name/2887",[1102,71.25]],["parent/2887",[1077,2.32]],["name/2888",[1103,71.25]],["parent/2888",[1077,2.32]],["name/2889",[1104,71.25]],["parent/2889",[1077,2.32]],["name/2890",[1105,71.25]],["parent/2890",[1077,2.32]],["name/2891",[1106,71.25]],["parent/2891",[1077,2.32]],["name/2892",[1107,71.25]],["parent/2892",[1077,2.32]],["name/2893",[1108,71.25]],["parent/2893",[1077,2.32]],["name/2894",[1109,64.89]],["parent/2894",[1077,2.32]],["name/2895",[1110,64.89]],["parent/2895",[1077,2.32]],["name/2896",[1111,64.89]],["parent/2896",[1077,2.32]],["name/2897",[1112,64.89]],["parent/2897",[1077,2.32]],["name/2898",[1113,64.89]],["parent/2898",[1077,2.32]],["name/2899",[1114,64.89]],["parent/2899",[1077,2.32]],["name/2900",[1115,64.89]],["parent/2900",[1077,2.32]],["name/2901",[1116,64.89]],["parent/2901",[1077,2.32]],["name/2902",[1117,64.89]],["parent/2902",[1077,2.32]],["name/2903",[1118,64.89]],["parent/2903",[1077,2.32]],["name/2904",[1119,64.89]],["parent/2904",[1077,2.32]],["name/2905",[1120,64.89]],["parent/2905",[1077,2.32]],["name/2906",[1121,64.89]],["parent/2906",[1077,2.32]],["name/2907",[1122,64.89]],["parent/2907",[1077,2.32]],["name/2908",[1123,71.25]],["parent/2908",[1077,2.32]],["name/2909",[1124,71.25]],["parent/2909",[1077,2.32]],["name/2910",[1125,71.25]],["parent/2910",[1077,2.32]],["name/2911",[1126,71.25]],["parent/2911",[1077,2.32]],["name/2912",[1127,71.25]],["parent/2912",[1077,2.32]],["name/2913",[1128,71.25]],["parent/2913",[1077,2.32]],["name/2914",[1129,71.25]],["parent/2914",[1077,2.32]],["name/2915",[1130,71.25]],["parent/2915",[1077,2.32]],["name/2916",[1131,71.25]],["parent/2916",[1077,2.32]],["name/2917",[1132,71.25]],["parent/2917",[1077,2.32]],["name/2918",[1133,71.25]],["parent/2918",[1077,2.32]],["name/2919",[1134,71.25]],["parent/2919",[1077,2.32]],["name/2920",[1135,71.25]],["parent/2920",[1077,2.32]],["name/2921",[1136,71.25]],["parent/2921",[1077,2.32]],["name/2922",[1137,71.25]],["parent/2922",[1077,2.32]],["name/2923",[455,45.264]],["parent/2923",[1077,2.32]],["name/2924",[1138,58.257]],["parent/2924",[1077,2.32]],["name/2925",[1139,71.25]],["parent/2925",[1077,2.32]],["name/2926",[1140,71.25]],["parent/2926",[1077,2.32]],["name/2927",[1141,71.25]],["parent/2927",[1077,2.32]],["name/2928",[1142,71.25]],["parent/2928",[1077,2.32]],["name/2929",[1143,71.25]],["parent/2929",[1077,2.32]],["name/2930",[1144,71.25]],["parent/2930",[1077,2.32]],["name/2931",[1145,71.25]],["parent/2931",[1077,2.32]],["name/2932",[1146,71.25]],["parent/2932",[1077,2.32]],["name/2933",[1147,71.25]],["parent/2933",[1077,2.32]],["name/2934",[1148,71.25]],["parent/2934",[1077,2.32]],["name/2935",[1149,71.25]],["parent/2935",[1077,2.32]],["name/2936",[1150,71.25]],["parent/2936",[1077,2.32]],["name/2937",[1151,71.25]],["parent/2937",[1077,2.32]],["name/2938",[1152,54.304]],["parent/2938",[1077,2.32]],["name/2939",[448,58.257]],["parent/2939",[1077,2.32]],["name/2940",[449,58.257]],["parent/2940",[1077,2.32]],["name/2941",[450,58.257]],["parent/2941",[1077,2.32]],["name/2942",[794,61.034]],["parent/2942",[1077,2.32]],["name/2943",[1078,71.25]],["parent/2943",[1077,2.32]],["name/2944",[429,58.257]],["parent/2944",[1077,2.32]],["name/2945",[1099,64.89]],["parent/2945",[1077,2.32]],["name/2946",[439,58.257]],["parent/2946",[1077,2.32]],["name/2947",[440,58.257]],["parent/2947",[1077,2.32]],["name/2948",[1104,71.25]],["parent/2948",[1077,2.32]],["name/2949",[1105,71.25]],["parent/2949",[1077,2.32]],["name/2950",[1103,71.25]],["parent/2950",[1077,2.32]],["name/2951",[1106,71.25]],["parent/2951",[1077,2.32]],["name/2952",[1107,71.25]],["parent/2952",[1077,2.32]],["name/2953",[1108,71.25]],["parent/2953",[1077,2.32]],["name/2954",[441,58.257]],["parent/2954",[1077,2.32]],["name/2955",[1123,71.25]],["parent/2955",[1077,2.32]],["name/2956",[1124,71.25]],["parent/2956",[1077,2.32]],["name/2957",[1102,71.25]],["parent/2957",[1077,2.32]],["name/2958",[1126,71.25]],["parent/2958",[1077,2.32]],["name/2959",[1128,71.25]],["parent/2959",[1077,2.32]],["name/2960",[1127,71.25]],["parent/2960",[1077,2.32]],["name/2961",[1100,71.25]],["parent/2961",[1077,2.32]],["name/2962",[1101,71.25]],["parent/2962",[1077,2.32]],["name/2963",[1134,71.25]],["parent/2963",[1077,2.32]],["name/2964",[1135,71.25]],["parent/2964",[1077,2.32]],["name/2965",[1130,71.25]],["parent/2965",[1077,2.32]],["name/2966",[1131,71.25]],["parent/2966",[1077,2.32]],["name/2967",[1132,71.25]],["parent/2967",[1077,2.32]],["name/2968",[1136,71.25]],["parent/2968",[1077,2.32]],["name/2969",[1137,71.25]],["parent/2969",[1077,2.32]],["name/2970",[430,58.257]],["parent/2970",[1077,2.32]],["name/2971",[431,58.257]],["parent/2971",[1077,2.32]],["name/2972",[455,45.264]],["parent/2972",[1077,2.32]],["name/2973",[793,61.034]],["parent/2973",[1077,2.32]],["name/2974",[424,58.257]],["parent/2974",[1077,2.32]],["name/2975",[795,61.034]],["parent/2975",[1077,2.32]],["name/2976",[1079,61.034]],["parent/2976",[1077,2.32]],["name/2977",[1096,61.034]],["parent/2977",[1077,2.32]],["name/2978",[1097,64.89]],["parent/2978",[1077,2.32]],["name/2979",[1089,64.89]],["parent/2979",[1077,2.32]],["name/2980",[1114,64.89]],["parent/2980",[1077,2.32]],["name/2981",[1109,64.89]],["parent/2981",[1077,2.32]],["name/2982",[1110,64.89]],["parent/2982",[1077,2.32]],["name/2983",[1113,64.89]],["parent/2983",[1077,2.32]],["name/2984",[1112,64.89]],["parent/2984",[1077,2.32]],["name/2985",[1095,64.89]],["parent/2985",[1077,2.32]],["name/2986",[446,58.257]],["parent/2986",[1077,2.32]],["name/2987",[1094,64.89]],["parent/2987",[1077,2.32]],["name/2988",[1115,64.89]],["parent/2988",[1077,2.32]],["name/2989",[1116,64.89]],["parent/2989",[1077,2.32]],["name/2990",[1117,64.89]],["parent/2990",[1077,2.32]],["name/2991",[1118,64.89]],["parent/2991",[1077,2.32]],["name/2992",[1119,64.89]],["parent/2992",[1077,2.32]],["name/2993",[1120,64.89]],["parent/2993",[1077,2.32]],["name/2994",[1121,64.89]],["parent/2994",[1077,2.32]],["name/2995",[1122,64.89]],["parent/2995",[1077,2.32]],["name/2996",[434,58.257]],["parent/2996",[1077,2.32]],["name/2997",[427,58.257]],["parent/2997",[1077,2.32]],["name/2998",[791,61.034]],["parent/2998",[1077,2.32]],["name/2999",[792,61.034]],["parent/2999",[1077,2.32]],["name/3000",[790,61.034]],["parent/3000",[1077,2.32]],["name/3001",[1111,64.89]],["parent/3001",[1077,2.32]],["name/3002",[1091,61.034]],["parent/3002",[1077,2.32]],["name/3003",[1138,58.257]],["parent/3003",[1077,2.32]],["name/3004",[1139,71.25]],["parent/3004",[1077,2.32]],["name/3005",[1125,71.25]],["parent/3005",[1077,2.32]],["name/3006",[426,58.257]],["parent/3006",[1077,2.32]],["name/3007",[432,58.257]],["parent/3007",[1077,2.32]],["name/3008",[1087,61.034]],["parent/3008",[1077,2.32]],["name/3009",[1098,64.89]],["parent/3009",[1077,2.32]],["name/3010",[428,58.257]],["parent/3010",[1077,2.32]],["name/3011",[447,58.257]],["parent/3011",[1077,2.32]],["name/3012",[1092,64.89]],["parent/3012",[1077,2.32]],["name/3013",[1093,64.89]],["parent/3013",[1077,2.32]],["name/3014",[1129,71.25]],["parent/3014",[1077,2.32]],["name/3015",[444,58.257]],["parent/3015",[1077,2.32]],["name/3016",[445,58.257]],["parent/3016",[1077,2.32]],["name/3017",[442,58.257]],["parent/3017",[1077,2.32]],["name/3018",[443,58.257]],["parent/3018",[1077,2.32]],["name/3019",[1140,71.25]],["parent/3019",[1077,2.32]],["name/3020",[1133,71.25]],["parent/3020",[1077,2.32]],["name/3021",[1084,61.034]],["parent/3021",[1077,2.32]],["name/3022",[1088,61.034]],["parent/3022",[1077,2.32]],["name/3023",[1083,61.034]],["parent/3023",[1077,2.32]],["name/3024",[1143,71.25]],["parent/3024",[1077,2.32]],["name/3025",[1144,71.25]],["parent/3025",[1077,2.32]],["name/3026",[1145,71.25]],["parent/3026",[1077,2.32]],["name/3027",[1146,71.25]],["parent/3027",[1077,2.32]],["name/3028",[1141,71.25]],["parent/3028",[1077,2.32]],["name/3029",[1142,71.25]],["parent/3029",[1077,2.32]],["name/3030",[1147,71.25]],["parent/3030",[1077,2.32]],["name/3031",[1148,71.25]],["parent/3031",[1077,2.32]],["name/3032",[1086,64.89]],["parent/3032",[1077,2.32]],["name/3033",[1085,64.89]],["parent/3033",[1077,2.32]],["name/3034",[1149,71.25]],["parent/3034",[1077,2.32]],["name/3035",[1150,71.25]],["parent/3035",[1077,2.32]],["name/3036",[1151,71.25]],["parent/3036",[1077,2.32]],["name/3037",[1152,54.304]],["parent/3037",[1077,2.32]],["name/3038",[437,58.257]],["parent/3038",[1077,2.32]],["name/3039",[438,58.257]],["parent/3039",[1077,2.32]],["name/3040",[433,58.257]],["parent/3040",[1077,2.32]],["name/3041",[436,56.087]],["parent/3041",[1077,2.32]],["name/3042",[435,56.087]],["parent/3042",[1077,2.32]],["name/3043",[425,57.669]],["parent/3043",[1077,2.32]],["name/3044",[1090,61.034]],["parent/3044",[1077,2.32]],["name/3045",[1081,61.034]],["parent/3045",[1077,2.32]],["name/3046",[1080,61.034]],["parent/3046",[1077,2.32]],["name/3047",[1082,61.034]],["parent/3047",[1077,2.32]],["name/3048",[1077,23.237]],["parent/3048",[1077,2.32]],["name/3049",[17,54.721]],["parent/3049",[1153,4.997]],["name/3050",[43,47.475]],["parent/3050",[1153,4.997]],["name/3051",[98,58.257]],["parent/3051",[1153,4.997]],["name/3052",[1154,73.763]],["parent/3052",[1155,5.14]],["name/3053",[1156,73.763]],["parent/3053",[1155,5.14]],["name/3054",[1157,73.763]],["parent/3054",[1155,5.14]],["name/3055",[1158,73.763]],["parent/3055",[1155,5.14]],["name/3056",[1159,73.763]],["parent/3056",[1155,5.14]],["name/3057",[1160,73.763]],["parent/3057",[1155,5.14]],["name/3058",[1161,73.763]],["parent/3058",[1155,5.14]],["name/3059",[1162,73.763]],["parent/3059",[1155,5.14]],["name/3060",[1163,73.763]],["parent/3060",[1155,5.14]],["name/3061",[1164,73.763]],["parent/3061",[1155,5.14]],["name/3062",[1165,73.763]],["parent/3062",[1155,5.14]],["name/3063",[1166,73.763]],["parent/3063",[1155,5.14]],["name/3064",[1167,73.763]],["parent/3064",[1155,5.14]],["name/3065",[1168,73.763]],["parent/3065",[1155,5.14]],["name/3066",[1169,73.763]],["parent/3066",[1155,5.14]],["name/3067",[1170,73.763]],["parent/3067",[1155,5.14]],["name/3068",[1171,73.763]],["parent/3068",[1155,5.14]],["name/3069",[1172,73.763]],["parent/3069",[1155,5.14]],["name/3070",[1173,73.763]],["parent/3070",[1155,5.14]],["name/3071",[1174,73.763]],["parent/3071",[1155,5.14]],["name/3072",[1175,73.763]],["parent/3072",[1155,5.14]],["name/3073",[1176,73.763]],["parent/3073",[1155,5.14]],["name/3074",[1177,73.763]],["parent/3074",[1155,5.14]],["name/3075",[1178,73.763]],["parent/3075",[1155,5.14]],["name/3076",[1179,73.763]],["parent/3076",[1155,5.14]],["name/3077",[121,67.573]],["parent/3077",[1155,5.14]],["name/3078",[1180,73.763]],["parent/3078",[1155,5.14]],["name/3079",[1181,73.763]],["parent/3079",[1155,5.14]],["name/3080",[1182,73.763]],["parent/3080",[1155,5.14]],["name/3081",[1183,73.763]],["parent/3081",[1155,5.14]],["name/3082",[1184,73.763]],["parent/3082",[1155,5.14]],["name/3083",[1185,73.763]],["parent/3083",[1155,5.14]],["name/3084",[30,56.587]],["parent/3084",[1153,4.997]],["name/3085",[125,58.257]],["parent/3085",[1153,4.997]],["name/3086",[10,27.115]],["parent/3086",[1186,8.21]],["name/3087",[1154,73.763]],["parent/3087",[1187,4.455]],["name/3088",[1188,82.236]],["parent/3088",[1187,4.455]],["name/3089",[1156,73.763]],["parent/3089",[1187,4.455]],["name/3090",[1189,82.236]],["parent/3090",[1187,4.455]],["name/3091",[1157,73.763]],["parent/3091",[1187,4.455]],["name/3092",[1190,82.236]],["parent/3092",[1187,4.455]],["name/3093",[1158,73.763]],["parent/3093",[1187,4.455]],["name/3094",[1191,82.236]],["parent/3094",[1187,4.455]],["name/3095",[1159,73.763]],["parent/3095",[1187,4.455]],["name/3096",[1192,82.236]],["parent/3096",[1187,4.455]],["name/3097",[1160,73.763]],["parent/3097",[1187,4.455]],["name/3098",[1193,82.236]],["parent/3098",[1187,4.455]],["name/3099",[1161,73.763]],["parent/3099",[1187,4.455]],["name/3100",[1194,82.236]],["parent/3100",[1187,4.455]],["name/3101",[1162,73.763]],["parent/3101",[1187,4.455]],["name/3102",[1195,82.236]],["parent/3102",[1187,4.455]],["name/3103",[1163,73.763]],["parent/3103",[1187,4.455]],["name/3104",[1196,82.236]],["parent/3104",[1187,4.455]],["name/3105",[1164,73.763]],["parent/3105",[1187,4.455]],["name/3106",[1197,82.236]],["parent/3106",[1187,4.455]],["name/3107",[1165,73.763]],["parent/3107",[1187,4.455]],["name/3108",[1198,82.236]],["parent/3108",[1187,4.455]],["name/3109",[1166,73.763]],["parent/3109",[1187,4.455]],["name/3110",[1199,82.236]],["parent/3110",[1187,4.455]],["name/3111",[1167,73.763]],["parent/3111",[1187,4.455]],["name/3112",[1200,82.236]],["parent/3112",[1187,4.455]],["name/3113",[1168,73.763]],["parent/3113",[1187,4.455]],["name/3114",[1201,82.236]],["parent/3114",[1187,4.455]],["name/3115",[1169,73.763]],["parent/3115",[1187,4.455]],["name/3116",[1202,82.236]],["parent/3116",[1187,4.455]],["name/3117",[1170,73.763]],["parent/3117",[1187,4.455]],["name/3118",[1203,82.236]],["parent/3118",[1187,4.455]],["name/3119",[1171,73.763]],["parent/3119",[1187,4.455]],["name/3120",[1204,82.236]],["parent/3120",[1187,4.455]],["name/3121",[1172,73.763]],["parent/3121",[1187,4.455]],["name/3122",[1205,82.236]],["parent/3122",[1187,4.455]],["name/3123",[1173,73.763]],["parent/3123",[1187,4.455]],["name/3124",[1206,82.236]],["parent/3124",[1187,4.455]],["name/3125",[1174,73.763]],["parent/3125",[1187,4.455]],["name/3126",[1207,82.236]],["parent/3126",[1187,4.455]],["name/3127",[1175,73.763]],["parent/3127",[1187,4.455]],["name/3128",[1208,82.236]],["parent/3128",[1187,4.455]],["name/3129",[1176,73.763]],["parent/3129",[1187,4.455]],["name/3130",[1209,82.236]],["parent/3130",[1187,4.455]],["name/3131",[1177,73.763]],["parent/3131",[1187,4.455]],["name/3132",[1210,82.236]],["parent/3132",[1187,4.455]],["name/3133",[1178,73.763]],["parent/3133",[1187,4.455]],["name/3134",[1211,82.236]],["parent/3134",[1187,4.455]],["name/3135",[1179,73.763]],["parent/3135",[1187,4.455]],["name/3136",[1212,82.236]],["parent/3136",[1187,4.455]],["name/3137",[121,67.573]],["parent/3137",[1187,4.455]],["name/3138",[149,77.128]],["parent/3138",[1187,4.455]],["name/3139",[1180,73.763]],["parent/3139",[1187,4.455]],["name/3140",[1213,82.236]],["parent/3140",[1187,4.455]],["name/3141",[1181,73.763]],["parent/3141",[1187,4.455]],["name/3142",[1214,82.236]],["parent/3142",[1187,4.455]],["name/3143",[1182,73.763]],["parent/3143",[1187,4.455]],["name/3144",[1215,82.236]],["parent/3144",[1187,4.455]],["name/3145",[1183,73.763]],["parent/3145",[1187,4.455]],["name/3146",[1216,82.236]],["parent/3146",[1187,4.455]],["name/3147",[1184,73.763]],["parent/3147",[1187,4.455]],["name/3148",[1217,82.236]],["parent/3148",[1187,4.455]],["name/3149",[1185,73.763]],["parent/3149",[1187,4.455]],["name/3150",[1218,82.236]],["parent/3150",[1187,4.455]],["name/3151",[1154,73.763]],["parent/3151",[1153,4.997]],["name/3152",[1156,73.763]],["parent/3152",[1153,4.997]],["name/3153",[1157,73.763]],["parent/3153",[1153,4.997]],["name/3154",[1158,73.763]],["parent/3154",[1153,4.997]],["name/3155",[1159,73.763]],["parent/3155",[1153,4.997]],["name/3156",[1160,73.763]],["parent/3156",[1153,4.997]],["name/3157",[1161,73.763]],["parent/3157",[1153,4.997]],["name/3158",[1162,73.763]],["parent/3158",[1153,4.997]],["name/3159",[1163,73.763]],["parent/3159",[1153,4.997]],["name/3160",[1164,73.763]],["parent/3160",[1153,4.997]],["name/3161",[1165,73.763]],["parent/3161",[1153,4.997]],["name/3162",[1166,73.763]],["parent/3162",[1153,4.997]],["name/3163",[1167,73.763]],["parent/3163",[1153,4.997]],["name/3164",[1168,73.763]],["parent/3164",[1153,4.997]],["name/3165",[1169,73.763]],["parent/3165",[1153,4.997]],["name/3166",[1170,73.763]],["parent/3166",[1153,4.997]],["name/3167",[1171,73.763]],["parent/3167",[1153,4.997]],["name/3168",[1172,73.763]],["parent/3168",[1153,4.997]],["name/3169",[1173,73.763]],["parent/3169",[1153,4.997]],["name/3170",[1174,73.763]],["parent/3170",[1153,4.997]],["name/3171",[1175,73.763]],["parent/3171",[1153,4.997]],["name/3172",[1176,73.763]],["parent/3172",[1153,4.997]],["name/3173",[1177,73.763]],["parent/3173",[1153,4.997]],["name/3174",[1178,73.763]],["parent/3174",[1153,4.997]],["name/3175",[1179,73.763]],["parent/3175",[1153,4.997]],["name/3176",[121,67.573]],["parent/3176",[1153,4.997]],["name/3177",[1180,73.763]],["parent/3177",[1153,4.997]],["name/3178",[1181,73.763]],["parent/3178",[1153,4.997]],["name/3179",[1182,73.763]],["parent/3179",[1153,4.997]],["name/3180",[1183,73.763]],["parent/3180",[1153,4.997]],["name/3181",[1184,73.763]],["parent/3181",[1153,4.997]],["name/3182",[1185,73.763]],["parent/3182",[1153,4.997]],["name/3183",[1219,71.25]],["parent/3183",[1077,2.32]],["name/3184",[1220,71.25]],["parent/3184",[1077,2.32]],["name/3185",[1221,71.25]],["parent/3185",[1077,2.32]],["name/3186",[1222,71.25]],["parent/3186",[1077,2.32]],["name/3187",[10,27.115]],["parent/3187",[1223,8.21]],["name/3188",[547,36.628]],["parent/3188",[1224,8.21]],["name/3189",[1225,71.25]],["parent/3189",[1077,2.32]],["name/3190",[10,27.115]],["parent/3190",[1226,8.21]],["name/3191",[1227,54.721]],["parent/3191",[1228,7.7]],["name/3192",[172,34.962]],["parent/3192",[1228,7.7]],["name/3193",[1229,71.25]],["parent/3193",[1077,2.32]],["name/3194",[10,27.115]],["parent/3194",[1230,8.21]],["name/3195",[547,36.628]],["parent/3195",[1231,8.21]],["name/3196",[1232,71.25]],["parent/3196",[1077,2.32]],["name/3197",[10,27.115]],["parent/3197",[1233,8.21]],["name/3198",[1227,54.721]],["parent/3198",[1234,7.7]],["name/3199",[172,34.962]],["parent/3199",[1234,7.7]],["name/3200",[1235,71.25]],["parent/3200",[1077,2.32]],["name/3201",[10,27.115]],["parent/3201",[1236,8.21]],["name/3202",[547,36.628]],["parent/3202",[1237,8.21]],["name/3203",[1238,71.25]],["parent/3203",[1077,2.32]],["name/3204",[10,27.115]],["parent/3204",[1239,8.21]],["name/3205",[1227,54.721]],["parent/3205",[1240,7.7]],["name/3206",[172,34.962]],["parent/3206",[1240,7.7]],["name/3207",[1241,71.25]],["parent/3207",[1077,2.32]],["name/3208",[10,27.115]],["parent/3208",[1242,8.21]],["name/3209",[547,36.628]],["parent/3209",[1243,8.21]],["name/3210",[1244,71.25]],["parent/3210",[1077,2.32]],["name/3211",[10,27.115]],["parent/3211",[1245,8.21]],["name/3212",[1246,62.777]],["parent/3212",[1247,7.364]],["name/3213",[1227,54.721]],["parent/3213",[1247,7.364]],["name/3214",[172,34.962]],["parent/3214",[1247,7.364]],["name/3215",[1248,71.25]],["parent/3215",[1077,2.32]],["name/3216",[10,27.115]],["parent/3216",[1249,8.21]],["name/3217",[547,36.628]],["parent/3217",[1250,8.21]],["name/3218",[1251,71.25]],["parent/3218",[1077,2.32]],["name/3219",[10,27.115]],["parent/3219",[1252,8.21]],["name/3220",[679,63.778]],["parent/3220",[1253,7.364]],["name/3221",[1227,54.721]],["parent/3221",[1253,7.364]],["name/3222",[172,34.962]],["parent/3222",[1253,7.364]],["name/3223",[1254,71.25]],["parent/3223",[1077,2.32]],["name/3224",[10,27.115]],["parent/3224",[1255,8.21]],["name/3225",[547,36.628]],["parent/3225",[1256,7.7]],["name/3226",[1257,82.236]],["parent/3226",[1256,7.7]],["name/3227",[1258,71.25]],["parent/3227",[1077,2.32]],["name/3228",[10,27.115]],["parent/3228",[1259,8.21]],["name/3229",[1260,82.236]],["parent/3229",[1261,7.364]],["name/3230",[1227,54.721]],["parent/3230",[1261,7.364]],["name/3231",[172,34.962]],["parent/3231",[1261,7.364]],["name/3232",[1262,71.25]],["parent/3232",[1077,2.32]],["name/3233",[10,27.115]],["parent/3233",[1263,8.21]],["name/3234",[547,36.628]],["parent/3234",[1264,8.21]],["name/3235",[1265,71.25]],["parent/3235",[1077,2.32]],["name/3236",[10,27.115]],["parent/3236",[1266,8.21]],["name/3237",[1246,62.777]],["parent/3237",[1267,7.364]],["name/3238",[1227,54.721]],["parent/3238",[1267,7.364]],["name/3239",[172,34.962]],["parent/3239",[1267,7.364]],["name/3240",[1268,71.25]],["parent/3240",[1077,2.32]],["name/3241",[10,27.115]],["parent/3241",[1269,8.21]],["name/3242",[547,36.628]],["parent/3242",[1270,8.21]],["name/3243",[1271,71.25]],["parent/3243",[1077,2.32]],["name/3244",[10,27.115]],["parent/3244",[1272,8.21]],["name/3245",[595,62.777]],["parent/3245",[1273,7.114]],["name/3246",[1246,62.777]],["parent/3246",[1273,7.114]],["name/3247",[1227,54.721]],["parent/3247",[1273,7.114]],["name/3248",[172,34.962]],["parent/3248",[1273,7.114]],["name/3249",[1274,71.25]],["parent/3249",[1077,2.32]],["name/3250",[10,27.115]],["parent/3250",[1275,8.21]],["name/3251",[547,36.628]],["parent/3251",[1276,7.7]],["name/3252",[1008,63.778]],["parent/3252",[1276,7.7]],["name/3253",[1277,71.25]],["parent/3253",[1077,2.32]],["name/3254",[10,27.115]],["parent/3254",[1278,8.21]],["name/3255",[1227,54.721]],["parent/3255",[1279,7.7]],["name/3256",[172,34.962]],["parent/3256",[1279,7.7]],["name/3257",[1280,71.25]],["parent/3257",[1077,2.32]],["name/3258",[10,27.115]],["parent/3258",[1281,8.21]],["name/3259",[547,36.628]],["parent/3259",[1282,8.21]],["name/3260",[1283,71.25]],["parent/3260",[1077,2.32]],["name/3261",[10,27.115]],["parent/3261",[1284,8.21]],["name/3262",[1285,73.763]],["parent/3262",[1286,7.364]],["name/3263",[1227,54.721]],["parent/3263",[1286,7.364]],["name/3264",[172,34.962]],["parent/3264",[1286,7.364]],["name/3265",[1287,71.25]],["parent/3265",[1077,2.32]],["name/3266",[10,27.115]],["parent/3266",[1288,8.21]],["name/3267",[547,36.628]],["parent/3267",[1289,8.21]],["name/3268",[1290,71.25]],["parent/3268",[1077,2.32]],["name/3269",[10,27.115]],["parent/3269",[1291,8.21]],["name/3270",[1227,54.721]],["parent/3270",[1292,7.7]],["name/3271",[172,34.962]],["parent/3271",[1292,7.7]],["name/3272",[1293,71.25]],["parent/3272",[1077,2.32]],["name/3273",[10,27.115]],["parent/3273",[1294,8.21]],["name/3274",[1295,82.236]],["parent/3274",[1296,6.479]],["name/3275",[1297,82.236]],["parent/3275",[1296,6.479]],["name/3276",[1298,82.236]],["parent/3276",[1296,6.479]],["name/3277",[425,57.669]],["parent/3277",[1296,6.479]],["name/3278",[1008,63.778]],["parent/3278",[1296,6.479]],["name/3279",[547,36.628]],["parent/3279",[1296,6.479]],["name/3280",[1299,69.243]],["parent/3280",[1296,6.479]],["name/3281",[1300,71.25]],["parent/3281",[1296,6.479]],["name/3282",[1301,71.25]],["parent/3282",[1077,2.32]],["name/3283",[10,27.115]],["parent/3283",[1302,8.21]],["name/3284",[1227,54.721]],["parent/3284",[1303,7.7]],["name/3285",[172,34.962]],["parent/3285",[1303,7.7]],["name/3286",[1304,71.25]],["parent/3286",[1077,2.32]],["name/3287",[10,27.115]],["parent/3287",[1305,8.21]],["name/3288",[547,36.628]],["parent/3288",[1306,8.21]],["name/3289",[1307,71.25]],["parent/3289",[1077,2.32]],["name/3290",[10,27.115]],["parent/3290",[1308,8.21]],["name/3291",[679,63.778]],["parent/3291",[1309,7.364]],["name/3292",[1227,54.721]],["parent/3292",[1309,7.364]],["name/3293",[172,34.962]],["parent/3293",[1309,7.364]],["name/3294",[1310,71.25]],["parent/3294",[1077,2.32]],["name/3295",[10,27.115]],["parent/3295",[1311,8.21]],["name/3296",[547,36.628]],["parent/3296",[1312,8.21]],["name/3297",[1313,71.25]],["parent/3297",[1077,2.32]],["name/3298",[10,27.115]],["parent/3298",[1314,8.21]],["name/3299",[1246,62.777]],["parent/3299",[1315,7.364]],["name/3300",[1227,54.721]],["parent/3300",[1315,7.364]],["name/3301",[172,34.962]],["parent/3301",[1315,7.364]],["name/3302",[1316,71.25]],["parent/3302",[1077,2.32]],["name/3303",[10,27.115]],["parent/3303",[1317,8.21]],["name/3304",[547,36.628]],["parent/3304",[1318,8.21]],["name/3305",[1319,71.25]],["parent/3305",[1077,2.32]],["name/3306",[10,27.115]],["parent/3306",[1320,8.21]],["name/3307",[595,62.777]],["parent/3307",[1321,7.114]],["name/3308",[1246,62.777]],["parent/3308",[1321,7.114]],["name/3309",[1227,54.721]],["parent/3309",[1321,7.114]],["name/3310",[172,34.962]],["parent/3310",[1321,7.114]],["name/3311",[1322,71.25]],["parent/3311",[1077,2.32]],["name/3312",[10,27.115]],["parent/3312",[1323,8.21]],["name/3313",[547,36.628]],["parent/3313",[1324,8.21]],["name/3314",[1325,71.25]],["parent/3314",[1077,2.32]],["name/3315",[10,27.115]],["parent/3315",[1326,8.21]],["name/3316",[1227,54.721]],["parent/3316",[1327,7.7]],["name/3317",[172,34.962]],["parent/3317",[1327,7.7]],["name/3318",[1328,71.25]],["parent/3318",[1077,2.32]],["name/3319",[10,27.115]],["parent/3319",[1329,8.21]],["name/3320",[1330,82.236]],["parent/3320",[1331,7.364]],["name/3321",[1332,82.236]],["parent/3321",[1331,7.364]],["name/3322",[547,36.628]],["parent/3322",[1331,7.364]],["name/3323",[1333,71.25]],["parent/3323",[1077,2.32]],["name/3324",[10,27.115]],["parent/3324",[1334,8.21]],["name/3325",[172,34.962]],["parent/3325",[1335,8.21]],["name/3326",[1336,71.25]],["parent/3326",[1077,2.32]],["name/3327",[10,27.115]],["parent/3327",[1337,8.21]],["name/3328",[547,36.628]],["parent/3328",[1338,8.21]],["name/3329",[1339,71.25]],["parent/3329",[1077,2.32]],["name/3330",[10,27.115]],["parent/3330",[1340,8.21]],["name/3331",[595,62.777]],["parent/3331",[1341,7.364]],["name/3332",[1246,62.777]],["parent/3332",[1341,7.364]],["name/3333",[172,34.962]],["parent/3333",[1341,7.364]],["name/3334",[1342,71.25]],["parent/3334",[1077,2.32]],["name/3335",[10,27.115]],["parent/3335",[1343,8.21]],["name/3336",[547,36.628]],["parent/3336",[1344,8.21]],["name/3337",[1345,71.25]],["parent/3337",[1077,2.32]],["name/3338",[10,27.115]],["parent/3338",[1346,8.21]],["name/3339",[1246,62.777]],["parent/3339",[1347,7.7]],["name/3340",[172,34.962]],["parent/3340",[1347,7.7]],["name/3341",[1348,71.25]],["parent/3341",[1077,2.32]],["name/3342",[10,27.115]],["parent/3342",[1349,8.21]],["name/3343",[1008,63.778]],["parent/3343",[1350,7.7]],["name/3344",[547,36.628]],["parent/3344",[1350,7.7]],["name/3345",[1351,71.25]],["parent/3345",[1077,2.32]],["name/3346",[10,27.115]],["parent/3346",[1352,8.21]],["name/3347",[1246,62.777]],["parent/3347",[1353,7.7]],["name/3348",[172,34.962]],["parent/3348",[1353,7.7]],["name/3349",[1354,71.25]],["parent/3349",[1077,2.32]],["name/3350",[10,27.115]],["parent/3350",[1355,8.21]],["name/3351",[208,77.128]],["parent/3351",[1356,7.114]],["name/3352",[1357,82.236]],["parent/3352",[1356,7.114]],["name/3353",[1358,82.236]],["parent/3353",[1356,7.114]],["name/3354",[547,36.628]],["parent/3354",[1356,7.114]],["name/3355",[1359,71.25]],["parent/3355",[1077,2.32]],["name/3356",[10,27.115]],["parent/3356",[1360,8.21]],["name/3357",[172,34.962]],["parent/3357",[1361,8.21]],["name/3358",[1362,71.25]],["parent/3358",[1077,2.32]],["name/3359",[10,27.115]],["parent/3359",[1363,8.21]],["name/3360",[547,36.628]],["parent/3360",[1364,8.21]],["name/3361",[1365,71.25]],["parent/3361",[1077,2.32]],["name/3362",[10,27.115]],["parent/3362",[1366,8.21]],["name/3363",[172,34.962]],["parent/3363",[1367,8.21]],["name/3364",[1368,71.25]],["parent/3364",[1077,2.32]],["name/3365",[10,27.115]],["parent/3365",[1369,8.21]],["name/3366",[547,36.628]],["parent/3366",[1370,8.21]],["name/3367",[1371,71.25]],["parent/3367",[1077,2.32]],["name/3368",[10,27.115]],["parent/3368",[1372,8.21]],["name/3369",[172,34.962]],["parent/3369",[1373,8.21]],["name/3370",[1374,71.25]],["parent/3370",[1077,2.32]],["name/3371",[10,27.115]],["parent/3371",[1375,8.21]],["name/3372",[547,36.628]],["parent/3372",[1376,8.21]],["name/3373",[1377,71.25]],["parent/3373",[1077,2.32]],["name/3374",[10,27.115]],["parent/3374",[1378,8.21]],["name/3375",[172,34.962]],["parent/3375",[1379,8.21]],["name/3376",[1380,71.25]],["parent/3376",[1077,2.32]],["name/3377",[10,27.115]],["parent/3377",[1381,8.21]],["name/3378",[547,36.628]],["parent/3378",[1382,8.21]],["name/3379",[1383,71.25]],["parent/3379",[1077,2.32]],["name/3380",[10,27.115]],["parent/3380",[1384,8.21]],["name/3381",[1285,73.763]],["parent/3381",[1385,7.364]],["name/3382",[1227,54.721]],["parent/3382",[1385,7.364]],["name/3383",[172,34.962]],["parent/3383",[1385,7.364]],["name/3384",[350,64.89]],["parent/3384",[1077,2.32]],["name/3385",[10,27.115]],["parent/3385",[1386,8.21]],["name/3386",[547,36.628]],["parent/3386",[1387,8.21]],["name/3387",[352,64.89]],["parent/3387",[1077,2.32]],["name/3388",[10,27.115]],["parent/3388",[1388,8.21]],["name/3389",[172,34.962]],["parent/3389",[1389,8.21]],["name/3390",[1390,71.25]],["parent/3390",[1077,2.32]],["name/3391",[10,27.115]],["parent/3391",[1391,8.21]],["name/3392",[547,36.628]],["parent/3392",[1392,8.21]],["name/3393",[1393,71.25]],["parent/3393",[1077,2.32]],["name/3394",[10,27.115]],["parent/3394",[1394,8.21]],["name/3395",[1227,54.721]],["parent/3395",[1395,7.7]],["name/3396",[172,34.962]],["parent/3396",[1395,7.7]],["name/3397",[1396,71.25]],["parent/3397",[1077,2.32]],["name/3398",[10,27.115]],["parent/3398",[1397,8.21]],["name/3399",[547,36.628]],["parent/3399",[1398,8.21]],["name/3400",[1399,71.25]],["parent/3400",[1077,2.32]],["name/3401",[10,27.115]],["parent/3401",[1400,8.21]],["name/3402",[1285,73.763]],["parent/3402",[1401,7.364]],["name/3403",[1227,54.721]],["parent/3403",[1401,7.364]],["name/3404",[172,34.962]],["parent/3404",[1401,7.364]],["name/3405",[1402,71.25]],["parent/3405",[1077,2.32]],["name/3406",[10,27.115]],["parent/3406",[1403,8.21]],["name/3407",[547,36.628]],["parent/3407",[1404,8.21]],["name/3408",[1405,71.25]],["parent/3408",[1077,2.32]],["name/3409",[10,27.115]],["parent/3409",[1406,8.21]],["name/3410",[1227,54.721]],["parent/3410",[1407,7.7]],["name/3411",[172,34.962]],["parent/3411",[1407,7.7]],["name/3412",[1408,71.25]],["parent/3412",[1077,2.32]],["name/3413",[10,27.115]],["parent/3413",[1409,8.21]],["name/3414",[547,36.628]],["parent/3414",[1410,8.21]],["name/3415",[1411,71.25]],["parent/3415",[1077,2.32]],["name/3416",[10,27.115]],["parent/3416",[1412,8.21]],["name/3417",[679,63.778]],["parent/3417",[1413,7.364]],["name/3418",[1227,54.721]],["parent/3418",[1413,7.364]],["name/3419",[172,34.962]],["parent/3419",[1413,7.364]],["name/3420",[1414,71.25]],["parent/3420",[1077,2.32]],["name/3421",[10,27.115]],["parent/3421",[1415,8.21]],["name/3422",[547,36.628]],["parent/3422",[1416,8.21]],["name/3423",[1417,71.25]],["parent/3423",[1077,2.32]],["name/3424",[10,27.115]],["parent/3424",[1418,8.21]],["name/3425",[1246,62.777]],["parent/3425",[1419,7.364]],["name/3426",[1227,54.721]],["parent/3426",[1419,7.364]],["name/3427",[172,34.962]],["parent/3427",[1419,7.364]],["name/3428",[1420,71.25]],["parent/3428",[1077,2.32]],["name/3429",[10,27.115]],["parent/3429",[1421,8.21]],["name/3430",[547,36.628]],["parent/3430",[1422,8.21]],["name/3431",[1423,71.25]],["parent/3431",[1077,2.32]],["name/3432",[10,27.115]],["parent/3432",[1424,8.21]],["name/3433",[595,62.777]],["parent/3433",[1425,7.114]],["name/3434",[1246,62.777]],["parent/3434",[1425,7.114]],["name/3435",[1227,54.721]],["parent/3435",[1425,7.114]],["name/3436",[172,34.962]],["parent/3436",[1425,7.114]],["name/3437",[1426,71.25]],["parent/3437",[1077,2.32]],["name/3438",[1427,71.25]],["parent/3438",[1077,2.32]],["name/3439",[1428,73.763]],["parent/3439",[1077,2.32]],["name/3440",[1219,71.25]],["parent/3440",[1077,2.32]],["name/3441",[1220,71.25]],["parent/3441",[1077,2.32]],["name/3442",[1221,71.25]],["parent/3442",[1077,2.32]],["name/3443",[1222,71.25]],["parent/3443",[1077,2.32]],["name/3444",[1225,71.25]],["parent/3444",[1077,2.32]],["name/3445",[1229,71.25]],["parent/3445",[1077,2.32]],["name/3446",[1232,71.25]],["parent/3446",[1077,2.32]],["name/3447",[1235,71.25]],["parent/3447",[1077,2.32]],["name/3448",[1238,71.25]],["parent/3448",[1077,2.32]],["name/3449",[1241,71.25]],["parent/3449",[1077,2.32]],["name/3450",[1244,71.25]],["parent/3450",[1077,2.32]],["name/3451",[1248,71.25]],["parent/3451",[1077,2.32]],["name/3452",[1251,71.25]],["parent/3452",[1077,2.32]],["name/3453",[1254,71.25]],["parent/3453",[1077,2.32]],["name/3454",[1258,71.25]],["parent/3454",[1077,2.32]],["name/3455",[1262,71.25]],["parent/3455",[1077,2.32]],["name/3456",[1265,71.25]],["parent/3456",[1077,2.32]],["name/3457",[1268,71.25]],["parent/3457",[1077,2.32]],["name/3458",[1271,71.25]],["parent/3458",[1077,2.32]],["name/3459",[1274,71.25]],["parent/3459",[1077,2.32]],["name/3460",[1277,71.25]],["parent/3460",[1077,2.32]],["name/3461",[1280,71.25]],["parent/3461",[1077,2.32]],["name/3462",[1283,71.25]],["parent/3462",[1077,2.32]],["name/3463",[1287,71.25]],["parent/3463",[1077,2.32]],["name/3464",[1290,71.25]],["parent/3464",[1077,2.32]],["name/3465",[1293,71.25]],["parent/3465",[1077,2.32]],["name/3466",[1301,71.25]],["parent/3466",[1077,2.32]],["name/3467",[1304,71.25]],["parent/3467",[1077,2.32]],["name/3468",[1307,71.25]],["parent/3468",[1077,2.32]],["name/3469",[1310,71.25]],["parent/3469",[1077,2.32]],["name/3470",[1313,71.25]],["parent/3470",[1077,2.32]],["name/3471",[1316,71.25]],["parent/3471",[1077,2.32]],["name/3472",[1319,71.25]],["parent/3472",[1077,2.32]],["name/3473",[1322,71.25]],["parent/3473",[1077,2.32]],["name/3474",[1325,71.25]],["parent/3474",[1077,2.32]],["name/3475",[1328,71.25]],["parent/3475",[1077,2.32]],["name/3476",[1333,71.25]],["parent/3476",[1077,2.32]],["name/3477",[1336,71.25]],["parent/3477",[1077,2.32]],["name/3478",[1339,71.25]],["parent/3478",[1077,2.32]],["name/3479",[1342,71.25]],["parent/3479",[1077,2.32]],["name/3480",[1345,71.25]],["parent/3480",[1077,2.32]],["name/3481",[1348,71.25]],["parent/3481",[1077,2.32]],["name/3482",[1351,71.25]],["parent/3482",[1077,2.32]],["name/3483",[1354,71.25]],["parent/3483",[1077,2.32]],["name/3484",[1359,71.25]],["parent/3484",[1077,2.32]],["name/3485",[1362,71.25]],["parent/3485",[1077,2.32]],["name/3486",[1365,71.25]],["parent/3486",[1077,2.32]],["name/3487",[1368,71.25]],["parent/3487",[1077,2.32]],["name/3488",[1371,71.25]],["parent/3488",[1077,2.32]],["name/3489",[1374,71.25]],["parent/3489",[1077,2.32]],["name/3490",[1377,71.25]],["parent/3490",[1077,2.32]],["name/3491",[1380,71.25]],["parent/3491",[1077,2.32]],["name/3492",[1383,71.25]],["parent/3492",[1077,2.32]],["name/3493",[350,64.89]],["parent/3493",[1077,2.32]],["name/3494",[352,64.89]],["parent/3494",[1077,2.32]],["name/3495",[1390,71.25]],["parent/3495",[1077,2.32]],["name/3496",[1393,71.25]],["parent/3496",[1077,2.32]],["name/3497",[1396,71.25]],["parent/3497",[1077,2.32]],["name/3498",[1399,71.25]],["parent/3498",[1077,2.32]],["name/3499",[1402,71.25]],["parent/3499",[1077,2.32]],["name/3500",[1405,71.25]],["parent/3500",[1077,2.32]],["name/3501",[1408,71.25]],["parent/3501",[1077,2.32]],["name/3502",[1411,71.25]],["parent/3502",[1077,2.32]],["name/3503",[1414,71.25]],["parent/3503",[1077,2.32]],["name/3504",[1417,71.25]],["parent/3504",[1077,2.32]],["name/3505",[1420,71.25]],["parent/3505",[1077,2.32]],["name/3506",[1423,71.25]],["parent/3506",[1077,2.32]],["name/3507",[1426,71.25]],["parent/3507",[1077,2.32]],["name/3508",[1427,71.25]],["parent/3508",[1077,2.32]],["name/3509",[1428,73.763]],["parent/3509",[1077,2.32]],["name/3510",[1077,23.237]],["parent/3510",[1077,2.32]],["name/3511",[43,47.475]],["parent/3511",[1077,2.32]],["name/3512",[1219,71.25]],["parent/3512",[1077,2.32]],["name/3513",[1220,71.25]],["parent/3513",[1077,2.32]],["name/3514",[1221,71.25]],["parent/3514",[1077,2.32]],["name/3515",[1222,71.25]],["parent/3515",[1077,2.32]],["name/3516",[1225,71.25]],["parent/3516",[1077,2.32]],["name/3517",[1229,71.25]],["parent/3517",[1077,2.32]],["name/3518",[1232,71.25]],["parent/3518",[1077,2.32]],["name/3519",[1235,71.25]],["parent/3519",[1077,2.32]],["name/3520",[1238,71.25]],["parent/3520",[1077,2.32]],["name/3521",[1241,71.25]],["parent/3521",[1077,2.32]],["name/3522",[1244,71.25]],["parent/3522",[1077,2.32]],["name/3523",[1248,71.25]],["parent/3523",[1077,2.32]],["name/3524",[1251,71.25]],["parent/3524",[1077,2.32]],["name/3525",[1254,71.25]],["parent/3525",[1077,2.32]],["name/3526",[1258,71.25]],["parent/3526",[1077,2.32]],["name/3527",[1262,71.25]],["parent/3527",[1077,2.32]],["name/3528",[1265,71.25]],["parent/3528",[1077,2.32]],["name/3529",[1268,71.25]],["parent/3529",[1077,2.32]],["name/3530",[1271,71.25]],["parent/3530",[1077,2.32]],["name/3531",[1274,71.25]],["parent/3531",[1077,2.32]],["name/3532",[1277,71.25]],["parent/3532",[1077,2.32]],["name/3533",[1280,71.25]],["parent/3533",[1077,2.32]],["name/3534",[1283,71.25]],["parent/3534",[1077,2.32]],["name/3535",[1287,71.25]],["parent/3535",[1077,2.32]],["name/3536",[1290,71.25]],["parent/3536",[1077,2.32]],["name/3537",[1293,71.25]],["parent/3537",[1077,2.32]],["name/3538",[1301,71.25]],["parent/3538",[1077,2.32]],["name/3539",[1304,71.25]],["parent/3539",[1077,2.32]],["name/3540",[1307,71.25]],["parent/3540",[1077,2.32]],["name/3541",[1310,71.25]],["parent/3541",[1077,2.32]],["name/3542",[1313,71.25]],["parent/3542",[1077,2.32]],["name/3543",[1316,71.25]],["parent/3543",[1077,2.32]],["name/3544",[1319,71.25]],["parent/3544",[1077,2.32]],["name/3545",[1322,71.25]],["parent/3545",[1077,2.32]],["name/3546",[1325,71.25]],["parent/3546",[1077,2.32]],["name/3547",[1328,71.25]],["parent/3547",[1077,2.32]],["name/3548",[1333,71.25]],["parent/3548",[1077,2.32]],["name/3549",[1336,71.25]],["parent/3549",[1077,2.32]],["name/3550",[1339,71.25]],["parent/3550",[1077,2.32]],["name/3551",[1342,71.25]],["parent/3551",[1077,2.32]],["name/3552",[1345,71.25]],["parent/3552",[1077,2.32]],["name/3553",[1348,71.25]],["parent/3553",[1077,2.32]],["name/3554",[1351,71.25]],["parent/3554",[1077,2.32]],["name/3555",[1354,71.25]],["parent/3555",[1077,2.32]],["name/3556",[1359,71.25]],["parent/3556",[1077,2.32]],["name/3557",[1362,71.25]],["parent/3557",[1077,2.32]],["name/3558",[1365,71.25]],["parent/3558",[1077,2.32]],["name/3559",[1368,71.25]],["parent/3559",[1077,2.32]],["name/3560",[1371,71.25]],["parent/3560",[1077,2.32]],["name/3561",[1374,71.25]],["parent/3561",[1077,2.32]],["name/3562",[1377,71.25]],["parent/3562",[1077,2.32]],["name/3563",[1380,71.25]],["parent/3563",[1077,2.32]],["name/3564",[1383,71.25]],["parent/3564",[1077,2.32]],["name/3565",[350,64.89]],["parent/3565",[1077,2.32]],["name/3566",[352,64.89]],["parent/3566",[1077,2.32]],["name/3567",[1390,71.25]],["parent/3567",[1077,2.32]],["name/3568",[1393,71.25]],["parent/3568",[1077,2.32]],["name/3569",[1396,71.25]],["parent/3569",[1077,2.32]],["name/3570",[1399,71.25]],["parent/3570",[1077,2.32]],["name/3571",[1402,71.25]],["parent/3571",[1077,2.32]],["name/3572",[1405,71.25]],["parent/3572",[1077,2.32]],["name/3573",[1408,71.25]],["parent/3573",[1077,2.32]],["name/3574",[1411,71.25]],["parent/3574",[1077,2.32]],["name/3575",[1414,71.25]],["parent/3575",[1077,2.32]],["name/3576",[1417,71.25]],["parent/3576",[1077,2.32]],["name/3577",[1420,71.25]],["parent/3577",[1077,2.32]],["name/3578",[1423,71.25]],["parent/3578",[1077,2.32]],["name/3579",[1426,71.25]],["parent/3579",[1077,2.32]],["name/3580",[1427,71.25]],["parent/3580",[1077,2.32]],["name/3581",[1428,73.763]],["parent/3581",[1077,2.32]],["name/3582",[1077,23.237]],["parent/3582",[1077,2.32]],["name/3583",[448,58.257]],["parent/3583",[1077,2.32]],["name/3584",[449,58.257]],["parent/3584",[1077,2.32]],["name/3585",[450,58.257]],["parent/3585",[1077,2.32]],["name/3586",[794,61.034]],["parent/3586",[1077,2.32]],["name/3587",[1078,71.25]],["parent/3587",[1077,2.32]],["name/3588",[429,58.257]],["parent/3588",[1077,2.32]],["name/3589",[1099,64.89]],["parent/3589",[1077,2.32]],["name/3590",[439,58.257]],["parent/3590",[1077,2.32]],["name/3591",[440,58.257]],["parent/3591",[1077,2.32]],["name/3592",[1104,71.25]],["parent/3592",[1077,2.32]],["name/3593",[1105,71.25]],["parent/3593",[1077,2.32]],["name/3594",[1103,71.25]],["parent/3594",[1077,2.32]],["name/3595",[1106,71.25]],["parent/3595",[1077,2.32]],["name/3596",[1107,71.25]],["parent/3596",[1077,2.32]],["name/3597",[1108,71.25]],["parent/3597",[1077,2.32]],["name/3598",[441,58.257]],["parent/3598",[1077,2.32]],["name/3599",[1123,71.25]],["parent/3599",[1077,2.32]],["name/3600",[1124,71.25]],["parent/3600",[1077,2.32]],["name/3601",[1102,71.25]],["parent/3601",[1077,2.32]],["name/3602",[1126,71.25]],["parent/3602",[1077,2.32]],["name/3603",[1128,71.25]],["parent/3603",[1077,2.32]],["name/3604",[1127,71.25]],["parent/3604",[1077,2.32]],["name/3605",[1100,71.25]],["parent/3605",[1077,2.32]],["name/3606",[1101,71.25]],["parent/3606",[1077,2.32]],["name/3607",[1134,71.25]],["parent/3607",[1077,2.32]],["name/3608",[1135,71.25]],["parent/3608",[1077,2.32]],["name/3609",[1130,71.25]],["parent/3609",[1077,2.32]],["name/3610",[1131,71.25]],["parent/3610",[1077,2.32]],["name/3611",[1132,71.25]],["parent/3611",[1077,2.32]],["name/3612",[1136,71.25]],["parent/3612",[1077,2.32]],["name/3613",[1137,71.25]],["parent/3613",[1077,2.32]],["name/3614",[430,58.257]],["parent/3614",[1077,2.32]],["name/3615",[431,58.257]],["parent/3615",[1077,2.32]],["name/3616",[455,45.264]],["parent/3616",[1077,2.32]],["name/3617",[793,61.034]],["parent/3617",[1077,2.32]],["name/3618",[424,58.257]],["parent/3618",[1077,2.32]],["name/3619",[795,61.034]],["parent/3619",[1077,2.32]],["name/3620",[1079,61.034]],["parent/3620",[1077,2.32]],["name/3621",[1096,61.034]],["parent/3621",[1077,2.32]],["name/3622",[1097,64.89]],["parent/3622",[1077,2.32]],["name/3623",[1089,64.89]],["parent/3623",[1077,2.32]],["name/3624",[1114,64.89]],["parent/3624",[1077,2.32]],["name/3625",[1109,64.89]],["parent/3625",[1077,2.32]],["name/3626",[1110,64.89]],["parent/3626",[1077,2.32]],["name/3627",[1113,64.89]],["parent/3627",[1077,2.32]],["name/3628",[1112,64.89]],["parent/3628",[1077,2.32]],["name/3629",[1095,64.89]],["parent/3629",[1077,2.32]],["name/3630",[446,58.257]],["parent/3630",[1077,2.32]],["name/3631",[1094,64.89]],["parent/3631",[1077,2.32]],["name/3632",[1115,64.89]],["parent/3632",[1077,2.32]],["name/3633",[1116,64.89]],["parent/3633",[1077,2.32]],["name/3634",[1117,64.89]],["parent/3634",[1077,2.32]],["name/3635",[1118,64.89]],["parent/3635",[1077,2.32]],["name/3636",[1119,64.89]],["parent/3636",[1077,2.32]],["name/3637",[1120,64.89]],["parent/3637",[1077,2.32]],["name/3638",[1121,64.89]],["parent/3638",[1077,2.32]],["name/3639",[1122,64.89]],["parent/3639",[1077,2.32]],["name/3640",[434,58.257]],["parent/3640",[1077,2.32]],["name/3641",[427,58.257]],["parent/3641",[1077,2.32]],["name/3642",[791,61.034]],["parent/3642",[1077,2.32]],["name/3643",[792,61.034]],["parent/3643",[1077,2.32]],["name/3644",[790,61.034]],["parent/3644",[1077,2.32]],["name/3645",[1111,64.89]],["parent/3645",[1077,2.32]],["name/3646",[1091,61.034]],["parent/3646",[1077,2.32]],["name/3647",[1138,58.257]],["parent/3647",[1077,2.32]],["name/3648",[1139,71.25]],["parent/3648",[1077,2.32]],["name/3649",[1125,71.25]],["parent/3649",[1077,2.32]],["name/3650",[426,58.257]],["parent/3650",[1077,2.32]],["name/3651",[432,58.257]],["parent/3651",[1077,2.32]],["name/3652",[1087,61.034]],["parent/3652",[1077,2.32]],["name/3653",[1098,64.89]],["parent/3653",[1077,2.32]],["name/3654",[428,58.257]],["parent/3654",[1077,2.32]],["name/3655",[447,58.257]],["parent/3655",[1077,2.32]],["name/3656",[1092,64.89]],["parent/3656",[1077,2.32]],["name/3657",[1093,64.89]],["parent/3657",[1077,2.32]],["name/3658",[1129,71.25]],["parent/3658",[1077,2.32]],["name/3659",[444,58.257]],["parent/3659",[1077,2.32]],["name/3660",[445,58.257]],["parent/3660",[1077,2.32]],["name/3661",[442,58.257]],["parent/3661",[1077,2.32]],["name/3662",[443,58.257]],["parent/3662",[1077,2.32]],["name/3663",[1140,71.25]],["parent/3663",[1077,2.32]],["name/3664",[1133,71.25]],["parent/3664",[1077,2.32]],["name/3665",[1084,61.034]],["parent/3665",[1077,2.32]],["name/3666",[1088,61.034]],["parent/3666",[1077,2.32]],["name/3667",[1083,61.034]],["parent/3667",[1077,2.32]],["name/3668",[1143,71.25]],["parent/3668",[1077,2.32]],["name/3669",[1144,71.25]],["parent/3669",[1077,2.32]],["name/3670",[1145,71.25]],["parent/3670",[1077,2.32]],["name/3671",[1146,71.25]],["parent/3671",[1077,2.32]],["name/3672",[1141,71.25]],["parent/3672",[1077,2.32]],["name/3673",[1142,71.25]],["parent/3673",[1077,2.32]],["name/3674",[1147,71.25]],["parent/3674",[1077,2.32]],["name/3675",[1148,71.25]],["parent/3675",[1077,2.32]],["name/3676",[1086,64.89]],["parent/3676",[1077,2.32]],["name/3677",[1085,64.89]],["parent/3677",[1077,2.32]],["name/3678",[1149,71.25]],["parent/3678",[1077,2.32]],["name/3679",[1150,71.25]],["parent/3679",[1077,2.32]],["name/3680",[1151,71.25]],["parent/3680",[1077,2.32]],["name/3681",[1152,54.304]],["parent/3681",[1077,2.32]],["name/3682",[437,58.257]],["parent/3682",[1077,2.32]],["name/3683",[438,58.257]],["parent/3683",[1077,2.32]],["name/3684",[433,58.257]],["parent/3684",[1077,2.32]],["name/3685",[436,56.087]],["parent/3685",[1077,2.32]],["name/3686",[435,56.087]],["parent/3686",[1077,2.32]],["name/3687",[425,57.669]],["parent/3687",[1077,2.32]],["name/3688",[1090,61.034]],["parent/3688",[1077,2.32]],["name/3689",[1081,61.034]],["parent/3689",[1077,2.32]],["name/3690",[1080,61.034]],["parent/3690",[1077,2.32]],["name/3691",[1082,61.034]],["parent/3691",[1077,2.32]],["name/3692",[1429,82.236]],["parent/3692",[1077,2.32]],["name/3693",[1426,71.25]],["parent/3693",[1430,3.439]],["name/3694",[1427,71.25]],["parent/3694",[1430,3.439]],["name/3695",[1222,71.25]],["parent/3695",[1430,3.439]],["name/3696",[1225,71.25]],["parent/3696",[1430,3.439]],["name/3697",[1229,71.25]],["parent/3697",[1430,3.439]],["name/3698",[1232,71.25]],["parent/3698",[1430,3.439]],["name/3699",[1235,71.25]],["parent/3699",[1430,3.439]],["name/3700",[1238,71.25]],["parent/3700",[1430,3.439]],["name/3701",[1241,71.25]],["parent/3701",[1430,3.439]],["name/3702",[1244,71.25]],["parent/3702",[1430,3.439]],["name/3703",[1248,71.25]],["parent/3703",[1430,3.439]],["name/3704",[1251,71.25]],["parent/3704",[1430,3.439]],["name/3705",[1254,71.25]],["parent/3705",[1430,3.439]],["name/3706",[1258,71.25]],["parent/3706",[1430,3.439]],["name/3707",[1262,71.25]],["parent/3707",[1430,3.439]],["name/3708",[1265,71.25]],["parent/3708",[1430,3.439]],["name/3709",[1268,71.25]],["parent/3709",[1430,3.439]],["name/3710",[1271,71.25]],["parent/3710",[1430,3.439]],["name/3711",[1219,71.25]],["parent/3711",[1430,3.439]],["name/3712",[1274,71.25]],["parent/3712",[1430,3.439]],["name/3713",[1277,71.25]],["parent/3713",[1430,3.439]],["name/3714",[1280,71.25]],["parent/3714",[1430,3.439]],["name/3715",[1283,71.25]],["parent/3715",[1430,3.439]],["name/3716",[1287,71.25]],["parent/3716",[1430,3.439]],["name/3717",[1290,71.25]],["parent/3717",[1430,3.439]],["name/3718",[1220,71.25]],["parent/3718",[1430,3.439]],["name/3719",[1293,71.25]],["parent/3719",[1430,3.439]],["name/3720",[1301,71.25]],["parent/3720",[1430,3.439]],["name/3721",[1304,71.25]],["parent/3721",[1430,3.439]],["name/3722",[1307,71.25]],["parent/3722",[1430,3.439]],["name/3723",[1310,71.25]],["parent/3723",[1430,3.439]],["name/3724",[1313,71.25]],["parent/3724",[1430,3.439]],["name/3725",[1316,71.25]],["parent/3725",[1430,3.439]],["name/3726",[1319,71.25]],["parent/3726",[1430,3.439]],["name/3727",[1322,71.25]],["parent/3727",[1430,3.439]],["name/3728",[1325,71.25]],["parent/3728",[1430,3.439]],["name/3729",[1328,71.25]],["parent/3729",[1430,3.439]],["name/3730",[1333,71.25]],["parent/3730",[1430,3.439]],["name/3731",[1336,71.25]],["parent/3731",[1430,3.439]],["name/3732",[1339,71.25]],["parent/3732",[1430,3.439]],["name/3733",[1342,71.25]],["parent/3733",[1430,3.439]],["name/3734",[1345,71.25]],["parent/3734",[1430,3.439]],["name/3735",[1221,71.25]],["parent/3735",[1430,3.439]],["name/3736",[1348,71.25]],["parent/3736",[1430,3.439]],["name/3737",[1351,71.25]],["parent/3737",[1430,3.439]],["name/3738",[1354,71.25]],["parent/3738",[1430,3.439]],["name/3739",[1359,71.25]],["parent/3739",[1430,3.439]],["name/3740",[1362,71.25]],["parent/3740",[1430,3.439]],["name/3741",[1365,71.25]],["parent/3741",[1430,3.439]],["name/3742",[1368,71.25]],["parent/3742",[1430,3.439]],["name/3743",[1371,71.25]],["parent/3743",[1430,3.439]],["name/3744",[1374,71.25]],["parent/3744",[1430,3.439]],["name/3745",[1377,71.25]],["parent/3745",[1430,3.439]],["name/3746",[1380,71.25]],["parent/3746",[1430,3.439]],["name/3747",[1383,71.25]],["parent/3747",[1430,3.439]],["name/3748",[350,64.89]],["parent/3748",[1430,3.439]],["name/3749",[352,64.89]],["parent/3749",[1430,3.439]],["name/3750",[1390,71.25]],["parent/3750",[1430,3.439]],["name/3751",[1393,71.25]],["parent/3751",[1430,3.439]],["name/3752",[1396,71.25]],["parent/3752",[1430,3.439]],["name/3753",[1399,71.25]],["parent/3753",[1430,3.439]],["name/3754",[1402,71.25]],["parent/3754",[1430,3.439]],["name/3755",[1405,71.25]],["parent/3755",[1430,3.439]],["name/3756",[1408,71.25]],["parent/3756",[1430,3.439]],["name/3757",[1411,71.25]],["parent/3757",[1430,3.439]],["name/3758",[1414,71.25]],["parent/3758",[1430,3.439]],["name/3759",[1417,71.25]],["parent/3759",[1430,3.439]],["name/3760",[1420,71.25]],["parent/3760",[1430,3.439]],["name/3761",[1423,71.25]],["parent/3761",[1430,3.439]],["name/3762",[448,58.257]],["parent/3762",[1430,3.439]],["name/3763",[449,58.257]],["parent/3763",[1430,3.439]],["name/3764",[450,58.257]],["parent/3764",[1430,3.439]],["name/3765",[794,61.034]],["parent/3765",[1430,3.439]],["name/3766",[1078,71.25]],["parent/3766",[1430,3.439]],["name/3767",[429,58.257]],["parent/3767",[1430,3.439]],["name/3768",[1099,64.89]],["parent/3768",[1430,3.439]],["name/3769",[439,58.257]],["parent/3769",[1430,3.439]],["name/3770",[440,58.257]],["parent/3770",[1430,3.439]],["name/3771",[1104,71.25]],["parent/3771",[1430,3.439]],["name/3772",[1105,71.25]],["parent/3772",[1430,3.439]],["name/3773",[1103,71.25]],["parent/3773",[1430,3.439]],["name/3774",[1106,71.25]],["parent/3774",[1430,3.439]],["name/3775",[1107,71.25]],["parent/3775",[1430,3.439]],["name/3776",[1108,71.25]],["parent/3776",[1430,3.439]],["name/3777",[441,58.257]],["parent/3777",[1430,3.439]],["name/3778",[1123,71.25]],["parent/3778",[1430,3.439]],["name/3779",[1124,71.25]],["parent/3779",[1430,3.439]],["name/3780",[1102,71.25]],["parent/3780",[1430,3.439]],["name/3781",[1126,71.25]],["parent/3781",[1430,3.439]],["name/3782",[1128,71.25]],["parent/3782",[1430,3.439]],["name/3783",[1127,71.25]],["parent/3783",[1430,3.439]],["name/3784",[1100,71.25]],["parent/3784",[1430,3.439]],["name/3785",[1101,71.25]],["parent/3785",[1430,3.439]],["name/3786",[1134,71.25]],["parent/3786",[1430,3.439]],["name/3787",[1135,71.25]],["parent/3787",[1430,3.439]],["name/3788",[1130,71.25]],["parent/3788",[1430,3.439]],["name/3789",[1131,71.25]],["parent/3789",[1430,3.439]],["name/3790",[1132,71.25]],["parent/3790",[1430,3.439]],["name/3791",[1136,71.25]],["parent/3791",[1430,3.439]],["name/3792",[1137,71.25]],["parent/3792",[1430,3.439]],["name/3793",[430,58.257]],["parent/3793",[1430,3.439]],["name/3794",[431,58.257]],["parent/3794",[1430,3.439]],["name/3795",[455,45.264]],["parent/3795",[1430,3.439]],["name/3796",[793,61.034]],["parent/3796",[1430,3.439]],["name/3797",[424,58.257]],["parent/3797",[1430,3.439]],["name/3798",[795,61.034]],["parent/3798",[1430,3.439]],["name/3799",[1079,61.034]],["parent/3799",[1430,3.439]],["name/3800",[1096,61.034]],["parent/3800",[1430,3.439]],["name/3801",[1097,64.89]],["parent/3801",[1430,3.439]],["name/3802",[1089,64.89]],["parent/3802",[1430,3.439]],["name/3803",[1114,64.89]],["parent/3803",[1430,3.439]],["name/3804",[1109,64.89]],["parent/3804",[1430,3.439]],["name/3805",[1110,64.89]],["parent/3805",[1430,3.439]],["name/3806",[1113,64.89]],["parent/3806",[1430,3.439]],["name/3807",[1112,64.89]],["parent/3807",[1430,3.439]],["name/3808",[1095,64.89]],["parent/3808",[1430,3.439]],["name/3809",[446,58.257]],["parent/3809",[1430,3.439]],["name/3810",[1094,64.89]],["parent/3810",[1430,3.439]],["name/3811",[1115,64.89]],["parent/3811",[1430,3.439]],["name/3812",[1116,64.89]],["parent/3812",[1430,3.439]],["name/3813",[1117,64.89]],["parent/3813",[1430,3.439]],["name/3814",[1118,64.89]],["parent/3814",[1430,3.439]],["name/3815",[1119,64.89]],["parent/3815",[1430,3.439]],["name/3816",[1120,64.89]],["parent/3816",[1430,3.439]],["name/3817",[1121,64.89]],["parent/3817",[1430,3.439]],["name/3818",[1122,64.89]],["parent/3818",[1430,3.439]],["name/3819",[434,58.257]],["parent/3819",[1430,3.439]],["name/3820",[427,58.257]],["parent/3820",[1430,3.439]],["name/3821",[791,61.034]],["parent/3821",[1430,3.439]],["name/3822",[792,61.034]],["parent/3822",[1430,3.439]],["name/3823",[790,61.034]],["parent/3823",[1430,3.439]],["name/3824",[1111,64.89]],["parent/3824",[1430,3.439]],["name/3825",[1091,61.034]],["parent/3825",[1430,3.439]],["name/3826",[1138,58.257]],["parent/3826",[1430,3.439]],["name/3827",[1139,71.25]],["parent/3827",[1430,3.439]],["name/3828",[1125,71.25]],["parent/3828",[1430,3.439]],["name/3829",[426,58.257]],["parent/3829",[1430,3.439]],["name/3830",[432,58.257]],["parent/3830",[1430,3.439]],["name/3831",[1087,61.034]],["parent/3831",[1430,3.439]],["name/3832",[1098,64.89]],["parent/3832",[1430,3.439]],["name/3833",[428,58.257]],["parent/3833",[1430,3.439]],["name/3834",[447,58.257]],["parent/3834",[1430,3.439]],["name/3835",[1092,64.89]],["parent/3835",[1430,3.439]],["name/3836",[1093,64.89]],["parent/3836",[1430,3.439]],["name/3837",[1129,71.25]],["parent/3837",[1430,3.439]],["name/3838",[444,58.257]],["parent/3838",[1430,3.439]],["name/3839",[445,58.257]],["parent/3839",[1430,3.439]],["name/3840",[442,58.257]],["parent/3840",[1430,3.439]],["name/3841",[443,58.257]],["parent/3841",[1430,3.439]],["name/3842",[1140,71.25]],["parent/3842",[1430,3.439]],["name/3843",[1133,71.25]],["parent/3843",[1430,3.439]],["name/3844",[1084,61.034]],["parent/3844",[1430,3.439]],["name/3845",[1088,61.034]],["parent/3845",[1430,3.439]],["name/3846",[1083,61.034]],["parent/3846",[1430,3.439]],["name/3847",[1143,71.25]],["parent/3847",[1430,3.439]],["name/3848",[1144,71.25]],["parent/3848",[1430,3.439]],["name/3849",[1145,71.25]],["parent/3849",[1430,3.439]],["name/3850",[1146,71.25]],["parent/3850",[1430,3.439]],["name/3851",[1141,71.25]],["parent/3851",[1430,3.439]],["name/3852",[1142,71.25]],["parent/3852",[1430,3.439]],["name/3853",[1147,71.25]],["parent/3853",[1430,3.439]],["name/3854",[1148,71.25]],["parent/3854",[1430,3.439]],["name/3855",[1086,64.89]],["parent/3855",[1430,3.439]],["name/3856",[1085,64.89]],["parent/3856",[1430,3.439]],["name/3857",[1149,71.25]],["parent/3857",[1430,3.439]],["name/3858",[1150,71.25]],["parent/3858",[1430,3.439]],["name/3859",[1151,71.25]],["parent/3859",[1430,3.439]],["name/3860",[1152,54.304]],["parent/3860",[1430,3.439]],["name/3861",[437,58.257]],["parent/3861",[1430,3.439]],["name/3862",[438,58.257]],["parent/3862",[1430,3.439]],["name/3863",[433,58.257]],["parent/3863",[1430,3.439]],["name/3864",[436,56.087]],["parent/3864",[1430,3.439]],["name/3865",[435,56.087]],["parent/3865",[1430,3.439]],["name/3866",[425,57.669]],["parent/3866",[1430,3.439]],["name/3867",[1090,61.034]],["parent/3867",[1430,3.439]],["name/3868",[1081,61.034]],["parent/3868",[1430,3.439]],["name/3869",[1080,61.034]],["parent/3869",[1430,3.439]],["name/3870",[1082,61.034]],["parent/3870",[1430,3.439]],["name/3871",[1431,39.609]],["parent/3871",[]],["name/3872",[43,47.475]],["parent/3872",[1431,3.955]],["name/3873",[1432,71.25]],["parent/3873",[1431,3.955]],["name/3874",[1433,71.25]],["parent/3874",[1431,3.955]],["name/3875",[1434,71.25]],["parent/3875",[1431,3.955]],["name/3876",[1435,71.25]],["parent/3876",[1431,3.955]],["name/3877",[1436,71.25]],["parent/3877",[1431,3.955]],["name/3878",[1437,71.25]],["parent/3878",[1431,3.955]],["name/3879",[1438,71.25]],["parent/3879",[1431,3.955]],["name/3880",[1439,71.25]],["parent/3880",[1431,3.955]],["name/3881",[1440,71.25]],["parent/3881",[1431,3.955]],["name/3882",[455,45.264]],["parent/3882",[1431,3.955]],["name/3883",[9,48.796]],["parent/3883",[1431,3.955]],["name/3884",[1441,71.25]],["parent/3884",[1431,3.955]],["name/3885",[1442,71.25]],["parent/3885",[1431,3.955]],["name/3886",[1138,58.257]],["parent/3886",[1431,3.955]],["name/3887",[1152,54.304]],["parent/3887",[1431,3.955]],["name/3888",[1433,71.25]],["parent/3888",[1431,3.955]],["name/3889",[1434,71.25]],["parent/3889",[1431,3.955]],["name/3890",[1435,71.25]],["parent/3890",[1431,3.955]],["name/3891",[1436,71.25]],["parent/3891",[1431,3.955]],["name/3892",[1437,71.25]],["parent/3892",[1431,3.955]],["name/3893",[1439,71.25]],["parent/3893",[1431,3.955]],["name/3894",[1438,71.25]],["parent/3894",[1431,3.955]],["name/3895",[1440,71.25]],["parent/3895",[1431,3.955]],["name/3896",[455,45.264]],["parent/3896",[1431,3.955]],["name/3897",[9,48.796]],["parent/3897",[1431,3.955]],["name/3898",[1441,71.25]],["parent/3898",[1431,3.955]],["name/3899",[1442,71.25]],["parent/3899",[1431,3.955]],["name/3900",[1138,58.257]],["parent/3900",[1431,3.955]],["name/3901",[1432,71.25]],["parent/3901",[1431,3.955]],["name/3902",[1152,54.304]],["parent/3902",[1431,3.955]],["name/3903",[1431,39.609]],["parent/3903",[1431,3.955]],["name/3904",[17,54.721]],["parent/3904",[1443,6.094]],["name/3905",[43,47.475]],["parent/3905",[1443,6.094]],["name/3906",[98,58.257]],["parent/3906",[1443,6.094]],["name/3907",[1444,73.763]],["parent/3907",[1445,6.604]],["name/3908",[1446,73.763]],["parent/3908",[1445,6.604]],["name/3909",[1447,73.763]],["parent/3909",[1445,6.604]],["name/3910",[1448,73.763]],["parent/3910",[1445,6.604]],["name/3911",[1449,73.763]],["parent/3911",[1445,6.604]],["name/3912",[1450,73.763]],["parent/3912",[1445,6.604]],["name/3913",[1451,73.763]],["parent/3913",[1445,6.604]],["name/3914",[30,56.587]],["parent/3914",[1443,6.094]],["name/3915",[125,58.257]],["parent/3915",[1443,6.094]],["name/3916",[10,27.115]],["parent/3916",[1452,8.21]],["name/3917",[1444,73.763]],["parent/3917",[1453,5.945]],["name/3918",[1454,82.236]],["parent/3918",[1453,5.945]],["name/3919",[1446,73.763]],["parent/3919",[1453,5.945]],["name/3920",[1455,82.236]],["parent/3920",[1453,5.945]],["name/3921",[1447,73.763]],["parent/3921",[1453,5.945]],["name/3922",[1456,82.236]],["parent/3922",[1453,5.945]],["name/3923",[1448,73.763]],["parent/3923",[1453,5.945]],["name/3924",[1457,82.236]],["parent/3924",[1453,5.945]],["name/3925",[1449,73.763]],["parent/3925",[1453,5.945]],["name/3926",[1458,82.236]],["parent/3926",[1453,5.945]],["name/3927",[1450,73.763]],["parent/3927",[1453,5.945]],["name/3928",[1459,82.236]],["parent/3928",[1453,5.945]],["name/3929",[1451,73.763]],["parent/3929",[1453,5.945]],["name/3930",[1460,82.236]],["parent/3930",[1453,5.945]],["name/3931",[1444,73.763]],["parent/3931",[1443,6.094]],["name/3932",[1446,73.763]],["parent/3932",[1443,6.094]],["name/3933",[1447,73.763]],["parent/3933",[1443,6.094]],["name/3934",[1448,73.763]],["parent/3934",[1443,6.094]],["name/3935",[1449,73.763]],["parent/3935",[1443,6.094]],["name/3936",[1450,73.763]],["parent/3936",[1443,6.094]],["name/3937",[1451,73.763]],["parent/3937",[1443,6.094]],["name/3938",[1461,71.25]],["parent/3938",[1431,3.955]],["name/3939",[10,27.115]],["parent/3939",[1462,8.21]],["name/3940",[547,36.628]],["parent/3940",[1463,7.7]],["name/3941",[205,41.128]],["parent/3941",[1463,7.7]],["name/3942",[1464,71.25]],["parent/3942",[1431,3.955]],["name/3943",[10,27.115]],["parent/3943",[1465,8.21]],["name/3944",[172,34.962]],["parent/3944",[1466,7.7]],["name/3945",[1467,71.25]],["parent/3945",[1466,7.7]],["name/3946",[1468,71.25]],["parent/3946",[1431,3.955]],["name/3947",[10,27.115]],["parent/3947",[1469,8.21]],["name/3948",[1470,71.25]],["parent/3948",[1471,7.364]],["name/3949",[547,36.628]],["parent/3949",[1471,7.364]],["name/3950",[205,41.128]],["parent/3950",[1471,7.364]],["name/3951",[1472,71.25]],["parent/3951",[1431,3.955]],["name/3952",[10,27.115]],["parent/3952",[1473,8.21]],["name/3953",[172,34.962]],["parent/3953",[1474,7.7]],["name/3954",[1467,71.25]],["parent/3954",[1474,7.7]],["name/3955",[1475,71.25]],["parent/3955",[1431,3.955]],["name/3956",[10,27.115]],["parent/3956",[1476,8.21]],["name/3957",[1477,67.573]],["parent/3957",[1478,7.114]],["name/3958",[1470,71.25]],["parent/3958",[1478,7.114]],["name/3959",[547,36.628]],["parent/3959",[1478,7.114]],["name/3960",[205,41.128]],["parent/3960",[1478,7.114]],["name/3961",[1479,71.25]],["parent/3961",[1431,3.955]],["name/3962",[10,27.115]],["parent/3962",[1480,8.21]],["name/3963",[172,34.962]],["parent/3963",[1481,8.21]],["name/3964",[1482,71.25]],["parent/3964",[1431,3.955]],["name/3965",[10,27.115]],["parent/3965",[1483,8.21]],["name/3966",[1477,67.573]],["parent/3966",[1484,7.364]],["name/3967",[547,36.628]],["parent/3967",[1484,7.364]],["name/3968",[205,41.128]],["parent/3968",[1484,7.364]],["name/3969",[1485,71.25]],["parent/3969",[1431,3.955]],["name/3970",[10,27.115]],["parent/3970",[1486,8.21]],["name/3971",[172,34.962]],["parent/3971",[1487,8.21]],["name/3972",[1488,71.25]],["parent/3972",[1431,3.955]],["name/3973",[10,27.115]],["parent/3973",[1489,8.21]],["name/3974",[1490,77.128]],["parent/3974",[1491,7.114]],["name/3975",[23,71.25]],["parent/3975",[1491,7.114]],["name/3976",[547,36.628]],["parent/3976",[1491,7.114]],["name/3977",[205,41.128]],["parent/3977",[1491,7.114]],["name/3978",[1492,71.25]],["parent/3978",[1431,3.955]],["name/3979",[10,27.115]],["parent/3979",[1493,8.21]],["name/3980",[1494,82.236]],["parent/3980",[1495,7.7]],["name/3981",[172,34.962]],["parent/3981",[1495,7.7]],["name/3982",[1496,71.25]],["parent/3982",[1431,3.955]],["name/3983",[10,27.115]],["parent/3983",[1497,8.21]],["name/3984",[1498,82.236]],["parent/3984",[1499,6.604]],["name/3985",[1500,82.236]],["parent/3985",[1499,6.604]],["name/3986",[1501,82.236]],["parent/3986",[1499,6.604]],["name/3987",[1490,77.128]],["parent/3987",[1499,6.604]],["name/3988",[23,71.25]],["parent/3988",[1499,6.604]],["name/3989",[547,36.628]],["parent/3989",[1499,6.604]],["name/3990",[205,41.128]],["parent/3990",[1499,6.604]],["name/3991",[1502,71.25]],["parent/3991",[1431,3.955]],["name/3992",[10,27.115]],["parent/3992",[1503,8.21]],["name/3993",[172,34.962]],["parent/3993",[1504,8.21]],["name/3994",[1505,71.25]],["parent/3994",[1431,3.955]],["name/3995",[10,27.115]],["parent/3995",[1506,8.21]],["name/3996",[1507,73.763]],["parent/3996",[1508,6.604]],["name/3997",[1509,77.128]],["parent/3997",[1508,6.604]],["name/3998",[1510,77.128]],["parent/3998",[1508,6.604]],["name/3999",[547,36.628]],["parent/3999",[1508,6.604]],["name/4000",[205,41.128]],["parent/4000",[1508,6.604]],["name/4001",[1299,69.243]],["parent/4001",[1508,6.604]],["name/4002",[1300,71.25]],["parent/4002",[1508,6.604]],["name/4003",[1511,71.25]],["parent/4003",[1431,3.955]],["name/4004",[10,27.115]],["parent/4004",[1512,8.21]],["name/4005",[172,34.962]],["parent/4005",[1513,8.21]],["name/4006",[1514,71.25]],["parent/4006",[1431,3.955]],["name/4007",[1515,71.25]],["parent/4007",[1431,3.955]],["name/4008",[1516,73.763]],["parent/4008",[1431,3.955]],["name/4009",[1461,71.25]],["parent/4009",[1431,3.955]],["name/4010",[1464,71.25]],["parent/4010",[1431,3.955]],["name/4011",[1468,71.25]],["parent/4011",[1431,3.955]],["name/4012",[1472,71.25]],["parent/4012",[1431,3.955]],["name/4013",[1475,71.25]],["parent/4013",[1431,3.955]],["name/4014",[1479,71.25]],["parent/4014",[1431,3.955]],["name/4015",[1482,71.25]],["parent/4015",[1431,3.955]],["name/4016",[1485,71.25]],["parent/4016",[1431,3.955]],["name/4017",[1488,71.25]],["parent/4017",[1431,3.955]],["name/4018",[1492,71.25]],["parent/4018",[1431,3.955]],["name/4019",[1496,71.25]],["parent/4019",[1431,3.955]],["name/4020",[1502,71.25]],["parent/4020",[1431,3.955]],["name/4021",[1505,71.25]],["parent/4021",[1431,3.955]],["name/4022",[1511,71.25]],["parent/4022",[1431,3.955]],["name/4023",[1514,71.25]],["parent/4023",[1431,3.955]],["name/4024",[1515,71.25]],["parent/4024",[1431,3.955]],["name/4025",[1516,73.763]],["parent/4025",[1431,3.955]],["name/4026",[1431,39.609]],["parent/4026",[1431,3.955]],["name/4027",[43,47.475]],["parent/4027",[1431,3.955]],["name/4028",[1461,71.25]],["parent/4028",[1431,3.955]],["name/4029",[1464,71.25]],["parent/4029",[1431,3.955]],["name/4030",[1468,71.25]],["parent/4030",[1431,3.955]],["name/4031",[1472,71.25]],["parent/4031",[1431,3.955]],["name/4032",[1475,71.25]],["parent/4032",[1431,3.955]],["name/4033",[1479,71.25]],["parent/4033",[1431,3.955]],["name/4034",[1482,71.25]],["parent/4034",[1431,3.955]],["name/4035",[1485,71.25]],["parent/4035",[1431,3.955]],["name/4036",[1488,71.25]],["parent/4036",[1431,3.955]],["name/4037",[1492,71.25]],["parent/4037",[1431,3.955]],["name/4038",[1496,71.25]],["parent/4038",[1431,3.955]],["name/4039",[1502,71.25]],["parent/4039",[1431,3.955]],["name/4040",[1505,71.25]],["parent/4040",[1431,3.955]],["name/4041",[1511,71.25]],["parent/4041",[1431,3.955]],["name/4042",[1514,71.25]],["parent/4042",[1431,3.955]],["name/4043",[1515,71.25]],["parent/4043",[1431,3.955]],["name/4044",[1516,73.763]],["parent/4044",[1431,3.955]],["name/4045",[1431,39.609]],["parent/4045",[1431,3.955]],["name/4046",[1433,71.25]],["parent/4046",[1431,3.955]],["name/4047",[1434,71.25]],["parent/4047",[1431,3.955]],["name/4048",[1435,71.25]],["parent/4048",[1431,3.955]],["name/4049",[1436,71.25]],["parent/4049",[1431,3.955]],["name/4050",[1437,71.25]],["parent/4050",[1431,3.955]],["name/4051",[1439,71.25]],["parent/4051",[1431,3.955]],["name/4052",[1438,71.25]],["parent/4052",[1431,3.955]],["name/4053",[1440,71.25]],["parent/4053",[1431,3.955]],["name/4054",[455,45.264]],["parent/4054",[1431,3.955]],["name/4055",[9,48.796]],["parent/4055",[1431,3.955]],["name/4056",[1441,71.25]],["parent/4056",[1431,3.955]],["name/4057",[1442,71.25]],["parent/4057",[1431,3.955]],["name/4058",[1138,58.257]],["parent/4058",[1431,3.955]],["name/4059",[1432,71.25]],["parent/4059",[1431,3.955]],["name/4060",[1152,54.304]],["parent/4060",[1431,3.955]],["name/4061",[1517,82.236]],["parent/4061",[1431,3.955]],["name/4062",[1514,71.25]],["parent/4062",[1518,5.171]],["name/4063",[1515,71.25]],["parent/4063",[1518,5.171]],["name/4064",[1461,71.25]],["parent/4064",[1518,5.171]],["name/4065",[1464,71.25]],["parent/4065",[1518,5.171]],["name/4066",[1468,71.25]],["parent/4066",[1518,5.171]],["name/4067",[1472,71.25]],["parent/4067",[1518,5.171]],["name/4068",[1475,71.25]],["parent/4068",[1518,5.171]],["name/4069",[1479,71.25]],["parent/4069",[1518,5.171]],["name/4070",[1482,71.25]],["parent/4070",[1518,5.171]],["name/4071",[1485,71.25]],["parent/4071",[1518,5.171]],["name/4072",[1488,71.25]],["parent/4072",[1518,5.171]],["name/4073",[1492,71.25]],["parent/4073",[1518,5.171]],["name/4074",[1496,71.25]],["parent/4074",[1518,5.171]],["name/4075",[1502,71.25]],["parent/4075",[1518,5.171]],["name/4076",[1505,71.25]],["parent/4076",[1518,5.171]],["name/4077",[1511,71.25]],["parent/4077",[1518,5.171]],["name/4078",[1433,71.25]],["parent/4078",[1518,5.171]],["name/4079",[1434,71.25]],["parent/4079",[1518,5.171]],["name/4080",[1435,71.25]],["parent/4080",[1518,5.171]],["name/4081",[1436,71.25]],["parent/4081",[1518,5.171]],["name/4082",[1437,71.25]],["parent/4082",[1518,5.171]],["name/4083",[1439,71.25]],["parent/4083",[1518,5.171]],["name/4084",[1438,71.25]],["parent/4084",[1518,5.171]],["name/4085",[1440,71.25]],["parent/4085",[1518,5.171]],["name/4086",[455,45.264]],["parent/4086",[1518,5.171]],["name/4087",[9,48.796]],["parent/4087",[1518,5.171]],["name/4088",[1441,71.25]],["parent/4088",[1518,5.171]],["name/4089",[1442,71.25]],["parent/4089",[1518,5.171]],["name/4090",[1138,58.257]],["parent/4090",[1518,5.171]],["name/4091",[1432,71.25]],["parent/4091",[1518,5.171]],["name/4092",[1152,54.304]],["parent/4092",[1518,5.171]],["name/4093",[1519,50.048]],["parent/4093",[]],["name/4094",[43,47.475]],["parent/4094",[1519,4.997]],["name/4095",[455,45.264]],["parent/4095",[1519,4.997]],["name/4096",[1520,71.25]],["parent/4096",[1519,4.997]],["name/4097",[1521,71.25]],["parent/4097",[1519,4.997]],["name/4098",[1522,71.25]],["parent/4098",[1519,4.997]],["name/4099",[455,45.264]],["parent/4099",[1519,4.997]],["name/4100",[1520,71.25]],["parent/4100",[1519,4.997]],["name/4101",[1521,71.25]],["parent/4101",[1519,4.997]],["name/4102",[1522,71.25]],["parent/4102",[1519,4.997]],["name/4103",[1519,50.048]],["parent/4103",[1519,4.997]],["name/4104",[17,54.721]],["parent/4104",[1523,6.746]],["name/4105",[43,47.475]],["parent/4105",[1523,6.746]],["name/4106",[98,58.257]],["parent/4106",[1523,6.746]],["name/4107",[1524,73.763]],["parent/4107",[1525,8.21]],["name/4108",[30,56.587]],["parent/4108",[1523,6.746]],["name/4109",[125,58.257]],["parent/4109",[1523,6.746]],["name/4110",[10,27.115]],["parent/4110",[1526,8.21]],["name/4111",[1524,73.763]],["parent/4111",[1527,7.7]],["name/4112",[1528,82.236]],["parent/4112",[1527,7.7]],["name/4113",[1524,73.763]],["parent/4113",[1523,6.746]],["name/4114",[1529,71.25]],["parent/4114",[1519,4.997]],["name/4115",[10,27.115]],["parent/4115",[1530,8.21]],["name/4116",[547,36.628]],["parent/4116",[1531,8.21]],["name/4117",[1532,71.25]],["parent/4117",[1519,4.997]],["name/4118",[10,27.115]],["parent/4118",[1533,8.21]],["name/4119",[172,34.962]],["parent/4119",[1534,8.21]],["name/4120",[1535,71.25]],["parent/4120",[1519,4.997]],["name/4121",[1536,71.25]],["parent/4121",[1519,4.997]],["name/4122",[1537,73.763]],["parent/4122",[1519,4.997]],["name/4123",[1529,71.25]],["parent/4123",[1519,4.997]],["name/4124",[1532,71.25]],["parent/4124",[1519,4.997]],["name/4125",[1535,71.25]],["parent/4125",[1519,4.997]],["name/4126",[1536,71.25]],["parent/4126",[1519,4.997]],["name/4127",[1537,73.763]],["parent/4127",[1519,4.997]],["name/4128",[1519,50.048]],["parent/4128",[1519,4.997]],["name/4129",[43,47.475]],["parent/4129",[1519,4.997]],["name/4130",[1529,71.25]],["parent/4130",[1519,4.997]],["name/4131",[1532,71.25]],["parent/4131",[1519,4.997]],["name/4132",[1535,71.25]],["parent/4132",[1519,4.997]],["name/4133",[1536,71.25]],["parent/4133",[1519,4.997]],["name/4134",[1537,73.763]],["parent/4134",[1519,4.997]],["name/4135",[1519,50.048]],["parent/4135",[1519,4.997]],["name/4136",[455,45.264]],["parent/4136",[1519,4.997]],["name/4137",[1520,71.25]],["parent/4137",[1519,4.997]],["name/4138",[1521,71.25]],["parent/4138",[1519,4.997]],["name/4139",[1522,71.25]],["parent/4139",[1519,4.997]],["name/4140",[1538,82.236]],["parent/4140",[1519,4.997]],["name/4141",[1535,71.25]],["parent/4141",[1539,6.479]],["name/4142",[1536,71.25]],["parent/4142",[1539,6.479]],["name/4143",[1529,71.25]],["parent/4143",[1539,6.479]],["name/4144",[1532,71.25]],["parent/4144",[1539,6.479]],["name/4145",[455,45.264]],["parent/4145",[1539,6.479]],["name/4146",[1520,71.25]],["parent/4146",[1539,6.479]],["name/4147",[1521,71.25]],["parent/4147",[1539,6.479]],["name/4148",[1522,71.25]],["parent/4148",[1539,6.479]],["name/4149",[43,47.475]],["parent/4149",[42,2.768]],["name/4150",[153,71.25]],["parent/4150",[42,2.768]],["name/4151",[154,71.25]],["parent/4151",[42,2.768]],["name/4152",[155,71.25]],["parent/4152",[42,2.768]],["name/4153",[156,71.25]],["parent/4153",[42,2.768]],["name/4154",[157,71.25]],["parent/4154",[42,2.768]],["name/4155",[158,71.25]],["parent/4155",[42,2.768]],["name/4156",[159,71.25]],["parent/4156",[42,2.768]],["name/4157",[160,71.25]],["parent/4157",[42,2.768]],["name/4158",[161,71.25]],["parent/4158",[42,2.768]],["name/4159",[162,71.25]],["parent/4159",[42,2.768]],["name/4160",[163,71.25]],["parent/4160",[42,2.768]],["name/4161",[164,71.25]],["parent/4161",[42,2.768]],["name/4162",[165,71.25]],["parent/4162",[42,2.768]],["name/4163",[166,71.25]],["parent/4163",[42,2.768]],["name/4164",[167,71.25]],["parent/4164",[42,2.768]],["name/4165",[168,71.25]],["parent/4165",[42,2.768]],["name/4166",[170,71.25]],["parent/4166",[42,2.768]],["name/4167",[174,71.25]],["parent/4167",[42,2.768]],["name/4168",[185,71.25]],["parent/4168",[42,2.768]],["name/4169",[190,71.25]],["parent/4169",[42,2.768]],["name/4170",[193,71.25]],["parent/4170",[42,2.768]],["name/4171",[197,71.25]],["parent/4171",[42,2.768]],["name/4172",[200,71.25]],["parent/4172",[42,2.768]],["name/4173",[212,71.25]],["parent/4173",[42,2.768]],["name/4174",[214,71.25]],["parent/4174",[42,2.768]],["name/4175",[217,71.25]],["parent/4175",[42,2.768]],["name/4176",[221,71.25]],["parent/4176",[42,2.768]],["name/4177",[224,71.25]],["parent/4177",[42,2.768]],["name/4178",[229,71.25]],["parent/4178",[42,2.768]],["name/4179",[232,71.25]],["parent/4179",[42,2.768]],["name/4180",[235,71.25]],["parent/4180",[42,2.768]],["name/4181",[237,71.25]],["parent/4181",[42,2.768]],["name/4182",[240,71.25]],["parent/4182",[42,2.768]],["name/4183",[242,71.25]],["parent/4183",[42,2.768]],["name/4184",[245,71.25]],["parent/4184",[42,2.768]],["name/4185",[247,71.25]],["parent/4185",[42,2.768]],["name/4186",[250,71.25]],["parent/4186",[42,2.768]],["name/4187",[258,71.25]],["parent/4187",[42,2.768]],["name/4188",[260,71.25]],["parent/4188",[42,2.768]],["name/4189",[263,71.25]],["parent/4189",[42,2.768]],["name/4190",[266,71.25]],["parent/4190",[42,2.768]],["name/4191",[269,71.25]],["parent/4191",[42,2.768]],["name/4192",[271,71.25]],["parent/4192",[42,2.768]],["name/4193",[274,71.25]],["parent/4193",[42,2.768]],["name/4194",[279,71.25]],["parent/4194",[42,2.768]],["name/4195",[281,71.25]],["parent/4195",[42,2.768]],["name/4196",[284,71.25]],["parent/4196",[42,2.768]],["name/4197",[287,71.25]],["parent/4197",[42,2.768]],["name/4198",[289,71.25]],["parent/4198",[42,2.768]],["name/4199",[292,71.25]],["parent/4199",[42,2.768]],["name/4200",[298,71.25]],["parent/4200",[42,2.768]],["name/4201",[300,71.25]],["parent/4201",[42,2.768]],["name/4202",[303,71.25]],["parent/4202",[42,2.768]],["name/4203",[308,71.25]],["parent/4203",[42,2.768]],["name/4204",[311,71.25]],["parent/4204",[42,2.768]],["name/4205",[314,71.25]],["parent/4205",[42,2.768]],["name/4206",[316,71.25]],["parent/4206",[42,2.768]],["name/4207",[319,71.25]],["parent/4207",[42,2.768]],["name/4208",[323,71.25]],["parent/4208",[42,2.768]],["name/4209",[326,71.25]],["parent/4209",[42,2.768]],["name/4210",[329,71.25]],["parent/4210",[42,2.768]],["name/4211",[331,71.25]],["parent/4211",[42,2.768]],["name/4212",[334,71.25]],["parent/4212",[42,2.768]],["name/4213",[336,71.25]],["parent/4213",[42,2.768]],["name/4214",[339,71.25]],["parent/4214",[42,2.768]],["name/4215",[344,71.25]],["parent/4215",[42,2.768]],["name/4216",[347,71.25]],["parent/4216",[42,2.768]],["name/4217",[350,64.89]],["parent/4217",[42,2.768]],["name/4218",[352,64.89]],["parent/4218",[42,2.768]],["name/4219",[355,71.25]],["parent/4219",[42,2.768]],["name/4220",[360,71.25]],["parent/4220",[42,2.768]],["name/4221",[362,71.25]],["parent/4221",[42,2.768]],["name/4222",[365,71.25]],["parent/4222",[42,2.768]],["name/4223",[368,71.25]],["parent/4223",[42,2.768]],["name/4224",[370,71.25]],["parent/4224",[42,2.768]],["name/4225",[373,71.25]],["parent/4225",[42,2.768]],["name/4226",[377,71.25]],["parent/4226",[42,2.768]],["name/4227",[379,71.25]],["parent/4227",[42,2.768]],["name/4228",[382,71.25]],["parent/4228",[42,2.768]],["name/4229",[387,71.25]],["parent/4229",[42,2.768]],["name/4230",[388,71.25]],["parent/4230",[42,2.768]],["name/4231",[389,73.763]],["parent/4231",[42,2.768]],["name/4232",[390,73.763]],["parent/4232",[42,2.768]],["name/4233",[391,73.763]],["parent/4233",[42,2.768]],["name/4234",[392,73.763]],["parent/4234",[42,2.768]],["name/4235",[42,27.726]],["parent/4235",[42,2.768]],["name/4236",[80,71.25]],["parent/4236",[42,2.768]],["name/4237",[83,71.25]],["parent/4237",[42,2.768]],["name/4238",[76,71.25]],["parent/4238",[42,2.768]],["name/4239",[74,71.25]],["parent/4239",[42,2.768]],["name/4240",[75,71.25]],["parent/4240",[42,2.768]],["name/4241",[72,71.25]],["parent/4241",[42,2.768]],["name/4242",[73,71.25]],["parent/4242",[42,2.768]],["name/4243",[71,71.25]],["parent/4243",[42,2.768]],["name/4244",[70,71.25]],["parent/4244",[42,2.768]],["name/4245",[69,71.25]],["parent/4245",[42,2.768]],["name/4246",[84,71.25]],["parent/4246",[42,2.768]],["name/4247",[85,71.25]],["parent/4247",[42,2.768]],["name/4248",[86,71.25]],["parent/4248",[42,2.768]],["name/4249",[87,71.25]],["parent/4249",[42,2.768]],["name/4250",[88,71.25]],["parent/4250",[42,2.768]],["name/4251",[89,71.25]],["parent/4251",[42,2.768]],["name/4252",[90,71.25]],["parent/4252",[42,2.768]],["name/4253",[78,71.25]],["parent/4253",[42,2.768]],["name/4254",[79,71.25]],["parent/4254",[42,2.768]],["name/4255",[77,71.25]],["parent/4255",[42,2.768]],["name/4256",[91,71.25]],["parent/4256",[42,2.768]],["name/4257",[92,71.25]],["parent/4257",[42,2.768]],["name/4258",[93,71.25]],["parent/4258",[42,2.768]],["name/4259",[94,71.25]],["parent/4259",[42,2.768]],["name/4260",[95,71.25]],["parent/4260",[42,2.768]],["name/4261",[96,71.25]],["parent/4261",[42,2.768]],["name/4262",[82,71.25]],["parent/4262",[42,2.768]],["name/4263",[81,71.25]],["parent/4263",[42,2.768]],["name/4264",[1540,82.236]],["parent/4264",[42,2.768]],["name/4265",[387,71.25]],["parent/4265",[1541,3.927]],["name/4266",[388,71.25]],["parent/4266",[1541,3.927]],["name/4267",[174,71.25]],["parent/4267",[1541,3.927]],["name/4268",[168,71.25]],["parent/4268",[1541,3.927]],["name/4269",[170,71.25]],["parent/4269",[1541,3.927]],["name/4270",[153,71.25]],["parent/4270",[1541,3.927]],["name/4271",[154,71.25]],["parent/4271",[1541,3.927]],["name/4272",[185,71.25]],["parent/4272",[1541,3.927]],["name/4273",[190,71.25]],["parent/4273",[1541,3.927]],["name/4274",[155,71.25]],["parent/4274",[1541,3.927]],["name/4275",[200,71.25]],["parent/4275",[1541,3.927]],["name/4276",[193,71.25]],["parent/4276",[1541,3.927]],["name/4277",[197,71.25]],["parent/4277",[1541,3.927]],["name/4278",[156,71.25]],["parent/4278",[1541,3.927]],["name/4279",[217,71.25]],["parent/4279",[1541,3.927]],["name/4280",[212,71.25]],["parent/4280",[1541,3.927]],["name/4281",[214,71.25]],["parent/4281",[1541,3.927]],["name/4282",[221,71.25]],["parent/4282",[1541,3.927]],["name/4283",[224,71.25]],["parent/4283",[1541,3.927]],["name/4284",[229,71.25]],["parent/4284",[1541,3.927]],["name/4285",[232,71.25]],["parent/4285",[1541,3.927]],["name/4286",[235,71.25]],["parent/4286",[1541,3.927]],["name/4287",[237,71.25]],["parent/4287",[1541,3.927]],["name/4288",[240,71.25]],["parent/4288",[1541,3.927]],["name/4289",[242,71.25]],["parent/4289",[1541,3.927]],["name/4290",[250,71.25]],["parent/4290",[1541,3.927]],["name/4291",[245,71.25]],["parent/4291",[1541,3.927]],["name/4292",[247,71.25]],["parent/4292",[1541,3.927]],["name/4293",[258,71.25]],["parent/4293",[1541,3.927]],["name/4294",[260,71.25]],["parent/4294",[1541,3.927]],["name/4295",[263,71.25]],["parent/4295",[1541,3.927]],["name/4296",[266,71.25]],["parent/4296",[1541,3.927]],["name/4297",[157,71.25]],["parent/4297",[1541,3.927]],["name/4298",[274,71.25]],["parent/4298",[1541,3.927]],["name/4299",[269,71.25]],["parent/4299",[1541,3.927]],["name/4300",[271,71.25]],["parent/4300",[1541,3.927]],["name/4301",[158,71.25]],["parent/4301",[1541,3.927]],["name/4302",[284,71.25]],["parent/4302",[1541,3.927]],["name/4303",[279,71.25]],["parent/4303",[1541,3.927]],["name/4304",[281,71.25]],["parent/4304",[1541,3.927]],["name/4305",[159,71.25]],["parent/4305",[1541,3.927]],["name/4306",[292,71.25]],["parent/4306",[1541,3.927]],["name/4307",[287,71.25]],["parent/4307",[1541,3.927]],["name/4308",[289,71.25]],["parent/4308",[1541,3.927]],["name/4309",[160,71.25]],["parent/4309",[1541,3.927]],["name/4310",[303,71.25]],["parent/4310",[1541,3.927]],["name/4311",[298,71.25]],["parent/4311",[1541,3.927]],["name/4312",[300,71.25]],["parent/4312",[1541,3.927]],["name/4313",[161,71.25]],["parent/4313",[1541,3.927]],["name/4314",[308,71.25]],["parent/4314",[1541,3.927]],["name/4315",[311,71.25]],["parent/4315",[1541,3.927]],["name/4316",[162,71.25]],["parent/4316",[1541,3.927]],["name/4317",[163,71.25]],["parent/4317",[1541,3.927]],["name/4318",[164,71.25]],["parent/4318",[1541,3.927]],["name/4319",[319,71.25]],["parent/4319",[1541,3.927]],["name/4320",[314,71.25]],["parent/4320",[1541,3.927]],["name/4321",[316,71.25]],["parent/4321",[1541,3.927]],["name/4322",[323,71.25]],["parent/4322",[1541,3.927]],["name/4323",[326,71.25]],["parent/4323",[1541,3.927]],["name/4324",[329,71.25]],["parent/4324",[1541,3.927]],["name/4325",[331,71.25]],["parent/4325",[1541,3.927]],["name/4326",[165,71.25]],["parent/4326",[1541,3.927]],["name/4327",[339,71.25]],["parent/4327",[1541,3.927]],["name/4328",[334,71.25]],["parent/4328",[1541,3.927]],["name/4329",[336,71.25]],["parent/4329",[1541,3.927]],["name/4330",[166,71.25]],["parent/4330",[1541,3.927]],["name/4331",[344,71.25]],["parent/4331",[1541,3.927]],["name/4332",[347,71.25]],["parent/4332",[1541,3.927]],["name/4333",[355,71.25]],["parent/4333",[1541,3.927]],["name/4334",[350,64.89]],["parent/4334",[1541,3.927]],["name/4335",[352,64.89]],["parent/4335",[1541,3.927]],["name/4336",[167,71.25]],["parent/4336",[1541,3.927]],["name/4337",[365,71.25]],["parent/4337",[1541,3.927]],["name/4338",[360,71.25]],["parent/4338",[1541,3.927]],["name/4339",[362,71.25]],["parent/4339",[1541,3.927]],["name/4340",[373,71.25]],["parent/4340",[1541,3.927]],["name/4341",[368,71.25]],["parent/4341",[1541,3.927]],["name/4342",[370,71.25]],["parent/4342",[1541,3.927]],["name/4343",[382,71.25]],["parent/4343",[1541,3.927]],["name/4344",[377,71.25]],["parent/4344",[1541,3.927]],["name/4345",[379,71.25]],["parent/4345",[1541,3.927]],["name/4346",[80,71.25]],["parent/4346",[1541,3.927]],["name/4347",[83,71.25]],["parent/4347",[1541,3.927]],["name/4348",[76,71.25]],["parent/4348",[1541,3.927]],["name/4349",[74,71.25]],["parent/4349",[1541,3.927]],["name/4350",[75,71.25]],["parent/4350",[1541,3.927]],["name/4351",[72,71.25]],["parent/4351",[1541,3.927]],["name/4352",[73,71.25]],["parent/4352",[1541,3.927]],["name/4353",[71,71.25]],["parent/4353",[1541,3.927]],["name/4354",[70,71.25]],["parent/4354",[1541,3.927]],["name/4355",[69,71.25]],["parent/4355",[1541,3.927]],["name/4356",[84,71.25]],["parent/4356",[1541,3.927]],["name/4357",[85,71.25]],["parent/4357",[1541,3.927]],["name/4358",[86,71.25]],["parent/4358",[1541,3.927]],["name/4359",[87,71.25]],["parent/4359",[1541,3.927]],["name/4360",[88,71.25]],["parent/4360",[1541,3.927]],["name/4361",[89,71.25]],["parent/4361",[1541,3.927]],["name/4362",[90,71.25]],["parent/4362",[1541,3.927]],["name/4363",[78,71.25]],["parent/4363",[1541,3.927]],["name/4364",[79,71.25]],["parent/4364",[1541,3.927]],["name/4365",[77,71.25]],["parent/4365",[1541,3.927]],["name/4366",[91,71.25]],["parent/4366",[1541,3.927]],["name/4367",[92,71.25]],["parent/4367",[1541,3.927]],["name/4368",[93,71.25]],["parent/4368",[1541,3.927]],["name/4369",[94,71.25]],["parent/4369",[1541,3.927]],["name/4370",[95,71.25]],["parent/4370",[1541,3.927]],["name/4371",[96,71.25]],["parent/4371",[1541,3.927]],["name/4372",[82,71.25]],["parent/4372",[1541,3.927]],["name/4373",[81,71.25]],["parent/4373",[1541,3.927]],["name/4374",[1542,30.362]],["parent/4374",[]],["name/4375",[43,47.475]],["parent/4375",[1542,3.031]],["name/4376",[424,58.257]],["parent/4376",[1542,3.031]],["name/4377",[425,57.669]],["parent/4377",[1542,3.031]],["name/4378",[790,61.034]],["parent/4378",[1542,3.031]],["name/4379",[791,61.034]],["parent/4379",[1542,3.031]],["name/4380",[792,61.034]],["parent/4380",[1542,3.031]],["name/4381",[793,61.034]],["parent/4381",[1542,3.031]],["name/4382",[426,58.257]],["parent/4382",[1542,3.031]],["name/4383",[427,58.257]],["parent/4383",[1542,3.031]],["name/4384",[428,58.257]],["parent/4384",[1542,3.031]],["name/4385",[429,58.257]],["parent/4385",[1542,3.031]],["name/4386",[430,58.257]],["parent/4386",[1542,3.031]],["name/4387",[431,58.257]],["parent/4387",[1542,3.031]],["name/4388",[432,58.257]],["parent/4388",[1542,3.031]],["name/4389",[433,58.257]],["parent/4389",[1542,3.031]],["name/4390",[434,58.257]],["parent/4390",[1542,3.031]],["name/4391",[435,56.087]],["parent/4391",[1542,3.031]],["name/4392",[436,56.087]],["parent/4392",[1542,3.031]],["name/4393",[437,58.257]],["parent/4393",[1542,3.031]],["name/4394",[438,58.257]],["parent/4394",[1542,3.031]],["name/4395",[439,58.257]],["parent/4395",[1542,3.031]],["name/4396",[440,58.257]],["parent/4396",[1542,3.031]],["name/4397",[441,58.257]],["parent/4397",[1542,3.031]],["name/4398",[442,58.257]],["parent/4398",[1542,3.031]],["name/4399",[443,58.257]],["parent/4399",[1542,3.031]],["name/4400",[444,58.257]],["parent/4400",[1542,3.031]],["name/4401",[445,58.257]],["parent/4401",[1542,3.031]],["name/4402",[447,58.257]],["parent/4402",[1542,3.031]],["name/4403",[446,58.257]],["parent/4403",[1542,3.031]],["name/4404",[794,61.034]],["parent/4404",[1542,3.031]],["name/4405",[795,61.034]],["parent/4405",[1542,3.031]],["name/4406",[448,58.257]],["parent/4406",[1542,3.031]],["name/4407",[449,58.257]],["parent/4407",[1542,3.031]],["name/4408",[450,58.257]],["parent/4408",[1542,3.031]],["name/4409",[455,45.264]],["parent/4409",[1542,3.031]],["name/4410",[1543,71.25]],["parent/4410",[1542,3.031]],["name/4411",[1544,71.25]],["parent/4411",[1542,3.031]],["name/4412",[796,64.89]],["parent/4412",[1542,3.031]],["name/4413",[9,48.796]],["parent/4413",[1542,3.031]],["name/4414",[1112,64.89]],["parent/4414",[1542,3.031]],["name/4415",[1113,64.89]],["parent/4415",[1542,3.031]],["name/4416",[1114,64.89]],["parent/4416",[1542,3.031]],["name/4417",[1109,64.89]],["parent/4417",[1542,3.031]],["name/4418",[1110,64.89]],["parent/4418",[1542,3.031]],["name/4419",[1111,64.89]],["parent/4419",[1542,3.031]],["name/4420",[1115,64.89]],["parent/4420",[1542,3.031]],["name/4421",[1116,64.89]],["parent/4421",[1542,3.031]],["name/4422",[1117,64.89]],["parent/4422",[1542,3.031]],["name/4423",[1118,64.89]],["parent/4423",[1542,3.031]],["name/4424",[1119,64.89]],["parent/4424",[1542,3.031]],["name/4425",[1120,64.89]],["parent/4425",[1542,3.031]],["name/4426",[1121,64.89]],["parent/4426",[1542,3.031]],["name/4427",[1122,64.89]],["parent/4427",[1542,3.031]],["name/4428",[1545,71.25]],["parent/4428",[1542,3.031]],["name/4429",[451,61.034]],["parent/4429",[1542,3.031]],["name/4430",[797,64.89]],["parent/4430",[1542,3.031]],["name/4431",[798,64.89]],["parent/4431",[1542,3.031]],["name/4432",[799,64.89]],["parent/4432",[1542,3.031]],["name/4433",[1546,71.25]],["parent/4433",[1542,3.031]],["name/4434",[456,61.034]],["parent/4434",[1542,3.031]],["name/4435",[457,61.034]],["parent/4435",[1542,3.031]],["name/4436",[458,61.034]],["parent/4436",[1542,3.031]],["name/4437",[462,61.034]],["parent/4437",[1542,3.031]],["name/4438",[463,61.034]],["parent/4438",[1542,3.031]],["name/4439",[464,61.034]],["parent/4439",[1542,3.031]],["name/4440",[448,58.257]],["parent/4440",[1542,3.031]],["name/4441",[449,58.257]],["parent/4441",[1542,3.031]],["name/4442",[450,58.257]],["parent/4442",[1542,3.031]],["name/4443",[794,61.034]],["parent/4443",[1542,3.031]],["name/4444",[429,58.257]],["parent/4444",[1542,3.031]],["name/4445",[439,58.257]],["parent/4445",[1542,3.031]],["name/4446",[440,58.257]],["parent/4446",[1542,3.031]],["name/4447",[441,58.257]],["parent/4447",[1542,3.031]],["name/4448",[430,58.257]],["parent/4448",[1542,3.031]],["name/4449",[431,58.257]],["parent/4449",[1542,3.031]],["name/4450",[455,45.264]],["parent/4450",[1542,3.031]],["name/4451",[1543,71.25]],["parent/4451",[1542,3.031]],["name/4452",[1544,71.25]],["parent/4452",[1542,3.031]],["name/4453",[796,64.89]],["parent/4453",[1542,3.031]],["name/4454",[793,61.034]],["parent/4454",[1542,3.031]],["name/4455",[424,58.257]],["parent/4455",[1542,3.031]],["name/4456",[795,61.034]],["parent/4456",[1542,3.031]],["name/4457",[9,48.796]],["parent/4457",[1542,3.031]],["name/4458",[1114,64.89]],["parent/4458",[1542,3.031]],["name/4459",[1109,64.89]],["parent/4459",[1542,3.031]],["name/4460",[1110,64.89]],["parent/4460",[1542,3.031]],["name/4461",[1113,64.89]],["parent/4461",[1542,3.031]],["name/4462",[1112,64.89]],["parent/4462",[1542,3.031]],["name/4463",[446,58.257]],["parent/4463",[1542,3.031]],["name/4464",[1115,64.89]],["parent/4464",[1542,3.031]],["name/4465",[1116,64.89]],["parent/4465",[1542,3.031]],["name/4466",[1117,64.89]],["parent/4466",[1542,3.031]],["name/4467",[1118,64.89]],["parent/4467",[1542,3.031]],["name/4468",[1119,64.89]],["parent/4468",[1542,3.031]],["name/4469",[1120,64.89]],["parent/4469",[1542,3.031]],["name/4470",[1121,64.89]],["parent/4470",[1542,3.031]],["name/4471",[1122,64.89]],["parent/4471",[1542,3.031]],["name/4472",[434,58.257]],["parent/4472",[1542,3.031]],["name/4473",[1545,71.25]],["parent/4473",[1542,3.031]],["name/4474",[451,61.034]],["parent/4474",[1542,3.031]],["name/4475",[427,58.257]],["parent/4475",[1542,3.031]],["name/4476",[791,61.034]],["parent/4476",[1542,3.031]],["name/4477",[792,61.034]],["parent/4477",[1542,3.031]],["name/4478",[790,61.034]],["parent/4478",[1542,3.031]],["name/4479",[1546,71.25]],["parent/4479",[1542,3.031]],["name/4480",[1111,64.89]],["parent/4480",[1542,3.031]],["name/4481",[426,58.257]],["parent/4481",[1542,3.031]],["name/4482",[456,61.034]],["parent/4482",[1542,3.031]],["name/4483",[457,61.034]],["parent/4483",[1542,3.031]],["name/4484",[458,61.034]],["parent/4484",[1542,3.031]],["name/4485",[798,64.89]],["parent/4485",[1542,3.031]],["name/4486",[799,64.89]],["parent/4486",[1542,3.031]],["name/4487",[797,64.89]],["parent/4487",[1542,3.031]],["name/4488",[432,58.257]],["parent/4488",[1542,3.031]],["name/4489",[428,58.257]],["parent/4489",[1542,3.031]],["name/4490",[447,58.257]],["parent/4490",[1542,3.031]],["name/4491",[444,58.257]],["parent/4491",[1542,3.031]],["name/4492",[445,58.257]],["parent/4492",[1542,3.031]],["name/4493",[442,58.257]],["parent/4493",[1542,3.031]],["name/4494",[443,58.257]],["parent/4494",[1542,3.031]],["name/4495",[437,58.257]],["parent/4495",[1542,3.031]],["name/4496",[438,58.257]],["parent/4496",[1542,3.031]],["name/4497",[433,58.257]],["parent/4497",[1542,3.031]],["name/4498",[436,56.087]],["parent/4498",[1542,3.031]],["name/4499",[435,56.087]],["parent/4499",[1542,3.031]],["name/4500",[425,57.669]],["parent/4500",[1542,3.031]],["name/4501",[462,61.034]],["parent/4501",[1542,3.031]],["name/4502",[463,61.034]],["parent/4502",[1542,3.031]],["name/4503",[464,61.034]],["parent/4503",[1542,3.031]],["name/4504",[1542,30.362]],["parent/4504",[1542,3.031]],["name/4505",[17,54.721]],["parent/4505",[1547,5.945]],["name/4506",[43,47.475]],["parent/4506",[1547,5.945]],["name/4507",[98,58.257]],["parent/4507",[1547,5.945]],["name/4508",[1548,73.763]],["parent/4508",[1549,6.368]],["name/4509",[1550,73.763]],["parent/4509",[1549,6.368]],["name/4510",[1551,73.763]],["parent/4510",[1549,6.368]],["name/4511",[1552,73.763]],["parent/4511",[1549,6.368]],["name/4512",[1553,73.763]],["parent/4512",[1549,6.368]],["name/4513",[1554,73.763]],["parent/4513",[1549,6.368]],["name/4514",[1555,73.763]],["parent/4514",[1549,6.368]],["name/4515",[1556,73.763]],["parent/4515",[1549,6.368]],["name/4516",[1557,73.763]],["parent/4516",[1549,6.368]],["name/4517",[30,56.587]],["parent/4517",[1547,5.945]],["name/4518",[125,58.257]],["parent/4518",[1547,5.945]],["name/4519",[10,27.115]],["parent/4519",[1558,8.21]],["name/4520",[1548,73.763]],["parent/4520",[1559,5.702]],["name/4521",[1560,82.236]],["parent/4521",[1559,5.702]],["name/4522",[1550,73.763]],["parent/4522",[1559,5.702]],["name/4523",[1561,82.236]],["parent/4523",[1559,5.702]],["name/4524",[1551,73.763]],["parent/4524",[1559,5.702]],["name/4525",[1562,82.236]],["parent/4525",[1559,5.702]],["name/4526",[1552,73.763]],["parent/4526",[1559,5.702]],["name/4527",[1563,82.236]],["parent/4527",[1559,5.702]],["name/4528",[1553,73.763]],["parent/4528",[1559,5.702]],["name/4529",[1564,82.236]],["parent/4529",[1559,5.702]],["name/4530",[1554,73.763]],["parent/4530",[1559,5.702]],["name/4531",[1565,82.236]],["parent/4531",[1559,5.702]],["name/4532",[1555,73.763]],["parent/4532",[1559,5.702]],["name/4533",[1566,82.236]],["parent/4533",[1559,5.702]],["name/4534",[1556,73.763]],["parent/4534",[1559,5.702]],["name/4535",[1567,82.236]],["parent/4535",[1559,5.702]],["name/4536",[1557,73.763]],["parent/4536",[1559,5.702]],["name/4537",[1568,82.236]],["parent/4537",[1559,5.702]],["name/4538",[1548,73.763]],["parent/4538",[1547,5.945]],["name/4539",[1550,73.763]],["parent/4539",[1547,5.945]],["name/4540",[1551,73.763]],["parent/4540",[1547,5.945]],["name/4541",[1552,73.763]],["parent/4541",[1547,5.945]],["name/4542",[1553,73.763]],["parent/4542",[1547,5.945]],["name/4543",[1554,73.763]],["parent/4543",[1547,5.945]],["name/4544",[1555,73.763]],["parent/4544",[1547,5.945]],["name/4545",[1556,73.763]],["parent/4545",[1547,5.945]],["name/4546",[1557,73.763]],["parent/4546",[1547,5.945]],["name/4547",[1569,71.25]],["parent/4547",[1542,3.031]],["name/4548",[1570,71.25]],["parent/4548",[1542,3.031]],["name/4549",[10,27.115]],["parent/4549",[1571,8.21]],["name/4550",[547,36.628]],["parent/4550",[1572,7.7]],["name/4551",[205,41.128]],["parent/4551",[1572,7.7]],["name/4552",[1573,71.25]],["parent/4552",[1542,3.031]],["name/4553",[10,27.115]],["parent/4553",[1574,8.21]],["name/4554",[172,34.962]],["parent/4554",[1575,8.21]],["name/4555",[1576,71.25]],["parent/4555",[1542,3.031]],["name/4556",[10,27.115]],["parent/4556",[1577,8.21]],["name/4557",[547,36.628]],["parent/4557",[1578,7.7]],["name/4558",[205,41.128]],["parent/4558",[1578,7.7]],["name/4559",[1579,71.25]],["parent/4559",[1542,3.031]],["name/4560",[10,27.115]],["parent/4560",[1580,8.21]],["name/4561",[172,34.962]],["parent/4561",[1581,7.7]],["name/4562",[1582,64.89]],["parent/4562",[1581,7.7]],["name/4563",[1583,71.25]],["parent/4563",[1542,3.031]],["name/4564",[10,27.115]],["parent/4564",[1584,8.21]],["name/4565",[547,36.628]],["parent/4565",[1585,7.364]],["name/4566",[205,41.128]],["parent/4566",[1585,7.364]],["name/4567",[1586,82.236]],["parent/4567",[1585,7.364]],["name/4568",[1587,71.25]],["parent/4568",[1542,3.031]],["name/4569",[10,27.115]],["parent/4569",[1588,8.21]],["name/4570",[172,34.962]],["parent/4570",[1589,7.7]],["name/4571",[1582,64.89]],["parent/4571",[1589,7.7]],["name/4572",[1590,71.25]],["parent/4572",[1542,3.031]],["name/4573",[10,27.115]],["parent/4573",[1591,8.21]],["name/4574",[547,36.628]],["parent/4574",[1592,7.364]],["name/4575",[205,41.128]],["parent/4575",[1592,7.364]],["name/4576",[1008,63.778]],["parent/4576",[1592,7.364]],["name/4577",[1593,71.25]],["parent/4577",[1542,3.031]],["name/4578",[10,27.115]],["parent/4578",[1594,8.21]],["name/4579",[1582,64.89]],["parent/4579",[1595,7.7]],["name/4580",[172,34.962]],["parent/4580",[1595,7.7]],["name/4581",[1596,71.25]],["parent/4581",[1542,3.031]],["name/4582",[10,27.115]],["parent/4582",[1597,8.21]],["name/4583",[547,36.628]],["parent/4583",[1598,7.7]],["name/4584",[205,41.128]],["parent/4584",[1598,7.7]],["name/4585",[1599,71.25]],["parent/4585",[1542,3.031]],["name/4586",[10,27.115]],["parent/4586",[1600,8.21]],["name/4587",[172,34.962]],["parent/4587",[1601,7.7]],["name/4588",[1582,64.89]],["parent/4588",[1601,7.7]],["name/4589",[1602,71.25]],["parent/4589",[1542,3.031]],["name/4590",[10,27.115]],["parent/4590",[1603,8.21]],["name/4591",[547,36.628]],["parent/4591",[1604,8.21]],["name/4592",[1605,71.25]],["parent/4592",[1542,3.031]],["name/4593",[10,27.115]],["parent/4593",[1606,8.21]],["name/4594",[172,34.962]],["parent/4594",[1607,7.7]],["name/4595",[1582,64.89]],["parent/4595",[1607,7.7]],["name/4596",[1608,71.25]],["parent/4596",[1542,3.031]],["name/4597",[10,27.115]],["parent/4597",[1609,8.21]],["name/4598",[547,36.628]],["parent/4598",[1610,7.7]],["name/4599",[205,41.128]],["parent/4599",[1610,7.7]],["name/4600",[1611,71.25]],["parent/4600",[1542,3.031]],["name/4601",[10,27.115]],["parent/4601",[1612,8.21]],["name/4602",[172,34.962]],["parent/4602",[1613,7.7]],["name/4603",[1582,64.89]],["parent/4603",[1613,7.7]],["name/4604",[1614,71.25]],["parent/4604",[1542,3.031]],["name/4605",[10,27.115]],["parent/4605",[1615,8.21]],["name/4606",[547,36.628]],["parent/4606",[1616,7.7]],["name/4607",[205,41.128]],["parent/4607",[1616,7.7]],["name/4608",[1617,71.25]],["parent/4608",[1542,3.031]],["name/4609",[10,27.115]],["parent/4609",[1618,8.21]],["name/4610",[679,63.778]],["parent/4610",[1619,7.364]],["name/4611",[172,34.962]],["parent/4611",[1619,7.364]],["name/4612",[1582,64.89]],["parent/4612",[1619,7.364]],["name/4613",[1620,71.25]],["parent/4613",[1542,3.031]],["name/4614",[10,27.115]],["parent/4614",[1621,8.21]],["name/4615",[547,36.628]],["parent/4615",[1622,7.7]],["name/4616",[205,41.128]],["parent/4616",[1622,7.7]],["name/4617",[1623,71.25]],["parent/4617",[1542,3.031]],["name/4618",[10,27.115]],["parent/4618",[1624,8.21]],["name/4619",[679,63.778]],["parent/4619",[1625,7.364]],["name/4620",[172,34.962]],["parent/4620",[1625,7.364]],["name/4621",[1582,64.89]],["parent/4621",[1625,7.364]],["name/4622",[1626,71.25]],["parent/4622",[1542,3.031]],["name/4623",[1627,71.25]],["parent/4623",[1542,3.031]],["name/4624",[1628,73.763]],["parent/4624",[1542,3.031]],["name/4625",[1569,71.25]],["parent/4625",[1542,3.031]],["name/4626",[1570,71.25]],["parent/4626",[1542,3.031]],["name/4627",[1573,71.25]],["parent/4627",[1542,3.031]],["name/4628",[1576,71.25]],["parent/4628",[1542,3.031]],["name/4629",[1579,71.25]],["parent/4629",[1542,3.031]],["name/4630",[1583,71.25]],["parent/4630",[1542,3.031]],["name/4631",[1587,71.25]],["parent/4631",[1542,3.031]],["name/4632",[1590,71.25]],["parent/4632",[1542,3.031]],["name/4633",[1593,71.25]],["parent/4633",[1542,3.031]],["name/4634",[1596,71.25]],["parent/4634",[1542,3.031]],["name/4635",[1599,71.25]],["parent/4635",[1542,3.031]],["name/4636",[1602,71.25]],["parent/4636",[1542,3.031]],["name/4637",[1605,71.25]],["parent/4637",[1542,3.031]],["name/4638",[1608,71.25]],["parent/4638",[1542,3.031]],["name/4639",[1611,71.25]],["parent/4639",[1542,3.031]],["name/4640",[1614,71.25]],["parent/4640",[1542,3.031]],["name/4641",[1617,71.25]],["parent/4641",[1542,3.031]],["name/4642",[1620,71.25]],["parent/4642",[1542,3.031]],["name/4643",[1623,71.25]],["parent/4643",[1542,3.031]],["name/4644",[1626,71.25]],["parent/4644",[1542,3.031]],["name/4645",[1627,71.25]],["parent/4645",[1542,3.031]],["name/4646",[1628,73.763]],["parent/4646",[1542,3.031]],["name/4647",[1542,30.362]],["parent/4647",[1542,3.031]],["name/4648",[43,47.475]],["parent/4648",[1542,3.031]],["name/4649",[1569,71.25]],["parent/4649",[1542,3.031]],["name/4650",[1570,71.25]],["parent/4650",[1542,3.031]],["name/4651",[1573,71.25]],["parent/4651",[1542,3.031]],["name/4652",[1576,71.25]],["parent/4652",[1542,3.031]],["name/4653",[1579,71.25]],["parent/4653",[1542,3.031]],["name/4654",[1583,71.25]],["parent/4654",[1542,3.031]],["name/4655",[1587,71.25]],["parent/4655",[1542,3.031]],["name/4656",[1590,71.25]],["parent/4656",[1542,3.031]],["name/4657",[1593,71.25]],["parent/4657",[1542,3.031]],["name/4658",[1596,71.25]],["parent/4658",[1542,3.031]],["name/4659",[1599,71.25]],["parent/4659",[1542,3.031]],["name/4660",[1602,71.25]],["parent/4660",[1542,3.031]],["name/4661",[1605,71.25]],["parent/4661",[1542,3.031]],["name/4662",[1608,71.25]],["parent/4662",[1542,3.031]],["name/4663",[1611,71.25]],["parent/4663",[1542,3.031]],["name/4664",[1614,71.25]],["parent/4664",[1542,3.031]],["name/4665",[1617,71.25]],["parent/4665",[1542,3.031]],["name/4666",[1620,71.25]],["parent/4666",[1542,3.031]],["name/4667",[1623,71.25]],["parent/4667",[1542,3.031]],["name/4668",[1626,71.25]],["parent/4668",[1542,3.031]],["name/4669",[1627,71.25]],["parent/4669",[1542,3.031]],["name/4670",[1628,73.763]],["parent/4670",[1542,3.031]],["name/4671",[1542,30.362]],["parent/4671",[1542,3.031]],["name/4672",[448,58.257]],["parent/4672",[1542,3.031]],["name/4673",[449,58.257]],["parent/4673",[1542,3.031]],["name/4674",[450,58.257]],["parent/4674",[1542,3.031]],["name/4675",[794,61.034]],["parent/4675",[1542,3.031]],["name/4676",[429,58.257]],["parent/4676",[1542,3.031]],["name/4677",[439,58.257]],["parent/4677",[1542,3.031]],["name/4678",[440,58.257]],["parent/4678",[1542,3.031]],["name/4679",[441,58.257]],["parent/4679",[1542,3.031]],["name/4680",[430,58.257]],["parent/4680",[1542,3.031]],["name/4681",[431,58.257]],["parent/4681",[1542,3.031]],["name/4682",[455,45.264]],["parent/4682",[1542,3.031]],["name/4683",[1543,71.25]],["parent/4683",[1542,3.031]],["name/4684",[1544,71.25]],["parent/4684",[1542,3.031]],["name/4685",[796,64.89]],["parent/4685",[1542,3.031]],["name/4686",[793,61.034]],["parent/4686",[1542,3.031]],["name/4687",[424,58.257]],["parent/4687",[1542,3.031]],["name/4688",[795,61.034]],["parent/4688",[1542,3.031]],["name/4689",[9,48.796]],["parent/4689",[1542,3.031]],["name/4690",[1114,64.89]],["parent/4690",[1542,3.031]],["name/4691",[1109,64.89]],["parent/4691",[1542,3.031]],["name/4692",[1110,64.89]],["parent/4692",[1542,3.031]],["name/4693",[1113,64.89]],["parent/4693",[1542,3.031]],["name/4694",[1112,64.89]],["parent/4694",[1542,3.031]],["name/4695",[446,58.257]],["parent/4695",[1542,3.031]],["name/4696",[1115,64.89]],["parent/4696",[1542,3.031]],["name/4697",[1116,64.89]],["parent/4697",[1542,3.031]],["name/4698",[1117,64.89]],["parent/4698",[1542,3.031]],["name/4699",[1118,64.89]],["parent/4699",[1542,3.031]],["name/4700",[1119,64.89]],["parent/4700",[1542,3.031]],["name/4701",[1120,64.89]],["parent/4701",[1542,3.031]],["name/4702",[1121,64.89]],["parent/4702",[1542,3.031]],["name/4703",[1122,64.89]],["parent/4703",[1542,3.031]],["name/4704",[434,58.257]],["parent/4704",[1542,3.031]],["name/4705",[1545,71.25]],["parent/4705",[1542,3.031]],["name/4706",[451,61.034]],["parent/4706",[1542,3.031]],["name/4707",[427,58.257]],["parent/4707",[1542,3.031]],["name/4708",[791,61.034]],["parent/4708",[1542,3.031]],["name/4709",[792,61.034]],["parent/4709",[1542,3.031]],["name/4710",[790,61.034]],["parent/4710",[1542,3.031]],["name/4711",[1546,71.25]],["parent/4711",[1542,3.031]],["name/4712",[1111,64.89]],["parent/4712",[1542,3.031]],["name/4713",[426,58.257]],["parent/4713",[1542,3.031]],["name/4714",[456,61.034]],["parent/4714",[1542,3.031]],["name/4715",[457,61.034]],["parent/4715",[1542,3.031]],["name/4716",[458,61.034]],["parent/4716",[1542,3.031]],["name/4717",[798,64.89]],["parent/4717",[1542,3.031]],["name/4718",[799,64.89]],["parent/4718",[1542,3.031]],["name/4719",[797,64.89]],["parent/4719",[1542,3.031]],["name/4720",[432,58.257]],["parent/4720",[1542,3.031]],["name/4721",[428,58.257]],["parent/4721",[1542,3.031]],["name/4722",[447,58.257]],["parent/4722",[1542,3.031]],["name/4723",[444,58.257]],["parent/4723",[1542,3.031]],["name/4724",[445,58.257]],["parent/4724",[1542,3.031]],["name/4725",[442,58.257]],["parent/4725",[1542,3.031]],["name/4726",[443,58.257]],["parent/4726",[1542,3.031]],["name/4727",[437,58.257]],["parent/4727",[1542,3.031]],["name/4728",[438,58.257]],["parent/4728",[1542,3.031]],["name/4729",[433,58.257]],["parent/4729",[1542,3.031]],["name/4730",[436,56.087]],["parent/4730",[1542,3.031]],["name/4731",[435,56.087]],["parent/4731",[1542,3.031]],["name/4732",[425,57.669]],["parent/4732",[1542,3.031]],["name/4733",[462,61.034]],["parent/4733",[1542,3.031]],["name/4734",[463,61.034]],["parent/4734",[1542,3.031]],["name/4735",[464,61.034]],["parent/4735",[1542,3.031]],["name/4736",[1629,82.236]],["parent/4736",[1542,3.031]],["name/4737",[1626,71.25]],["parent/4737",[1630,4.174]],["name/4738",[1627,71.25]],["parent/4738",[1630,4.174]],["name/4739",[1570,71.25]],["parent/4739",[1630,4.174]],["name/4740",[1573,71.25]],["parent/4740",[1630,4.174]],["name/4741",[1576,71.25]],["parent/4741",[1630,4.174]],["name/4742",[1579,71.25]],["parent/4742",[1630,4.174]],["name/4743",[1583,71.25]],["parent/4743",[1630,4.174]],["name/4744",[1587,71.25]],["parent/4744",[1630,4.174]],["name/4745",[1569,71.25]],["parent/4745",[1630,4.174]],["name/4746",[1590,71.25]],["parent/4746",[1630,4.174]],["name/4747",[1593,71.25]],["parent/4747",[1630,4.174]],["name/4748",[1596,71.25]],["parent/4748",[1630,4.174]],["name/4749",[1599,71.25]],["parent/4749",[1630,4.174]],["name/4750",[1602,71.25]],["parent/4750",[1630,4.174]],["name/4751",[1605,71.25]],["parent/4751",[1630,4.174]],["name/4752",[1608,71.25]],["parent/4752",[1630,4.174]],["name/4753",[1611,71.25]],["parent/4753",[1630,4.174]],["name/4754",[1614,71.25]],["parent/4754",[1630,4.174]],["name/4755",[1617,71.25]],["parent/4755",[1630,4.174]],["name/4756",[1620,71.25]],["parent/4756",[1630,4.174]],["name/4757",[1623,71.25]],["parent/4757",[1630,4.174]],["name/4758",[448,58.257]],["parent/4758",[1630,4.174]],["name/4759",[449,58.257]],["parent/4759",[1630,4.174]],["name/4760",[450,58.257]],["parent/4760",[1630,4.174]],["name/4761",[794,61.034]],["parent/4761",[1630,4.174]],["name/4762",[429,58.257]],["parent/4762",[1630,4.174]],["name/4763",[439,58.257]],["parent/4763",[1630,4.174]],["name/4764",[440,58.257]],["parent/4764",[1630,4.174]],["name/4765",[441,58.257]],["parent/4765",[1630,4.174]],["name/4766",[430,58.257]],["parent/4766",[1630,4.174]],["name/4767",[431,58.257]],["parent/4767",[1630,4.174]],["name/4768",[455,45.264]],["parent/4768",[1630,4.174]],["name/4769",[1543,71.25]],["parent/4769",[1630,4.174]],["name/4770",[1544,71.25]],["parent/4770",[1630,4.174]],["name/4771",[796,64.89]],["parent/4771",[1630,4.174]],["name/4772",[793,61.034]],["parent/4772",[1630,4.174]],["name/4773",[424,58.257]],["parent/4773",[1630,4.174]],["name/4774",[795,61.034]],["parent/4774",[1630,4.174]],["name/4775",[9,48.796]],["parent/4775",[1630,4.174]],["name/4776",[1114,64.89]],["parent/4776",[1630,4.174]],["name/4777",[1109,64.89]],["parent/4777",[1630,4.174]],["name/4778",[1110,64.89]],["parent/4778",[1630,4.174]],["name/4779",[1113,64.89]],["parent/4779",[1630,4.174]],["name/4780",[1112,64.89]],["parent/4780",[1630,4.174]],["name/4781",[446,58.257]],["parent/4781",[1630,4.174]],["name/4782",[1115,64.89]],["parent/4782",[1630,4.174]],["name/4783",[1116,64.89]],["parent/4783",[1630,4.174]],["name/4784",[1117,64.89]],["parent/4784",[1630,4.174]],["name/4785",[1118,64.89]],["parent/4785",[1630,4.174]],["name/4786",[1119,64.89]],["parent/4786",[1630,4.174]],["name/4787",[1120,64.89]],["parent/4787",[1630,4.174]],["name/4788",[1121,64.89]],["parent/4788",[1630,4.174]],["name/4789",[1122,64.89]],["parent/4789",[1630,4.174]],["name/4790",[434,58.257]],["parent/4790",[1630,4.174]],["name/4791",[1545,71.25]],["parent/4791",[1630,4.174]],["name/4792",[451,61.034]],["parent/4792",[1630,4.174]],["name/4793",[427,58.257]],["parent/4793",[1630,4.174]],["name/4794",[791,61.034]],["parent/4794",[1630,4.174]],["name/4795",[792,61.034]],["parent/4795",[1630,4.174]],["name/4796",[790,61.034]],["parent/4796",[1630,4.174]],["name/4797",[1546,71.25]],["parent/4797",[1630,4.174]],["name/4798",[1111,64.89]],["parent/4798",[1630,4.174]],["name/4799",[426,58.257]],["parent/4799",[1630,4.174]],["name/4800",[456,61.034]],["parent/4800",[1630,4.174]],["name/4801",[457,61.034]],["parent/4801",[1630,4.174]],["name/4802",[458,61.034]],["parent/4802",[1630,4.174]],["name/4803",[798,64.89]],["parent/4803",[1630,4.174]],["name/4804",[799,64.89]],["parent/4804",[1630,4.174]],["name/4805",[797,64.89]],["parent/4805",[1630,4.174]],["name/4806",[432,58.257]],["parent/4806",[1630,4.174]],["name/4807",[428,58.257]],["parent/4807",[1630,4.174]],["name/4808",[447,58.257]],["parent/4808",[1630,4.174]],["name/4809",[444,58.257]],["parent/4809",[1630,4.174]],["name/4810",[445,58.257]],["parent/4810",[1630,4.174]],["name/4811",[442,58.257]],["parent/4811",[1630,4.174]],["name/4812",[443,58.257]],["parent/4812",[1630,4.174]],["name/4813",[437,58.257]],["parent/4813",[1630,4.174]],["name/4814",[438,58.257]],["parent/4814",[1630,4.174]],["name/4815",[433,58.257]],["parent/4815",[1630,4.174]],["name/4816",[436,56.087]],["parent/4816",[1630,4.174]],["name/4817",[435,56.087]],["parent/4817",[1630,4.174]],["name/4818",[425,57.669]],["parent/4818",[1630,4.174]],["name/4819",[462,61.034]],["parent/4819",[1630,4.174]],["name/4820",[463,61.034]],["parent/4820",[1630,4.174]],["name/4821",[464,61.034]],["parent/4821",[1630,4.174]],["name/4822",[1631,49.278]],["parent/4822",[]],["name/4823",[43,47.475]],["parent/4823",[1631,4.92]],["name/4824",[455,45.264]],["parent/4824",[1631,4.92]],["name/4825",[1632,71.25]],["parent/4825",[1631,4.92]],["name/4826",[1633,71.25]],["parent/4826",[1631,4.92]],["name/4827",[1634,71.25]],["parent/4827",[1631,4.92]],["name/4828",[1635,71.25]],["parent/4828",[1631,4.92]],["name/4829",[455,45.264]],["parent/4829",[1631,4.92]],["name/4830",[1635,71.25]],["parent/4830",[1631,4.92]],["name/4831",[1634,71.25]],["parent/4831",[1631,4.92]],["name/4832",[1633,71.25]],["parent/4832",[1631,4.92]],["name/4833",[1632,71.25]],["parent/4833",[1631,4.92]],["name/4834",[1631,49.278]],["parent/4834",[1631,4.92]],["name/4835",[17,54.721]],["parent/4835",[1636,6.746]],["name/4836",[43,47.475]],["parent/4836",[1636,6.746]],["name/4837",[98,58.257]],["parent/4837",[1636,6.746]],["name/4838",[1637,73.763]],["parent/4838",[1638,8.21]],["name/4839",[30,56.587]],["parent/4839",[1636,6.746]],["name/4840",[125,58.257]],["parent/4840",[1636,6.746]],["name/4841",[10,27.115]],["parent/4841",[1639,8.21]],["name/4842",[1637,73.763]],["parent/4842",[1640,7.7]],["name/4843",[1641,82.236]],["parent/4843",[1640,7.7]],["name/4844",[1637,73.763]],["parent/4844",[1636,6.746]],["name/4845",[1642,71.25]],["parent/4845",[1631,4.92]],["name/4846",[10,27.115]],["parent/4846",[1643,8.21]],["name/4847",[547,36.628]],["parent/4847",[1644,6.913]],["name/4848",[1645,67.573]],["parent/4848",[1644,6.913]],["name/4849",[1646,77.128]],["parent/4849",[1644,6.913]],["name/4850",[1647,82.236]],["parent/4850",[1644,6.913]],["name/4851",[1648,82.236]],["parent/4851",[1644,6.913]],["name/4852",[1649,71.25]],["parent/4852",[1631,4.92]],["name/4853",[10,27.115]],["parent/4853",[1650,8.21]],["name/4854",[172,34.962]],["parent/4854",[1651,8.21]],["name/4855",[1652,71.25]],["parent/4855",[1631,4.92]],["name/4856",[1653,71.25]],["parent/4856",[1631,4.92]],["name/4857",[1654,73.763]],["parent/4857",[1631,4.92]],["name/4858",[1642,71.25]],["parent/4858",[1631,4.92]],["name/4859",[1649,71.25]],["parent/4859",[1631,4.92]],["name/4860",[1652,71.25]],["parent/4860",[1631,4.92]],["name/4861",[1653,71.25]],["parent/4861",[1631,4.92]],["name/4862",[1654,73.763]],["parent/4862",[1631,4.92]],["name/4863",[1631,49.278]],["parent/4863",[1631,4.92]],["name/4864",[43,47.475]],["parent/4864",[1631,4.92]],["name/4865",[1642,71.25]],["parent/4865",[1631,4.92]],["name/4866",[1649,71.25]],["parent/4866",[1631,4.92]],["name/4867",[1652,71.25]],["parent/4867",[1631,4.92]],["name/4868",[1653,71.25]],["parent/4868",[1631,4.92]],["name/4869",[1654,73.763]],["parent/4869",[1631,4.92]],["name/4870",[1631,49.278]],["parent/4870",[1631,4.92]],["name/4871",[455,45.264]],["parent/4871",[1631,4.92]],["name/4872",[1635,71.25]],["parent/4872",[1631,4.92]],["name/4873",[1634,71.25]],["parent/4873",[1631,4.92]],["name/4874",[1633,71.25]],["parent/4874",[1631,4.92]],["name/4875",[1632,71.25]],["parent/4875",[1631,4.92]],["name/4876",[1655,82.236]],["parent/4876",[1631,4.92]],["name/4877",[1652,71.25]],["parent/4877",[1656,6.368]],["name/4878",[1653,71.25]],["parent/4878",[1656,6.368]],["name/4879",[1642,71.25]],["parent/4879",[1656,6.368]],["name/4880",[1649,71.25]],["parent/4880",[1656,6.368]],["name/4881",[455,45.264]],["parent/4881",[1656,6.368]],["name/4882",[1635,71.25]],["parent/4882",[1656,6.368]],["name/4883",[1634,71.25]],["parent/4883",[1656,6.368]],["name/4884",[1633,71.25]],["parent/4884",[1656,6.368]],["name/4885",[1632,71.25]],["parent/4885",[1656,6.368]],["name/4886",[1657,36.489]],["parent/4886",[]],["name/4887",[43,47.475]],["parent/4887",[1657,3.643]],["name/4888",[1079,61.034]],["parent/4888",[1657,3.643]],["name/4889",[1080,61.034]],["parent/4889",[1657,3.643]],["name/4890",[1081,61.034]],["parent/4890",[1657,3.643]],["name/4891",[435,56.087]],["parent/4891",[1657,3.643]],["name/4892",[436,56.087]],["parent/4892",[1657,3.643]],["name/4893",[1082,61.034]],["parent/4893",[1657,3.643]],["name/4894",[1083,61.034]],["parent/4894",[1657,3.643]],["name/4895",[1084,61.034]],["parent/4895",[1657,3.643]],["name/4896",[1085,64.89]],["parent/4896",[1657,3.643]],["name/4897",[1086,64.89]],["parent/4897",[1657,3.643]],["name/4898",[1087,61.034]],["parent/4898",[1657,3.643]],["name/4899",[1088,61.034]],["parent/4899",[1657,3.643]],["name/4900",[1089,64.89]],["parent/4900",[1657,3.643]],["name/4901",[1090,61.034]],["parent/4901",[1657,3.643]],["name/4902",[1091,61.034]],["parent/4902",[1657,3.643]],["name/4903",[1092,64.89]],["parent/4903",[1657,3.643]],["name/4904",[1093,64.89]],["parent/4904",[1657,3.643]],["name/4905",[1094,64.89]],["parent/4905",[1657,3.643]],["name/4906",[1095,64.89]],["parent/4906",[1657,3.643]],["name/4907",[1096,61.034]],["parent/4907",[1657,3.643]],["name/4908",[1097,64.89]],["parent/4908",[1657,3.643]],["name/4909",[1098,64.89]],["parent/4909",[1657,3.643]],["name/4910",[1099,64.89]],["parent/4910",[1657,3.643]],["name/4911",[1658,71.25]],["parent/4911",[1657,3.643]],["name/4912",[1659,71.25]],["parent/4912",[1657,3.643]],["name/4913",[1660,71.25]],["parent/4913",[1657,3.643]],["name/4914",[455,45.264]],["parent/4914",[1657,3.643]],["name/4915",[9,48.796]],["parent/4915",[1657,3.643]],["name/4916",[1661,71.25]],["parent/4916",[1657,3.643]],["name/4917",[1152,54.304]],["parent/4917",[1657,3.643]],["name/4918",[1099,64.89]],["parent/4918",[1657,3.643]],["name/4919",[1659,71.25]],["parent/4919",[1657,3.643]],["name/4920",[1660,71.25]],["parent/4920",[1657,3.643]],["name/4921",[455,45.264]],["parent/4921",[1657,3.643]],["name/4922",[1079,61.034]],["parent/4922",[1657,3.643]],["name/4923",[1096,61.034]],["parent/4923",[1657,3.643]],["name/4924",[1097,64.89]],["parent/4924",[1657,3.643]],["name/4925",[9,48.796]],["parent/4925",[1657,3.643]],["name/4926",[1089,64.89]],["parent/4926",[1657,3.643]],["name/4927",[1095,64.89]],["parent/4927",[1657,3.643]],["name/4928",[1094,64.89]],["parent/4928",[1657,3.643]],["name/4929",[1091,61.034]],["parent/4929",[1657,3.643]],["name/4930",[1658,71.25]],["parent/4930",[1657,3.643]],["name/4931",[1087,61.034]],["parent/4931",[1657,3.643]],["name/4932",[1098,64.89]],["parent/4932",[1657,3.643]],["name/4933",[1092,64.89]],["parent/4933",[1657,3.643]],["name/4934",[1093,64.89]],["parent/4934",[1657,3.643]],["name/4935",[1084,61.034]],["parent/4935",[1657,3.643]],["name/4936",[1088,61.034]],["parent/4936",[1657,3.643]],["name/4937",[1661,71.25]],["parent/4937",[1657,3.643]],["name/4938",[1083,61.034]],["parent/4938",[1657,3.643]],["name/4939",[1086,64.89]],["parent/4939",[1657,3.643]],["name/4940",[1085,64.89]],["parent/4940",[1657,3.643]],["name/4941",[1152,54.304]],["parent/4941",[1657,3.643]],["name/4942",[436,56.087]],["parent/4942",[1657,3.643]],["name/4943",[435,56.087]],["parent/4943",[1657,3.643]],["name/4944",[1090,61.034]],["parent/4944",[1657,3.643]],["name/4945",[1081,61.034]],["parent/4945",[1657,3.643]],["name/4946",[1080,61.034]],["parent/4946",[1657,3.643]],["name/4947",[1082,61.034]],["parent/4947",[1657,3.643]],["name/4948",[1657,36.489]],["parent/4948",[1657,3.643]],["name/4949",[17,54.721]],["parent/4949",[1662,6.368]],["name/4950",[43,47.475]],["parent/4950",[1662,6.368]],["name/4951",[98,58.257]],["parent/4951",[1662,6.368]],["name/4952",[1663,73.763]],["parent/4952",[1664,7.114]],["name/4953",[1665,73.763]],["parent/4953",[1664,7.114]],["name/4954",[1666,73.763]],["parent/4954",[1664,7.114]],["name/4955",[1667,73.763]],["parent/4955",[1664,7.114]],["name/4956",[30,56.587]],["parent/4956",[1662,6.368]],["name/4957",[125,58.257]],["parent/4957",[1662,6.368]],["name/4958",[10,27.115]],["parent/4958",[1668,8.21]],["name/4959",[1663,73.763]],["parent/4959",[1669,6.479]],["name/4960",[1670,82.236]],["parent/4960",[1669,6.479]],["name/4961",[1665,73.763]],["parent/4961",[1669,6.479]],["name/4962",[1671,82.236]],["parent/4962",[1669,6.479]],["name/4963",[1666,73.763]],["parent/4963",[1669,6.479]],["name/4964",[1672,82.236]],["parent/4964",[1669,6.479]],["name/4965",[1667,73.763]],["parent/4965",[1669,6.479]],["name/4966",[1673,82.236]],["parent/4966",[1669,6.479]],["name/4967",[1663,73.763]],["parent/4967",[1662,6.368]],["name/4968",[1665,73.763]],["parent/4968",[1662,6.368]],["name/4969",[1666,73.763]],["parent/4969",[1662,6.368]],["name/4970",[1667,73.763]],["parent/4970",[1662,6.368]],["name/4971",[1674,71.25]],["parent/4971",[1657,3.643]],["name/4972",[1675,71.25]],["parent/4972",[1657,3.643]],["name/4973",[1676,71.25]],["parent/4973",[1657,3.643]],["name/4974",[1677,71.25]],["parent/4974",[1657,3.643]],["name/4975",[1678,71.25]],["parent/4975",[1657,3.643]],["name/4976",[10,27.115]],["parent/4976",[1679,8.21]],["name/4977",[1477,67.573]],["parent/4977",[1680,7.114]],["name/4978",[1470,71.25]],["parent/4978",[1680,7.114]],["name/4979",[205,41.128]],["parent/4979",[1680,7.114]],["name/4980",[547,36.628]],["parent/4980",[1680,7.114]],["name/4981",[1681,71.25]],["parent/4981",[1657,3.643]],["name/4982",[10,27.115]],["parent/4982",[1682,8.21]],["name/4983",[172,34.962]],["parent/4983",[1683,8.21]],["name/4984",[1684,71.25]],["parent/4984",[1657,3.643]],["name/4985",[10,27.115]],["parent/4985",[1685,8.21]],["name/4986",[1470,71.25]],["parent/4986",[1686,7.364]],["name/4987",[205,41.128]],["parent/4987",[1686,7.364]],["name/4988",[547,36.628]],["parent/4988",[1686,7.364]],["name/4989",[1687,71.25]],["parent/4989",[1657,3.643]],["name/4990",[10,27.115]],["parent/4990",[1688,8.21]],["name/4991",[1467,71.25]],["parent/4991",[1689,7.7]],["name/4992",[172,34.962]],["parent/4992",[1689,7.7]],["name/4993",[1690,71.25]],["parent/4993",[1657,3.643]],["name/4994",[10,27.115]],["parent/4994",[1691,8.21]],["name/4995",[1692,77.128]],["parent/4995",[1693,6.479]],["name/4996",[1008,63.778]],["parent/4996",[1693,6.479]],["name/4997",[1694,73.763]],["parent/4997",[1693,6.479]],["name/4998",[1695,73.763]],["parent/4998",[1693,6.479]],["name/4999",[1696,73.763]],["parent/4999",[1693,6.479]],["name/5000",[1645,67.573]],["parent/5000",[1693,6.479]],["name/5001",[205,41.128]],["parent/5001",[1693,6.479]],["name/5002",[547,36.628]],["parent/5002",[1693,6.479]],["name/5003",[1697,71.25]],["parent/5003",[1657,3.643]],["name/5004",[10,27.115]],["parent/5004",[1698,8.21]],["name/5005",[172,34.962]],["parent/5005",[1699,7.7]],["name/5006",[1467,71.25]],["parent/5006",[1699,7.7]],["name/5007",[1700,71.25]],["parent/5007",[1657,3.643]],["name/5008",[10,27.115]],["parent/5008",[1701,8.21]],["name/5009",[1477,67.573]],["parent/5009",[1702,6.368]],["name/5010",[1692,77.128]],["parent/5010",[1702,6.368]],["name/5011",[1008,63.778]],["parent/5011",[1702,6.368]],["name/5012",[1694,73.763]],["parent/5012",[1702,6.368]],["name/5013",[1695,73.763]],["parent/5013",[1702,6.368]],["name/5014",[547,36.628]],["parent/5014",[1702,6.368]],["name/5015",[1696,73.763]],["parent/5015",[1702,6.368]],["name/5016",[205,41.128]],["parent/5016",[1702,6.368]],["name/5017",[1645,67.573]],["parent/5017",[1702,6.368]],["name/5018",[1703,71.25]],["parent/5018",[1657,3.643]],["name/5019",[10,27.115]],["parent/5019",[1704,8.21]],["name/5020",[172,34.962]],["parent/5020",[1705,8.21]],["name/5021",[1706,71.25]],["parent/5021",[1657,3.643]],["name/5022",[1707,71.25]],["parent/5022",[1657,3.643]],["name/5023",[1708,73.763]],["parent/5023",[1657,3.643]],["name/5024",[1674,71.25]],["parent/5024",[1657,3.643]],["name/5025",[1675,71.25]],["parent/5025",[1657,3.643]],["name/5026",[1676,71.25]],["parent/5026",[1657,3.643]],["name/5027",[1677,71.25]],["parent/5027",[1657,3.643]],["name/5028",[1678,71.25]],["parent/5028",[1657,3.643]],["name/5029",[1681,71.25]],["parent/5029",[1657,3.643]],["name/5030",[1684,71.25]],["parent/5030",[1657,3.643]],["name/5031",[1687,71.25]],["parent/5031",[1657,3.643]],["name/5032",[1690,71.25]],["parent/5032",[1657,3.643]],["name/5033",[1697,71.25]],["parent/5033",[1657,3.643]],["name/5034",[1700,71.25]],["parent/5034",[1657,3.643]],["name/5035",[1703,71.25]],["parent/5035",[1657,3.643]],["name/5036",[1706,71.25]],["parent/5036",[1657,3.643]],["name/5037",[1707,71.25]],["parent/5037",[1657,3.643]],["name/5038",[1708,73.763]],["parent/5038",[1657,3.643]],["name/5039",[1657,36.489]],["parent/5039",[1657,3.643]],["name/5040",[43,47.475]],["parent/5040",[1657,3.643]],["name/5041",[1674,71.25]],["parent/5041",[1657,3.643]],["name/5042",[1675,71.25]],["parent/5042",[1657,3.643]],["name/5043",[1676,71.25]],["parent/5043",[1657,3.643]],["name/5044",[1677,71.25]],["parent/5044",[1657,3.643]],["name/5045",[1678,71.25]],["parent/5045",[1657,3.643]],["name/5046",[1681,71.25]],["parent/5046",[1657,3.643]],["name/5047",[1684,71.25]],["parent/5047",[1657,3.643]],["name/5048",[1687,71.25]],["parent/5048",[1657,3.643]],["name/5049",[1690,71.25]],["parent/5049",[1657,3.643]],["name/5050",[1697,71.25]],["parent/5050",[1657,3.643]],["name/5051",[1700,71.25]],["parent/5051",[1657,3.643]],["name/5052",[1703,71.25]],["parent/5052",[1657,3.643]],["name/5053",[1706,71.25]],["parent/5053",[1657,3.643]],["name/5054",[1707,71.25]],["parent/5054",[1657,3.643]],["name/5055",[1708,73.763]],["parent/5055",[1657,3.643]],["name/5056",[1657,36.489]],["parent/5056",[1657,3.643]],["name/5057",[1099,64.89]],["parent/5057",[1657,3.643]],["name/5058",[1659,71.25]],["parent/5058",[1657,3.643]],["name/5059",[1660,71.25]],["parent/5059",[1657,3.643]],["name/5060",[455,45.264]],["parent/5060",[1657,3.643]],["name/5061",[1079,61.034]],["parent/5061",[1657,3.643]],["name/5062",[1096,61.034]],["parent/5062",[1657,3.643]],["name/5063",[1097,64.89]],["parent/5063",[1657,3.643]],["name/5064",[9,48.796]],["parent/5064",[1657,3.643]],["name/5065",[1089,64.89]],["parent/5065",[1657,3.643]],["name/5066",[1095,64.89]],["parent/5066",[1657,3.643]],["name/5067",[1094,64.89]],["parent/5067",[1657,3.643]],["name/5068",[1091,61.034]],["parent/5068",[1657,3.643]],["name/5069",[1658,71.25]],["parent/5069",[1657,3.643]],["name/5070",[1087,61.034]],["parent/5070",[1657,3.643]],["name/5071",[1098,64.89]],["parent/5071",[1657,3.643]],["name/5072",[1092,64.89]],["parent/5072",[1657,3.643]],["name/5073",[1093,64.89]],["parent/5073",[1657,3.643]],["name/5074",[1084,61.034]],["parent/5074",[1657,3.643]],["name/5075",[1088,61.034]],["parent/5075",[1657,3.643]],["name/5076",[1661,71.25]],["parent/5076",[1657,3.643]],["name/5077",[1083,61.034]],["parent/5077",[1657,3.643]],["name/5078",[1086,64.89]],["parent/5078",[1657,3.643]],["name/5079",[1085,64.89]],["parent/5079",[1657,3.643]],["name/5080",[1152,54.304]],["parent/5080",[1657,3.643]],["name/5081",[436,56.087]],["parent/5081",[1657,3.643]],["name/5082",[435,56.087]],["parent/5082",[1657,3.643]],["name/5083",[1090,61.034]],["parent/5083",[1657,3.643]],["name/5084",[1081,61.034]],["parent/5084",[1657,3.643]],["name/5085",[1080,61.034]],["parent/5085",[1657,3.643]],["name/5086",[1082,61.034]],["parent/5086",[1657,3.643]],["name/5087",[1709,82.236]],["parent/5087",[1657,3.643]],["name/5088",[1706,71.25]],["parent/5088",[1710,4.826]],["name/5089",[1707,71.25]],["parent/5089",[1710,4.826]],["name/5090",[1674,71.25]],["parent/5090",[1710,4.826]],["name/5091",[1678,71.25]],["parent/5091",[1710,4.826]],["name/5092",[1681,71.25]],["parent/5092",[1710,4.826]],["name/5093",[1675,71.25]],["parent/5093",[1710,4.826]],["name/5094",[1684,71.25]],["parent/5094",[1710,4.826]],["name/5095",[1687,71.25]],["parent/5095",[1710,4.826]],["name/5096",[1676,71.25]],["parent/5096",[1710,4.826]],["name/5097",[1690,71.25]],["parent/5097",[1710,4.826]],["name/5098",[1697,71.25]],["parent/5098",[1710,4.826]],["name/5099",[1677,71.25]],["parent/5099",[1710,4.826]],["name/5100",[1700,71.25]],["parent/5100",[1710,4.826]],["name/5101",[1703,71.25]],["parent/5101",[1710,4.826]],["name/5102",[1099,64.89]],["parent/5102",[1710,4.826]],["name/5103",[1659,71.25]],["parent/5103",[1710,4.826]],["name/5104",[1660,71.25]],["parent/5104",[1710,4.826]],["name/5105",[455,45.264]],["parent/5105",[1710,4.826]],["name/5106",[1079,61.034]],["parent/5106",[1710,4.826]],["name/5107",[1096,61.034]],["parent/5107",[1710,4.826]],["name/5108",[1097,64.89]],["parent/5108",[1710,4.826]],["name/5109",[9,48.796]],["parent/5109",[1710,4.826]],["name/5110",[1089,64.89]],["parent/5110",[1710,4.826]],["name/5111",[1095,64.89]],["parent/5111",[1710,4.826]],["name/5112",[1094,64.89]],["parent/5112",[1710,4.826]],["name/5113",[1091,61.034]],["parent/5113",[1710,4.826]],["name/5114",[1658,71.25]],["parent/5114",[1710,4.826]],["name/5115",[1087,61.034]],["parent/5115",[1710,4.826]],["name/5116",[1098,64.89]],["parent/5116",[1710,4.826]],["name/5117",[1092,64.89]],["parent/5117",[1710,4.826]],["name/5118",[1093,64.89]],["parent/5118",[1710,4.826]],["name/5119",[1084,61.034]],["parent/5119",[1710,4.826]],["name/5120",[1088,61.034]],["parent/5120",[1710,4.826]],["name/5121",[1661,71.25]],["parent/5121",[1710,4.826]],["name/5122",[1083,61.034]],["parent/5122",[1710,4.826]],["name/5123",[1086,64.89]],["parent/5123",[1710,4.826]],["name/5124",[1085,64.89]],["parent/5124",[1710,4.826]],["name/5125",[1152,54.304]],["parent/5125",[1710,4.826]],["name/5126",[436,56.087]],["parent/5126",[1710,4.826]],["name/5127",[435,56.087]],["parent/5127",[1710,4.826]],["name/5128",[1090,61.034]],["parent/5128",[1710,4.826]],["name/5129",[1081,61.034]],["parent/5129",[1710,4.826]],["name/5130",[1080,61.034]],["parent/5130",[1710,4.826]],["name/5131",[1082,61.034]],["parent/5131",[1710,4.826]],["name/5132",[1711,47.896]],["parent/5132",[]],["name/5133",[43,47.475]],["parent/5133",[1711,4.782]],["name/5134",[455,45.264]],["parent/5134",[1711,4.782]],["name/5135",[9,48.796]],["parent/5135",[1711,4.782]],["name/5136",[1712,71.25]],["parent/5136",[1711,4.782]],["name/5137",[1713,71.25]],["parent/5137",[1711,4.782]],["name/5138",[1152,54.304]],["parent/5138",[1711,4.782]],["name/5139",[455,45.264]],["parent/5139",[1711,4.782]],["name/5140",[9,48.796]],["parent/5140",[1711,4.782]],["name/5141",[1712,71.25]],["parent/5141",[1711,4.782]],["name/5142",[1713,71.25]],["parent/5142",[1711,4.782]],["name/5143",[1152,54.304]],["parent/5143",[1711,4.782]],["name/5144",[1711,47.896]],["parent/5144",[1711,4.782]],["name/5145",[17,54.721]],["parent/5145",[1714,6.604]],["name/5146",[43,47.475]],["parent/5146",[1714,6.604]],["name/5147",[98,58.257]],["parent/5147",[1714,6.604]],["name/5148",[1715,73.763]],["parent/5148",[1716,7.7]],["name/5149",[1717,73.763]],["parent/5149",[1716,7.7]],["name/5150",[30,56.587]],["parent/5150",[1714,6.604]],["name/5151",[125,58.257]],["parent/5151",[1714,6.604]],["name/5152",[10,27.115]],["parent/5152",[1718,8.21]],["name/5153",[1715,73.763]],["parent/5153",[1719,7.114]],["name/5154",[1720,82.236]],["parent/5154",[1719,7.114]],["name/5155",[1717,73.763]],["parent/5155",[1719,7.114]],["name/5156",[1721,82.236]],["parent/5156",[1719,7.114]],["name/5157",[1715,73.763]],["parent/5157",[1714,6.604]],["name/5158",[1717,73.763]],["parent/5158",[1714,6.604]],["name/5159",[1722,71.25]],["parent/5159",[1711,4.782]],["name/5160",[10,27.115]],["parent/5160",[1723,8.21]],["name/5161",[547,36.628]],["parent/5161",[1724,7.364]],["name/5162",[1477,67.573]],["parent/5162",[1724,7.364]],["name/5163",[205,41.128]],["parent/5163",[1724,7.364]],["name/5164",[1725,71.25]],["parent/5164",[1711,4.782]],["name/5165",[10,27.115]],["parent/5165",[1726,8.21]],["name/5166",[172,34.962]],["parent/5166",[1727,8.21]],["name/5167",[1728,71.25]],["parent/5167",[1711,4.782]],["name/5168",[10,27.115]],["parent/5168",[1729,8.21]],["name/5169",[547,36.628]],["parent/5169",[1730,7.114]],["name/5170",[1731,82.236]],["parent/5170",[1730,7.114]],["name/5171",[1732,82.236]],["parent/5171",[1730,7.114]],["name/5172",[1645,67.573]],["parent/5172",[1730,7.114]],["name/5173",[1733,71.25]],["parent/5173",[1711,4.782]],["name/5174",[10,27.115]],["parent/5174",[1734,8.21]],["name/5175",[1735,82.236]],["parent/5175",[1736,7.7]],["name/5176",[172,34.962]],["parent/5176",[1736,7.7]],["name/5177",[1737,71.25]],["parent/5177",[1711,4.782]],["name/5178",[1738,71.25]],["parent/5178",[1711,4.782]],["name/5179",[1739,73.763]],["parent/5179",[1711,4.782]],["name/5180",[1722,71.25]],["parent/5180",[1711,4.782]],["name/5181",[1725,71.25]],["parent/5181",[1711,4.782]],["name/5182",[1728,71.25]],["parent/5182",[1711,4.782]],["name/5183",[1733,71.25]],["parent/5183",[1711,4.782]],["name/5184",[1737,71.25]],["parent/5184",[1711,4.782]],["name/5185",[1738,71.25]],["parent/5185",[1711,4.782]],["name/5186",[1739,73.763]],["parent/5186",[1711,4.782]],["name/5187",[1711,47.896]],["parent/5187",[1711,4.782]],["name/5188",[43,47.475]],["parent/5188",[1711,4.782]],["name/5189",[1722,71.25]],["parent/5189",[1711,4.782]],["name/5190",[1725,71.25]],["parent/5190",[1711,4.782]],["name/5191",[1728,71.25]],["parent/5191",[1711,4.782]],["name/5192",[1733,71.25]],["parent/5192",[1711,4.782]],["name/5193",[1737,71.25]],["parent/5193",[1711,4.782]],["name/5194",[1738,71.25]],["parent/5194",[1711,4.782]],["name/5195",[1739,73.763]],["parent/5195",[1711,4.782]],["name/5196",[1711,47.896]],["parent/5196",[1711,4.782]],["name/5197",[455,45.264]],["parent/5197",[1711,4.782]],["name/5198",[9,48.796]],["parent/5198",[1711,4.782]],["name/5199",[1712,71.25]],["parent/5199",[1711,4.782]],["name/5200",[1713,71.25]],["parent/5200",[1711,4.782]],["name/5201",[1152,54.304]],["parent/5201",[1711,4.782]],["name/5202",[1740,82.236]],["parent/5202",[1711,4.782]],["name/5203",[1737,71.25]],["parent/5203",[1741,6.177]],["name/5204",[1738,71.25]],["parent/5204",[1741,6.177]],["name/5205",[1722,71.25]],["parent/5205",[1741,6.177]],["name/5206",[1725,71.25]],["parent/5206",[1741,6.177]],["name/5207",[1728,71.25]],["parent/5207",[1741,6.177]],["name/5208",[1733,71.25]],["parent/5208",[1741,6.177]],["name/5209",[455,45.264]],["parent/5209",[1741,6.177]],["name/5210",[9,48.796]],["parent/5210",[1741,6.177]],["name/5211",[1712,71.25]],["parent/5211",[1741,6.177]],["name/5212",[1713,71.25]],["parent/5212",[1741,6.177]],["name/5213",[1152,54.304]],["parent/5213",[1741,6.177]],["name/5214",[1742,36.698]],["parent/5214",[]],["name/5215",[43,47.475]],["parent/5215",[1742,3.664]],["name/5216",[1743,71.25]],["parent/5216",[1742,3.664]],["name/5217",[1744,71.25]],["parent/5217",[1742,3.664]],["name/5218",[1745,71.25]],["parent/5218",[1742,3.664]],["name/5219",[1746,71.25]],["parent/5219",[1742,3.664]],["name/5220",[1747,71.25]],["parent/5220",[1742,3.664]],["name/5221",[1748,71.25]],["parent/5221",[1742,3.664]],["name/5222",[1749,71.25]],["parent/5222",[1742,3.664]],["name/5223",[1750,71.25]],["parent/5223",[1742,3.664]],["name/5224",[1751,71.25]],["parent/5224",[1742,3.664]],["name/5225",[455,45.264]],["parent/5225",[1742,3.664]],["name/5226",[1079,61.034]],["parent/5226",[1742,3.664]],["name/5227",[1080,61.034]],["parent/5227",[1742,3.664]],["name/5228",[1081,61.034]],["parent/5228",[1742,3.664]],["name/5229",[1096,61.034]],["parent/5229",[1742,3.664]],["name/5230",[9,48.796]],["parent/5230",[1742,3.664]],["name/5231",[1091,61.034]],["parent/5231",[1742,3.664]],["name/5232",[1138,58.257]],["parent/5232",[1742,3.664]],["name/5233",[1087,61.034]],["parent/5233",[1742,3.664]],["name/5234",[1752,71.25]],["parent/5234",[1742,3.664]],["name/5235",[1084,61.034]],["parent/5235",[1742,3.664]],["name/5236",[1088,61.034]],["parent/5236",[1742,3.664]],["name/5237",[1753,71.25]],["parent/5237",[1742,3.664]],["name/5238",[1090,61.034]],["parent/5238",[1742,3.664]],["name/5239",[1082,61.034]],["parent/5239",[1742,3.664]],["name/5240",[1083,61.034]],["parent/5240",[1742,3.664]],["name/5241",[1754,71.25]],["parent/5241",[1742,3.664]],["name/5242",[1755,71.25]],["parent/5242",[1742,3.664]],["name/5243",[1756,71.25]],["parent/5243",[1742,3.664]],["name/5244",[1757,71.25]],["parent/5244",[1742,3.664]],["name/5245",[1758,71.25]],["parent/5245",[1742,3.664]],["name/5246",[1759,71.25]],["parent/5246",[1742,3.664]],["name/5247",[1760,71.25]],["parent/5247",[1742,3.664]],["name/5248",[1761,71.25]],["parent/5248",[1742,3.664]],["name/5249",[1152,54.304]],["parent/5249",[1742,3.664]],["name/5250",[1762,71.25]],["parent/5250",[1742,3.664]],["name/5251",[1743,71.25]],["parent/5251",[1742,3.664]],["name/5252",[1747,71.25]],["parent/5252",[1742,3.664]],["name/5253",[1749,71.25]],["parent/5253",[1742,3.664]],["name/5254",[1750,71.25]],["parent/5254",[1742,3.664]],["name/5255",[1751,71.25]],["parent/5255",[1742,3.664]],["name/5256",[455,45.264]],["parent/5256",[1742,3.664]],["name/5257",[1079,61.034]],["parent/5257",[1742,3.664]],["name/5258",[1096,61.034]],["parent/5258",[1742,3.664]],["name/5259",[9,48.796]],["parent/5259",[1742,3.664]],["name/5260",[1091,61.034]],["parent/5260",[1742,3.664]],["name/5261",[1138,58.257]],["parent/5261",[1742,3.664]],["name/5262",[1087,61.034]],["parent/5262",[1742,3.664]],["name/5263",[1752,71.25]],["parent/5263",[1742,3.664]],["name/5264",[1084,61.034]],["parent/5264",[1742,3.664]],["name/5265",[1088,61.034]],["parent/5265",[1742,3.664]],["name/5266",[1753,71.25]],["parent/5266",[1742,3.664]],["name/5267",[1754,71.25]],["parent/5267",[1742,3.664]],["name/5268",[1756,71.25]],["parent/5268",[1742,3.664]],["name/5269",[1755,71.25]],["parent/5269",[1742,3.664]],["name/5270",[1759,71.25]],["parent/5270",[1742,3.664]],["name/5271",[1758,71.25]],["parent/5271",[1742,3.664]],["name/5272",[1761,71.25]],["parent/5272",[1742,3.664]],["name/5273",[1083,61.034]],["parent/5273",[1742,3.664]],["name/5274",[1152,54.304]],["parent/5274",[1742,3.664]],["name/5275",[1748,71.25]],["parent/5275",[1742,3.664]],["name/5276",[1746,71.25]],["parent/5276",[1742,3.664]],["name/5277",[1760,71.25]],["parent/5277",[1742,3.664]],["name/5278",[1744,71.25]],["parent/5278",[1742,3.664]],["name/5279",[1745,71.25]],["parent/5279",[1742,3.664]],["name/5280",[1757,71.25]],["parent/5280",[1742,3.664]],["name/5281",[1762,71.25]],["parent/5281",[1742,3.664]],["name/5282",[1090,61.034]],["parent/5282",[1742,3.664]],["name/5283",[1081,61.034]],["parent/5283",[1742,3.664]],["name/5284",[1080,61.034]],["parent/5284",[1742,3.664]],["name/5285",[1082,61.034]],["parent/5285",[1742,3.664]],["name/5286",[1742,36.698]],["parent/5286",[1742,3.664]],["name/5287",[17,54.721]],["parent/5287",[1763,6.604]],["name/5288",[43,47.475]],["parent/5288",[1763,6.604]],["name/5289",[98,58.257]],["parent/5289",[1763,6.604]],["name/5290",[1764,73.763]],["parent/5290",[1765,7.7]],["name/5291",[1766,73.763]],["parent/5291",[1765,7.7]],["name/5292",[30,56.587]],["parent/5292",[1763,6.604]],["name/5293",[125,58.257]],["parent/5293",[1763,6.604]],["name/5294",[10,27.115]],["parent/5294",[1767,8.21]],["name/5295",[1764,73.763]],["parent/5295",[1768,7.114]],["name/5296",[1769,82.236]],["parent/5296",[1768,7.114]],["name/5297",[1766,73.763]],["parent/5297",[1768,7.114]],["name/5298",[1770,82.236]],["parent/5298",[1768,7.114]],["name/5299",[1764,73.763]],["parent/5299",[1763,6.604]],["name/5300",[1766,73.763]],["parent/5300",[1763,6.604]],["name/5301",[1771,71.25]],["parent/5301",[1742,3.664]],["name/5302",[1772,71.25]],["parent/5302",[1742,3.664]],["name/5303",[1773,71.25]],["parent/5303",[1742,3.664]],["name/5304",[10,27.115]],["parent/5304",[1774,8.21]],["name/5305",[547,36.628]],["parent/5305",[1775,6.479]],["name/5306",[1507,73.763]],["parent/5306",[1775,6.479]],["name/5307",[1299,69.243]],["parent/5307",[1775,6.479]],["name/5308",[1645,67.573]],["parent/5308",[1775,6.479]],["name/5309",[205,41.128]],["parent/5309",[1775,6.479]],["name/5310",[1008,63.778]],["parent/5310",[1775,6.479]],["name/5311",[1776,82.236]],["parent/5311",[1775,6.479]],["name/5312",[1777,82.236]],["parent/5312",[1775,6.479]],["name/5313",[1778,71.25]],["parent/5313",[1742,3.664]],["name/5314",[10,27.115]],["parent/5314",[1779,8.21]],["name/5315",[172,34.962]],["parent/5315",[1780,8.21]],["name/5316",[1781,71.25]],["parent/5316",[1742,3.664]],["name/5317",[10,27.115]],["parent/5317",[1782,8.21]],["name/5318",[1696,73.763]],["parent/5318",[1783,5.945]],["name/5319",[547,36.628]],["parent/5319",[1783,5.945]],["name/5320",[1507,73.763]],["parent/5320",[1783,5.945]],["name/5321",[1509,77.128]],["parent/5321",[1783,5.945]],["name/5322",[1510,77.128]],["parent/5322",[1783,5.945]],["name/5323",[1645,67.573]],["parent/5323",[1783,5.945]],["name/5324",[205,41.128]],["parent/5324",[1783,5.945]],["name/5325",[1008,63.778]],["parent/5325",[1783,5.945]],["name/5326",[1694,73.763]],["parent/5326",[1783,5.945]],["name/5327",[1695,73.763]],["parent/5327",[1783,5.945]],["name/5328",[1784,82.236]],["parent/5328",[1783,5.945]],["name/5329",[1785,82.236]],["parent/5329",[1783,5.945]],["name/5330",[1299,69.243]],["parent/5330",[1783,5.945]],["name/5331",[1300,71.25]],["parent/5331",[1783,5.945]],["name/5332",[1786,71.25]],["parent/5332",[1742,3.664]],["name/5333",[10,27.115]],["parent/5333",[1787,8.21]],["name/5334",[172,34.962]],["parent/5334",[1788,8.21]],["name/5335",[1789,71.25]],["parent/5335",[1742,3.664]],["name/5336",[1790,71.25]],["parent/5336",[1742,3.664]],["name/5337",[1791,73.763]],["parent/5337",[1742,3.664]],["name/5338",[1771,71.25]],["parent/5338",[1742,3.664]],["name/5339",[1772,71.25]],["parent/5339",[1742,3.664]],["name/5340",[1773,71.25]],["parent/5340",[1742,3.664]],["name/5341",[1778,71.25]],["parent/5341",[1742,3.664]],["name/5342",[1781,71.25]],["parent/5342",[1742,3.664]],["name/5343",[1786,71.25]],["parent/5343",[1742,3.664]],["name/5344",[1789,71.25]],["parent/5344",[1742,3.664]],["name/5345",[1790,71.25]],["parent/5345",[1742,3.664]],["name/5346",[1791,73.763]],["parent/5346",[1742,3.664]],["name/5347",[1742,36.698]],["parent/5347",[1742,3.664]],["name/5348",[43,47.475]],["parent/5348",[1742,3.664]],["name/5349",[1771,71.25]],["parent/5349",[1742,3.664]],["name/5350",[1772,71.25]],["parent/5350",[1742,3.664]],["name/5351",[1773,71.25]],["parent/5351",[1742,3.664]],["name/5352",[1778,71.25]],["parent/5352",[1742,3.664]],["name/5353",[1781,71.25]],["parent/5353",[1742,3.664]],["name/5354",[1786,71.25]],["parent/5354",[1742,3.664]],["name/5355",[1789,71.25]],["parent/5355",[1742,3.664]],["name/5356",[1790,71.25]],["parent/5356",[1742,3.664]],["name/5357",[1791,73.763]],["parent/5357",[1742,3.664]],["name/5358",[1742,36.698]],["parent/5358",[1742,3.664]],["name/5359",[1743,71.25]],["parent/5359",[1742,3.664]],["name/5360",[1747,71.25]],["parent/5360",[1742,3.664]],["name/5361",[1749,71.25]],["parent/5361",[1742,3.664]],["name/5362",[1750,71.25]],["parent/5362",[1742,3.664]],["name/5363",[1751,71.25]],["parent/5363",[1742,3.664]],["name/5364",[455,45.264]],["parent/5364",[1742,3.664]],["name/5365",[1079,61.034]],["parent/5365",[1742,3.664]],["name/5366",[1096,61.034]],["parent/5366",[1742,3.664]],["name/5367",[9,48.796]],["parent/5367",[1742,3.664]],["name/5368",[1091,61.034]],["parent/5368",[1742,3.664]],["name/5369",[1138,58.257]],["parent/5369",[1742,3.664]],["name/5370",[1087,61.034]],["parent/5370",[1742,3.664]],["name/5371",[1752,71.25]],["parent/5371",[1742,3.664]],["name/5372",[1084,61.034]],["parent/5372",[1742,3.664]],["name/5373",[1088,61.034]],["parent/5373",[1742,3.664]],["name/5374",[1753,71.25]],["parent/5374",[1742,3.664]],["name/5375",[1754,71.25]],["parent/5375",[1742,3.664]],["name/5376",[1756,71.25]],["parent/5376",[1742,3.664]],["name/5377",[1755,71.25]],["parent/5377",[1742,3.664]],["name/5378",[1759,71.25]],["parent/5378",[1742,3.664]],["name/5379",[1758,71.25]],["parent/5379",[1742,3.664]],["name/5380",[1761,71.25]],["parent/5380",[1742,3.664]],["name/5381",[1083,61.034]],["parent/5381",[1742,3.664]],["name/5382",[1152,54.304]],["parent/5382",[1742,3.664]],["name/5383",[1748,71.25]],["parent/5383",[1742,3.664]],["name/5384",[1746,71.25]],["parent/5384",[1742,3.664]],["name/5385",[1760,71.25]],["parent/5385",[1742,3.664]],["name/5386",[1744,71.25]],["parent/5386",[1742,3.664]],["name/5387",[1745,71.25]],["parent/5387",[1742,3.664]],["name/5388",[1757,71.25]],["parent/5388",[1742,3.664]],["name/5389",[1762,71.25]],["parent/5389",[1742,3.664]],["name/5390",[1090,61.034]],["parent/5390",[1742,3.664]],["name/5391",[1081,61.034]],["parent/5391",[1742,3.664]],["name/5392",[1080,61.034]],["parent/5392",[1742,3.664]],["name/5393",[1082,61.034]],["parent/5393",[1742,3.664]],["name/5394",[1792,82.236]],["parent/5394",[1742,3.664]],["name/5395",[1789,71.25]],["parent/5395",[1793,4.848]],["name/5396",[1790,71.25]],["parent/5396",[1793,4.848]],["name/5397",[1771,71.25]],["parent/5397",[1793,4.848]],["name/5398",[1773,71.25]],["parent/5398",[1793,4.848]],["name/5399",[1778,71.25]],["parent/5399",[1793,4.848]],["name/5400",[1772,71.25]],["parent/5400",[1793,4.848]],["name/5401",[1781,71.25]],["parent/5401",[1793,4.848]],["name/5402",[1786,71.25]],["parent/5402",[1793,4.848]],["name/5403",[1743,71.25]],["parent/5403",[1793,4.848]],["name/5404",[1747,71.25]],["parent/5404",[1793,4.848]],["name/5405",[1749,71.25]],["parent/5405",[1793,4.848]],["name/5406",[1750,71.25]],["parent/5406",[1793,4.848]],["name/5407",[1751,71.25]],["parent/5407",[1793,4.848]],["name/5408",[455,45.264]],["parent/5408",[1793,4.848]],["name/5409",[1079,61.034]],["parent/5409",[1793,4.848]],["name/5410",[1096,61.034]],["parent/5410",[1793,4.848]],["name/5411",[9,48.796]],["parent/5411",[1793,4.848]],["name/5412",[1091,61.034]],["parent/5412",[1793,4.848]],["name/5413",[1138,58.257]],["parent/5413",[1793,4.848]],["name/5414",[1087,61.034]],["parent/5414",[1793,4.848]],["name/5415",[1752,71.25]],["parent/5415",[1793,4.848]],["name/5416",[1084,61.034]],["parent/5416",[1793,4.848]],["name/5417",[1088,61.034]],["parent/5417",[1793,4.848]],["name/5418",[1753,71.25]],["parent/5418",[1793,4.848]],["name/5419",[1754,71.25]],["parent/5419",[1793,4.848]],["name/5420",[1756,71.25]],["parent/5420",[1793,4.848]],["name/5421",[1755,71.25]],["parent/5421",[1793,4.848]],["name/5422",[1759,71.25]],["parent/5422",[1793,4.848]],["name/5423",[1758,71.25]],["parent/5423",[1793,4.848]],["name/5424",[1761,71.25]],["parent/5424",[1793,4.848]],["name/5425",[1083,61.034]],["parent/5425",[1793,4.848]],["name/5426",[1152,54.304]],["parent/5426",[1793,4.848]],["name/5427",[1748,71.25]],["parent/5427",[1793,4.848]],["name/5428",[1746,71.25]],["parent/5428",[1793,4.848]],["name/5429",[1760,71.25]],["parent/5429",[1793,4.848]],["name/5430",[1744,71.25]],["parent/5430",[1793,4.848]],["name/5431",[1745,71.25]],["parent/5431",[1793,4.848]],["name/5432",[1757,71.25]],["parent/5432",[1793,4.848]],["name/5433",[1762,71.25]],["parent/5433",[1793,4.848]],["name/5434",[1090,61.034]],["parent/5434",[1793,4.848]],["name/5435",[1081,61.034]],["parent/5435",[1793,4.848]],["name/5436",[1080,61.034]],["parent/5436",[1793,4.848]],["name/5437",[1082,61.034]],["parent/5437",[1793,4.848]],["name/5438",[1794,50.881]],["parent/5438",[]],["name/5439",[43,47.475]],["parent/5439",[1794,5.08]],["name/5440",[455,45.264]],["parent/5440",[1794,5.08]],["name/5441",[9,48.796]],["parent/5441",[1794,5.08]],["name/5442",[1795,71.25]],["parent/5442",[1794,5.08]],["name/5443",[455,45.264]],["parent/5443",[1794,5.08]],["name/5444",[9,48.796]],["parent/5444",[1794,5.08]],["name/5445",[1795,71.25]],["parent/5445",[1794,5.08]],["name/5446",[1794,50.881]],["parent/5446",[1794,5.08]],["name/5447",[17,54.721]],["parent/5447",[1796,6.746]],["name/5448",[43,47.475]],["parent/5448",[1796,6.746]],["name/5449",[98,58.257]],["parent/5449",[1796,6.746]],["name/5450",[1797,73.763]],["parent/5450",[1798,8.21]],["name/5451",[30,56.587]],["parent/5451",[1796,6.746]],["name/5452",[125,58.257]],["parent/5452",[1796,6.746]],["name/5453",[10,27.115]],["parent/5453",[1799,8.21]],["name/5454",[1797,73.763]],["parent/5454",[1800,7.7]],["name/5455",[1801,82.236]],["parent/5455",[1800,7.7]],["name/5456",[1797,73.763]],["parent/5456",[1796,6.746]],["name/5457",[1802,71.25]],["parent/5457",[1794,5.08]],["name/5458",[10,27.115]],["parent/5458",[1803,8.21]],["name/5459",[1804,82.236]],["parent/5459",[1805,7.364]],["name/5460",[547,36.628]],["parent/5460",[1805,7.364]],["name/5461",[205,41.128]],["parent/5461",[1805,7.364]],["name/5462",[1806,71.25]],["parent/5462",[1794,5.08]],["name/5463",[10,27.115]],["parent/5463",[1807,8.21]],["name/5464",[172,34.962]],["parent/5464",[1808,8.21]],["name/5465",[1809,71.25]],["parent/5465",[1794,5.08]],["name/5466",[1810,71.25]],["parent/5466",[1794,5.08]],["name/5467",[1811,73.763]],["parent/5467",[1794,5.08]],["name/5468",[1802,71.25]],["parent/5468",[1794,5.08]],["name/5469",[1806,71.25]],["parent/5469",[1794,5.08]],["name/5470",[1809,71.25]],["parent/5470",[1794,5.08]],["name/5471",[1810,71.25]],["parent/5471",[1794,5.08]],["name/5472",[1811,73.763]],["parent/5472",[1794,5.08]],["name/5473",[1794,50.881]],["parent/5473",[1794,5.08]],["name/5474",[43,47.475]],["parent/5474",[1794,5.08]],["name/5475",[1802,71.25]],["parent/5475",[1794,5.08]],["name/5476",[1806,71.25]],["parent/5476",[1794,5.08]],["name/5477",[1809,71.25]],["parent/5477",[1794,5.08]],["name/5478",[1810,71.25]],["parent/5478",[1794,5.08]],["name/5479",[1811,73.763]],["parent/5479",[1794,5.08]],["name/5480",[1794,50.881]],["parent/5480",[1794,5.08]],["name/5481",[455,45.264]],["parent/5481",[1794,5.08]],["name/5482",[9,48.796]],["parent/5482",[1794,5.08]],["name/5483",[1795,71.25]],["parent/5483",[1794,5.08]],["name/5484",[1812,82.236]],["parent/5484",[1794,5.08]],["name/5485",[1809,71.25]],["parent/5485",[1813,6.604]],["name/5486",[1810,71.25]],["parent/5486",[1813,6.604]],["name/5487",[1802,71.25]],["parent/5487",[1813,6.604]],["name/5488",[1806,71.25]],["parent/5488",[1813,6.604]],["name/5489",[455,45.264]],["parent/5489",[1813,6.604]],["name/5490",[9,48.796]],["parent/5490",[1813,6.604]],["name/5491",[1795,71.25]],["parent/5491",[1813,6.604]],["name/5492",[1814,46.127]],["parent/5492",[]],["name/5493",[43,47.475]],["parent/5493",[1814,4.605]],["name/5494",[1815,69.243]],["parent/5494",[1814,4.605]],["name/5495",[455,45.264]],["parent/5495",[1814,4.605]],["name/5496",[9,48.796]],["parent/5496",[1814,4.605]],["name/5497",[1138,58.257]],["parent/5497",[1814,4.605]],["name/5498",[1152,54.304]],["parent/5498",[1814,4.605]],["name/5499",[1816,71.25]],["parent/5499",[1814,4.605]],["name/5500",[1817,71.25]],["parent/5500",[1814,4.605]],["name/5501",[1818,71.25]],["parent/5501",[1814,4.605]],["name/5502",[1815,69.243]],["parent/5502",[1814,4.605]],["name/5503",[455,45.264]],["parent/5503",[1814,4.605]],["name/5504",[9,48.796]],["parent/5504",[1814,4.605]],["name/5505",[1138,58.257]],["parent/5505",[1814,4.605]],["name/5506",[1152,54.304]],["parent/5506",[1814,4.605]],["name/5507",[1816,71.25]],["parent/5507",[1814,4.605]],["name/5508",[1817,71.25]],["parent/5508",[1814,4.605]],["name/5509",[1818,71.25]],["parent/5509",[1814,4.605]],["name/5510",[1814,46.127]],["parent/5510",[1814,4.605]],["name/5511",[17,54.721]],["parent/5511",[1819,6.604]],["name/5512",[43,47.475]],["parent/5512",[1819,6.604]],["name/5513",[98,58.257]],["parent/5513",[1819,6.604]],["name/5514",[1820,73.763]],["parent/5514",[1821,7.7]],["name/5515",[1822,73.763]],["parent/5515",[1821,7.7]],["name/5516",[30,56.587]],["parent/5516",[1819,6.604]],["name/5517",[125,58.257]],["parent/5517",[1819,6.604]],["name/5518",[10,27.115]],["parent/5518",[1823,8.21]],["name/5519",[1820,73.763]],["parent/5519",[1824,7.114]],["name/5520",[1825,82.236]],["parent/5520",[1824,7.114]],["name/5521",[1822,73.763]],["parent/5521",[1824,7.114]],["name/5522",[1826,82.236]],["parent/5522",[1824,7.114]],["name/5523",[1820,73.763]],["parent/5523",[1819,6.604]],["name/5524",[1822,73.763]],["parent/5524",[1819,6.604]],["name/5525",[1827,71.25]],["parent/5525",[1814,4.605]],["name/5526",[10,27.115]],["parent/5526",[1828,8.21]],["name/5527",[1477,67.573]],["parent/5527",[1829,7.364]],["name/5528",[547,36.628]],["parent/5528",[1829,7.364]],["name/5529",[205,41.128]],["parent/5529",[1829,7.364]],["name/5530",[1830,71.25]],["parent/5530",[1814,4.605]],["name/5531",[10,27.115]],["parent/5531",[1831,8.21]],["name/5532",[172,34.962]],["parent/5532",[1832,8.21]],["name/5533",[1833,71.25]],["parent/5533",[1814,4.605]],["name/5534",[10,27.115]],["parent/5534",[1834,8.21]],["name/5535",[1646,77.128]],["parent/5535",[1835,6.268]],["name/5536",[1815,69.243]],["parent/5536",[1835,6.268]],["name/5537",[1836,82.236]],["parent/5537",[1835,6.268]],["name/5538",[1837,82.236]],["parent/5538",[1835,6.268]],["name/5539",[1838,82.236]],["parent/5539",[1835,6.268]],["name/5540",[1839,82.236]],["parent/5540",[1835,6.268]],["name/5541",[547,36.628]],["parent/5541",[1835,6.268]],["name/5542",[205,41.128]],["parent/5542",[1835,6.268]],["name/5543",[1299,69.243]],["parent/5543",[1835,6.268]],["name/5544",[1300,71.25]],["parent/5544",[1835,6.268]],["name/5545",[1840,71.25]],["parent/5545",[1814,4.605]],["name/5546",[10,27.115]],["parent/5546",[1841,8.21]],["name/5547",[172,34.962]],["parent/5547",[1842,8.21]],["name/5548",[1843,71.25]],["parent/5548",[1814,4.605]],["name/5549",[1844,71.25]],["parent/5549",[1814,4.605]],["name/5550",[1845,73.763]],["parent/5550",[1814,4.605]],["name/5551",[1827,71.25]],["parent/5551",[1814,4.605]],["name/5552",[1830,71.25]],["parent/5552",[1814,4.605]],["name/5553",[1833,71.25]],["parent/5553",[1814,4.605]],["name/5554",[1840,71.25]],["parent/5554",[1814,4.605]],["name/5555",[1843,71.25]],["parent/5555",[1814,4.605]],["name/5556",[1844,71.25]],["parent/5556",[1814,4.605]],["name/5557",[1845,73.763]],["parent/5557",[1814,4.605]],["name/5558",[1814,46.127]],["parent/5558",[1814,4.605]],["name/5559",[43,47.475]],["parent/5559",[1814,4.605]],["name/5560",[1827,71.25]],["parent/5560",[1814,4.605]],["name/5561",[1830,71.25]],["parent/5561",[1814,4.605]],["name/5562",[1833,71.25]],["parent/5562",[1814,4.605]],["name/5563",[1840,71.25]],["parent/5563",[1814,4.605]],["name/5564",[1843,71.25]],["parent/5564",[1814,4.605]],["name/5565",[1844,71.25]],["parent/5565",[1814,4.605]],["name/5566",[1845,73.763]],["parent/5566",[1814,4.605]],["name/5567",[1814,46.127]],["parent/5567",[1814,4.605]],["name/5568",[1815,69.243]],["parent/5568",[1814,4.605]],["name/5569",[455,45.264]],["parent/5569",[1814,4.605]],["name/5570",[9,48.796]],["parent/5570",[1814,4.605]],["name/5571",[1138,58.257]],["parent/5571",[1814,4.605]],["name/5572",[1152,54.304]],["parent/5572",[1814,4.605]],["name/5573",[1816,71.25]],["parent/5573",[1814,4.605]],["name/5574",[1817,71.25]],["parent/5574",[1814,4.605]],["name/5575",[1818,71.25]],["parent/5575",[1814,4.605]],["name/5576",[1846,82.236]],["parent/5576",[1814,4.605]],["name/5577",[1843,71.25]],["parent/5577",[1847,5.945]],["name/5578",[1844,71.25]],["parent/5578",[1847,5.945]],["name/5579",[1827,71.25]],["parent/5579",[1847,5.945]],["name/5580",[1830,71.25]],["parent/5580",[1847,5.945]],["name/5581",[1833,71.25]],["parent/5581",[1847,5.945]],["name/5582",[1840,71.25]],["parent/5582",[1847,5.945]],["name/5583",[1815,69.243]],["parent/5583",[1847,5.945]],["name/5584",[455,45.264]],["parent/5584",[1847,5.945]],["name/5585",[9,48.796]],["parent/5585",[1847,5.945]],["name/5586",[1138,58.257]],["parent/5586",[1847,5.945]],["name/5587",[1152,54.304]],["parent/5587",[1847,5.945]],["name/5588",[1816,71.25]],["parent/5588",[1847,5.945]],["name/5589",[1817,71.25]],["parent/5589",[1847,5.945]],["name/5590",[1818,71.25]],["parent/5590",[1847,5.945]]],"invertedIndex":[["__type",{"_index":10,"name":{"9":{},"12":{},"14":{},"29":{},"41":{},"164":{},"256":{},"258":{},"261":{},"271":{},"283":{},"286":{},"289":{},"292":{},"305":{},"307":{},"310":{},"321":{},"324":{},"329":{},"332":{},"336":{},"338":{},"341":{},"343":{},"346":{},"348":{},"351":{},"362":{},"364":{},"367":{},"370":{},"374":{},"376":{},"379":{},"387":{},"389":{},"392":{},"403":{},"405":{},"408":{},"421":{},"423":{},"426":{},"438":{},"447":{},"450":{},"452":{},"455":{},"466":{},"469":{},"472":{},"474":{},"477":{},"479":{},"482":{},"486":{},"492":{},"495":{},"497":{},"500":{},"509":{},"511":{},"514":{},"518":{},"520":{},"523":{},"529":{},"531":{},"534":{},"827":{},"942":{},"946":{},"950":{},"954":{},"958":{},"962":{},"966":{},"970":{},"974":{},"978":{},"982":{},"985":{},"989":{},"992":{},"996":{},"999":{},"1004":{},"1009":{},"1012":{},"1016":{},"1020":{},"1023":{},"1027":{},"1031":{},"1035":{},"1039":{},"1043":{},"1046":{},"1050":{},"1054":{},"1059":{},"1062":{},"1066":{},"1072":{},"1075":{},"1079":{},"1084":{},"1088":{},"1093":{},"1097":{},"1102":{},"1106":{},"1111":{},"1115":{},"1120":{},"1124":{},"1129":{},"1135":{},"1138":{},"1142":{},"1146":{},"1151":{},"1155":{},"1160":{},"1164":{},"1170":{},"1174":{},"1178":{},"1182":{},"1186":{},"1191":{},"1196":{},"1201":{},"1206":{},"1210":{},"1215":{},"1220":{},"1223":{},"1228":{},"1232":{},"1237":{},"1243":{},"1248":{},"1252":{},"1732":{},"1847":{},"1851":{},"1855":{},"1859":{},"1863":{},"1867":{},"1871":{},"1875":{},"1879":{},"1883":{},"1887":{},"1890":{},"1894":{},"1897":{},"1901":{},"1904":{},"1909":{},"1916":{},"1919":{},"1923":{},"1927":{},"1930":{},"1934":{},"1938":{},"1942":{},"1946":{},"1950":{},"1953":{},"1957":{},"1961":{},"1966":{},"1969":{},"1973":{},"1979":{},"1982":{},"1986":{},"1991":{},"1995":{},"2000":{},"2004":{},"2009":{},"2013":{},"2018":{},"2022":{},"2027":{},"2031":{},"2036":{},"2043":{},"2046":{},"2050":{},"2054":{},"2059":{},"2063":{},"2068":{},"2072":{},"2078":{},"2082":{},"2086":{},"2090":{},"2094":{},"2099":{},"2104":{},"2109":{},"2114":{},"2118":{},"2123":{},"2128":{},"2131":{},"2136":{},"2140":{},"2145":{},"2151":{},"2156":{},"2160":{},"2535":{},"2540":{},"2543":{},"2613":{},"2625":{},"2631":{},"2634":{},"2638":{},"2641":{},"2645":{},"2731":{},"2745":{},"2749":{},"2753":{},"2756":{},"2760":{},"2763":{},"2767":{},"2771":{},"3086":{},"3187":{},"3190":{},"3194":{},"3197":{},"3201":{},"3204":{},"3208":{},"3211":{},"3216":{},"3219":{},"3224":{},"3228":{},"3233":{},"3236":{},"3241":{},"3244":{},"3250":{},"3254":{},"3258":{},"3261":{},"3266":{},"3269":{},"3273":{},"3283":{},"3287":{},"3290":{},"3295":{},"3298":{},"3303":{},"3306":{},"3312":{},"3315":{},"3319":{},"3324":{},"3327":{},"3330":{},"3335":{},"3338":{},"3342":{},"3346":{},"3350":{},"3356":{},"3359":{},"3362":{},"3365":{},"3368":{},"3371":{},"3374":{},"3377":{},"3380":{},"3385":{},"3388":{},"3391":{},"3394":{},"3398":{},"3401":{},"3406":{},"3409":{},"3413":{},"3416":{},"3421":{},"3424":{},"3429":{},"3432":{},"3916":{},"3939":{},"3943":{},"3947":{},"3952":{},"3956":{},"3962":{},"3965":{},"3970":{},"3973":{},"3979":{},"3983":{},"3992":{},"3995":{},"4004":{},"4110":{},"4115":{},"4118":{},"4519":{},"4549":{},"4553":{},"4556":{},"4560":{},"4564":{},"4569":{},"4573":{},"4578":{},"4582":{},"4586":{},"4590":{},"4593":{},"4597":{},"4601":{},"4605":{},"4609":{},"4614":{},"4618":{},"4841":{},"4846":{},"4853":{},"4958":{},"4976":{},"4982":{},"4985":{},"4990":{},"4994":{},"5004":{},"5008":{},"5019":{},"5152":{},"5160":{},"5165":{},"5168":{},"5174":{},"5294":{},"5304":{},"5314":{},"5317":{},"5333":{},"5453":{},"5458":{},"5463":{},"5518":{},"5526":{},"5531":{},"5534":{},"5546":{}},"parent":{}}],["accountid",{"_index":1257,"name":{"3226":{}},"parent":{}}],["addcoupontobasket",{"_index":466,"name":{"788":{},"828":{},"902":{},"1693":{},"1733":{},"1807":{}},"parent":{}}],["addcoupontobasketpathparameters",{"_index":549,"name":{"945":{},"1262":{},"1343":{},"1466":{},"1850":{},"2173":{},"2257":{},"2393":{}},"parent":{}}],["addcoupontobasketqueryparameters",{"_index":545,"name":{"941":{},"1261":{},"1342":{},"1465":{},"1846":{},"2172":{},"2256":{},"2392":{}},"parent":{}}],["addcoupontobasketrequired",{"_index":506,"name":{"829":{},"1734":{}},"parent":{}}],["addgiftcertificateitemtobasket",{"_index":468,"name":{"789":{},"830":{},"903":{},"1694":{},"1735":{},"1808":{}},"parent":{}}],["addgiftcertificateitemtobasketpathparameters",{"_index":556,"name":{"953":{},"1264":{},"1345":{},"1468":{},"1858":{},"2175":{},"2259":{},"2395":{}},"parent":{}}],["addgiftcertificateitemtobasketqueryparameters",{"_index":553,"name":{"949":{},"1263":{},"1344":{},"1467":{},"1854":{},"2174":{},"2258":{},"2394":{}},"parent":{}}],["addgiftcertificateitemtobasketrequired",{"_index":507,"name":{"831":{},"1736":{}},"parent":{}}],["additemtobasket",{"_index":469,"name":{"790":{},"832":{},"904":{},"1695":{},"1737":{},"1809":{}},"parent":{}}],["additemtobasketpathparameters",{"_index":562,"name":{"961":{},"1266":{},"1347":{},"1470":{},"1866":{},"2177":{},"2261":{},"2397":{}},"parent":{}}],["additemtobasketqueryparameters",{"_index":559,"name":{"957":{},"1265":{},"1346":{},"1469":{},"1862":{},"2176":{},"2260":{},"2396":{}},"parent":{}}],["additemtobasketrequired",{"_index":508,"name":{"833":{},"1738":{}},"parent":{}}],["addpaymentinstrumenttobasket",{"_index":470,"name":{"791":{},"834":{},"905":{},"1696":{},"1739":{},"1810":{}},"parent":{}}],["addpaymentinstrumenttobasketpathparameters",{"_index":568,"name":{"969":{},"1268":{},"1349":{},"1472":{},"1874":{},"2179":{},"2263":{},"2399":{}},"parent":{}}],["addpaymentinstrumenttobasketqueryparameters",{"_index":565,"name":{"965":{},"1267":{},"1348":{},"1471":{},"1870":{},"2178":{},"2262":{},"2398":{}},"parent":{}}],["addpaymentinstrumenttobasketrequired",{"_index":509,"name":{"835":{},"1740":{}},"parent":{}}],["addpriceadjustmenttobasket",{"_index":471,"name":{"792":{},"836":{},"906":{},"1697":{},"1741":{},"1811":{}},"parent":{}}],["addpriceadjustmenttobasketpathparameters",{"_index":574,"name":{"977":{},"1270":{},"1351":{},"1474":{},"1882":{},"2181":{},"2265":{},"2401":{}},"parent":{}}],["addpriceadjustmenttobasketqueryparameters",{"_index":571,"name":{"973":{},"1269":{},"1350":{},"1473":{},"1878":{},"2180":{},"2264":{},"2400":{}},"parent":{}}],["addpriceadjustmenttobasketrequired",{"_index":510,"name":{"837":{},"1742":{}},"parent":{}}],["addpricebookstobasket",{"_index":472,"name":{"793":{},"838":{},"907":{},"1698":{},"1743":{},"1812":{}},"parent":{}}],["addpricebookstobasketpathparameters",{"_index":580,"name":{"984":{},"1272":{},"1353":{},"1476":{},"1889":{},"2183":{},"2267":{},"2403":{}},"parent":{}}],["addpricebookstobasketqueryparameters",{"_index":577,"name":{"981":{},"1271":{},"1352":{},"1475":{},"1886":{},"2182":{},"2266":{},"2402":{}},"parent":{}}],["addpricebookstobasketrequired",{"_index":511,"name":{"839":{},"1744":{}},"parent":{}}],["addqueryparams",{"_index":47,"name":{"55":{}},"parent":{}}],["addressname",{"_index":1285,"name":{"3262":{},"3381":{},"3402":{}},"parent":{}}],["addtaxesforbasket",{"_index":473,"name":{"794":{},"840":{},"908":{},"1699":{},"1745":{},"1813":{}},"parent":{}}],["addtaxesforbasketitem",{"_index":474,"name":{"795":{},"842":{},"909":{},"1700":{},"1747":{},"1814":{}},"parent":{}}],["addtaxesforbasketitempathparameters",{"_index":592,"name":{"998":{},"1276":{},"1357":{},"1480":{},"1903":{},"2187":{},"2271":{},"2407":{}},"parent":{}}],["addtaxesforbasketitemqueryparameters",{"_index":589,"name":{"995":{},"1275":{},"1356":{},"1479":{},"1900":{},"2186":{},"2270":{},"2406":{}},"parent":{}}],["addtaxesforbasketitemrequired",{"_index":513,"name":{"843":{},"1748":{}},"parent":{}}],["addtaxesforbasketpathparameters",{"_index":586,"name":{"991":{},"1274":{},"1355":{},"1478":{},"1896":{},"2185":{},"2269":{},"2405":{}},"parent":{}}],["addtaxesforbasketqueryparameters",{"_index":583,"name":{"988":{},"1273":{},"1354":{},"1477":{},"1893":{},"2184":{},"2268":{},"2404":{}},"parent":{}}],["addtaxesforbasketrequired",{"_index":512,"name":{"841":{},"1746":{}},"parent":{}}],["agent_id",{"_index":305,"name":{"427":{}},"parent":{}}],["allimages",{"_index":1694,"name":{"4997":{},"5012":{},"5326":{}},"parent":{}}],["allvariationproperties",{"_index":1784,"name":{"5328":{}},"parent":{}}],["amount",{"_index":1648,"name":{"4851":{}},"parent":{}}],["apiname",{"_index":418,"name":{"691":{}},"parent":{}}],["apipaths",{"_index":98,"name":{"136":{},"787":{},"1692":{},"2531":{},"2607":{},"2724":{},"3051":{},"3906":{},"4106":{},"4507":{},"4837":{},"4951":{},"5147":{},"5289":{},"5449":{},"5513":{}},"parent":{}}],["apiversion",{"_index":420,"name":{"692":{}},"parent":{}}],["appliedprocessor",{"_index":1743,"name":{"5216":{},"5251":{},"5359":{},"5403":{}},"parent":{}}],["aspectattributes",{"_index":1490,"name":{"3974":{},"3987":{}},"parent":{}}],["aspecttypeid",{"_index":1501,"name":{"3986":{}},"parent":{}}],["authenticatecustomer",{"_index":99,"name":{"137":{},"165":{},"215":{}},"parent":{}}],["authenticatecustomerbodytype",{"_index":174,"name":{"260":{},"564":{},"4167":{},"4267":{}},"parent":{}}],["authenticatecustomerpathparameters",{"_index":170,"name":{"257":{},"563":{},"4166":{},"4269":{}},"parent":{}}],["authenticatecustomerqueryparameters",{"_index":168,"name":{"255":{},"562":{},"4165":{},"4268":{}},"parent":{}}],["authenticatecustomerrequired",{"_index":128,"name":{"166":{}},"parent":{}}],["authenticatefinishrequest",{"_index":80,"name":{"88":{},"105":{},"4236":{},"4346":{}},"parent":{}}],["authenticateresult",{"_index":83,"name":{"91":{},"106":{},"4237":{},"4347":{}},"parent":{}}],["authenticationproviderid",{"_index":1332,"name":{"3321":{}},"parent":{}}],["authenticatorassertionresponsejson",{"_index":76,"name":{"84":{},"107":{},"4238":{},"4348":{}},"parent":{}}],["authenticatorassertionresponsejsonauthenticatordatainner",{"_index":74,"name":{"82":{},"108":{},"4239":{},"4349":{}},"parent":{}}],["authenticatorassertionresponsejsonclientdatajsoninner",{"_index":75,"name":{"83":{},"109":{},"4240":{},"4350":{}},"parent":{}}],["authenticatorassertionresponsejsonsignatureinner",{"_index":72,"name":{"80":{},"110":{},"4241":{},"4351":{}},"parent":{}}],["authenticatorassertionresponsejsonuserhandleinner",{"_index":73,"name":{"81":{},"111":{},"4242":{},"4352":{}},"parent":{}}],["authenticatorattestationresponsejson",{"_index":71,"name":{"79":{},"112":{},"4243":{},"4353":{}},"parent":{}}],["authenticatorattestationresponsejsonattestationobjectinner",{"_index":70,"name":{"78":{},"113":{},"4244":{},"4354":{}},"parent":{}}],["authenticatorattestationresponsejsonclientdatajsoninner",{"_index":69,"name":{"77":{},"114":{},"4245":{},"4355":{}},"parent":{}}],["authorize",{"_index":405,"name":{"646":{},"661":{}},"parent":{}}],["authorizecustomer",{"_index":101,"name":{"138":{},"167":{},"216":{}},"parent":{}}],["authorizecustomerpathparameters",{"_index":190,"name":{"282":{},"566":{},"4169":{},"4273":{}},"parent":{}}],["authorizecustomerqueryparameters",{"_index":185,"name":{"270":{},"565":{},"4168":{},"4272":{}},"parent":{}}],["authorizecustomerrequired",{"_index":129,"name":{"168":{}},"parent":{}}],["authorizecustomerresponsetypeenum",{"_index":153,"name":{"240":{},"547":{},"4150":{},"4270":{}},"parent":{}}],["authorizecustomerscopeenum",{"_index":154,"name":{"241":{},"548":{},"4151":{},"4271":{}},"parent":{}}],["authorizeidp",{"_index":406,"name":{"647":{},"662":{}},"parent":{}}],["authorizepasswordless",{"_index":411,"name":{"652":{},"667":{}},"parent":{}}],["authorizepasswordlesscustomer",{"_index":102,"name":{"139":{},"169":{},"217":{}},"parent":{}}],["authorizepasswordlesscustomerbodytype",{"_index":200,"name":{"291":{},"569":{},"4172":{},"4275":{}},"parent":{}}],["authorizepasswordlesscustomermodeenum",{"_index":155,"name":{"242":{},"549":{},"4152":{},"4274":{}},"parent":{}}],["authorizepasswordlesscustomerpathparameters",{"_index":197,"name":{"288":{},"568":{},"4171":{},"4277":{}},"parent":{}}],["authorizepasswordlesscustomerqueryparameters",{"_index":193,"name":{"285":{},"567":{},"4170":{},"4276":{}},"parent":{}}],["authorizepasswordlesscustomerrequired",{"_index":130,"name":{"170":{}},"parent":{}}],["authorizewebauthnregistration",{"_index":103,"name":{"140":{},"171":{},"218":{}},"parent":{}}],["authorizewebauthnregistrationbodytype",{"_index":217,"name":{"309":{},"572":{},"4175":{},"4279":{}},"parent":{}}],["authorizewebauthnregistrationmodeenum",{"_index":156,"name":{"243":{},"550":{},"4153":{},"4278":{}},"parent":{}}],["authorizewebauthnregistrationpathparameters",{"_index":214,"name":{"306":{},"571":{},"4174":{},"4281":{}},"parent":{}}],["authorizewebauthnregistrationqueryparameters",{"_index":212,"name":{"304":{},"570":{},"4173":{},"4280":{}},"parent":{}}],["authorizewebauthnregistrationrequired",{"_index":131,"name":{"172":{}},"parent":{}}],["authparameters",{"_index":392,"name":{"546":{},"631":{},"4234":{}},"parent":{}}],["authpathparameters",{"_index":390,"name":{"544":{},"629":{},"4232":{}},"parent":{}}],["authqueryparameters",{"_index":391,"name":{"545":{},"630":{},"4233":{}},"parent":{}}],["baseuri",{"_index":19,"name":{"17":{},"26":{}},"parent":{}}],["baseuriparameters",{"_index":1,"name":{"1":{},"677":{}},"parent":{}}],["basket",{"_index":448,"name":{"724":{},"742":{},"1420":{},"1541":{},"1615":{},"1637":{},"2337":{},"2468":{},"2860":{},"2939":{},"3583":{},"3762":{},"4406":{},"4440":{},"4672":{},"4758":{}},"parent":{}}],["basketchanneltypeenum",{"_index":449,"name":{"725":{},"743":{},"1421":{},"1542":{},"1616":{},"1638":{},"2338":{},"2469":{},"2861":{},"2940":{},"3584":{},"3763":{},"4407":{},"4441":{},"4673":{},"4759":{}},"parent":{}}],["basketid",{"_index":552,"name":{"948":{},"956":{},"964":{},"972":{},"980":{},"987":{},"994":{},"1002":{},"1018":{},"1025":{},"1033":{},"1041":{},"1048":{},"1057":{},"1064":{},"1081":{},"1090":{},"1100":{},"1109":{},"1118":{},"1127":{},"1144":{},"1153":{},"1162":{},"1172":{},"1180":{},"1188":{},"1199":{},"1208":{},"1218":{},"1226":{},"1235":{},"1246":{},"1255":{},"1853":{},"1861":{},"1869":{},"1877":{},"1885":{},"1892":{},"1899":{},"1907":{},"1925":{},"1932":{},"1940":{},"1948":{},"1955":{},"1964":{},"1971":{},"1988":{},"1997":{},"2007":{},"2016":{},"2025":{},"2034":{},"2052":{},"2061":{},"2070":{},"2080":{},"2088":{},"2096":{},"2107":{},"2116":{},"2126":{},"2134":{},"2143":{},"2154":{},"2163":{}},"parent":{}}],["basketpaymentinstrumentrequest",{"_index":452,"name":{"728":{},"745":{},"1423":{},"1544":{},"1623":{},"1640":{},"2340":{},"2471":{}},"parent":{}}],["basketproductitem",{"_index":794,"name":{"1613":{},"1641":{},"2341":{},"2472":{},"2858":{},"2942":{},"3586":{},"3765":{},"4404":{},"4443":{},"4675":{},"4761":{}},"parent":{}}],["basketsresult",{"_index":1078,"name":{"2863":{},"2943":{},"3587":{},"3766":{}},"parent":{}}],["baskettaxationenum",{"_index":450,"name":{"726":{},"744":{},"1422":{},"1543":{},"1617":{},"1639":{},"2339":{},"2470":{},"2862":{},"2941":{},"3585":{},"3764":{},"4408":{},"4442":{},"4674":{},"4760":{}},"parent":{}}],["bonusdiscountlineitem",{"_index":429,"name":{"705":{},"746":{},"1424":{},"1545":{},"1594":{},"1642":{},"2342":{},"2473":{},"2839":{},"2944":{},"3588":{},"3767":{},"4385":{},"4444":{},"4676":{},"4762":{}},"parent":{}}],["brandsuggestions",{"_index":1747,"name":{"5220":{},"5252":{},"5360":{},"5404":{}},"parent":{}}],["browserrequestinit",{"_index":33,"name":{"38":{}},"parent":{}}],["bundledproduct",{"_index":1099,"name":{"2884":{},"2945":{},"3589":{},"3768":{},"4910":{},"4918":{},"5057":{},"5102":{}},"parent":{}}],["callback_uri",{"_index":206,"name":{"298":{},"317":{},"399":{}},"parent":{}}],["callcustomendpoint",{"_index":415,"name":{"685":{},"697":{}},"parent":{}}],["campaignid",{"_index":1735,"name":{"5175":{}},"parent":{}}],["category",{"_index":1659,"name":{"4912":{},"4919":{},"5058":{},"5103":{}},"parent":{}}],["categoryid",{"_index":1498,"name":{"3984":{}},"parent":{}}],["categoryresult",{"_index":1660,"name":{"4913":{},"4920":{},"5059":{},"5104":{}},"parent":{}}],["categorysuggestions",{"_index":1749,"name":{"5222":{},"5253":{},"5361":{},"5405":{}},"parent":{}}],["channel_id",{"_index":183,"name":{"268":{},"279":{},"297":{},"313":{},"322":{},"330":{},"359":{},"368":{},"395":{},"411":{},"429":{},"440":{},"462":{},"467":{},"489":{},"505":{},"526":{},"538":{}},"parent":{}}],["channeltype",{"_index":980,"name":{"2574":{},"2589":{},"2673":{},"2698":{}},"parent":{}}],["client_id",{"_index":176,"name":{"262":{},"274":{},"315":{},"358":{},"383":{},"397":{},"410":{},"428":{},"439":{},"461":{},"487":{},"501":{},"525":{},"535":{}},"parent":{}}],["clientconfig",{"_index":17,"name":{"15":{},"25":{},"134":{},"785":{},"1690":{},"2529":{},"2605":{},"2722":{},"3049":{},"3904":{},"4104":{},"4505":{},"4835":{},"4949":{},"5145":{},"5287":{},"5447":{},"5511":{}},"parent":{"16":{},"25":{},"38":{},"39":{},"40":{}}}],["clientconfig.clientconfig",{"_index":28,"name":{},"parent":{"26":{},"27":{},"28":{},"30":{},"31":{},"32":{},"33":{},"34":{},"35":{},"36":{}}}],["clientconfig.clientconfig.defaults",{"_index":32,"name":{},"parent":{"37":{}}}],["clientconfig.clientconfig.headers",{"_index":29,"name":{},"parent":{"29":{}}}],["clientconfig.clientconfiginit",{"_index":20,"name":{},"parent":{"17":{},"18":{},"19":{},"20":{},"21":{},"22":{},"23":{},"24":{}}}],["clientconfig.fetchfunction",{"_index":35,"name":{},"parent":{"41":{}}}],["clientconfiginit",{"_index":18,"name":{"16":{}},"parent":{}}],["code",{"_index":254,"name":{"353":{},"409":{}},"parent":{}}],["code_challenge",{"_index":184,"name":{"269":{},"280":{},"316":{},"398":{},"441":{}},"parent":{}}],["code_verifier",{"_index":256,"name":{"357":{},"384":{},"412":{},"430":{},"503":{}},"parent":{}}],["component",{"_index":1433,"name":{"3874":{},"3888":{},"4046":{},"4078":{}},"parent":{}}],["compositeparameters",{"_index":7,"name":{"6":{},"675":{}},"parent":{}}],["config",{"_index":36,"name":{"42":{}},"parent":{"43":{}}}],["consentstatus",{"_index":981,"name":{"2575":{},"2590":{},"2674":{},"2699":{}},"parent":{}}],["consentsubscription",{"_index":983,"name":{"2577":{},"2591":{},"2675":{},"2700":{}},"parent":{}}],["consentsubscriptionbulkrequest",{"_index":987,"name":{"2581":{},"2594":{},"2678":{},"2703":{}},"parent":{}}],["consentsubscriptionbulkresponse",{"_index":990,"name":{"2584":{},"2595":{},"2679":{},"2704":{}},"parent":{}}],["consentsubscriptionconsenttypeenum",{"_index":984,"name":{"2578":{},"2592":{},"2676":{},"2701":{}},"parent":{}}],["consentsubscriptiondefaultstatusenum",{"_index":985,"name":{"2579":{},"2593":{},"2677":{},"2702":{}},"parent":{}}],["consentsubscriptionerror",{"_index":988,"name":{"2582":{},"2596":{},"2680":{},"2705":{}},"parent":{}}],["consentsubscriptionrequest",{"_index":986,"name":{"2580":{},"2597":{},"2681":{},"2706":{}},"parent":{}}],["consentsubscriptionresponse",{"_index":991,"name":{"2585":{},"2598":{},"2682":{},"2707":{}},"parent":{}}],["consentsubscriptionresult",{"_index":989,"name":{"2583":{},"2599":{},"2683":{},"2708":{}},"parent":{}}],["consentsubscriptionupdateresponse",{"_index":992,"name":{"2586":{},"2600":{},"2684":{},"2709":{}},"parent":{}}],["constructor",{"_index":30,"name":{"35":{},"53":{},"162":{},"635":{},"825":{},"1730":{},"2533":{},"2611":{},"2729":{},"3084":{},"3914":{},"4108":{},"4517":{},"4839":{},"4956":{},"5150":{},"5292":{},"5451":{},"5516":{}},"parent":{}}],["content",{"_index":1434,"name":{"3875":{},"3889":{},"4047":{},"4079":{}},"parent":{}}],["contentfolder",{"_index":1435,"name":{"3876":{},"3890":{},"4048":{},"4080":{}},"parent":{}}],["contentfolderresult",{"_index":1436,"name":{"3877":{},"3891":{},"4049":{},"4081":{}},"parent":{}}],["contentresult",{"_index":1437,"name":{"3878":{},"3892":{},"4050":{},"4082":{}},"parent":{}}],["contentsearchrefinement",{"_index":1439,"name":{"3880":{},"3893":{},"4051":{},"4083":{}},"parent":{}}],["contentsearchrefinementvalue",{"_index":1438,"name":{"3879":{},"3894":{},"4052":{},"4084":{}},"parent":{}}],["contentsearchresult",{"_index":1440,"name":{"3881":{},"3895":{},"4053":{},"4085":{}},"parent":{}}],["contenttypeheaderexists",{"_index":422,"name":{"696":{}},"parent":{}}],["countrycode",{"_index":1646,"name":{"4849":{},"5535":{}},"parent":{}}],["couponitem",{"_index":439,"name":{"715":{},"747":{},"1425":{},"1546":{},"1604":{},"1643":{},"2343":{},"2474":{},"2849":{},"2946":{},"3590":{},"3769":{},"4395":{},"4445":{},"4677":{},"4763":{}},"parent":{}}],["couponitemid",{"_index":660,"name":{"1082":{},"1989":{}},"parent":{}}],["couponitemstatuscodeenum",{"_index":440,"name":{"716":{},"748":{},"1426":{},"1547":{},"1605":{},"1644":{},"2344":{},"2475":{},"2850":{},"2947":{},"3591":{},"3770":{},"4396":{},"4446":{},"4678":{},"4764":{}},"parent":{}}],["createbasket",{"_index":475,"name":{"796":{},"844":{},"910":{},"1701":{},"1749":{},"1815":{}},"parent":{}}],["createbasketpathparameters",{"_index":600,"name":{"1008":{},"1278":{},"1359":{},"1483":{},"1915":{},"2189":{},"2273":{},"2410":{}},"parent":{}}],["createbasketqueryparameters",{"_index":596,"name":{"1003":{},"1277":{},"1358":{},"1482":{},"1908":{},"2188":{},"2272":{},"2409":{}},"parent":{}}],["createbasketrequired",{"_index":514,"name":{"845":{},"1750":{}},"parent":{}}],["createbaskettaxmodeenum",{"_index":543,"name":{"939":{},"1259":{},"1340":{},"1481":{},"1844":{},"2170":{},"2254":{},"2408":{}},"parent":{}}],["createcodeverifier",{"_index":403,"name":{"644":{},"673":{}},"parent":{}}],["createcustomeraddress",{"_index":1154,"name":{"3052":{},"3087":{},"3151":{}},"parent":{}}],["createcustomeraddresspathparameters",{"_index":1225,"name":{"3189":{},"3444":{},"3516":{},"3696":{}},"parent":{}}],["createcustomeraddressqueryparameters",{"_index":1222,"name":{"3186":{},"3443":{},"3515":{},"3695":{}},"parent":{}}],["createcustomeraddressrequired",{"_index":1188,"name":{"3088":{}},"parent":{}}],["createcustomerpaymentinstrument",{"_index":1156,"name":{"3053":{},"3089":{},"3152":{}},"parent":{}}],["createcustomerpaymentinstrumentpathparameters",{"_index":1232,"name":{"3196":{},"3446":{},"3518":{},"3698":{}},"parent":{}}],["createcustomerpaymentinstrumentqueryparameters",{"_index":1229,"name":{"3193":{},"3445":{},"3517":{},"3697":{}},"parent":{}}],["createcustomerpaymentinstrumentrequired",{"_index":1189,"name":{"3090":{}},"parent":{}}],["createcustomerproductlist",{"_index":1157,"name":{"3054":{},"3091":{},"3153":{}},"parent":{}}],["createcustomerproductlistitem",{"_index":1158,"name":{"3055":{},"3093":{},"3154":{}},"parent":{}}],["createcustomerproductlistitempathparameters",{"_index":1244,"name":{"3210":{},"3450":{},"3522":{},"3702":{}},"parent":{}}],["createcustomerproductlistitemqueryparameters",{"_index":1241,"name":{"3207":{},"3449":{},"3521":{},"3701":{}},"parent":{}}],["createcustomerproductlistitemrequired",{"_index":1191,"name":{"3094":{}},"parent":{}}],["createcustomerproductlistpathparameters",{"_index":1238,"name":{"3203":{},"3448":{},"3520":{},"3700":{}},"parent":{}}],["createcustomerproductlistqueryparameters",{"_index":1235,"name":{"3200":{},"3447":{},"3519":{},"3699":{}},"parent":{}}],["createcustomerproductlistrequired",{"_index":1190,"name":{"3092":{}},"parent":{}}],["createdestinationbasket",{"_index":649,"name":{"1068":{},"1975":{}},"parent":{}}],["createobjecturl",{"_index":64,"name":{"72":{}},"parent":{}}],["createorder",{"_index":1548,"name":{"4508":{},"4520":{},"4538":{}},"parent":{}}],["createorderpathparameters",{"_index":1573,"name":{"4552":{},"4627":{},"4651":{},"4740":{}},"parent":{}}],["createorderqueryparameters",{"_index":1570,"name":{"4548":{},"4626":{},"4650":{},"4739":{}},"parent":{}}],["createorderrequired",{"_index":1560,"name":{"4521":{}},"parent":{}}],["createpaymentinstrumentfororder",{"_index":1550,"name":{"4509":{},"4522":{},"4539":{}},"parent":{}}],["createpaymentinstrumentfororderpathparameters",{"_index":1579,"name":{"4559":{},"4629":{},"4653":{},"4742":{}},"parent":{}}],["createpaymentinstrumentfororderqueryparameters",{"_index":1576,"name":{"4555":{},"4628":{},"4652":{},"4741":{}},"parent":{}}],["createpaymentinstrumentfororderrequired",{"_index":1561,"name":{"4523":{}},"parent":{}}],["createshipmentforbasket",{"_index":476,"name":{"797":{},"846":{},"911":{},"1702":{},"1751":{},"1816":{}},"parent":{}}],["createshipmentforbasketpathparameters",{"_index":606,"name":{"1015":{},"1280":{},"1361":{},"1485":{},"1922":{},"2191":{},"2275":{},"2412":{}},"parent":{}}],["createshipmentforbasketqueryparameters",{"_index":603,"name":{"1011":{},"1279":{},"1360":{},"1484":{},"1918":{},"2190":{},"2274":{},"2411":{}},"parent":{}}],["createshipmentforbasketrequired",{"_index":515,"name":{"847":{},"1752":{}},"parent":{}}],["createshoppercontext",{"_index":1033,"name":{"2725":{},"2732":{},"2740":{}},"parent":{}}],["createshoppercontextpathparameters",{"_index":1048,"name":{"2748":{},"2781":{},"2797":{},"2818":{}},"parent":{}}],["createshoppercontextqueryparameters",{"_index":1044,"name":{"2744":{},"2780":{},"2796":{},"2817":{}},"parent":{}}],["createshoppercontextrequired",{"_index":1040,"name":{"2733":{}},"parent":{}}],["credentialid",{"_index":228,"name":{"327":{}},"parent":{}}],["crosssites",{"_index":1295,"name":{"3274":{}},"parent":{}}],["currency",{"_index":1645,"name":{"4848":{},"5000":{},"5017":{},"5172":{},"5308":{},"5323":{}},"parent":{}}],["custom_api_default_base_uri",{"_index":37,"name":{"43":{}},"parent":{}}],["customer",{"_index":1104,"name":{"2889":{},"2948":{},"3592":{},"3771":{}},"parent":{}}],["customer_no",{"_index":211,"name":{"303":{}},"parent":{}}],["customeraddress",{"_index":1103,"name":{"2888":{},"2950":{},"3594":{},"3773":{}},"parent":{}}],["customeraddressinfo",{"_index":1106,"name":{"2891":{},"2951":{},"3595":{},"3774":{}},"parent":{}}],["customerauthtypeenum",{"_index":1105,"name":{"2890":{},"2949":{},"3593":{},"3772":{}},"parent":{}}],["customerexternalprofile",{"_index":1108,"name":{"2893":{},"2953":{},"3597":{},"3776":{}},"parent":{}}],["customerextprofilerequest",{"_index":1107,"name":{"2892":{},"2952":{},"3596":{},"3775":{}},"parent":{}}],["customerid",{"_index":1227,"name":{"3191":{},"3198":{},"3205":{},"3213":{},"3221":{},"3230":{},"3238":{},"3247":{},"3255":{},"3263":{},"3270":{},"3284":{},"3292":{},"3300":{},"3309":{},"3316":{},"3382":{},"3395":{},"3403":{},"3410":{},"3418":{},"3426":{},"3435":{}},"parent":{}}],["customerinfo",{"_index":441,"name":{"717":{},"749":{},"1427":{},"1548":{},"1606":{},"1645":{},"2345":{},"2476":{},"2851":{},"2954":{},"3598":{},"3777":{},"4397":{},"4447":{},"4679":{},"4765":{}},"parent":{}}],["customerorderresult",{"_index":1123,"name":{"2908":{},"2955":{},"3599":{},"3778":{}},"parent":{}}],["customerpaymentcardrequest",{"_index":1124,"name":{"2909":{},"2956":{},"3600":{},"3779":{}},"parent":{}}],["customerpaymentinstrument",{"_index":1102,"name":{"2887":{},"2957":{},"3601":{},"3780":{}},"parent":{}}],["customerpaymentinstrumentrequest",{"_index":1126,"name":{"2911":{},"2958":{},"3602":{},"3781":{}},"parent":{}}],["customerpaymentinstrumentupdaterequest",{"_index":1128,"name":{"2913":{},"2959":{},"3603":{},"3782":{}},"parent":{}}],["customerpaymentinstrumentupdaterequestpaymentcard",{"_index":1127,"name":{"2912":{},"2960":{},"3604":{},"3783":{}},"parent":{}}],["customerpaymentmethodreference",{"_index":1100,"name":{"2885":{},"2961":{},"3605":{},"3784":{}},"parent":{}}],["customerpaymentmethodreferencetypeenum",{"_index":1101,"name":{"2886":{},"2962":{},"3606":{},"3785":{}},"parent":{}}],["customerproductlist",{"_index":1134,"name":{"2919":{},"2963":{},"3607":{},"3786":{}},"parent":{}}],["customerproductlistitem",{"_index":1130,"name":{"2915":{},"2965":{},"3609":{},"3788":{}},"parent":{}}],["customerproductlistitemtypeenum",{"_index":1131,"name":{"2916":{},"2966":{},"3610":{},"3789":{}},"parent":{}}],["customerproductlistregistrant",{"_index":1132,"name":{"2917":{},"2967":{},"3611":{},"3790":{}},"parent":{}}],["customerproductlistresult",{"_index":1136,"name":{"2921":{},"2968":{},"3612":{},"3791":{}},"parent":{}}],["customerproductlisttypeenum",{"_index":1135,"name":{"2920":{},"2964":{},"3608":{},"3787":{}},"parent":{}}],["customerregistration",{"_index":1137,"name":{"2922":{},"2969":{},"3613":{},"3792":{}},"parent":{}}],["customparams",{"_index":414,"name":{"684":{},"690":{}},"parent":{}}],["customqueryparameters",{"_index":13,"name":{"11":{},"682":{}},"parent":{}}],["customrequestbody",{"_index":15,"name":{"13":{},"683":{}},"parent":{}}],["customsuggestions",{"_index":1750,"name":{"5223":{},"5254":{},"5362":{},"5406":{}},"parent":{}}],["defaultbaseuri",{"_index":43,"name":{"50":{},"135":{},"699":{},"786":{},"1339":{},"1584":{},"1691":{},"2253":{},"2521":{},"2530":{},"2554":{},"2573":{},"2606":{},"2661":{},"2714":{},"2723":{},"2795":{},"2829":{},"3050":{},"3511":{},"3872":{},"3905":{},"4027":{},"4094":{},"4105":{},"4129":{},"4149":{},"4375":{},"4506":{},"4648":{},"4823":{},"4836":{},"4864":{},"4887":{},"4950":{},"5040":{},"5133":{},"5146":{},"5188":{},"5215":{},"5288":{},"5348":{},"5439":{},"5448":{},"5474":{},"5493":{},"5512":{},"5559":{}},"parent":{}}],["defaults",{"_index":31,"name":{"36":{}},"parent":{}}],["deletebasket",{"_index":477,"name":{"798":{},"848":{},"912":{},"1703":{},"1753":{},"1817":{}},"parent":{}}],["deletebasketpathparameters",{"_index":612,"name":{"1022":{},"1282":{},"1363":{},"1487":{},"1929":{},"2193":{},"2277":{},"2414":{}},"parent":{}}],["deletebasketqueryparameters",{"_index":609,"name":{"1019":{},"1281":{},"1362":{},"1486":{},"1926":{},"2192":{},"2276":{},"2413":{}},"parent":{}}],["deletebasketrequired",{"_index":516,"name":{"849":{},"1754":{}},"parent":{}}],["deletecustomerpaymentinstrument",{"_index":1159,"name":{"3056":{},"3095":{},"3155":{}},"parent":{}}],["deletecustomerpaymentinstrumentpathparameters",{"_index":1251,"name":{"3218":{},"3452":{},"3524":{},"3704":{}},"parent":{}}],["deletecustomerpaymentinstrumentqueryparameters",{"_index":1248,"name":{"3215":{},"3451":{},"3523":{},"3703":{}},"parent":{}}],["deletecustomerpaymentinstrumentrequired",{"_index":1192,"name":{"3096":{}},"parent":{}}],["deletecustomerpaymentmethodreference",{"_index":1160,"name":{"3057":{},"3097":{},"3156":{}},"parent":{}}],["deletecustomerpaymentmethodreferencepathparameters",{"_index":1258,"name":{"3227":{},"3454":{},"3526":{},"3706":{}},"parent":{}}],["deletecustomerpaymentmethodreferencequeryparameters",{"_index":1254,"name":{"3223":{},"3453":{},"3525":{},"3705":{}},"parent":{}}],["deletecustomerpaymentmethodreferencerequired",{"_index":1193,"name":{"3098":{}},"parent":{}}],["deletecustomerproductlist",{"_index":1161,"name":{"3058":{},"3099":{},"3157":{}},"parent":{}}],["deletecustomerproductlistitem",{"_index":1162,"name":{"3059":{},"3101":{},"3158":{}},"parent":{}}],["deletecustomerproductlistitempathparameters",{"_index":1271,"name":{"3243":{},"3458":{},"3530":{},"3710":{}},"parent":{}}],["deletecustomerproductlistitemqueryparameters",{"_index":1268,"name":{"3240":{},"3457":{},"3529":{},"3709":{}},"parent":{}}],["deletecustomerproductlistitemrequired",{"_index":1195,"name":{"3102":{}},"parent":{}}],["deletecustomerproductlistpathparameters",{"_index":1265,"name":{"3235":{},"3456":{},"3528":{},"3708":{}},"parent":{}}],["deletecustomerproductlistqueryparameters",{"_index":1262,"name":{"3232":{},"3455":{},"3527":{},"3707":{}},"parent":{}}],["deletecustomerproductlistrequired",{"_index":1194,"name":{"3100":{}},"parent":{}}],["deletepasskeycredential",{"_index":104,"name":{"141":{},"173":{},"219":{}},"parent":{}}],["deletepasskeycredentialpathparameters",{"_index":224,"name":{"323":{},"574":{},"4177":{},"4283":{}},"parent":{}}],["deletepasskeycredentialqueryparameters",{"_index":221,"name":{"320":{},"573":{},"4176":{},"4282":{}},"parent":{}}],["deletepasskeycredentialrequired",{"_index":132,"name":{"174":{}},"parent":{}}],["deletepasskeyuser",{"_index":105,"name":{"142":{},"175":{},"220":{}},"parent":{}}],["deletepasskeyuserpathparameters",{"_index":232,"name":{"331":{},"576":{},"4179":{},"4285":{}},"parent":{}}],["deletepasskeyuserqueryparameters",{"_index":229,"name":{"328":{},"575":{},"4178":{},"4284":{}},"parent":{}}],["deletepasskeyuserrequired",{"_index":133,"name":{"176":{}},"parent":{}}],["deleteshoppercontext",{"_index":1035,"name":{"2726":{},"2734":{},"2741":{}},"parent":{}}],["deleteshoppercontextpathparameters",{"_index":1054,"name":{"2755":{},"2783":{},"2799":{},"2820":{}},"parent":{}}],["deleteshoppercontextqueryparameters",{"_index":1051,"name":{"2752":{},"2782":{},"2798":{},"2819":{}},"parent":{}}],["deleteshoppercontextrequired",{"_index":1041,"name":{"2735":{}},"parent":{}}],["discount",{"_index":430,"name":{"706":{},"750":{},"1428":{},"1549":{},"1595":{},"1646":{},"2346":{},"2477":{},"2840":{},"2970":{},"3614":{},"3793":{},"4386":{},"4448":{},"4680":{},"4766":{}},"parent":{}}],["discountrequest",{"_index":453,"name":{"729":{},"752":{},"1430":{},"1551":{},"1624":{},"1648":{},"2348":{},"2479":{}},"parent":{}}],["discountrequesttypeenum",{"_index":454,"name":{"730":{},"753":{},"1431":{},"1552":{},"1625":{},"1649":{},"2349":{},"2480":{}},"parent":{}}],["discounttypeenum",{"_index":431,"name":{"707":{},"751":{},"1429":{},"1550":{},"1596":{},"1647":{},"2347":{},"2478":{},"2841":{},"2971":{},"3615":{},"3794":{},"4387":{},"4449":{},"4681":{},"4767":{}},"parent":{}}],["display_name",{"_index":385,"name":{"539":{}},"parent":{}}],["distanceunit",{"_index":1815,"name":{"5494":{},"5502":{},"5536":{},"5568":{},"5583":{}},"parent":{}}],["dnt",{"_index":257,"name":{"360":{},"419":{},"435":{},"464":{}},"parent":{}}],["dofetch",{"_index":416,"name":{"686":{},"688":{}},"parent":{}}],["dwsgst",{"_index":296,"name":{"416":{}},"parent":{}}],["dwsid",{"_index":295,"name":{"413":{}},"parent":{}}],["dwsrst",{"_index":297,"name":{"417":{}},"parent":{}}],["einsteinsuggestedphrases",{"_index":1751,"name":{"5224":{},"5255":{},"5363":{},"5407":{}},"parent":{}}],["email",{"_index":208,"name":{"300":{},"3351":{}},"parent":{}}],["email_id",{"_index":322,"name":{"463":{}},"parent":{}}],["encodescapispecialcharacters",{"_index":417,"name":{"687":{},"689":{}},"parent":{}}],["enddate",{"_index":1732,"name":{"5171":{}},"parent":{}}],["endpointpath",{"_index":421,"name":{"693":{}},"parent":{}}],["error",{"_index":399,"name":{"640":{}},"parent":{}}],["errorresponse",{"_index":455,"name":{"731":{},"754":{},"1432":{},"1553":{},"1626":{},"1650":{},"2350":{},"2481":{},"2522":{},"2525":{},"2561":{},"2569":{},"2587":{},"2601":{},"2685":{},"2710":{},"2715":{},"2718":{},"2811":{},"2825":{},"2923":{},"2972":{},"3616":{},"3795":{},"3882":{},"3896":{},"4054":{},"4086":{},"4095":{},"4099":{},"4136":{},"4145":{},"4409":{},"4450":{},"4682":{},"4768":{},"4824":{},"4829":{},"4871":{},"4881":{},"4914":{},"4921":{},"5060":{},"5105":{},"5134":{},"5139":{},"5197":{},"5209":{},"5225":{},"5256":{},"5364":{},"5408":{},"5440":{},"5443":{},"5481":{},"5489":{},"5495":{},"5503":{},"5569":{},"5584":{}},"parent":{}}],["evaluatecontextwithclientip",{"_index":1047,"name":{"2747":{},"2769":{}},"parent":{}}],["exchange",{"_index":711,"name":{"1148":{},"2056":{}},"parent":{}}],["expand",{"_index":1008,"name":{"2629":{},"3252":{},"3278":{},"3343":{},"4576":{},"4996":{},"5011":{},"5310":{},"5325":{}},"parent":{}}],["externalid",{"_index":1330,"name":{"3320":{}},"parent":{}}],["failorder",{"_index":1551,"name":{"4510":{},"4524":{},"4540":{}},"parent":{}}],["failorderpathparameters",{"_index":1587,"name":{"4568":{},"4631":{},"4655":{},"4744":{}},"parent":{}}],["failorderqueryparameters",{"_index":1583,"name":{"4563":{},"4630":{},"4654":{},"4743":{}},"parent":{}}],["failorderrequest",{"_index":1543,"name":{"4410":{},"4451":{},"4683":{},"4769":{}},"parent":{}}],["failorderrequestreasoncodeenum",{"_index":1544,"name":{"4411":{},"4452":{},"4684":{},"4770":{}},"parent":{}}],["failorderrequired",{"_index":1562,"name":{"4525":{}},"parent":{}}],["fetch",{"_index":25,"name":{"22":{},"32":{},"48":{},"660":{}},"parent":{}}],["fetchfunction",{"_index":34,"name":{"40":{}},"parent":{}}],["fetchoptions",{"_index":24,"name":{"21":{},"31":{},"39":{}},"parent":{}}],["finishwebauthnauthentication",{"_index":106,"name":{"143":{},"177":{},"221":{}},"parent":{}}],["finishwebauthnauthenticationpathparameters",{"_index":237,"name":{"337":{},"578":{},"4181":{},"4287":{}},"parent":{}}],["finishwebauthnauthenticationqueryparameters",{"_index":235,"name":{"335":{},"577":{},"4180":{},"4286":{}},"parent":{}}],["finishwebauthnauthenticationrequired",{"_index":134,"name":{"178":{}},"parent":{}}],["finishwebauthnuserregistration",{"_index":107,"name":{"144":{},"179":{},"222":{}},"parent":{}}],["finishwebauthnuserregistrationpathparameters",{"_index":242,"name":{"342":{},"580":{},"4183":{},"4289":{}},"parent":{}}],["finishwebauthnuserregistrationqueryparameters",{"_index":240,"name":{"340":{},"579":{},"4182":{},"4288":{}},"parent":{}}],["finishwebauthnuserregistrationrequired",{"_index":135,"name":{"180":{}},"parent":{}}],["first_name",{"_index":209,"name":{"301":{}},"parent":{}}],["firstname",{"_index":1357,"name":{"3352":{}},"parent":{}}],["from",{"_index":1297,"name":{"3275":{}},"parent":{}}],["generatecodechallenge",{"_index":404,"name":{"645":{},"674":{}},"parent":{}}],["getaccesstoken",{"_index":108,"name":{"145":{},"181":{},"223":{}},"parent":{}}],["getaccesstokenbodytype",{"_index":250,"name":{"350":{},"583":{},"4186":{},"4290":{}},"parent":{}}],["getaccesstokenpathparameters",{"_index":247,"name":{"347":{},"582":{},"4185":{},"4292":{}},"parent":{}}],["getaccesstokenqueryparameters",{"_index":245,"name":{"345":{},"581":{},"4184":{},"4291":{}},"parent":{}}],["getaccesstokenrequired",{"_index":136,"name":{"182":{}},"parent":{}}],["getbasket",{"_index":478,"name":{"799":{},"850":{},"913":{},"1704":{},"1755":{},"1818":{}},"parent":{}}],["getbasketpathparameters",{"_index":618,"name":{"1030":{},"1284":{},"1365":{},"1489":{},"1937":{},"2195":{},"2279":{},"2416":{}},"parent":{}}],["getbasketqueryparameters",{"_index":615,"name":{"1026":{},"1283":{},"1364":{},"1488":{},"1933":{},"2194":{},"2278":{},"2415":{}},"parent":{}}],["getbasketrequired",{"_index":517,"name":{"851":{},"1756":{}},"parent":{}}],["getcategories",{"_index":1663,"name":{"4952":{},"4959":{},"4967":{}},"parent":{}}],["getcategorieslevelsenum",{"_index":1674,"name":{"4971":{},"5024":{},"5041":{},"5090":{}},"parent":{}}],["getcategoriespathparameters",{"_index":1681,"name":{"4981":{},"5029":{},"5046":{},"5092":{}},"parent":{}}],["getcategoriesqueryparameters",{"_index":1678,"name":{"4975":{},"5028":{},"5045":{},"5091":{}},"parent":{}}],["getcategoriesrequired",{"_index":1670,"name":{"4960":{}},"parent":{}}],["getcategory",{"_index":1665,"name":{"4953":{},"4961":{},"4968":{}},"parent":{}}],["getcategorylevelsenum",{"_index":1675,"name":{"4972":{},"5025":{},"5042":{},"5093":{}},"parent":{}}],["getcategorypathparameters",{"_index":1687,"name":{"4989":{},"5031":{},"5048":{},"5095":{}},"parent":{}}],["getcategoryqueryparameters",{"_index":1684,"name":{"4984":{},"5030":{},"5047":{},"5094":{}},"parent":{}}],["getcategoryrequired",{"_index":1671,"name":{"4962":{}},"parent":{}}],["getcodeandusidfromurl",{"_index":401,"name":{"642":{},"672":{}},"parent":{}}],["getconfigurations",{"_index":963,"name":{"2532":{},"2536":{},"2538":{}},"parent":{}}],["getconfigurationspathparameters",{"_index":971,"name":{"2542":{},"2549":{},"2556":{},"2568":{}},"parent":{}}],["getconfigurationsqueryparameters",{"_index":968,"name":{"2539":{},"2548":{},"2555":{},"2567":{}},"parent":{}}],["getconfigurationsrequired",{"_index":967,"name":{"2537":{}},"parent":{}}],["getcontent",{"_index":1444,"name":{"3907":{},"3917":{},"3931":{}},"parent":{}}],["getcontentfolder",{"_index":1446,"name":{"3908":{},"3919":{},"3932":{}},"parent":{}}],["getcontentfolderpathparameters",{"_index":1472,"name":{"3951":{},"4012":{},"4031":{},"4067":{}},"parent":{}}],["getcontentfolderqueryparameters",{"_index":1468,"name":{"3946":{},"4011":{},"4030":{},"4066":{}},"parent":{}}],["getcontentfolderrequired",{"_index":1455,"name":{"3920":{}},"parent":{}}],["getcontentfolders",{"_index":1447,"name":{"3909":{},"3921":{},"3933":{}},"parent":{}}],["getcontentfolderspathparameters",{"_index":1479,"name":{"3961":{},"4014":{},"4033":{},"4069":{}},"parent":{}}],["getcontentfoldersqueryparameters",{"_index":1475,"name":{"3955":{},"4013":{},"4032":{},"4068":{}},"parent":{}}],["getcontentfoldersrequired",{"_index":1456,"name":{"3922":{}},"parent":{}}],["getcontentpathparameters",{"_index":1464,"name":{"3942":{},"4010":{},"4029":{},"4065":{}},"parent":{}}],["getcontentqueryparameters",{"_index":1461,"name":{"3938":{},"4009":{},"4028":{},"4064":{}},"parent":{}}],["getcontentrequired",{"_index":1454,"name":{"3918":{}},"parent":{}}],["getcustomer",{"_index":1163,"name":{"3060":{},"3103":{},"3159":{}},"parent":{}}],["getcustomeraddress",{"_index":1164,"name":{"3061":{},"3105":{},"3160":{}},"parent":{}}],["getcustomeraddresspathparameters",{"_index":1283,"name":{"3260":{},"3462":{},"3534":{},"3715":{}},"parent":{}}],["getcustomeraddressqueryparameters",{"_index":1280,"name":{"3257":{},"3461":{},"3533":{},"3714":{}},"parent":{}}],["getcustomeraddressrequired",{"_index":1197,"name":{"3106":{}},"parent":{}}],["getcustomerbaskets",{"_index":1165,"name":{"3062":{},"3107":{},"3161":{}},"parent":{}}],["getcustomerbasketspathparameters",{"_index":1290,"name":{"3268":{},"3464":{},"3536":{},"3717":{}},"parent":{}}],["getcustomerbasketsqueryparameters",{"_index":1287,"name":{"3265":{},"3463":{},"3535":{},"3716":{}},"parent":{}}],["getcustomerbasketsrequired",{"_index":1198,"name":{"3108":{}},"parent":{}}],["getcustomerexpandenum",{"_index":1219,"name":{"3183":{},"3440":{},"3512":{},"3711":{}},"parent":{}}],["getcustomerorders",{"_index":1166,"name":{"3063":{},"3109":{},"3162":{}},"parent":{}}],["getcustomerordersexpandenum",{"_index":1220,"name":{"3184":{},"3441":{},"3513":{},"3718":{}},"parent":{}}],["getcustomerorderspathparameters",{"_index":1301,"name":{"3282":{},"3466":{},"3538":{},"3720":{}},"parent":{}}],["getcustomerordersqueryparameters",{"_index":1293,"name":{"3272":{},"3465":{},"3537":{},"3719":{}},"parent":{}}],["getcustomerordersrequired",{"_index":1199,"name":{"3110":{}},"parent":{}}],["getcustomerpathparameters",{"_index":1277,"name":{"3253":{},"3460":{},"3532":{},"3713":{}},"parent":{}}],["getcustomerpaymentinstrument",{"_index":1167,"name":{"3064":{},"3111":{},"3163":{}},"parent":{}}],["getcustomerpaymentinstrumentpathparameters",{"_index":1307,"name":{"3289":{},"3468":{},"3540":{},"3722":{}},"parent":{}}],["getcustomerpaymentinstrumentqueryparameters",{"_index":1304,"name":{"3286":{},"3467":{},"3539":{},"3721":{}},"parent":{}}],["getcustomerpaymentinstrumentrequired",{"_index":1200,"name":{"3112":{}},"parent":{}}],["getcustomerproductlist",{"_index":1168,"name":{"3065":{},"3113":{},"3164":{}},"parent":{}}],["getcustomerproductlistitem",{"_index":1169,"name":{"3066":{},"3115":{},"3165":{}},"parent":{}}],["getcustomerproductlistitempathparameters",{"_index":1319,"name":{"3305":{},"3472":{},"3544":{},"3726":{}},"parent":{}}],["getcustomerproductlistitemqueryparameters",{"_index":1316,"name":{"3302":{},"3471":{},"3543":{},"3725":{}},"parent":{}}],["getcustomerproductlistitemrequired",{"_index":1202,"name":{"3116":{}},"parent":{}}],["getcustomerproductlistpathparameters",{"_index":1313,"name":{"3297":{},"3470":{},"3542":{},"3724":{}},"parent":{}}],["getcustomerproductlistqueryparameters",{"_index":1310,"name":{"3294":{},"3469":{},"3541":{},"3723":{}},"parent":{}}],["getcustomerproductlistrequired",{"_index":1201,"name":{"3114":{}},"parent":{}}],["getcustomerproductlists",{"_index":1170,"name":{"3067":{},"3117":{},"3166":{}},"parent":{}}],["getcustomerproductlistspathparameters",{"_index":1325,"name":{"3314":{},"3474":{},"3546":{},"3728":{}},"parent":{}}],["getcustomerproductlistsqueryparameters",{"_index":1322,"name":{"3311":{},"3473":{},"3545":{},"3727":{}},"parent":{}}],["getcustomerproductlistsrequired",{"_index":1203,"name":{"3118":{}},"parent":{}}],["getcustomerqueryparameters",{"_index":1274,"name":{"3249":{},"3459":{},"3531":{},"3712":{}},"parent":{}}],["getcustomerrequired",{"_index":1196,"name":{"3104":{}},"parent":{}}],["getexternalprofile",{"_index":1171,"name":{"3068":{},"3119":{},"3167":{}},"parent":{}}],["getexternalprofilepathparameters",{"_index":1333,"name":{"3323":{},"3476":{},"3548":{},"3730":{}},"parent":{}}],["getexternalprofilequeryparameters",{"_index":1328,"name":{"3318":{},"3475":{},"3547":{},"3729":{}},"parent":{}}],["getexternalprofilerequired",{"_index":1204,"name":{"3120":{}},"parent":{}}],["getgiftcertificate",{"_index":1524,"name":{"4107":{},"4111":{},"4113":{}},"parent":{}}],["getgiftcertificatepathparameters",{"_index":1532,"name":{"4117":{},"4124":{},"4131":{},"4144":{}},"parent":{}}],["getgiftcertificatequeryparameters",{"_index":1529,"name":{"4114":{},"4123":{},"4130":{},"4143":{}},"parent":{}}],["getgiftcertificaterequired",{"_index":1528,"name":{"4112":{}},"parent":{}}],["getjwksuri",{"_index":109,"name":{"146":{},"183":{},"224":{}},"parent":{}}],["getjwksuripathparameters",{"_index":260,"name":{"363":{},"585":{},"4188":{},"4294":{}},"parent":{}}],["getjwksuriqueryparameters",{"_index":258,"name":{"361":{},"584":{},"4187":{},"4293":{}},"parent":{}}],["getjwksurirequired",{"_index":137,"name":{"184":{}},"parent":{}}],["getmultiplecontent",{"_index":1448,"name":{"3910":{},"3923":{},"3934":{}},"parent":{}}],["getmultiplecontentpathparameters",{"_index":1485,"name":{"3969":{},"4016":{},"4035":{},"4071":{}},"parent":{}}],["getmultiplecontentqueryparameters",{"_index":1482,"name":{"3964":{},"4015":{},"4034":{},"4070":{}},"parent":{}}],["getmultiplecontentrequired",{"_index":1457,"name":{"3924":{}},"parent":{}}],["getorder",{"_index":1552,"name":{"4511":{},"4526":{},"4541":{}},"parent":{}}],["getorderexpandenum",{"_index":1569,"name":{"4547":{},"4625":{},"4649":{},"4745":{}},"parent":{}}],["getorderpathparameters",{"_index":1593,"name":{"4577":{},"4633":{},"4657":{},"4747":{}},"parent":{}}],["getorderqueryparameters",{"_index":1590,"name":{"4572":{},"4632":{},"4656":{},"4746":{}},"parent":{}}],["getorderrequired",{"_index":1563,"name":{"4527":{}},"parent":{}}],["getpage",{"_index":1449,"name":{"3911":{},"3925":{},"3935":{}},"parent":{}}],["getpagepathparameters",{"_index":1492,"name":{"3978":{},"4018":{},"4037":{},"4073":{}},"parent":{}}],["getpagequeryparameters",{"_index":1488,"name":{"3972":{},"4017":{},"4036":{},"4072":{}},"parent":{}}],["getpagerequired",{"_index":1458,"name":{"3926":{}},"parent":{}}],["getpages",{"_index":1450,"name":{"3912":{},"3927":{},"3936":{}},"parent":{}}],["getpagespathparameters",{"_index":1502,"name":{"3991":{},"4020":{},"4039":{},"4075":{}},"parent":{}}],["getpagesqueryparameters",{"_index":1496,"name":{"3982":{},"4019":{},"4038":{},"4074":{}},"parent":{}}],["getpagesrequired",{"_index":1459,"name":{"3928":{}},"parent":{}}],["getpasskeyuserbyloginid",{"_index":110,"name":{"147":{},"185":{},"225":{}},"parent":{}}],["getpasskeyuserbyloginidpathparameters",{"_index":266,"name":{"369":{},"587":{},"4190":{},"4296":{}},"parent":{}}],["getpasskeyuserbyloginidqueryparameters",{"_index":263,"name":{"366":{},"586":{},"4189":{},"4295":{}},"parent":{}}],["getpasskeyuserbyloginidrequired",{"_index":138,"name":{"186":{}},"parent":{}}],["getpasswordlessaccesstoken",{"_index":111,"name":{"148":{},"187":{},"226":{},"653":{},"668":{}},"parent":{}}],["getpasswordlessaccesstokenbodytype",{"_index":274,"name":{"378":{},"590":{},"4193":{},"4298":{}},"parent":{}}],["getpasswordlessaccesstokengranttypeenum",{"_index":157,"name":{"244":{},"551":{},"4154":{},"4297":{}},"parent":{}}],["getpasswordlessaccesstokenpathparameters",{"_index":271,"name":{"375":{},"589":{},"4192":{},"4300":{}},"parent":{}}],["getpasswordlessaccesstokenqueryparameters",{"_index":269,"name":{"373":{},"588":{},"4191":{},"4299":{}},"parent":{}}],["getpasswordlessaccesstokenrequired",{"_index":139,"name":{"188":{}},"parent":{}}],["getpasswordresettoken",{"_index":112,"name":{"149":{},"189":{},"227":{}},"parent":{}}],["getpasswordresettokenbodytype",{"_index":284,"name":{"391":{},"593":{},"4196":{},"4302":{}},"parent":{}}],["getpasswordresettokenmodeenum",{"_index":158,"name":{"245":{},"552":{},"4155":{},"4301":{}},"parent":{}}],["getpasswordresettokenpathparameters",{"_index":281,"name":{"388":{},"592":{},"4195":{},"4304":{}},"parent":{}}],["getpasswordresettokenqueryparameters",{"_index":279,"name":{"386":{},"591":{},"4194":{},"4303":{}},"parent":{}}],["getpasswordresettokenrequired",{"_index":140,"name":{"190":{}},"parent":{}}],["getpaymentconfiguration",{"_index":1637,"name":{"4838":{},"4842":{},"4844":{}},"parent":{}}],["getpaymentconfigurationpathparameters",{"_index":1649,"name":{"4852":{},"4859":{},"4866":{},"4880":{}},"parent":{}}],["getpaymentconfigurationqueryparameters",{"_index":1642,"name":{"4845":{},"4858":{},"4865":{},"4879":{}},"parent":{}}],["getpaymentconfigurationrequired",{"_index":1641,"name":{"4843":{}},"parent":{}}],["getpaymentmethodsforbasket",{"_index":479,"name":{"800":{},"852":{},"914":{},"1705":{},"1757":{},"1819":{}},"parent":{}}],["getpaymentmethodsforbasketpathparameters",{"_index":624,"name":{"1038":{},"1286":{},"1367":{},"1491":{},"1945":{},"2197":{},"2281":{},"2418":{}},"parent":{}}],["getpaymentmethodsforbasketqueryparameters",{"_index":621,"name":{"1034":{},"1285":{},"1366":{},"1490":{},"1941":{},"2196":{},"2280":{},"2417":{}},"parent":{}}],["getpaymentmethodsforbasketrequired",{"_index":518,"name":{"853":{},"1758":{}},"parent":{}}],["getpaymentmethodsfororder",{"_index":1553,"name":{"4512":{},"4528":{},"4542":{}},"parent":{}}],["getpaymentmethodsfororderpathparameters",{"_index":1599,"name":{"4585":{},"4635":{},"4659":{},"4749":{}},"parent":{}}],["getpaymentmethodsfororderqueryparameters",{"_index":1596,"name":{"4581":{},"4634":{},"4658":{},"4748":{}},"parent":{}}],["getpaymentmethodsfororderrequired",{"_index":1564,"name":{"4529":{}},"parent":{}}],["getpricebooksforbasket",{"_index":480,"name":{"801":{},"854":{},"915":{},"1706":{},"1759":{},"1820":{}},"parent":{}}],["getpricebooksforbasketpathparameters",{"_index":630,"name":{"1045":{},"1288":{},"1369":{},"1493":{},"1952":{},"2199":{},"2283":{},"2420":{}},"parent":{}}],["getpricebooksforbasketqueryparameters",{"_index":627,"name":{"1042":{},"1287":{},"1368":{},"1492":{},"1949":{},"2198":{},"2282":{},"2419":{}},"parent":{}}],["getpricebooksforbasketrequired",{"_index":519,"name":{"855":{},"1760":{}},"parent":{}}],["getproduct",{"_index":1666,"name":{"4954":{},"4963":{},"4969":{}},"parent":{}}],["getproductexpandenum",{"_index":1676,"name":{"4973":{},"5026":{},"5043":{},"5096":{}},"parent":{}}],["getproductlistitem",{"_index":1172,"name":{"3069":{},"3121":{},"3168":{}},"parent":{}}],["getproductlistitempathparameters",{"_index":1339,"name":{"3329":{},"3478":{},"3550":{},"3732":{}},"parent":{}}],["getproductlistitemqueryparameters",{"_index":1336,"name":{"3326":{},"3477":{},"3549":{},"3731":{}},"parent":{}}],["getproductlistitemrequired",{"_index":1205,"name":{"3122":{}},"parent":{}}],["getproductpathparameters",{"_index":1697,"name":{"5003":{},"5033":{},"5050":{},"5098":{}},"parent":{}}],["getproductqueryparameters",{"_index":1690,"name":{"4993":{},"5032":{},"5049":{},"5097":{}},"parent":{}}],["getproductrequired",{"_index":1672,"name":{"4964":{}},"parent":{}}],["getproducts",{"_index":1667,"name":{"4955":{},"4965":{},"4970":{}},"parent":{}}],["getproductsexpandenum",{"_index":1677,"name":{"4974":{},"5027":{},"5044":{},"5099":{}},"parent":{}}],["getproductspathparameters",{"_index":1703,"name":{"5018":{},"5035":{},"5052":{},"5101":{}},"parent":{}}],["getproductsqueryparameters",{"_index":1700,"name":{"5007":{},"5034":{},"5051":{},"5100":{}},"parent":{}}],["getproductsrequired",{"_index":1673,"name":{"4966":{}},"parent":{}}],["getpromotions",{"_index":1715,"name":{"5148":{},"5153":{},"5157":{}},"parent":{}}],["getpromotionsforcampaign",{"_index":1717,"name":{"5149":{},"5155":{},"5158":{}},"parent":{}}],["getpromotionsforcampaignpathparameters",{"_index":1733,"name":{"5173":{},"5183":{},"5192":{},"5208":{}},"parent":{}}],["getpromotionsforcampaignqueryparameters",{"_index":1728,"name":{"5167":{},"5182":{},"5191":{},"5207":{}},"parent":{}}],["getpromotionsforcampaignrequired",{"_index":1721,"name":{"5156":{}},"parent":{}}],["getpromotionspathparameters",{"_index":1725,"name":{"5164":{},"5181":{},"5190":{},"5206":{}},"parent":{}}],["getpromotionsqueryparameters",{"_index":1722,"name":{"5159":{},"5180":{},"5189":{},"5205":{}},"parent":{}}],["getpromotionsrequired",{"_index":1720,"name":{"5154":{}},"parent":{}}],["getpublicproductlist",{"_index":1173,"name":{"3070":{},"3123":{},"3169":{}},"parent":{}}],["getpublicproductlistitems",{"_index":1174,"name":{"3071":{},"3125":{},"3170":{}},"parent":{}}],["getpublicproductlistitemsexpandenum",{"_index":1221,"name":{"3185":{},"3442":{},"3514":{},"3735":{}},"parent":{}}],["getpublicproductlistitemspathparameters",{"_index":1351,"name":{"3345":{},"3482":{},"3554":{},"3737":{}},"parent":{}}],["getpublicproductlistitemsqueryparameters",{"_index":1348,"name":{"3341":{},"3481":{},"3553":{},"3736":{}},"parent":{}}],["getpublicproductlistitemsrequired",{"_index":1207,"name":{"3126":{}},"parent":{}}],["getpublicproductlistpathparameters",{"_index":1345,"name":{"3337":{},"3480":{},"3552":{},"3734":{}},"parent":{}}],["getpublicproductlistqueryparameters",{"_index":1342,"name":{"3334":{},"3479":{},"3551":{},"3733":{}},"parent":{}}],["getpublicproductlistrequired",{"_index":1206,"name":{"3124":{}},"parent":{}}],["getpublicproductlistsbysearchterm",{"_index":1175,"name":{"3072":{},"3127":{},"3171":{}},"parent":{}}],["getpublicproductlistsbysearchtermpathparameters",{"_index":1359,"name":{"3355":{},"3484":{},"3556":{},"3739":{}},"parent":{}}],["getpublicproductlistsbysearchtermqueryparameters",{"_index":1354,"name":{"3349":{},"3483":{},"3555":{},"3738":{}},"parent":{}}],["getpublicproductlistsbysearchtermrequired",{"_index":1208,"name":{"3128":{}},"parent":{}}],["getresetpasswordtoken",{"_index":1176,"name":{"3073":{},"3129":{},"3172":{}},"parent":{}}],["getresetpasswordtokenpathparameters",{"_index":1365,"name":{"3361":{},"3486":{},"3558":{},"3741":{}},"parent":{}}],["getresetpasswordtokenqueryparameters",{"_index":1362,"name":{"3358":{},"3485":{},"3557":{},"3740":{}},"parent":{}}],["getresetpasswordtokenrequired",{"_index":1209,"name":{"3130":{}},"parent":{}}],["getsearchsuggestions",{"_index":1764,"name":{"5290":{},"5295":{},"5299":{}},"parent":{}}],["getsearchsuggestionsexpandenum",{"_index":1771,"name":{"5301":{},"5338":{},"5349":{},"5397":{}},"parent":{}}],["getsearchsuggestionspathparameters",{"_index":1778,"name":{"5313":{},"5341":{},"5352":{},"5399":{}},"parent":{}}],["getsearchsuggestionsqueryparameters",{"_index":1773,"name":{"5303":{},"5340":{},"5351":{},"5398":{}},"parent":{}}],["getsearchsuggestionsrequired",{"_index":1769,"name":{"5296":{}},"parent":{}}],["getsessionbridgeaccesstoken",{"_index":113,"name":{"150":{},"191":{},"228":{}},"parent":{}}],["getsessionbridgeaccesstokenbodytype",{"_index":292,"name":{"407":{},"596":{},"4199":{},"4306":{}},"parent":{}}],["getsessionbridgeaccesstokengranttypeenum",{"_index":159,"name":{"246":{},"553":{},"4156":{},"4305":{}},"parent":{}}],["getsessionbridgeaccesstokenpathparameters",{"_index":289,"name":{"404":{},"595":{},"4198":{},"4308":{}},"parent":{}}],["getsessionbridgeaccesstokenqueryparameters",{"_index":287,"name":{"402":{},"594":{},"4197":{},"4307":{}},"parent":{}}],["getsessionbridgeaccesstokenrequired",{"_index":141,"name":{"192":{}},"parent":{}}],["getshippingmethodsforshipment",{"_index":481,"name":{"802":{},"856":{},"916":{},"1707":{},"1761":{},"1821":{}},"parent":{}}],["getshippingmethodsforshipmentpathparameters",{"_index":636,"name":{"1053":{},"1290":{},"1371":{},"1495":{},"1960":{},"2201":{},"2285":{},"2422":{}},"parent":{}}],["getshippingmethodsforshipmentqueryparameters",{"_index":633,"name":{"1049":{},"1289":{},"1370":{},"1494":{},"1956":{},"2200":{},"2284":{},"2421":{}},"parent":{}}],["getshippingmethodsforshipmentrequired",{"_index":520,"name":{"857":{},"1762":{}},"parent":{}}],["getshoppercontext",{"_index":1036,"name":{"2727":{},"2736":{},"2742":{}},"parent":{}}],["getshoppercontextpathparameters",{"_index":1060,"name":{"2762":{},"2785":{},"2801":{},"2822":{}},"parent":{}}],["getshoppercontextqueryparameters",{"_index":1057,"name":{"2759":{},"2784":{},"2800":{},"2821":{}},"parent":{}}],["getshoppercontextrequired",{"_index":1042,"name":{"2737":{}},"parent":{}}],["getstores",{"_index":1820,"name":{"5514":{},"5519":{},"5523":{}},"parent":{}}],["getstorespathparameters",{"_index":1830,"name":{"5530":{},"5552":{},"5561":{},"5580":{}},"parent":{}}],["getstoresqueryparameters",{"_index":1827,"name":{"5525":{},"5551":{},"5560":{},"5579":{}},"parent":{}}],["getstoresrequired",{"_index":1825,"name":{"5520":{}},"parent":{}}],["getsubscriptions",{"_index":994,"name":{"2608":{},"2614":{},"2620":{}},"parent":{}}],["getsubscriptionsexpandenum",{"_index":1003,"name":{"2623":{},"2650":{},"2662":{},"2691":{}},"parent":{}}],["getsubscriptionspathparameters",{"_index":1009,"name":{"2630":{},"2652":{},"2664":{},"2693":{}},"parent":{}}],["getsubscriptionsqueryparameters",{"_index":1004,"name":{"2624":{},"2651":{},"2663":{},"2692":{}},"parent":{}}],["getsubscriptionsrequired",{"_index":1000,"name":{"2615":{}},"parent":{}}],["gettaxesfrombasket",{"_index":482,"name":{"803":{},"858":{},"917":{},"1708":{},"1763":{},"1822":{}},"parent":{}}],["gettaxesfrombasketpathparameters",{"_index":643,"name":{"1061":{},"1292":{},"1373":{},"1497":{},"1968":{},"2203":{},"2287":{},"2424":{}},"parent":{}}],["gettaxesfrombasketqueryparameters",{"_index":640,"name":{"1058":{},"1291":{},"1372":{},"1496":{},"1965":{},"2202":{},"2286":{},"2423":{}},"parent":{}}],["gettaxesfrombasketrequired",{"_index":521,"name":{"859":{},"1764":{}},"parent":{}}],["gettaxesfromorder",{"_index":1554,"name":{"4513":{},"4530":{},"4543":{}},"parent":{}}],["gettaxesfromorderpathparameters",{"_index":1605,"name":{"4592":{},"4637":{},"4661":{},"4751":{}},"parent":{}}],["gettaxesfromorderqueryparameters",{"_index":1602,"name":{"4589":{},"4636":{},"4660":{},"4750":{}},"parent":{}}],["gettaxesfromorderrequired",{"_index":1565,"name":{"4531":{}},"parent":{}}],["gettrustedagentaccesstoken",{"_index":114,"name":{"151":{},"193":{},"229":{}},"parent":{}}],["gettrustedagentaccesstokenbodytype",{"_index":303,"name":{"425":{},"599":{},"4202":{},"4310":{}},"parent":{}}],["gettrustedagentaccesstokengranttypeenum",{"_index":160,"name":{"247":{},"554":{},"4157":{},"4309":{}},"parent":{}}],["gettrustedagentaccesstokenpathparameters",{"_index":300,"name":{"422":{},"598":{},"4201":{},"4312":{}},"parent":{}}],["gettrustedagentaccesstokenqueryparameters",{"_index":298,"name":{"420":{},"597":{},"4200":{},"4311":{}},"parent":{}}],["gettrustedagentaccesstokenrequired",{"_index":142,"name":{"194":{}},"parent":{}}],["gettrustedagentauthorizationtoken",{"_index":115,"name":{"152":{},"195":{},"230":{}},"parent":{}}],["gettrustedagentauthorizationtokenpathparameters",{"_index":311,"name":{"446":{},"601":{},"4204":{},"4315":{}},"parent":{}}],["gettrustedagentauthorizationtokenqueryparameters",{"_index":308,"name":{"437":{},"600":{},"4203":{},"4314":{}},"parent":{}}],["gettrustedagentauthorizationtokenrequired",{"_index":143,"name":{"196":{}},"parent":{}}],["gettrustedagentauthorizationtokenresponsetypeenum",{"_index":161,"name":{"248":{},"555":{},"4158":{},"4313":{}},"parent":{}}],["gettrustedsystemaccesstoken",{"_index":116,"name":{"153":{},"197":{},"231":{}},"parent":{}}],["gettrustedsystemaccesstokenbodytype",{"_index":319,"name":{"454":{},"604":{},"4207":{},"4319":{}},"parent":{}}],["gettrustedsystemaccesstokengranttypeenum",{"_index":162,"name":{"249":{},"556":{},"4159":{},"4316":{}},"parent":{}}],["gettrustedsystemaccesstokenhintenum",{"_index":163,"name":{"250":{},"557":{},"4160":{},"4317":{}},"parent":{}}],["gettrustedsystemaccesstokenidporiginenum",{"_index":164,"name":{"251":{},"558":{},"4161":{},"4318":{}},"parent":{}}],["gettrustedsystemaccesstokenpathparameters",{"_index":316,"name":{"451":{},"603":{},"4206":{},"4321":{}},"parent":{}}],["gettrustedsystemaccesstokenqueryparameters",{"_index":314,"name":{"449":{},"602":{},"4205":{},"4320":{}},"parent":{}}],["gettrustedsystemaccesstokenrequired",{"_index":144,"name":{"198":{}},"parent":{}}],["geturlmapping",{"_index":1797,"name":{"5450":{},"5454":{},"5456":{}},"parent":{}}],["geturlmappingpathparameters",{"_index":1806,"name":{"5462":{},"5469":{},"5476":{},"5488":{}},"parent":{}}],["geturlmappingqueryparameters",{"_index":1802,"name":{"5457":{},"5468":{},"5475":{},"5487":{}},"parent":{}}],["geturlmappingrequired",{"_index":1801,"name":{"5455":{}},"parent":{}}],["getuserinfo",{"_index":117,"name":{"154":{},"199":{},"232":{}},"parent":{}}],["getuserinfopathparameters",{"_index":326,"name":{"468":{},"606":{},"4209":{},"4323":{}},"parent":{}}],["getuserinfoqueryparameters",{"_index":323,"name":{"465":{},"605":{},"4208":{},"4322":{}},"parent":{}}],["getuserinforequired",{"_index":145,"name":{"200":{}},"parent":{}}],["getwellknownopenidconfiguration",{"_index":118,"name":{"155":{},"201":{},"233":{}},"parent":{}}],["getwellknownopenidconfigurationpathparameters",{"_index":331,"name":{"473":{},"608":{},"4211":{},"4325":{}},"parent":{}}],["getwellknownopenidconfigurationqueryparameters",{"_index":329,"name":{"471":{},"607":{},"4210":{},"4324":{}},"parent":{}}],["getwellknownopenidconfigurationrequired",{"_index":146,"name":{"202":{}},"parent":{}}],["giftcardrequest",{"_index":796,"name":{"1619":{},"1651":{},"2351":{},"2482":{},"4412":{},"4453":{},"4685":{},"4771":{}},"parent":{}}],["giftcardresponse",{"_index":793,"name":{"1590":{},"1652":{},"2352":{},"2483":{},"2835":{},"2973":{},"3617":{},"3796":{},"4381":{},"4454":{},"4686":{},"4772":{}},"parent":{}}],["giftcertificate",{"_index":1520,"name":{"4096":{},"4100":{},"4137":{},"4146":{}},"parent":{}}],["giftcertificateitem",{"_index":424,"name":{"700":{},"755":{},"1433":{},"1554":{},"1585":{},"1653":{},"2353":{},"2484":{},"2830":{},"2974":{},"3618":{},"3797":{},"4376":{},"4455":{},"4687":{},"4773":{}},"parent":{}}],["giftcertificateitemid",{"_index":667,"name":{"1091":{},"1189":{},"1998":{},"2097":{}},"parent":{}}],["giftcertificaterequest",{"_index":1522,"name":{"4098":{},"4102":{},"4139":{},"4148":{}},"parent":{}}],["giftcertificatestatusenum",{"_index":1521,"name":{"4097":{},"4101":{},"4138":{},"4147":{}},"parent":{}}],["globalobject",{"_index":40,"name":{"46":{},"658":{}},"parent":{}}],["grant_type",{"_index":255,"name":{"355":{},"380":{},"414":{},"431":{},"457":{}},"parent":{}}],["granttype",{"_index":84,"name":{"92":{},"115":{},"4246":{},"4356":{}},"parent":{}}],["groupedtaxitem",{"_index":795,"name":{"1614":{},"1654":{},"2354":{},"2485":{},"2859":{},"2975":{},"3619":{},"3798":{},"4405":{},"4456":{},"4688":{},"4774":{}},"parent":{}}],["guestorderlookup",{"_index":1555,"name":{"4514":{},"4532":{},"4544":{}},"parent":{}}],["guestorderlookuppathparameters",{"_index":1611,"name":{"4600":{},"4639":{},"4663":{},"4753":{}},"parent":{}}],["guestorderlookupqueryparameters",{"_index":1608,"name":{"4596":{},"4638":{},"4662":{},"4752":{}},"parent":{}}],["guestorderlookuprequired",{"_index":1566,"name":{"4533":{}},"parent":{}}],["hasfetchavailable",{"_index":41,"name":{"47":{},"659":{}},"parent":{}}],["hash",{"_index":49,"name":{"57":{}},"parent":{}}],["headers",{"_index":22,"name":{"19":{},"28":{}},"parent":{}}],["helpers",{"_index":0,"name":{"0":{}},"parent":{"1":{},"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"10":{},"11":{},"13":{},"44":{},"45":{},"46":{},"47":{},"48":{},"641":{},"642":{},"643":{},"644":{},"645":{},"646":{},"647":{},"648":{},"649":{},"650":{},"651":{},"652":{},"653":{},"654":{},"655":{},"656":{},"657":{},"658":{},"659":{},"660":{},"661":{},"662":{},"663":{},"664":{},"665":{},"666":{},"667":{},"668":{},"669":{},"670":{},"671":{},"672":{},"673":{},"674":{},"675":{},"676":{},"677":{},"678":{},"679":{},"680":{},"681":{},"682":{},"683":{},"684":{},"685":{},"686":{},"687":{},"688":{},"689":{},"690":{},"696":{},"697":{}}}],["helpers.baseuriparameters",{"_index":3,"name":{},"parent":{"2":{}}}],["helpers.customparams",{"_index":419,"name":{},"parent":{"691":{},"692":{},"693":{},"694":{},"695":{}}}],["helpers.customqueryparameters",{"_index":14,"name":{},"parent":{"12":{}}}],["helpers.customrequestbody",{"_index":16,"name":{},"parent":{"14":{}}}],["helpers.localecode",{"_index":11,"name":{},"parent":{"9":{}}}],["hint",{"_index":188,"name":{"278":{},"319":{},"381":{},"401":{},"458":{},"490":{},"506":{}},"parent":{}}],["host",{"_index":50,"name":{"58":{}},"parent":{}}],["hostname",{"_index":51,"name":{"59":{}},"parent":{}}],["href",{"_index":52,"name":{"60":{}},"parent":{}}],["id",{"_index":1467,"name":{"3945":{},"3954":{},"4991":{},"5006":{}},"parent":{}}],["idp_name",{"_index":220,"name":{"318":{},"400":{}},"parent":{}}],["idp_origin",{"_index":307,"name":{"433":{},"443":{},"460":{}},"parent":{}}],["ids",{"_index":1477,"name":{"3957":{},"3966":{},"4977":{},"5009":{},"5162":{},"5527":{}},"parent":{}}],["image",{"_index":1079,"name":{"2864":{},"2976":{},"3620":{},"3799":{},"4888":{},"4922":{},"5061":{},"5106":{},"5226":{},"5257":{},"5365":{},"5409":{}},"parent":{}}],["imagegroup",{"_index":1096,"name":{"2881":{},"2977":{},"3621":{},"3800":{},"4907":{},"4923":{},"5062":{},"5107":{},"5229":{},"5258":{},"5366":{},"5410":{}},"parent":{}}],["includedcustomproductproperties",{"_index":1776,"name":{"5311":{}},"parent":{}}],["includedcustomvariationproperties",{"_index":1785,"name":{"5329":{}},"parent":{}}],["includeeinsteinsuggestedphrases",{"_index":1777,"name":{"5312":{}},"parent":{}}],["introspecttoken",{"_index":119,"name":{"156":{},"203":{},"234":{}},"parent":{}}],["introspecttokenbodytype",{"_index":339,"name":{"481":{},"611":{},"4214":{},"4327":{}},"parent":{}}],["introspecttokenpathparameters",{"_index":336,"name":{"478":{},"610":{},"4213":{},"4329":{}},"parent":{}}],["introspecttokenqueryparameters",{"_index":334,"name":{"476":{},"609":{},"4212":{},"4328":{}},"parent":{}}],["introspecttokenrequired",{"_index":147,"name":{"204":{}},"parent":{}}],["introspecttokentokentypehintenum",{"_index":165,"name":{"252":{},"559":{},"4162":{},"4326":{}},"parent":{}}],["inventory",{"_index":1097,"name":{"2882":{},"2978":{},"3622":{},"3801":{},"4908":{},"4924":{},"5063":{},"5108":{}},"parent":{}}],["inventoryids",{"_index":1692,"name":{"4995":{},"5010":{}},"parent":{}}],["isbrowser",{"_index":38,"name":{"44":{},"656":{}},"parent":{}}],["isnode",{"_index":39,"name":{"45":{},"657":{}},"parent":{}}],["itemid",{"_index":595,"name":{"1001":{},"1098":{},"1197":{},"1906":{},"2005":{},"2105":{},"3245":{},"3307":{},"3331":{},"3433":{}},"parent":{}}],["last_name",{"_index":207,"name":{"299":{}},"parent":{}}],["lastname",{"_index":1358,"name":{"3353":{}},"parent":{}}],["latitude",{"_index":1836,"name":{"5537":{}},"parent":{}}],["levels",{"_index":1470,"name":{"3948":{},"3958":{},"4978":{},"4986":{}},"parent":{}}],["limit",{"_index":1299,"name":{"3280":{},"4001":{},"5307":{},"5330":{},"5543":{}},"parent":{}}],["listid",{"_index":1246,"name":{"3212":{},"3237":{},"3246":{},"3299":{},"3308":{},"3332":{},"3339":{},"3347":{},"3425":{},"3434":{}},"parent":{}}],["locale",{"_index":205,"name":{"295":{},"314":{},"396":{},"944":{},"952":{},"960":{},"968":{},"976":{},"1007":{},"1014":{},"1029":{},"1037":{},"1052":{},"1070":{},"1077":{},"1086":{},"1095":{},"1104":{},"1113":{},"1122":{},"1133":{},"1140":{},"1149":{},"1158":{},"1166":{},"1176":{},"1184":{},"1194":{},"1204":{},"1213":{},"1230":{},"1241":{},"1250":{},"1849":{},"1857":{},"1865":{},"1873":{},"1881":{},"1914":{},"1921":{},"1936":{},"1944":{},"1959":{},"1977":{},"1984":{},"1993":{},"2002":{},"2011":{},"2020":{},"2029":{},"2041":{},"2048":{},"2057":{},"2066":{},"2074":{},"2084":{},"2092":{},"2102":{},"2112":{},"2121":{},"2138":{},"2149":{},"2158":{},"2627":{},"2636":{},"2643":{},"3941":{},"3950":{},"3960":{},"3968":{},"3977":{},"3990":{},"4000":{},"4551":{},"4558":{},"4566":{},"4575":{},"4584":{},"4599":{},"4607":{},"4616":{},"4979":{},"4987":{},"5001":{},"5016":{},"5163":{},"5309":{},"5324":{},"5461":{},"5529":{},"5542":{}},"parent":{}}],["localecode",{"_index":9,"name":{"8":{},"678":{},"732":{},"756":{},"1434":{},"1555":{},"1627":{},"1655":{},"2355":{},"2486":{},"2588":{},"2602":{},"2686":{},"2711":{},"3883":{},"3897":{},"4055":{},"4087":{},"4413":{},"4457":{},"4689":{},"4775":{},"4915":{},"4925":{},"5064":{},"5109":{},"5135":{},"5140":{},"5198":{},"5210":{},"5230":{},"5259":{},"5367":{},"5411":{},"5441":{},"5444":{},"5482":{},"5490":{},"5496":{},"5504":{},"5570":{},"5585":{}},"parent":{}}],["login_id",{"_index":278,"name":{"385":{},"415":{},"432":{},"442":{},"459":{}},"parent":{}}],["loginguestuser",{"_index":409,"name":{"650":{},"665":{}},"parent":{}}],["loginguestuserprivate",{"_index":408,"name":{"649":{},"664":{}},"parent":{}}],["loginid",{"_index":227,"name":{"326":{},"334":{},"372":{}},"parent":{}}],["loginidpuser",{"_index":407,"name":{"648":{},"663":{}},"parent":{}}],["loginregistereduserb2c",{"_index":410,"name":{"651":{},"666":{}},"parent":{}}],["logout",{"_index":413,"name":{"655":{},"670":{}},"parent":{}}],["logoutcustomer",{"_index":120,"name":{"157":{},"205":{},"235":{}},"parent":{}}],["logoutcustomerhintenum",{"_index":166,"name":{"253":{},"560":{},"4163":{},"4330":{}},"parent":{}}],["logoutcustomerpathparameters",{"_index":347,"name":{"491":{},"613":{},"4216":{},"4332":{}},"parent":{}}],["logoutcustomerqueryparameters",{"_index":344,"name":{"485":{},"612":{},"4215":{},"4331":{}},"parent":{}}],["logoutcustomerrequired",{"_index":148,"name":{"206":{}},"parent":{}}],["longitude",{"_index":1837,"name":{"5538":{}},"parent":{}}],["master",{"_index":1089,"name":{"2874":{},"2979":{},"3623":{},"3802":{},"4900":{},"4926":{},"5065":{},"5110":{}},"parent":{}}],["maxdistance",{"_index":1838,"name":{"5539":{}},"parent":{}}],["merge",{"_index":698,"name":{"1132":{},"2039":{}},"parent":{}}],["mergebasket",{"_index":483,"name":{"804":{},"860":{},"918":{},"1709":{},"1765":{},"1823":{}},"parent":{}}],["mergebasketpathparameters",{"_index":651,"name":{"1071":{},"1294":{},"1375":{},"1500":{},"1978":{},"2205":{},"2289":{},"2427":{}},"parent":{}}],["mergebasketproductitemmergemodeenum",{"_index":544,"name":{"940":{},"1260":{},"1341":{},"1498":{},"1845":{},"2171":{},"2255":{},"2425":{}},"parent":{}}],["mergebasketqueryparameters",{"_index":646,"name":{"1065":{},"1293":{},"1374":{},"1499":{},"1972":{},"2204":{},"2288":{},"2426":{}},"parent":{}}],["mergebasketrequired",{"_index":522,"name":{"861":{},"1766":{}},"parent":{}}],["message",{"_index":397,"name":{"638":{}},"parent":{}}],["mode",{"_index":204,"name":{"294":{},"312":{},"394":{}},"parent":{}}],["modelconfiguration",{"_index":960,"name":{"2523":{},"2526":{},"2562":{},"2570":{}},"parent":{}}],["name",{"_index":396,"name":{"637":{}},"parent":{}}],["nanoid",{"_index":402,"name":{"643":{}},"parent":{}}],["new_password",{"_index":359,"name":{"504":{}},"parent":{}}],["nick_name",{"_index":386,"name":{"540":{}},"parent":{}}],["oauth2errorresponse",{"_index":85,"name":{"93":{},"116":{},"4247":{},"4357":{}},"parent":{}}],["offset",{"_index":1300,"name":{"3281":{},"4002":{},"5331":{},"5544":{}},"parent":{}}],["omsdata",{"_index":1114,"name":{"2899":{},"2980":{},"3624":{},"3803":{},"4416":{},"4458":{},"4690":{},"4776":{}},"parent":{}}],["omsproductdata",{"_index":1109,"name":{"2894":{},"2981":{},"3625":{},"3804":{},"4417":{},"4459":{},"4691":{},"4777":{}},"parent":{}}],["omsproductdatastatusenum",{"_index":1110,"name":{"2895":{},"2982":{},"3626":{},"3805":{},"4418":{},"4460":{},"4692":{},"4778":{}},"parent":{}}],["omsshipment",{"_index":1113,"name":{"2898":{},"2983":{},"3627":{},"3806":{},"4415":{},"4461":{},"4693":{},"4779":{}},"parent":{}}],["omsshipmentitem",{"_index":1112,"name":{"2897":{},"2984":{},"3628":{},"3807":{},"4414":{},"4462":{},"4694":{},"4780":{}},"parent":{}}],["option",{"_index":1095,"name":{"2880":{},"2985":{},"3629":{},"3808":{},"4906":{},"4927":{},"5066":{},"5111":{}},"parent":{}}],["optionitem",{"_index":446,"name":{"722":{},"757":{},"1435":{},"1556":{},"1612":{},"1656":{},"2356":{},"2487":{},"2857":{},"2986":{},"3630":{},"3809":{},"4403":{},"4463":{},"4695":{},"4781":{}},"parent":{}}],["optionvalue",{"_index":1094,"name":{"2879":{},"2987":{},"3631":{},"3810":{},"4905":{},"4928":{},"5067":{},"5112":{}},"parent":{}}],["order",{"_index":1115,"name":{"2900":{},"2988":{},"3632":{},"3811":{},"4420":{},"4464":{},"4696":{},"4782":{}},"parent":{}}],["orderaddress",{"_index":434,"name":{"710":{},"758":{},"1436":{},"1557":{},"1599":{},"1657":{},"2357":{},"2488":{},"2844":{},"2996":{},"3640":{},"3819":{},"4390":{},"4472":{},"4704":{},"4790":{}},"parent":{}}],["orderchanneltypeenum",{"_index":1116,"name":{"2901":{},"2989":{},"3633":{},"3812":{},"4421":{},"4465":{},"4697":{},"4783":{}},"parent":{}}],["orderconfirmationstatusenum",{"_index":1117,"name":{"2902":{},"2990":{},"3634":{},"3813":{},"4422":{},"4466":{},"4698":{},"4784":{}},"parent":{}}],["orderexportstatusenum",{"_index":1118,"name":{"2903":{},"2991":{},"3635":{},"3814":{},"4423":{},"4467":{},"4699":{},"4785":{}},"parent":{}}],["orderlookuprequest",{"_index":1545,"name":{"4428":{},"4473":{},"4705":{},"4791":{}},"parent":{}}],["orderno",{"_index":1582,"name":{"4562":{},"4571":{},"4579":{},"4588":{},"4595":{},"4603":{},"4612":{},"4621":{}},"parent":{}}],["orderpaymentcardrequest",{"_index":451,"name":{"727":{},"759":{},"1437":{},"1558":{},"1618":{},"1658":{},"2358":{},"2489":{},"4429":{},"4474":{},"4706":{},"4792":{}},"parent":{}}],["orderpaymentinstrument",{"_index":427,"name":{"703":{},"760":{},"1438":{},"1559":{},"1592":{},"1659":{},"2359":{},"2490":{},"2837":{},"2997":{},"3641":{},"3820":{},"4383":{},"4475":{},"4707":{},"4793":{}},"parent":{}}],["orderpaymentinstrumentpaymentreference",{"_index":791,"name":{"1588":{},"1660":{},"2360":{},"2491":{},"2833":{},"2998":{},"3642":{},"3821":{},"4379":{},"4476":{},"4708":{},"4794":{}},"parent":{}}],["orderpaymentinstrumentpaymentreferencegatewayenum",{"_index":792,"name":{"1589":{},"1661":{},"2361":{},"2492":{},"2834":{},"2999":{},"3643":{},"3822":{},"4380":{},"4477":{},"4709":{},"4795":{}},"parent":{}}],["orderpaymentinstrumentpaymentreferencegatewayproperties",{"_index":790,"name":{"1587":{},"1662":{},"2362":{},"2493":{},"2832":{},"3000":{},"3644":{},"3823":{},"4378":{},"4478":{},"4710":{},"4796":{}},"parent":{}}],["orderpaymentinstrumentrequest",{"_index":1546,"name":{"4433":{},"4479":{},"4711":{},"4797":{}},"parent":{}}],["orderpaymentstatusenum",{"_index":1119,"name":{"2904":{},"2992":{},"3636":{},"3815":{},"4424":{},"4468":{},"4700":{},"4786":{}},"parent":{}}],["orderproductitem",{"_index":1111,"name":{"2896":{},"3001":{},"3645":{},"3824":{},"4419":{},"4480":{},"4712":{},"4798":{}},"parent":{}}],["ordershippingstatusenum",{"_index":1120,"name":{"2905":{},"2993":{},"3637":{},"3816":{},"4425":{},"4469":{},"4701":{},"4787":{}},"parent":{}}],["orderstatusenum",{"_index":1121,"name":{"2906":{},"2994":{},"3638":{},"3817":{},"4426":{},"4470":{},"4702":{},"4788":{}},"parent":{}}],["ordertaxationenum",{"_index":1122,"name":{"2907":{},"2995":{},"3639":{},"3818":{},"4427":{},"4471":{},"4703":{},"4789":{}},"parent":{}}],["organizationid",{"_index":172,"name":{"259":{},"284":{},"290":{},"308":{},"325":{},"333":{},"339":{},"344":{},"349":{},"365":{},"371":{},"377":{},"390":{},"406":{},"424":{},"448":{},"453":{},"470":{},"475":{},"480":{},"493":{},"498":{},"512":{},"521":{},"532":{},"694":{},"947":{},"955":{},"963":{},"971":{},"979":{},"986":{},"993":{},"1000":{},"1010":{},"1017":{},"1024":{},"1032":{},"1040":{},"1047":{},"1055":{},"1063":{},"1073":{},"1080":{},"1089":{},"1099":{},"1108":{},"1117":{},"1126":{},"1136":{},"1143":{},"1152":{},"1161":{},"1171":{},"1179":{},"1187":{},"1198":{},"1207":{},"1217":{},"1225":{},"1234":{},"1244":{},"1253":{},"1852":{},"1860":{},"1868":{},"1876":{},"1884":{},"1891":{},"1898":{},"1905":{},"1917":{},"1924":{},"1931":{},"1939":{},"1947":{},"1954":{},"1962":{},"1970":{},"1980":{},"1987":{},"1996":{},"2006":{},"2015":{},"2024":{},"2033":{},"2044":{},"2051":{},"2060":{},"2069":{},"2079":{},"2087":{},"2095":{},"2106":{},"2115":{},"2125":{},"2133":{},"2142":{},"2152":{},"2161":{},"2544":{},"2632":{},"2639":{},"2646":{},"2751":{},"2758":{},"2765":{},"2773":{},"3192":{},"3199":{},"3206":{},"3214":{},"3222":{},"3231":{},"3239":{},"3248":{},"3256":{},"3264":{},"3271":{},"3285":{},"3293":{},"3301":{},"3310":{},"3317":{},"3325":{},"3333":{},"3340":{},"3348":{},"3357":{},"3363":{},"3369":{},"3375":{},"3383":{},"3389":{},"3396":{},"3404":{},"3411":{},"3419":{},"3427":{},"3436":{},"3944":{},"3953":{},"3963":{},"3971":{},"3981":{},"3993":{},"4005":{},"4119":{},"4554":{},"4561":{},"4570":{},"4580":{},"4587":{},"4594":{},"4602":{},"4611":{},"4620":{},"4854":{},"4983":{},"4992":{},"5005":{},"5020":{},"5166":{},"5176":{},"5315":{},"5334":{},"5464":{},"5532":{},"5547":{}},"parent":{}}],["origin",{"_index":54,"name":{"62":{}},"parent":{}}],["overrideexisting",{"_index":697,"name":{"1131":{},"2038":{}},"parent":{}}],["page",{"_index":1441,"name":{"3884":{},"3898":{},"4056":{},"4088":{}},"parent":{}}],["pageid",{"_index":1494,"name":{"3980":{}},"parent":{}}],["pagemetatag",{"_index":1091,"name":{"2876":{},"3002":{},"3646":{},"3825":{},"4902":{},"4929":{},"5068":{},"5113":{},"5231":{},"5260":{},"5368":{},"5412":{}},"parent":{}}],["pageresult",{"_index":1442,"name":{"3885":{},"3899":{},"4057":{},"4089":{}},"parent":{}}],["paginatedresultbase",{"_index":1138,"name":{"2924":{},"3003":{},"3647":{},"3826":{},"3886":{},"3900":{},"4058":{},"4090":{},"5232":{},"5261":{},"5369":{},"5413":{},"5497":{},"5505":{},"5571":{},"5586":{}},"parent":{}}],["parameters",{"_index":23,"name":{"20":{},"30":{},"3975":{},"3988":{}},"parent":{}}],["paramkeys",{"_index":125,"name":{"163":{},"826":{},"1731":{},"2534":{},"2612":{},"2730":{},"3085":{},"3915":{},"4109":{},"4518":{},"4840":{},"4957":{},"5151":{},"5293":{},"5452":{},"5517":{}},"parent":{}}],["passkeycredential",{"_index":86,"name":{"94":{},"117":{},"4248":{},"4358":{}},"parent":{}}],["passkeyuser",{"_index":87,"name":{"95":{},"118":{},"4249":{},"4359":{}},"parent":{}}],["password",{"_index":55,"name":{"63":{}},"parent":{}}],["passwordchangerequest",{"_index":1139,"name":{"2925":{},"3004":{},"3648":{},"3827":{}},"parent":{}}],["pathname",{"_index":56,"name":{"64":{}},"parent":{}}],["pathparameters",{"_index":4,"name":{"3":{},"679":{}},"parent":{}}],["pathrecord",{"_index":1658,"name":{"4911":{},"4930":{},"5069":{},"5114":{}},"parent":{}}],["paymentbankaccountrequest",{"_index":1125,"name":{"2910":{},"3005":{},"3649":{},"3828":{}},"parent":{}}],["paymentcard",{"_index":426,"name":{"702":{},"761":{},"1439":{},"1560":{},"1591":{},"1663":{},"2363":{},"2494":{},"2836":{},"3006":{},"3650":{},"3829":{},"4382":{},"4481":{},"4713":{},"4799":{}},"parent":{}}],["paymentcardspec",{"_index":456,"name":{"733":{},"762":{},"1440":{},"1561":{},"1628":{},"1664":{},"2364":{},"2495":{},"4434":{},"4482":{},"4714":{},"4800":{}},"parent":{}}],["paymentconfiguration",{"_index":1635,"name":{"4828":{},"4830":{},"4872":{},"4882":{}},"parent":{}}],["paymentconfigurationpaymentmethodsetaccountsinner",{"_index":1634,"name":{"4827":{},"4831":{},"4873":{},"4883":{}},"parent":{}}],["paymentconfigurationpaymentmethodsetaccountsinnerconfig",{"_index":1633,"name":{"4826":{},"4832":{},"4874":{},"4884":{}},"parent":{}}],["paymentconfigurationpaymentmethodsinner",{"_index":1632,"name":{"4825":{},"4833":{},"4875":{},"4885":{}},"parent":{}}],["paymentinstrumentid",{"_index":679,"name":{"1107":{},"1216":{},"2014":{},"2124":{},"3220":{},"3291":{},"3417":{},"4610":{},"4619":{}},"parent":{}}],["paymentmethod",{"_index":457,"name":{"734":{},"763":{},"1441":{},"1562":{},"1629":{},"1665":{},"2365":{},"2496":{},"4435":{},"4483":{},"4715":{},"4801":{}},"parent":{}}],["paymentmethodreferenceid",{"_index":1260,"name":{"3229":{}},"parent":{}}],["paymentmethodresult",{"_index":458,"name":{"735":{},"764":{},"1442":{},"1563":{},"1630":{},"1666":{},"2366":{},"2497":{},"4436":{},"4484":{},"4716":{},"4802":{}},"parent":{}}],["paymentreferencerequest",{"_index":798,"name":{"1621":{},"1667":{},"2367":{},"2498":{},"4431":{},"4485":{},"4717":{},"4803":{}},"parent":{}}],["paymentreferencerequestgatewayenum",{"_index":799,"name":{"1622":{},"1668":{},"2368":{},"2499":{},"4432":{},"4486":{},"4718":{},"4804":{}},"parent":{}}],["paymentreferencerequestgatewayproperties",{"_index":797,"name":{"1620":{},"1669":{},"2369":{},"2500":{},"4430":{},"4487":{},"4719":{},"4805":{}},"parent":{}}],["perpricebook",{"_index":1695,"name":{"4998":{},"5013":{},"5327":{}},"parent":{}}],["phone_number",{"_index":210,"name":{"302":{}},"parent":{}}],["populatecustomerdetails",{"_index":839,"name":{"1913":{},"2040":{}},"parent":{}}],["port",{"_index":57,"name":{"65":{}},"parent":{}}],["postalcode",{"_index":1839,"name":{"5540":{}},"parent":{}}],["prettify",{"_index":6,"name":{"5":{}},"parent":{}}],["priceadjustment",{"_index":432,"name":{"708":{},"765":{},"1443":{},"1564":{},"1597":{},"1670":{},"2370":{},"2501":{},"2842":{},"3007":{},"3651":{},"3830":{},"4388":{},"4488":{},"4720":{},"4806":{}},"parent":{}}],["priceadjustmentid",{"_index":686,"name":{"1116":{},"1224":{},"2023":{},"2132":{}},"parent":{}}],["priceadjustmentrequest",{"_index":459,"name":{"736":{},"766":{},"1444":{},"1565":{},"1631":{},"1671":{},"2371":{},"2502":{}},"parent":{}}],["priceadjustmentrequestlevelenum",{"_index":460,"name":{"737":{},"767":{},"1445":{},"1566":{},"1632":{},"1672":{},"2372":{},"2503":{}},"parent":{}}],["pricerange",{"_index":1087,"name":{"2872":{},"3008":{},"3652":{},"3831":{},"4898":{},"4931":{},"5070":{},"5115":{},"5233":{},"5262":{},"5370":{},"5414":{}},"parent":{}}],["processedquery",{"_index":1752,"name":{"5234":{},"5263":{},"5371":{},"5415":{}},"parent":{}}],["product",{"_index":1098,"name":{"2883":{},"3009":{},"3653":{},"3832":{},"4909":{},"4932":{},"5071":{},"5116":{}},"parent":{}}],["productdetailslink",{"_index":428,"name":{"704":{},"768":{},"1446":{},"1567":{},"1593":{},"1673":{},"2373":{},"2504":{},"2838":{},"3010":{},"3654":{},"3833":{},"4384":{},"4489":{},"4721":{},"4807":{}},"parent":{}}],["productid",{"_index":1500,"name":{"3985":{}},"parent":{}}],["productitem",{"_index":447,"name":{"723":{},"769":{},"1447":{},"1568":{},"1611":{},"1674":{},"2374":{},"2505":{},"2856":{},"3011":{},"3655":{},"3834":{},"4402":{},"4490":{},"4722":{},"4808":{}},"parent":{}}],["productitemmergemode",{"_index":650,"name":{"1069":{},"1976":{}},"parent":{}}],["productlink",{"_index":1092,"name":{"2877":{},"3012":{},"3656":{},"3835":{},"4903":{},"4933":{},"5072":{},"5117":{}},"parent":{}}],["productlinktypeenum",{"_index":1093,"name":{"2878":{},"3013":{},"3657":{},"3836":{},"4904":{},"4934":{},"5073":{},"5118":{}},"parent":{}}],["productlistevent",{"_index":1129,"name":{"2914":{},"3014":{},"3658":{},"3837":{}},"parent":{}}],["productlistitemreference",{"_index":444,"name":{"720":{},"770":{},"1448":{},"1569":{},"1609":{},"1675":{},"2375":{},"2506":{},"2854":{},"3015":{},"3659":{},"3838":{},"4400":{},"4491":{},"4723":{},"4809":{}},"parent":{}}],["productlistitemreferencetypeenum",{"_index":445,"name":{"721":{},"771":{},"1449":{},"1570":{},"1610":{},"1676":{},"2376":{},"2507":{},"2855":{},"3016":{},"3660":{},"3839":{},"4401":{},"4492":{},"4724":{},"4810":{}},"parent":{}}],["productlistlink",{"_index":442,"name":{"718":{},"772":{},"1450":{},"1571":{},"1607":{},"1677":{},"2377":{},"2508":{},"2852":{},"3017":{},"3661":{},"3840":{},"4398":{},"4493":{},"4725":{},"4811":{}},"parent":{}}],["productlistlinktypeenum",{"_index":443,"name":{"719":{},"773":{},"1451":{},"1572":{},"1608":{},"1678":{},"2378":{},"2509":{},"2853":{},"3018":{},"3662":{},"3841":{},"4399":{},"4494":{},"4726":{},"4812":{}},"parent":{}}],["productlistregistrant",{"_index":1140,"name":{"2926":{},"3019":{},"3663":{},"3842":{}},"parent":{}}],["productlistshippingaddress",{"_index":1133,"name":{"2918":{},"3020":{},"3664":{},"3843":{}},"parent":{}}],["productpricetable",{"_index":1084,"name":{"2869":{},"3021":{},"3665":{},"3844":{},"4895":{},"4935":{},"5074":{},"5119":{},"5235":{},"5264":{},"5372":{},"5416":{}},"parent":{}}],["productpromotion",{"_index":1088,"name":{"2873":{},"3022":{},"3666":{},"3845":{},"4899":{},"4936":{},"5075":{},"5120":{},"5236":{},"5265":{},"5373":{},"5417":{}},"parent":{}}],["productref",{"_index":1753,"name":{"5237":{},"5266":{},"5374":{},"5418":{}},"parent":{}}],["productresult",{"_index":1661,"name":{"4916":{},"4937":{},"5076":{},"5121":{}},"parent":{}}],["productsearch",{"_index":1766,"name":{"5291":{},"5297":{},"5300":{}},"parent":{}}],["productsearchexpandenum",{"_index":1772,"name":{"5302":{},"5339":{},"5350":{},"5400":{}},"parent":{}}],["productsearchhit",{"_index":1754,"name":{"5241":{},"5267":{},"5375":{},"5419":{}},"parent":{}}],["productsearchpathparameters",{"_index":1786,"name":{"5332":{},"5343":{},"5354":{},"5402":{}},"parent":{}}],["productsearchqueryparameters",{"_index":1781,"name":{"5316":{},"5342":{},"5353":{},"5401":{}},"parent":{}}],["productsearchrefinement",{"_index":1756,"name":{"5243":{},"5268":{},"5376":{},"5420":{}},"parent":{}}],["productsearchrefinementvalue",{"_index":1755,"name":{"5242":{},"5269":{},"5377":{},"5421":{}},"parent":{}}],["productsearchrequired",{"_index":1770,"name":{"5298":{}},"parent":{}}],["productsearchresult",{"_index":1759,"name":{"5246":{},"5270":{},"5378":{},"5422":{}},"parent":{}}],["productsearchsortingoption",{"_index":1758,"name":{"5245":{},"5271":{},"5379":{},"5423":{}},"parent":{}}],["productsuggestions",{"_index":1761,"name":{"5248":{},"5272":{},"5380":{},"5424":{}},"parent":{}}],["producttype",{"_index":1083,"name":{"2868":{},"3023":{},"3667":{},"3846":{},"4894":{},"4938":{},"5077":{},"5122":{},"5240":{},"5273":{},"5381":{},"5425":{}},"parent":{}}],["promotion",{"_index":1712,"name":{"5136":{},"5141":{},"5199":{},"5211":{}},"parent":{}}],["promotionresult",{"_index":1713,"name":{"5137":{},"5142":{},"5200":{},"5212":{}},"parent":{}}],["protocol",{"_index":58,"name":{"66":{}},"parent":{}}],["proxy",{"_index":21,"name":{"18":{},"27":{}},"parent":{}}],["publickeycredentialdescriptor",{"_index":88,"name":{"96":{},"119":{},"4250":{},"4360":{}},"parent":{}}],["publickeycredentialdescriptortransportsenum",{"_index":90,"name":{"98":{},"121":{},"4252":{},"4362":{}},"parent":{}}],["publickeycredentialdescriptortypeenum",{"_index":89,"name":{"97":{},"120":{},"4251":{},"4361":{}},"parent":{}}],["publickeycredentialjson",{"_index":78,"name":{"86":{},"122":{},"4253":{},"4363":{}},"parent":{}}],["publickeycredentialjsonresponse",{"_index":77,"name":{"85":{},"124":{},"4255":{},"4365":{}},"parent":{}}],["publickeycredentialjsontypeenum",{"_index":79,"name":{"87":{},"123":{},"4254":{},"4364":{}},"parent":{}}],["publickeycredentialrequestoptions",{"_index":91,"name":{"99":{},"125":{},"4256":{},"4366":{}},"parent":{}}],["publickeycredentialrequestoptionsuserverificationenum",{"_index":92,"name":{"100":{},"126":{},"4257":{},"4367":{}},"parent":{}}],["publicproductlist",{"_index":1143,"name":{"2929":{},"3024":{},"3668":{},"3847":{}},"parent":{}}],["publicproductlistinfo",{"_index":1145,"name":{"2931":{},"3026":{},"3670":{},"3849":{}},"parent":{}}],["publicproductlistinfotypeenum",{"_index":1146,"name":{"2932":{},"3027":{},"3671":{},"3850":{}},"parent":{}}],["publicproductlistitem",{"_index":1141,"name":{"2927":{},"3028":{},"3672":{},"3851":{}},"parent":{}}],["publicproductlistitemresult",{"_index":1147,"name":{"2933":{},"3030":{},"3674":{},"3853":{}},"parent":{}}],["publicproductlistitemtypeenum",{"_index":1142,"name":{"2928":{},"3029":{},"3673":{},"3852":{}},"parent":{}}],["publicproductlistresult",{"_index":1148,"name":{"2934":{},"3031":{},"3675":{},"3854":{}},"parent":{}}],["publicproductlisttypeenum",{"_index":1144,"name":{"2930":{},"3025":{},"3669":{},"3848":{}},"parent":{}}],["pwd_action_token",{"_index":358,"name":{"502":{},"536":{}},"parent":{}}],["pwdless_login_token",{"_index":277,"name":{"382":{}},"parent":{}}],["q",{"_index":1507,"name":{"3996":{},"5306":{},"5320":{}},"parent":{}}],["queryparameters",{"_index":5,"name":{"4":{},"680":{}},"parent":{}}],["recommendation",{"_index":1086,"name":{"2871":{},"3032":{},"3676":{},"3855":{},"4897":{},"4939":{},"5078":{},"5123":{}},"parent":{}}],["recommendationtype",{"_index":1085,"name":{"2870":{},"3033":{},"3677":{},"3856":{},"4896":{},"4940":{},"5079":{},"5124":{}},"parent":{}}],["redirect_uri",{"_index":179,"name":{"264":{},"272":{},"356":{},"444":{}},"parent":{}}],["refine",{"_index":1509,"name":{"3997":{},"5321":{}},"parent":{}}],["refresh_token",{"_index":252,"name":{"352":{},"488":{}},"parent":{}}],["refreshaccesstoken",{"_index":412,"name":{"654":{},"669":{}},"parent":{}}],["region",{"_index":1432,"name":{"3873":{},"3901":{},"4059":{},"4091":{}},"parent":{}}],["register_customer",{"_index":195,"name":{"287":{}},"parent":{}}],["registercustomer",{"_index":1177,"name":{"3074":{},"3131":{},"3173":{}},"parent":{}}],["registercustomerpathparameters",{"_index":1371,"name":{"3367":{},"3488":{},"3560":{},"3743":{}},"parent":{}}],["registercustomerqueryparameters",{"_index":1368,"name":{"3364":{},"3487":{},"3559":{},"3742":{}},"parent":{}}],["registercustomerrequired",{"_index":1210,"name":{"3132":{}},"parent":{}}],["registerexternalprofile",{"_index":1178,"name":{"3075":{},"3133":{},"3174":{}},"parent":{}}],["registerexternalprofilepathparameters",{"_index":1377,"name":{"3373":{},"3490":{},"3562":{},"3745":{}},"parent":{}}],["registerexternalprofilequeryparameters",{"_index":1374,"name":{"3370":{},"3489":{},"3561":{},"3744":{}},"parent":{}}],["registerexternalprofilerequired",{"_index":1211,"name":{"3134":{}},"parent":{}}],["registrationfinishrequest",{"_index":93,"name":{"101":{},"127":{},"4258":{},"4368":{}},"parent":{}}],["removecouponfrombasket",{"_index":484,"name":{"805":{},"862":{},"919":{},"1710":{},"1767":{},"1824":{}},"parent":{}}],["removecouponfrombasketpathparameters",{"_index":657,"name":{"1078":{},"1296":{},"1377":{},"1502":{},"1985":{},"2207":{},"2291":{},"2429":{}},"parent":{}}],["removecouponfrombasketqueryparameters",{"_index":654,"name":{"1074":{},"1295":{},"1376":{},"1501":{},"1981":{},"2206":{},"2290":{},"2428":{}},"parent":{}}],["removecouponfrombasketrequired",{"_index":523,"name":{"863":{},"1768":{}},"parent":{}}],["removecustomeraddress",{"_index":1179,"name":{"3076":{},"3135":{},"3175":{}},"parent":{}}],["removecustomeraddresspathparameters",{"_index":1383,"name":{"3379":{},"3492":{},"3564":{},"3747":{}},"parent":{}}],["removecustomeraddressqueryparameters",{"_index":1380,"name":{"3376":{},"3491":{},"3563":{},"3746":{}},"parent":{}}],["removecustomeraddressrequired",{"_index":1212,"name":{"3136":{}},"parent":{}}],["removeexternaltax",{"_index":718,"name":{"1157":{},"1168":{},"1192":{},"1203":{},"1211":{},"1239":{},"2065":{},"2076":{},"2100":{},"2111":{},"2119":{},"2147":{}},"parent":{}}],["removegiftcertificateitemfrombasket",{"_index":485,"name":{"806":{},"864":{},"920":{},"1711":{},"1769":{},"1825":{}},"parent":{}}],["removegiftcertificateitemfrombasketpathparameters",{"_index":664,"name":{"1087":{},"1298":{},"1379":{},"1504":{},"1994":{},"2209":{},"2293":{},"2431":{}},"parent":{}}],["removegiftcertificateitemfrombasketqueryparameters",{"_index":661,"name":{"1083":{},"1297":{},"1378":{},"1503":{},"1990":{},"2208":{},"2292":{},"2430":{}},"parent":{}}],["removegiftcertificateitemfrombasketrequired",{"_index":524,"name":{"865":{},"1770":{}},"parent":{}}],["removeitemfrombasket",{"_index":486,"name":{"807":{},"866":{},"921":{},"1712":{},"1771":{},"1826":{}},"parent":{}}],["removeitemfrombasketpathparameters",{"_index":671,"name":{"1096":{},"1300":{},"1381":{},"1506":{},"2003":{},"2211":{},"2295":{},"2433":{}},"parent":{}}],["removeitemfrombasketqueryparameters",{"_index":668,"name":{"1092":{},"1299":{},"1380":{},"1505":{},"1999":{},"2210":{},"2294":{},"2432":{}},"parent":{}}],["removeitemfrombasketrequired",{"_index":525,"name":{"867":{},"1772":{}},"parent":{}}],["removepaymentinstrumentfrombasket",{"_index":487,"name":{"808":{},"868":{},"922":{},"1713":{},"1773":{},"1827":{}},"parent":{}}],["removepaymentinstrumentfrombasketpathparameters",{"_index":677,"name":{"1105":{},"1302":{},"1383":{},"1508":{},"2012":{},"2213":{},"2297":{},"2435":{}},"parent":{}}],["removepaymentinstrumentfrombasketqueryparameters",{"_index":674,"name":{"1101":{},"1301":{},"1382":{},"1507":{},"2008":{},"2212":{},"2296":{},"2434":{}},"parent":{}}],["removepaymentinstrumentfrombasketrequired",{"_index":526,"name":{"869":{},"1774":{}},"parent":{}}],["removepaymentinstrumentfromorder",{"_index":1556,"name":{"4515":{},"4534":{},"4545":{}},"parent":{}}],["removepaymentinstrumentfromorderpathparameters",{"_index":1617,"name":{"4608":{},"4641":{},"4665":{},"4755":{}},"parent":{}}],["removepaymentinstrumentfromorderqueryparameters",{"_index":1614,"name":{"4604":{},"4640":{},"4664":{},"4754":{}},"parent":{}}],["removepaymentinstrumentfromorderrequired",{"_index":1567,"name":{"4535":{}},"parent":{}}],["removepriceadjustmentfrombasket",{"_index":488,"name":{"809":{},"870":{},"923":{},"1714":{},"1775":{},"1828":{}},"parent":{}}],["removepriceadjustmentfrombasketpathparameters",{"_index":684,"name":{"1114":{},"1304":{},"1385":{},"1510":{},"2021":{},"2215":{},"2299":{},"2437":{}},"parent":{}}],["removepriceadjustmentfrombasketqueryparameters",{"_index":681,"name":{"1110":{},"1303":{},"1384":{},"1509":{},"2017":{},"2214":{},"2298":{},"2436":{}},"parent":{}}],["removepriceadjustmentfrombasketrequired",{"_index":527,"name":{"871":{},"1776":{}},"parent":{}}],["removeshipmentfrombasket",{"_index":489,"name":{"810":{},"872":{},"924":{},"1715":{},"1777":{},"1829":{}},"parent":{}}],["removeshipmentfrombasketpathparameters",{"_index":691,"name":{"1123":{},"1306":{},"1387":{},"1512":{},"2030":{},"2217":{},"2301":{},"2439":{}},"parent":{}}],["removeshipmentfrombasketqueryparameters",{"_index":688,"name":{"1119":{},"1305":{},"1386":{},"1511":{},"2026":{},"2216":{},"2300":{},"2438":{}},"parent":{}}],["removeshipmentfrombasketrequired",{"_index":528,"name":{"873":{},"1778":{}},"parent":{}}],["rendertemplateuri",{"_index":48,"name":{"56":{}},"parent":{}}],["reopenbasket",{"_index":1586,"name":{"4567":{}},"parent":{}}],["replaceorigin",{"_index":46,"name":{"54":{}},"parent":{}}],["requireparametersunlessallareoptional",{"_index":8,"name":{"7":{},"676":{}},"parent":{}}],["resetpassword",{"_index":121,"name":{"158":{},"207":{},"236":{},"3077":{},"3137":{},"3176":{}},"parent":{}}],["resetpasswordbodytype",{"_index":355,"name":{"499":{},"616":{},"4219":{},"4333":{}},"parent":{}}],["resetpasswordpathparameters",{"_index":352,"name":{"496":{},"615":{},"3387":{},"3494":{},"3566":{},"3749":{},"4218":{},"4335":{}},"parent":{}}],["resetpasswordqueryparameters",{"_index":350,"name":{"494":{},"614":{},"3384":{},"3493":{},"3565":{},"3748":{},"4217":{},"4334":{}},"parent":{}}],["resetpasswordrequest",{"_index":1149,"name":{"2935":{},"3034":{},"3678":{},"3857":{}},"parent":{}}],["resetpasswordrequired",{"_index":149,"name":{"208":{},"3138":{}},"parent":{}}],["resetpasswordtoken",{"_index":1150,"name":{"2936":{},"3035":{},"3679":{},"3858":{}},"parent":{}}],["resetpasswordtokenrequest",{"_index":1151,"name":{"2937":{},"3036":{},"3680":{},"3859":{}},"parent":{}}],["response",{"_index":395,"name":{"636":{}},"parent":{}}],["response_type",{"_index":178,"name":{"263":{},"273":{},"445":{}},"parent":{}}],["responseerror",{"_index":393,"name":{"633":{},"634":{}},"parent":{"634":{}}}],["responseerror.responseerror",{"_index":394,"name":{},"parent":{"635":{},"636":{},"637":{},"638":{},"639":{},"640":{}}}],["responsetype",{"_index":94,"name":{"102":{},"128":{},"4259":{},"4369":{}},"parent":{}}],["resultbase",{"_index":1152,"name":{"2938":{},"3037":{},"3681":{},"3860":{},"3887":{},"3902":{},"4060":{},"4092":{},"4917":{},"4941":{},"5080":{},"5125":{},"5138":{},"5143":{},"5201":{},"5213":{},"5249":{},"5274":{},"5382":{},"5426":{},"5498":{},"5506":{},"5572":{},"5587":{}},"parent":{}}],["revokeobjecturl",{"_index":65,"name":{"73":{}},"parent":{}}],["revoketoken",{"_index":122,"name":{"159":{},"209":{},"237":{}},"parent":{}}],["revoketokenbodytype",{"_index":365,"name":{"513":{},"619":{},"4222":{},"4337":{}},"parent":{}}],["revoketokenpathparameters",{"_index":362,"name":{"510":{},"618":{},"4221":{},"4339":{}},"parent":{}}],["revoketokenqueryparameters",{"_index":360,"name":{"508":{},"617":{},"4220":{},"4338":{}},"parent":{}}],["revoketokenrequired",{"_index":150,"name":{"210":{}},"parent":{}}],["revoketokentokentypehintenum",{"_index":167,"name":{"254":{},"561":{},"4164":{},"4336":{}},"parent":{}}],["scope",{"_index":181,"name":{"266":{},"275":{}},"parent":{}}],["search",{"_index":59,"name":{"67":{}},"parent":{}}],["searchcontent",{"_index":1451,"name":{"3913":{},"3929":{},"3937":{}},"parent":{}}],["searchcontentpathparameters",{"_index":1511,"name":{"4003":{},"4022":{},"4041":{},"4077":{}},"parent":{}}],["searchcontentqueryparameters",{"_index":1505,"name":{"3994":{},"4021":{},"4040":{},"4076":{}},"parent":{}}],["searchcontentrequired",{"_index":1460,"name":{"3930":{}},"parent":{}}],["searchparams",{"_index":60,"name":{"68":{}},"parent":{}}],["searchstores",{"_index":1822,"name":{"5515":{},"5521":{},"5524":{}},"parent":{}}],["searchstorespathparameters",{"_index":1840,"name":{"5545":{},"5554":{},"5563":{},"5582":{}},"parent":{}}],["searchstoresqueryparameters",{"_index":1833,"name":{"5533":{},"5553":{},"5562":{},"5581":{}},"parent":{}}],["searchstoresrequired",{"_index":1826,"name":{"5522":{}},"parent":{}}],["select",{"_index":1696,"name":{"4999":{},"5015":{},"5318":{}},"parent":{}}],["shipment",{"_index":437,"name":{"713":{},"774":{},"1452":{},"1573":{},"1602":{},"1679":{},"2379":{},"2510":{},"2847":{},"3038":{},"3682":{},"3861":{},"4393":{},"4495":{},"4727":{},"4813":{}},"parent":{}}],["shipmentid",{"_index":639,"name":{"1056":{},"1125":{},"1233":{},"1245":{},"1254":{},"1963":{},"2032":{},"2141":{},"2153":{},"2162":{}},"parent":{}}],["shipmentshippingstatusenum",{"_index":438,"name":{"714":{},"775":{},"1453":{},"1574":{},"1603":{},"1680":{},"2380":{},"2511":{},"2848":{},"3039":{},"3683":{},"3862":{},"4394":{},"4496":{},"4728":{},"4814":{}},"parent":{}}],["shippingitem",{"_index":433,"name":{"709":{},"776":{},"1454":{},"1575":{},"1598":{},"1681":{},"2381":{},"2512":{},"2843":{},"3040":{},"3684":{},"3863":{},"4389":{},"4497":{},"4729":{},"4815":{}},"parent":{}}],["shippingmethod",{"_index":436,"name":{"712":{},"777":{},"1455":{},"1576":{},"1601":{},"1682":{},"2382":{},"2513":{},"2846":{},"3041":{},"3685":{},"3864":{},"4392":{},"4498":{},"4730":{},"4816":{},"4892":{},"4942":{},"5081":{},"5126":{}},"parent":{}}],["shippingmethodresult",{"_index":461,"name":{"738":{},"778":{},"1456":{},"1577":{},"1633":{},"1683":{},"2383":{},"2514":{}},"parent":{}}],["shippingpromotion",{"_index":435,"name":{"711":{},"779":{},"1457":{},"1578":{},"1600":{},"1684":{},"2384":{},"2515":{},"2845":{},"3042":{},"3686":{},"3865":{},"4391":{},"4499":{},"4731":{},"4817":{},"4891":{},"4943":{},"5082":{},"5127":{}},"parent":{}}],["shopperbaskets",{"_index":423,"name":{"698":{},"784":{},"1338":{},"1419":{}},"parent":{"699":{},"700":{},"701":{},"702":{},"703":{},"704":{},"705":{},"706":{},"707":{},"708":{},"709":{},"710":{},"711":{},"712":{},"713":{},"714":{},"715":{},"716":{},"717":{},"718":{},"719":{},"720":{},"721":{},"722":{},"723":{},"724":{},"725":{},"726":{},"727":{},"728":{},"729":{},"730":{},"731":{},"732":{},"733":{},"734":{},"735":{},"736":{},"737":{},"738":{},"739":{},"740":{},"741":{},"742":{},"743":{},"744":{},"745":{},"746":{},"747":{},"748":{},"749":{},"750":{},"751":{},"752":{},"753":{},"754":{},"755":{},"756":{},"757":{},"758":{},"759":{},"760":{},"761":{},"762":{},"763":{},"764":{},"765":{},"766":{},"767":{},"768":{},"769":{},"770":{},"771":{},"772":{},"773":{},"774":{},"775":{},"776":{},"777":{},"778":{},"779":{},"780":{},"781":{},"782":{},"783":{},"784":{},"939":{},"940":{},"941":{},"945":{},"949":{},"953":{},"957":{},"961":{},"965":{},"969":{},"973":{},"977":{},"981":{},"984":{},"988":{},"991":{},"995":{},"998":{},"1003":{},"1008":{},"1011":{},"1015":{},"1019":{},"1022":{},"1026":{},"1030":{},"1034":{},"1038":{},"1042":{},"1045":{},"1049":{},"1053":{},"1058":{},"1061":{},"1065":{},"1071":{},"1074":{},"1078":{},"1083":{},"1087":{},"1092":{},"1096":{},"1101":{},"1105":{},"1110":{},"1114":{},"1119":{},"1123":{},"1128":{},"1134":{},"1137":{},"1141":{},"1145":{},"1150":{},"1154":{},"1159":{},"1163":{},"1169":{},"1173":{},"1177":{},"1181":{},"1185":{},"1190":{},"1195":{},"1200":{},"1205":{},"1209":{},"1214":{},"1219":{},"1222":{},"1227":{},"1231":{},"1236":{},"1242":{},"1247":{},"1251":{},"1256":{},"1257":{},"1258":{},"1259":{},"1260":{},"1261":{},"1262":{},"1263":{},"1264":{},"1265":{},"1266":{},"1267":{},"1268":{},"1269":{},"1270":{},"1271":{},"1272":{},"1273":{},"1274":{},"1275":{},"1276":{},"1277":{},"1278":{},"1279":{},"1280":{},"1281":{},"1282":{},"1283":{},"1284":{},"1285":{},"1286":{},"1287":{},"1288":{},"1289":{},"1290":{},"1291":{},"1292":{},"1293":{},"1294":{},"1295":{},"1296":{},"1297":{},"1298":{},"1299":{},"1300":{},"1301":{},"1302":{},"1303":{},"1304":{},"1305":{},"1306":{},"1307":{},"1308":{},"1309":{},"1310":{},"1311":{},"1312":{},"1313":{},"1314":{},"1315":{},"1316":{},"1317":{},"1318":{},"1319":{},"1320":{},"1321":{},"1322":{},"1323":{},"1324":{},"1325":{},"1326":{},"1327":{},"1328":{},"1329":{},"1330":{},"1331":{},"1332":{},"1333":{},"1334":{},"1335":{},"1336":{},"1337":{},"1338":{},"1339":{},"1340":{},"1341":{},"1342":{},"1343":{},"1344":{},"1345":{},"1346":{},"1347":{},"1348":{},"1349":{},"1350":{},"1351":{},"1352":{},"1353":{},"1354":{},"1355":{},"1356":{},"1357":{},"1358":{},"1359":{},"1360":{},"1361":{},"1362":{},"1363":{},"1364":{},"1365":{},"1366":{},"1367":{},"1368":{},"1369":{},"1370":{},"1371":{},"1372":{},"1373":{},"1374":{},"1375":{},"1376":{},"1377":{},"1378":{},"1379":{},"1380":{},"1381":{},"1382":{},"1383":{},"1384":{},"1385":{},"1386":{},"1387":{},"1388":{},"1389":{},"1390":{},"1391":{},"1392":{},"1393":{},"1394":{},"1395":{},"1396":{},"1397":{},"1398":{},"1399":{},"1400":{},"1401":{},"1402":{},"1403":{},"1404":{},"1405":{},"1406":{},"1407":{},"1408":{},"1409":{},"1410":{},"1411":{},"1412":{},"1413":{},"1414":{},"1415":{},"1416":{},"1417":{},"1418":{},"1419":{},"1420":{},"1421":{},"1422":{},"1423":{},"1424":{},"1425":{},"1426":{},"1427":{},"1428":{},"1429":{},"1430":{},"1431":{},"1432":{},"1433":{},"1434":{},"1435":{},"1436":{},"1437":{},"1438":{},"1439":{},"1440":{},"1441":{},"1442":{},"1443":{},"1444":{},"1445":{},"1446":{},"1447":{},"1448":{},"1449":{},"1450":{},"1451":{},"1452":{},"1453":{},"1454":{},"1455":{},"1456":{},"1457":{},"1458":{},"1459":{},"1460":{},"1461":{},"1462":{}}}],["shopperbaskets.addcoupontobasketpathparameters",{"_index":550,"name":{},"parent":{"946":{}}}],["shopperbaskets.addcoupontobasketpathparameters.__type",{"_index":551,"name":{},"parent":{"947":{},"948":{}}}],["shopperbaskets.addcoupontobasketqueryparameters",{"_index":546,"name":{},"parent":{"942":{}}}],["shopperbaskets.addcoupontobasketqueryparameters.__type",{"_index":548,"name":{},"parent":{"943":{},"944":{}}}],["shopperbaskets.addgiftcertificateitemtobasketpathparameters",{"_index":557,"name":{},"parent":{"954":{}}}],["shopperbaskets.addgiftcertificateitemtobasketpathparameters.__type",{"_index":558,"name":{},"parent":{"955":{},"956":{}}}],["shopperbaskets.addgiftcertificateitemtobasketqueryparameters",{"_index":554,"name":{},"parent":{"950":{}}}],["shopperbaskets.addgiftcertificateitemtobasketqueryparameters.__type",{"_index":555,"name":{},"parent":{"951":{},"952":{}}}],["shopperbaskets.additemtobasketpathparameters",{"_index":563,"name":{},"parent":{"962":{}}}],["shopperbaskets.additemtobasketpathparameters.__type",{"_index":564,"name":{},"parent":{"963":{},"964":{}}}],["shopperbaskets.additemtobasketqueryparameters",{"_index":560,"name":{},"parent":{"958":{}}}],["shopperbaskets.additemtobasketqueryparameters.__type",{"_index":561,"name":{},"parent":{"959":{},"960":{}}}],["shopperbaskets.addpaymentinstrumenttobasketpathparameters",{"_index":569,"name":{},"parent":{"970":{}}}],["shopperbaskets.addpaymentinstrumenttobasketpathparameters.__type",{"_index":570,"name":{},"parent":{"971":{},"972":{}}}],["shopperbaskets.addpaymentinstrumenttobasketqueryparameters",{"_index":566,"name":{},"parent":{"966":{}}}],["shopperbaskets.addpaymentinstrumenttobasketqueryparameters.__type",{"_index":567,"name":{},"parent":{"967":{},"968":{}}}],["shopperbaskets.addpriceadjustmenttobasketpathparameters",{"_index":575,"name":{},"parent":{"978":{}}}],["shopperbaskets.addpriceadjustmenttobasketpathparameters.__type",{"_index":576,"name":{},"parent":{"979":{},"980":{}}}],["shopperbaskets.addpriceadjustmenttobasketqueryparameters",{"_index":572,"name":{},"parent":{"974":{}}}],["shopperbaskets.addpriceadjustmenttobasketqueryparameters.__type",{"_index":573,"name":{},"parent":{"975":{},"976":{}}}],["shopperbaskets.addpricebookstobasketpathparameters",{"_index":581,"name":{},"parent":{"985":{}}}],["shopperbaskets.addpricebookstobasketpathparameters.__type",{"_index":582,"name":{},"parent":{"986":{},"987":{}}}],["shopperbaskets.addpricebookstobasketqueryparameters",{"_index":578,"name":{},"parent":{"982":{}}}],["shopperbaskets.addpricebookstobasketqueryparameters.__type",{"_index":579,"name":{},"parent":{"983":{}}}],["shopperbaskets.addtaxesforbasketitempathparameters",{"_index":593,"name":{},"parent":{"999":{}}}],["shopperbaskets.addtaxesforbasketitempathparameters.__type",{"_index":594,"name":{},"parent":{"1000":{},"1001":{},"1002":{}}}],["shopperbaskets.addtaxesforbasketitemqueryparameters",{"_index":590,"name":{},"parent":{"996":{}}}],["shopperbaskets.addtaxesforbasketitemqueryparameters.__type",{"_index":591,"name":{},"parent":{"997":{}}}],["shopperbaskets.addtaxesforbasketpathparameters",{"_index":587,"name":{},"parent":{"992":{}}}],["shopperbaskets.addtaxesforbasketpathparameters.__type",{"_index":588,"name":{},"parent":{"993":{},"994":{}}}],["shopperbaskets.addtaxesforbasketqueryparameters",{"_index":584,"name":{},"parent":{"989":{}}}],["shopperbaskets.addtaxesforbasketqueryparameters.__type",{"_index":585,"name":{},"parent":{"990":{}}}],["shopperbaskets.createbasketpathparameters",{"_index":601,"name":{},"parent":{"1009":{}}}],["shopperbaskets.createbasketpathparameters.__type",{"_index":602,"name":{},"parent":{"1010":{}}}],["shopperbaskets.createbasketqueryparameters",{"_index":597,"name":{},"parent":{"1004":{}}}],["shopperbaskets.createbasketqueryparameters.__type",{"_index":598,"name":{},"parent":{"1005":{},"1006":{},"1007":{}}}],["shopperbaskets.createshipmentforbasketpathparameters",{"_index":607,"name":{},"parent":{"1016":{}}}],["shopperbaskets.createshipmentforbasketpathparameters.__type",{"_index":608,"name":{},"parent":{"1017":{},"1018":{}}}],["shopperbaskets.createshipmentforbasketqueryparameters",{"_index":604,"name":{},"parent":{"1012":{}}}],["shopperbaskets.createshipmentforbasketqueryparameters.__type",{"_index":605,"name":{},"parent":{"1013":{},"1014":{}}}],["shopperbaskets.deletebasketpathparameters",{"_index":613,"name":{},"parent":{"1023":{}}}],["shopperbaskets.deletebasketpathparameters.__type",{"_index":614,"name":{},"parent":{"1024":{},"1025":{}}}],["shopperbaskets.deletebasketqueryparameters",{"_index":610,"name":{},"parent":{"1020":{}}}],["shopperbaskets.deletebasketqueryparameters.__type",{"_index":611,"name":{},"parent":{"1021":{}}}],["shopperbaskets.getbasketpathparameters",{"_index":619,"name":{},"parent":{"1031":{}}}],["shopperbaskets.getbasketpathparameters.__type",{"_index":620,"name":{},"parent":{"1032":{},"1033":{}}}],["shopperbaskets.getbasketqueryparameters",{"_index":616,"name":{},"parent":{"1027":{}}}],["shopperbaskets.getbasketqueryparameters.__type",{"_index":617,"name":{},"parent":{"1028":{},"1029":{}}}],["shopperbaskets.getpaymentmethodsforbasketpathparameters",{"_index":625,"name":{},"parent":{"1039":{}}}],["shopperbaskets.getpaymentmethodsforbasketpathparameters.__type",{"_index":626,"name":{},"parent":{"1040":{},"1041":{}}}],["shopperbaskets.getpaymentmethodsforbasketqueryparameters",{"_index":622,"name":{},"parent":{"1035":{}}}],["shopperbaskets.getpaymentmethodsforbasketqueryparameters.__type",{"_index":623,"name":{},"parent":{"1036":{},"1037":{}}}],["shopperbaskets.getpricebooksforbasketpathparameters",{"_index":631,"name":{},"parent":{"1046":{}}}],["shopperbaskets.getpricebooksforbasketpathparameters.__type",{"_index":632,"name":{},"parent":{"1047":{},"1048":{}}}],["shopperbaskets.getpricebooksforbasketqueryparameters",{"_index":628,"name":{},"parent":{"1043":{}}}],["shopperbaskets.getpricebooksforbasketqueryparameters.__type",{"_index":629,"name":{},"parent":{"1044":{}}}],["shopperbaskets.getshippingmethodsforshipmentpathparameters",{"_index":637,"name":{},"parent":{"1054":{}}}],["shopperbaskets.getshippingmethodsforshipmentpathparameters.__type",{"_index":638,"name":{},"parent":{"1055":{},"1056":{},"1057":{}}}],["shopperbaskets.getshippingmethodsforshipmentqueryparameters",{"_index":634,"name":{},"parent":{"1050":{}}}],["shopperbaskets.getshippingmethodsforshipmentqueryparameters.__type",{"_index":635,"name":{},"parent":{"1051":{},"1052":{}}}],["shopperbaskets.gettaxesfrombasketpathparameters",{"_index":644,"name":{},"parent":{"1062":{}}}],["shopperbaskets.gettaxesfrombasketpathparameters.__type",{"_index":645,"name":{},"parent":{"1063":{},"1064":{}}}],["shopperbaskets.gettaxesfrombasketqueryparameters",{"_index":641,"name":{},"parent":{"1059":{}}}],["shopperbaskets.gettaxesfrombasketqueryparameters.__type",{"_index":642,"name":{},"parent":{"1060":{}}}],["shopperbaskets.mergebasketpathparameters",{"_index":652,"name":{},"parent":{"1072":{}}}],["shopperbaskets.mergebasketpathparameters.__type",{"_index":653,"name":{},"parent":{"1073":{}}}],["shopperbaskets.mergebasketqueryparameters",{"_index":647,"name":{},"parent":{"1066":{}}}],["shopperbaskets.mergebasketqueryparameters.__type",{"_index":648,"name":{},"parent":{"1067":{},"1068":{},"1069":{},"1070":{}}}],["shopperbaskets.removecouponfrombasketpathparameters",{"_index":658,"name":{},"parent":{"1079":{}}}],["shopperbaskets.removecouponfrombasketpathparameters.__type",{"_index":659,"name":{},"parent":{"1080":{},"1081":{},"1082":{}}}],["shopperbaskets.removecouponfrombasketqueryparameters",{"_index":655,"name":{},"parent":{"1075":{}}}],["shopperbaskets.removecouponfrombasketqueryparameters.__type",{"_index":656,"name":{},"parent":{"1076":{},"1077":{}}}],["shopperbaskets.removegiftcertificateitemfrombasketpathparameters",{"_index":665,"name":{},"parent":{"1088":{}}}],["shopperbaskets.removegiftcertificateitemfrombasketpathparameters.__type",{"_index":666,"name":{},"parent":{"1089":{},"1090":{},"1091":{}}}],["shopperbaskets.removegiftcertificateitemfrombasketqueryparameters",{"_index":662,"name":{},"parent":{"1084":{}}}],["shopperbaskets.removegiftcertificateitemfrombasketqueryparameters.__type",{"_index":663,"name":{},"parent":{"1085":{},"1086":{}}}],["shopperbaskets.removeitemfrombasketpathparameters",{"_index":672,"name":{},"parent":{"1097":{}}}],["shopperbaskets.removeitemfrombasketpathparameters.__type",{"_index":673,"name":{},"parent":{"1098":{},"1099":{},"1100":{}}}],["shopperbaskets.removeitemfrombasketqueryparameters",{"_index":669,"name":{},"parent":{"1093":{}}}],["shopperbaskets.removeitemfrombasketqueryparameters.__type",{"_index":670,"name":{},"parent":{"1094":{},"1095":{}}}],["shopperbaskets.removepaymentinstrumentfrombasketpathparameters",{"_index":678,"name":{},"parent":{"1106":{}}}],["shopperbaskets.removepaymentinstrumentfrombasketpathparameters.__type",{"_index":680,"name":{},"parent":{"1107":{},"1108":{},"1109":{}}}],["shopperbaskets.removepaymentinstrumentfrombasketqueryparameters",{"_index":675,"name":{},"parent":{"1102":{}}}],["shopperbaskets.removepaymentinstrumentfrombasketqueryparameters.__type",{"_index":676,"name":{},"parent":{"1103":{},"1104":{}}}],["shopperbaskets.removepriceadjustmentfrombasketpathparameters",{"_index":685,"name":{},"parent":{"1115":{}}}],["shopperbaskets.removepriceadjustmentfrombasketpathparameters.__type",{"_index":687,"name":{},"parent":{"1116":{},"1117":{},"1118":{}}}],["shopperbaskets.removepriceadjustmentfrombasketqueryparameters",{"_index":682,"name":{},"parent":{"1111":{}}}],["shopperbaskets.removepriceadjustmentfrombasketqueryparameters.__type",{"_index":683,"name":{},"parent":{"1112":{},"1113":{}}}],["shopperbaskets.removeshipmentfrombasketpathparameters",{"_index":692,"name":{},"parent":{"1124":{}}}],["shopperbaskets.removeshipmentfrombasketpathparameters.__type",{"_index":693,"name":{},"parent":{"1125":{},"1126":{},"1127":{}}}],["shopperbaskets.removeshipmentfrombasketqueryparameters",{"_index":689,"name":{},"parent":{"1120":{}}}],["shopperbaskets.removeshipmentfrombasketqueryparameters.__type",{"_index":690,"name":{},"parent":{"1121":{},"1122":{}}}],["shopperbaskets.shopperbaskets",{"_index":465,"name":{},"parent":{"785":{},"786":{},"787":{},"825":{},"826":{},"902":{},"903":{},"904":{},"905":{},"906":{},"907":{},"908":{},"909":{},"910":{},"911":{},"912":{},"913":{},"914":{},"915":{},"916":{},"917":{},"918":{},"919":{},"920":{},"921":{},"922":{},"923":{},"924":{},"925":{},"926":{},"927":{},"928":{},"929":{},"930":{},"931":{},"932":{},"933":{},"934":{},"935":{},"936":{},"937":{},"938":{}}}],["shopperbaskets.shopperbaskets.apipaths",{"_index":467,"name":{},"parent":{"788":{},"789":{},"790":{},"791":{},"792":{},"793":{},"794":{},"795":{},"796":{},"797":{},"798":{},"799":{},"800":{},"801":{},"802":{},"803":{},"804":{},"805":{},"806":{},"807":{},"808":{},"809":{},"810":{},"811":{},"812":{},"813":{},"814":{},"815":{},"816":{},"817":{},"818":{},"819":{},"820":{},"821":{},"822":{},"823":{},"824":{}}}],["shopperbaskets.shopperbaskets.paramkeys",{"_index":504,"name":{},"parent":{"827":{}}}],["shopperbaskets.shopperbaskets.paramkeys.__type",{"_index":505,"name":{},"parent":{"828":{},"829":{},"830":{},"831":{},"832":{},"833":{},"834":{},"835":{},"836":{},"837":{},"838":{},"839":{},"840":{},"841":{},"842":{},"843":{},"844":{},"845":{},"846":{},"847":{},"848":{},"849":{},"850":{},"851":{},"852":{},"853":{},"854":{},"855":{},"856":{},"857":{},"858":{},"859":{},"860":{},"861":{},"862":{},"863":{},"864":{},"865":{},"866":{},"867":{},"868":{},"869":{},"870":{},"871":{},"872":{},"873":{},"874":{},"875":{},"876":{},"877":{},"878":{},"879":{},"880":{},"881":{},"882":{},"883":{},"884":{},"885":{},"886":{},"887":{},"888":{},"889":{},"890":{},"891":{},"892":{},"893":{},"894":{},"895":{},"896":{},"897":{},"898":{},"899":{},"900":{},"901":{}}}],["shopperbaskets.shopperbasketstypes",{"_index":788,"name":{},"parent":{"1463":{},"1464":{},"1465":{},"1466":{},"1467":{},"1468":{},"1469":{},"1470":{},"1471":{},"1472":{},"1473":{},"1474":{},"1475":{},"1476":{},"1477":{},"1478":{},"1479":{},"1480":{},"1481":{},"1482":{},"1483":{},"1484":{},"1485":{},"1486":{},"1487":{},"1488":{},"1489":{},"1490":{},"1491":{},"1492":{},"1493":{},"1494":{},"1495":{},"1496":{},"1497":{},"1498":{},"1499":{},"1500":{},"1501":{},"1502":{},"1503":{},"1504":{},"1505":{},"1506":{},"1507":{},"1508":{},"1509":{},"1510":{},"1511":{},"1512":{},"1513":{},"1514":{},"1515":{},"1516":{},"1517":{},"1518":{},"1519":{},"1520":{},"1521":{},"1522":{},"1523":{},"1524":{},"1525":{},"1526":{},"1527":{},"1528":{},"1529":{},"1530":{},"1531":{},"1532":{},"1533":{},"1534":{},"1535":{},"1536":{},"1537":{},"1538":{},"1539":{},"1540":{},"1541":{},"1542":{},"1543":{},"1544":{},"1545":{},"1546":{},"1547":{},"1548":{},"1549":{},"1550":{},"1551":{},"1552":{},"1553":{},"1554":{},"1555":{},"1556":{},"1557":{},"1558":{},"1559":{},"1560":{},"1561":{},"1562":{},"1563":{},"1564":{},"1565":{},"1566":{},"1567":{},"1568":{},"1569":{},"1570":{},"1571":{},"1572":{},"1573":{},"1574":{},"1575":{},"1576":{},"1577":{},"1578":{},"1579":{},"1580":{},"1581":{},"1582":{}}}],["shopperbaskets.transferbasketpathparameters",{"_index":700,"name":{},"parent":{"1135":{}}}],["shopperbaskets.transferbasketpathparameters.__type",{"_index":701,"name":{},"parent":{"1136":{}}}],["shopperbaskets.transferbasketqueryparameters",{"_index":695,"name":{},"parent":{"1129":{}}}],["shopperbaskets.transferbasketqueryparameters.__type",{"_index":696,"name":{},"parent":{"1130":{},"1131":{},"1132":{},"1133":{}}}],["shopperbaskets.updateasagentbasketpathparameters",{"_index":706,"name":{},"parent":{"1142":{}}}],["shopperbaskets.updateasagentbasketpathparameters.__type",{"_index":707,"name":{},"parent":{"1143":{},"1144":{}}}],["shopperbaskets.updateasagentbasketqueryparameters",{"_index":703,"name":{},"parent":{"1138":{}}}],["shopperbaskets.updateasagentbasketqueryparameters.__type",{"_index":704,"name":{},"parent":{"1139":{},"1140":{}}}],["shopperbaskets.updateasstorefrontbasketpathparameters",{"_index":713,"name":{},"parent":{"1151":{}}}],["shopperbaskets.updateasstorefrontbasketpathparameters.__type",{"_index":714,"name":{},"parent":{"1152":{},"1153":{}}}],["shopperbaskets.updateasstorefrontbasketqueryparameters",{"_index":709,"name":{},"parent":{"1146":{}}}],["shopperbaskets.updateasstorefrontbasketqueryparameters.__type",{"_index":710,"name":{},"parent":{"1147":{},"1148":{},"1149":{}}}],["shopperbaskets.updatebasketpathparameters",{"_index":720,"name":{},"parent":{"1160":{}}}],["shopperbaskets.updatebasketpathparameters.__type",{"_index":721,"name":{},"parent":{"1161":{},"1162":{}}}],["shopperbaskets.updatebasketqueryparameters",{"_index":716,"name":{},"parent":{"1155":{}}}],["shopperbaskets.updatebasketqueryparameters.__type",{"_index":717,"name":{},"parent":{"1156":{},"1157":{},"1158":{}}}],["shopperbaskets.updatebillingaddressforbasketpathparameters",{"_index":727,"name":{},"parent":{"1170":{}}}],["shopperbaskets.updatebillingaddressforbasketpathparameters.__type",{"_index":728,"name":{},"parent":{"1171":{},"1172":{}}}],["shopperbaskets.updatebillingaddressforbasketqueryparameters",{"_index":723,"name":{},"parent":{"1164":{}}}],["shopperbaskets.updatebillingaddressforbasketqueryparameters.__type",{"_index":724,"name":{},"parent":{"1165":{},"1166":{},"1167":{},"1168":{}}}],["shopperbaskets.updatecustomerforbasketpathparameters",{"_index":733,"name":{},"parent":{"1178":{}}}],["shopperbaskets.updatecustomerforbasketpathparameters.__type",{"_index":734,"name":{},"parent":{"1179":{},"1180":{}}}],["shopperbaskets.updatecustomerforbasketqueryparameters",{"_index":730,"name":{},"parent":{"1174":{}}}],["shopperbaskets.updatecustomerforbasketqueryparameters.__type",{"_index":731,"name":{},"parent":{"1175":{},"1176":{}}}],["shopperbaskets.updategiftcertificateiteminbasketpathparameters",{"_index":739,"name":{},"parent":{"1186":{}}}],["shopperbaskets.updategiftcertificateiteminbasketpathparameters.__type",{"_index":740,"name":{},"parent":{"1187":{},"1188":{},"1189":{}}}],["shopperbaskets.updategiftcertificateiteminbasketqueryparameters",{"_index":736,"name":{},"parent":{"1182":{}}}],["shopperbaskets.updategiftcertificateiteminbasketqueryparameters.__type",{"_index":737,"name":{},"parent":{"1183":{},"1184":{}}}],["shopperbaskets.updateiteminbasketpathparameters",{"_index":745,"name":{},"parent":{"1196":{}}}],["shopperbaskets.updateiteminbasketpathparameters.__type",{"_index":746,"name":{},"parent":{"1197":{},"1198":{},"1199":{}}}],["shopperbaskets.updateiteminbasketqueryparameters",{"_index":742,"name":{},"parent":{"1191":{}}}],["shopperbaskets.updateiteminbasketqueryparameters.__type",{"_index":743,"name":{},"parent":{"1192":{},"1193":{},"1194":{}}}],["shopperbaskets.updateitemsinbasketpathparameters",{"_index":751,"name":{},"parent":{"1206":{}}}],["shopperbaskets.updateitemsinbasketpathparameters.__type",{"_index":752,"name":{},"parent":{"1207":{},"1208":{}}}],["shopperbaskets.updateitemsinbasketqueryparameters",{"_index":748,"name":{},"parent":{"1201":{}}}],["shopperbaskets.updateitemsinbasketqueryparameters.__type",{"_index":749,"name":{},"parent":{"1202":{},"1203":{},"1204":{}}}],["shopperbaskets.updatepaymentinstrumentinbasketpathparameters",{"_index":757,"name":{},"parent":{"1215":{}}}],["shopperbaskets.updatepaymentinstrumentinbasketpathparameters.__type",{"_index":758,"name":{},"parent":{"1216":{},"1217":{},"1218":{}}}],["shopperbaskets.updatepaymentinstrumentinbasketqueryparameters",{"_index":754,"name":{},"parent":{"1210":{}}}],["shopperbaskets.updatepaymentinstrumentinbasketqueryparameters.__type",{"_index":755,"name":{},"parent":{"1211":{},"1212":{},"1213":{}}}],["shopperbaskets.updatepriceadjustmentinbasketpathparameters",{"_index":763,"name":{},"parent":{"1223":{}}}],["shopperbaskets.updatepriceadjustmentinbasketpathparameters.__type",{"_index":764,"name":{},"parent":{"1224":{},"1225":{},"1226":{}}}],["shopperbaskets.updatepriceadjustmentinbasketqueryparameters",{"_index":760,"name":{},"parent":{"1220":{}}}],["shopperbaskets.updatepriceadjustmentinbasketqueryparameters.__type",{"_index":761,"name":{},"parent":{"1221":{}}}],["shopperbaskets.updateshipmentforbasketpathparameters",{"_index":769,"name":{},"parent":{"1232":{}}}],["shopperbaskets.updateshipmentforbasketpathparameters.__type",{"_index":770,"name":{},"parent":{"1233":{},"1234":{},"1235":{}}}],["shopperbaskets.updateshipmentforbasketqueryparameters",{"_index":766,"name":{},"parent":{"1228":{}}}],["shopperbaskets.updateshipmentforbasketqueryparameters.__type",{"_index":767,"name":{},"parent":{"1229":{},"1230":{}}}],["shopperbaskets.updateshippingaddressforshipmentpathparameters",{"_index":776,"name":{},"parent":{"1243":{}}}],["shopperbaskets.updateshippingaddressforshipmentpathparameters.__type",{"_index":777,"name":{},"parent":{"1244":{},"1245":{},"1246":{}}}],["shopperbaskets.updateshippingaddressforshipmentqueryparameters",{"_index":772,"name":{},"parent":{"1237":{}}}],["shopperbaskets.updateshippingaddressforshipmentqueryparameters.__type",{"_index":774,"name":{},"parent":{"1238":{},"1239":{},"1240":{},"1241":{}}}],["shopperbaskets.updateshippingmethodforshipmentpathparameters",{"_index":782,"name":{},"parent":{"1252":{}}}],["shopperbaskets.updateshippingmethodforshipmentpathparameters.__type",{"_index":783,"name":{},"parent":{"1253":{},"1254":{},"1255":{}}}],["shopperbaskets.updateshippingmethodforshipmentqueryparameters",{"_index":779,"name":{},"parent":{"1248":{}}}],["shopperbaskets.updateshippingmethodforshipmentqueryparameters.__type",{"_index":780,"name":{},"parent":{"1249":{},"1250":{}}}],["shopperbasketsparameters",{"_index":786,"name":{"1258":{},"1337":{},"1418":{},"2169":{},"2251":{},"2335":{}},"parent":{}}],["shopperbasketspathparameters",{"_index":784,"name":{"1256":{},"1335":{},"1416":{},"1463":{},"2167":{},"2249":{},"2333":{}},"parent":{}}],["shopperbasketsqueryparameters",{"_index":785,"name":{"1257":{},"1336":{},"1417":{},"1464":{},"2168":{},"2250":{},"2334":{}},"parent":{}}],["shopperbasketstypes",{"_index":787,"name":{"1462":{}},"parent":{}}],["shopperbasketsv2",{"_index":789,"name":{"1583":{},"1689":{},"2252":{},"2336":{}},"parent":{"1584":{},"1585":{},"1586":{},"1587":{},"1588":{},"1589":{},"1590":{},"1591":{},"1592":{},"1593":{},"1594":{},"1595":{},"1596":{},"1597":{},"1598":{},"1599":{},"1600":{},"1601":{},"1602":{},"1603":{},"1604":{},"1605":{},"1606":{},"1607":{},"1608":{},"1609":{},"1610":{},"1611":{},"1612":{},"1613":{},"1614":{},"1615":{},"1616":{},"1617":{},"1618":{},"1619":{},"1620":{},"1621":{},"1622":{},"1623":{},"1624":{},"1625":{},"1626":{},"1627":{},"1628":{},"1629":{},"1630":{},"1631":{},"1632":{},"1633":{},"1634":{},"1635":{},"1636":{},"1637":{},"1638":{},"1639":{},"1640":{},"1641":{},"1642":{},"1643":{},"1644":{},"1645":{},"1646":{},"1647":{},"1648":{},"1649":{},"1650":{},"1651":{},"1652":{},"1653":{},"1654":{},"1655":{},"1656":{},"1657":{},"1658":{},"1659":{},"1660":{},"1661":{},"1662":{},"1663":{},"1664":{},"1665":{},"1666":{},"1667":{},"1668":{},"1669":{},"1670":{},"1671":{},"1672":{},"1673":{},"1674":{},"1675":{},"1676":{},"1677":{},"1678":{},"1679":{},"1680":{},"1681":{},"1682":{},"1683":{},"1684":{},"1685":{},"1686":{},"1687":{},"1688":{},"1689":{},"1844":{},"1845":{},"1846":{},"1850":{},"1854":{},"1858":{},"1862":{},"1866":{},"1870":{},"1874":{},"1878":{},"1882":{},"1886":{},"1889":{},"1893":{},"1896":{},"1900":{},"1903":{},"1908":{},"1915":{},"1918":{},"1922":{},"1926":{},"1929":{},"1933":{},"1937":{},"1941":{},"1945":{},"1949":{},"1952":{},"1956":{},"1960":{},"1965":{},"1968":{},"1972":{},"1978":{},"1981":{},"1985":{},"1990":{},"1994":{},"1999":{},"2003":{},"2008":{},"2012":{},"2017":{},"2021":{},"2026":{},"2030":{},"2035":{},"2042":{},"2045":{},"2049":{},"2053":{},"2058":{},"2062":{},"2067":{},"2071":{},"2077":{},"2081":{},"2085":{},"2089":{},"2093":{},"2098":{},"2103":{},"2108":{},"2113":{},"2117":{},"2122":{},"2127":{},"2130":{},"2135":{},"2139":{},"2144":{},"2150":{},"2155":{},"2159":{},"2164":{},"2165":{},"2166":{},"2167":{},"2168":{},"2169":{},"2170":{},"2171":{},"2172":{},"2173":{},"2174":{},"2175":{},"2176":{},"2177":{},"2178":{},"2179":{},"2180":{},"2181":{},"2182":{},"2183":{},"2184":{},"2185":{},"2186":{},"2187":{},"2188":{},"2189":{},"2190":{},"2191":{},"2192":{},"2193":{},"2194":{},"2195":{},"2196":{},"2197":{},"2198":{},"2199":{},"2200":{},"2201":{},"2202":{},"2203":{},"2204":{},"2205":{},"2206":{},"2207":{},"2208":{},"2209":{},"2210":{},"2211":{},"2212":{},"2213":{},"2214":{},"2215":{},"2216":{},"2217":{},"2218":{},"2219":{},"2220":{},"2221":{},"2222":{},"2223":{},"2224":{},"2225":{},"2226":{},"2227":{},"2228":{},"2229":{},"2230":{},"2231":{},"2232":{},"2233":{},"2234":{},"2235":{},"2236":{},"2237":{},"2238":{},"2239":{},"2240":{},"2241":{},"2242":{},"2243":{},"2244":{},"2245":{},"2246":{},"2247":{},"2248":{},"2249":{},"2250":{},"2251":{},"2252":{},"2253":{},"2254":{},"2255":{},"2256":{},"2257":{},"2258":{},"2259":{},"2260":{},"2261":{},"2262":{},"2263":{},"2264":{},"2265":{},"2266":{},"2267":{},"2268":{},"2269":{},"2270":{},"2271":{},"2272":{},"2273":{},"2274":{},"2275":{},"2276":{},"2277":{},"2278":{},"2279":{},"2280":{},"2281":{},"2282":{},"2283":{},"2284":{},"2285":{},"2286":{},"2287":{},"2288":{},"2289":{},"2290":{},"2291":{},"2292":{},"2293":{},"2294":{},"2295":{},"2296":{},"2297":{},"2298":{},"2299":{},"2300":{},"2301":{},"2302":{},"2303":{},"2304":{},"2305":{},"2306":{},"2307":{},"2308":{},"2309":{},"2310":{},"2311":{},"2312":{},"2313":{},"2314":{},"2315":{},"2316":{},"2317":{},"2318":{},"2319":{},"2320":{},"2321":{},"2322":{},"2323":{},"2324":{},"2325":{},"2326":{},"2327":{},"2328":{},"2329":{},"2330":{},"2331":{},"2332":{},"2333":{},"2334":{},"2335":{},"2336":{},"2337":{},"2338":{},"2339":{},"2340":{},"2341":{},"2342":{},"2343":{},"2344":{},"2345":{},"2346":{},"2347":{},"2348":{},"2349":{},"2350":{},"2351":{},"2352":{},"2353":{},"2354":{},"2355":{},"2356":{},"2357":{},"2358":{},"2359":{},"2360":{},"2361":{},"2362":{},"2363":{},"2364":{},"2365":{},"2366":{},"2367":{},"2368":{},"2369":{},"2370":{},"2371":{},"2372":{},"2373":{},"2374":{},"2375":{},"2376":{},"2377":{},"2378":{},"2379":{},"2380":{},"2381":{},"2382":{},"2383":{},"2384":{},"2385":{},"2386":{},"2387":{},"2388":{},"2389":{}}}],["shopperbasketsv2.addcoupontobasketpathparameters",{"_index":806,"name":{},"parent":{"1851":{}}}],["shopperbasketsv2.addcoupontobasketpathparameters.__type",{"_index":807,"name":{},"parent":{"1852":{},"1853":{}}}],["shopperbasketsv2.addcoupontobasketqueryparameters",{"_index":804,"name":{},"parent":{"1847":{}}}],["shopperbasketsv2.addcoupontobasketqueryparameters.__type",{"_index":805,"name":{},"parent":{"1848":{},"1849":{}}}],["shopperbasketsv2.addgiftcertificateitemtobasketpathparameters",{"_index":810,"name":{},"parent":{"1859":{}}}],["shopperbasketsv2.addgiftcertificateitemtobasketpathparameters.__type",{"_index":811,"name":{},"parent":{"1860":{},"1861":{}}}],["shopperbasketsv2.addgiftcertificateitemtobasketqueryparameters",{"_index":808,"name":{},"parent":{"1855":{}}}],["shopperbasketsv2.addgiftcertificateitemtobasketqueryparameters.__type",{"_index":809,"name":{},"parent":{"1856":{},"1857":{}}}],["shopperbasketsv2.additemtobasketpathparameters",{"_index":814,"name":{},"parent":{"1867":{}}}],["shopperbasketsv2.additemtobasketpathparameters.__type",{"_index":815,"name":{},"parent":{"1868":{},"1869":{}}}],["shopperbasketsv2.additemtobasketqueryparameters",{"_index":812,"name":{},"parent":{"1863":{}}}],["shopperbasketsv2.additemtobasketqueryparameters.__type",{"_index":813,"name":{},"parent":{"1864":{},"1865":{}}}],["shopperbasketsv2.addpaymentinstrumenttobasketpathparameters",{"_index":818,"name":{},"parent":{"1875":{}}}],["shopperbasketsv2.addpaymentinstrumenttobasketpathparameters.__type",{"_index":819,"name":{},"parent":{"1876":{},"1877":{}}}],["shopperbasketsv2.addpaymentinstrumenttobasketqueryparameters",{"_index":816,"name":{},"parent":{"1871":{}}}],["shopperbasketsv2.addpaymentinstrumenttobasketqueryparameters.__type",{"_index":817,"name":{},"parent":{"1872":{},"1873":{}}}],["shopperbasketsv2.addpriceadjustmenttobasketpathparameters",{"_index":822,"name":{},"parent":{"1883":{}}}],["shopperbasketsv2.addpriceadjustmenttobasketpathparameters.__type",{"_index":823,"name":{},"parent":{"1884":{},"1885":{}}}],["shopperbasketsv2.addpriceadjustmenttobasketqueryparameters",{"_index":820,"name":{},"parent":{"1879":{}}}],["shopperbasketsv2.addpriceadjustmenttobasketqueryparameters.__type",{"_index":821,"name":{},"parent":{"1880":{},"1881":{}}}],["shopperbasketsv2.addpricebookstobasketpathparameters",{"_index":826,"name":{},"parent":{"1890":{}}}],["shopperbasketsv2.addpricebookstobasketpathparameters.__type",{"_index":827,"name":{},"parent":{"1891":{},"1892":{}}}],["shopperbasketsv2.addpricebookstobasketqueryparameters",{"_index":824,"name":{},"parent":{"1887":{}}}],["shopperbasketsv2.addpricebookstobasketqueryparameters.__type",{"_index":825,"name":{},"parent":{"1888":{}}}],["shopperbasketsv2.addtaxesforbasketitempathparameters",{"_index":834,"name":{},"parent":{"1904":{}}}],["shopperbasketsv2.addtaxesforbasketitempathparameters.__type",{"_index":835,"name":{},"parent":{"1905":{},"1906":{},"1907":{}}}],["shopperbasketsv2.addtaxesforbasketitemqueryparameters",{"_index":832,"name":{},"parent":{"1901":{}}}],["shopperbasketsv2.addtaxesforbasketitemqueryparameters.__type",{"_index":833,"name":{},"parent":{"1902":{}}}],["shopperbasketsv2.addtaxesforbasketpathparameters",{"_index":830,"name":{},"parent":{"1897":{}}}],["shopperbasketsv2.addtaxesforbasketpathparameters.__type",{"_index":831,"name":{},"parent":{"1898":{},"1899":{}}}],["shopperbasketsv2.addtaxesforbasketqueryparameters",{"_index":828,"name":{},"parent":{"1894":{}}}],["shopperbasketsv2.addtaxesforbasketqueryparameters.__type",{"_index":829,"name":{},"parent":{"1895":{}}}],["shopperbasketsv2.createbasketpathparameters",{"_index":840,"name":{},"parent":{"1916":{}}}],["shopperbasketsv2.createbasketpathparameters.__type",{"_index":841,"name":{},"parent":{"1917":{}}}],["shopperbasketsv2.createbasketqueryparameters",{"_index":836,"name":{},"parent":{"1909":{}}}],["shopperbasketsv2.createbasketqueryparameters.__type",{"_index":837,"name":{},"parent":{"1910":{},"1911":{},"1912":{},"1913":{},"1914":{}}}],["shopperbasketsv2.createshipmentforbasketpathparameters",{"_index":844,"name":{},"parent":{"1923":{}}}],["shopperbasketsv2.createshipmentforbasketpathparameters.__type",{"_index":845,"name":{},"parent":{"1924":{},"1925":{}}}],["shopperbasketsv2.createshipmentforbasketqueryparameters",{"_index":842,"name":{},"parent":{"1919":{}}}],["shopperbasketsv2.createshipmentforbasketqueryparameters.__type",{"_index":843,"name":{},"parent":{"1920":{},"1921":{}}}],["shopperbasketsv2.deletebasketpathparameters",{"_index":848,"name":{},"parent":{"1930":{}}}],["shopperbasketsv2.deletebasketpathparameters.__type",{"_index":849,"name":{},"parent":{"1931":{},"1932":{}}}],["shopperbasketsv2.deletebasketqueryparameters",{"_index":846,"name":{},"parent":{"1927":{}}}],["shopperbasketsv2.deletebasketqueryparameters.__type",{"_index":847,"name":{},"parent":{"1928":{}}}],["shopperbasketsv2.getbasketpathparameters",{"_index":852,"name":{},"parent":{"1938":{}}}],["shopperbasketsv2.getbasketpathparameters.__type",{"_index":853,"name":{},"parent":{"1939":{},"1940":{}}}],["shopperbasketsv2.getbasketqueryparameters",{"_index":850,"name":{},"parent":{"1934":{}}}],["shopperbasketsv2.getbasketqueryparameters.__type",{"_index":851,"name":{},"parent":{"1935":{},"1936":{}}}],["shopperbasketsv2.getpaymentmethodsforbasketpathparameters",{"_index":856,"name":{},"parent":{"1946":{}}}],["shopperbasketsv2.getpaymentmethodsforbasketpathparameters.__type",{"_index":857,"name":{},"parent":{"1947":{},"1948":{}}}],["shopperbasketsv2.getpaymentmethodsforbasketqueryparameters",{"_index":854,"name":{},"parent":{"1942":{}}}],["shopperbasketsv2.getpaymentmethodsforbasketqueryparameters.__type",{"_index":855,"name":{},"parent":{"1943":{},"1944":{}}}],["shopperbasketsv2.getpricebooksforbasketpathparameters",{"_index":860,"name":{},"parent":{"1953":{}}}],["shopperbasketsv2.getpricebooksforbasketpathparameters.__type",{"_index":861,"name":{},"parent":{"1954":{},"1955":{}}}],["shopperbasketsv2.getpricebooksforbasketqueryparameters",{"_index":858,"name":{},"parent":{"1950":{}}}],["shopperbasketsv2.getpricebooksforbasketqueryparameters.__type",{"_index":859,"name":{},"parent":{"1951":{}}}],["shopperbasketsv2.getshippingmethodsforshipmentpathparameters",{"_index":864,"name":{},"parent":{"1961":{}}}],["shopperbasketsv2.getshippingmethodsforshipmentpathparameters.__type",{"_index":865,"name":{},"parent":{"1962":{},"1963":{},"1964":{}}}],["shopperbasketsv2.getshippingmethodsforshipmentqueryparameters",{"_index":862,"name":{},"parent":{"1957":{}}}],["shopperbasketsv2.getshippingmethodsforshipmentqueryparameters.__type",{"_index":863,"name":{},"parent":{"1958":{},"1959":{}}}],["shopperbasketsv2.gettaxesfrombasketpathparameters",{"_index":868,"name":{},"parent":{"1969":{}}}],["shopperbasketsv2.gettaxesfrombasketpathparameters.__type",{"_index":869,"name":{},"parent":{"1970":{},"1971":{}}}],["shopperbasketsv2.gettaxesfrombasketqueryparameters",{"_index":866,"name":{},"parent":{"1966":{}}}],["shopperbasketsv2.gettaxesfrombasketqueryparameters.__type",{"_index":867,"name":{},"parent":{"1967":{}}}],["shopperbasketsv2.mergebasketpathparameters",{"_index":872,"name":{},"parent":{"1979":{}}}],["shopperbasketsv2.mergebasketpathparameters.__type",{"_index":873,"name":{},"parent":{"1980":{}}}],["shopperbasketsv2.mergebasketqueryparameters",{"_index":870,"name":{},"parent":{"1973":{}}}],["shopperbasketsv2.mergebasketqueryparameters.__type",{"_index":871,"name":{},"parent":{"1974":{},"1975":{},"1976":{},"1977":{}}}],["shopperbasketsv2.removecouponfrombasketpathparameters",{"_index":876,"name":{},"parent":{"1986":{}}}],["shopperbasketsv2.removecouponfrombasketpathparameters.__type",{"_index":877,"name":{},"parent":{"1987":{},"1988":{},"1989":{}}}],["shopperbasketsv2.removecouponfrombasketqueryparameters",{"_index":874,"name":{},"parent":{"1982":{}}}],["shopperbasketsv2.removecouponfrombasketqueryparameters.__type",{"_index":875,"name":{},"parent":{"1983":{},"1984":{}}}],["shopperbasketsv2.removegiftcertificateitemfrombasketpathparameters",{"_index":880,"name":{},"parent":{"1995":{}}}],["shopperbasketsv2.removegiftcertificateitemfrombasketpathparameters.__type",{"_index":881,"name":{},"parent":{"1996":{},"1997":{},"1998":{}}}],["shopperbasketsv2.removegiftcertificateitemfrombasketqueryparameters",{"_index":878,"name":{},"parent":{"1991":{}}}],["shopperbasketsv2.removegiftcertificateitemfrombasketqueryparameters.__type",{"_index":879,"name":{},"parent":{"1992":{},"1993":{}}}],["shopperbasketsv2.removeitemfrombasketpathparameters",{"_index":884,"name":{},"parent":{"2004":{}}}],["shopperbasketsv2.removeitemfrombasketpathparameters.__type",{"_index":885,"name":{},"parent":{"2005":{},"2006":{},"2007":{}}}],["shopperbasketsv2.removeitemfrombasketqueryparameters",{"_index":882,"name":{},"parent":{"2000":{}}}],["shopperbasketsv2.removeitemfrombasketqueryparameters.__type",{"_index":883,"name":{},"parent":{"2001":{},"2002":{}}}],["shopperbasketsv2.removepaymentinstrumentfrombasketpathparameters",{"_index":888,"name":{},"parent":{"2013":{}}}],["shopperbasketsv2.removepaymentinstrumentfrombasketpathparameters.__type",{"_index":889,"name":{},"parent":{"2014":{},"2015":{},"2016":{}}}],["shopperbasketsv2.removepaymentinstrumentfrombasketqueryparameters",{"_index":886,"name":{},"parent":{"2009":{}}}],["shopperbasketsv2.removepaymentinstrumentfrombasketqueryparameters.__type",{"_index":887,"name":{},"parent":{"2010":{},"2011":{}}}],["shopperbasketsv2.removepriceadjustmentfrombasketpathparameters",{"_index":892,"name":{},"parent":{"2022":{}}}],["shopperbasketsv2.removepriceadjustmentfrombasketpathparameters.__type",{"_index":893,"name":{},"parent":{"2023":{},"2024":{},"2025":{}}}],["shopperbasketsv2.removepriceadjustmentfrombasketqueryparameters",{"_index":890,"name":{},"parent":{"2018":{}}}],["shopperbasketsv2.removepriceadjustmentfrombasketqueryparameters.__type",{"_index":891,"name":{},"parent":{"2019":{},"2020":{}}}],["shopperbasketsv2.removeshipmentfrombasketpathparameters",{"_index":896,"name":{},"parent":{"2031":{}}}],["shopperbasketsv2.removeshipmentfrombasketpathparameters.__type",{"_index":897,"name":{},"parent":{"2032":{},"2033":{},"2034":{}}}],["shopperbasketsv2.removeshipmentfrombasketqueryparameters",{"_index":894,"name":{},"parent":{"2027":{}}}],["shopperbasketsv2.removeshipmentfrombasketqueryparameters.__type",{"_index":895,"name":{},"parent":{"2028":{},"2029":{}}}],["shopperbasketsv2.shopperbasketsv2",{"_index":800,"name":{},"parent":{"1690":{},"1691":{},"1692":{},"1730":{},"1731":{},"1807":{},"1808":{},"1809":{},"1810":{},"1811":{},"1812":{},"1813":{},"1814":{},"1815":{},"1816":{},"1817":{},"1818":{},"1819":{},"1820":{},"1821":{},"1822":{},"1823":{},"1824":{},"1825":{},"1826":{},"1827":{},"1828":{},"1829":{},"1830":{},"1831":{},"1832":{},"1833":{},"1834":{},"1835":{},"1836":{},"1837":{},"1838":{},"1839":{},"1840":{},"1841":{},"1842":{},"1843":{}}}],["shopperbasketsv2.shopperbasketsv2.apipaths",{"_index":801,"name":{},"parent":{"1693":{},"1694":{},"1695":{},"1696":{},"1697":{},"1698":{},"1699":{},"1700":{},"1701":{},"1702":{},"1703":{},"1704":{},"1705":{},"1706":{},"1707":{},"1708":{},"1709":{},"1710":{},"1711":{},"1712":{},"1713":{},"1714":{},"1715":{},"1716":{},"1717":{},"1718":{},"1719":{},"1720":{},"1721":{},"1722":{},"1723":{},"1724":{},"1725":{},"1726":{},"1727":{},"1728":{},"1729":{}}}],["shopperbasketsv2.shopperbasketsv2.paramkeys",{"_index":802,"name":{},"parent":{"1732":{}}}],["shopperbasketsv2.shopperbasketsv2.paramkeys.__type",{"_index":803,"name":{},"parent":{"1733":{},"1734":{},"1735":{},"1736":{},"1737":{},"1738":{},"1739":{},"1740":{},"1741":{},"1742":{},"1743":{},"1744":{},"1745":{},"1746":{},"1747":{},"1748":{},"1749":{},"1750":{},"1751":{},"1752":{},"1753":{},"1754":{},"1755":{},"1756":{},"1757":{},"1758":{},"1759":{},"1760":{},"1761":{},"1762":{},"1763":{},"1764":{},"1765":{},"1766":{},"1767":{},"1768":{},"1769":{},"1770":{},"1771":{},"1772":{},"1773":{},"1774":{},"1775":{},"1776":{},"1777":{},"1778":{},"1779":{},"1780":{},"1781":{},"1782":{},"1783":{},"1784":{},"1785":{},"1786":{},"1787":{},"1788":{},"1789":{},"1790":{},"1791":{},"1792":{},"1793":{},"1794":{},"1795":{},"1796":{},"1797":{},"1798":{},"1799":{},"1800":{},"1801":{},"1802":{},"1803":{},"1804":{},"1805":{},"1806":{}}}],["shopperbasketsv2.shopperbasketsv2types",{"_index":958,"name":{},"parent":{"2390":{},"2391":{},"2392":{},"2393":{},"2394":{},"2395":{},"2396":{},"2397":{},"2398":{},"2399":{},"2400":{},"2401":{},"2402":{},"2403":{},"2404":{},"2405":{},"2406":{},"2407":{},"2408":{},"2409":{},"2410":{},"2411":{},"2412":{},"2413":{},"2414":{},"2415":{},"2416":{},"2417":{},"2418":{},"2419":{},"2420":{},"2421":{},"2422":{},"2423":{},"2424":{},"2425":{},"2426":{},"2427":{},"2428":{},"2429":{},"2430":{},"2431":{},"2432":{},"2433":{},"2434":{},"2435":{},"2436":{},"2437":{},"2438":{},"2439":{},"2440":{},"2441":{},"2442":{},"2443":{},"2444":{},"2445":{},"2446":{},"2447":{},"2448":{},"2449":{},"2450":{},"2451":{},"2452":{},"2453":{},"2454":{},"2455":{},"2456":{},"2457":{},"2458":{},"2459":{},"2460":{},"2461":{},"2462":{},"2463":{},"2464":{},"2465":{},"2466":{},"2467":{},"2468":{},"2469":{},"2470":{},"2471":{},"2472":{},"2473":{},"2474":{},"2475":{},"2476":{},"2477":{},"2478":{},"2479":{},"2480":{},"2481":{},"2482":{},"2483":{},"2484":{},"2485":{},"2486":{},"2487":{},"2488":{},"2489":{},"2490":{},"2491":{},"2492":{},"2493":{},"2494":{},"2495":{},"2496":{},"2497":{},"2498":{},"2499":{},"2500":{},"2501":{},"2502":{},"2503":{},"2504":{},"2505":{},"2506":{},"2507":{},"2508":{},"2509":{},"2510":{},"2511":{},"2512":{},"2513":{},"2514":{},"2515":{},"2516":{},"2517":{},"2518":{},"2519":{}}}],["shopperbasketsv2.transferbasketpathparameters",{"_index":900,"name":{},"parent":{"2043":{}}}],["shopperbasketsv2.transferbasketpathparameters.__type",{"_index":901,"name":{},"parent":{"2044":{}}}],["shopperbasketsv2.transferbasketqueryparameters",{"_index":898,"name":{},"parent":{"2036":{}}}],["shopperbasketsv2.transferbasketqueryparameters.__type",{"_index":899,"name":{},"parent":{"2037":{},"2038":{},"2039":{},"2040":{},"2041":{}}}],["shopperbasketsv2.updateasagentbasketpathparameters",{"_index":904,"name":{},"parent":{"2050":{}}}],["shopperbasketsv2.updateasagentbasketpathparameters.__type",{"_index":905,"name":{},"parent":{"2051":{},"2052":{}}}],["shopperbasketsv2.updateasagentbasketqueryparameters",{"_index":902,"name":{},"parent":{"2046":{}}}],["shopperbasketsv2.updateasagentbasketqueryparameters.__type",{"_index":903,"name":{},"parent":{"2047":{},"2048":{}}}],["shopperbasketsv2.updateasstorefrontbasketpathparameters",{"_index":908,"name":{},"parent":{"2059":{}}}],["shopperbasketsv2.updateasstorefrontbasketpathparameters.__type",{"_index":909,"name":{},"parent":{"2060":{},"2061":{}}}],["shopperbasketsv2.updateasstorefrontbasketqueryparameters",{"_index":906,"name":{},"parent":{"2054":{}}}],["shopperbasketsv2.updateasstorefrontbasketqueryparameters.__type",{"_index":907,"name":{},"parent":{"2055":{},"2056":{},"2057":{}}}],["shopperbasketsv2.updatebasketpathparameters",{"_index":912,"name":{},"parent":{"2068":{}}}],["shopperbasketsv2.updatebasketpathparameters.__type",{"_index":913,"name":{},"parent":{"2069":{},"2070":{}}}],["shopperbasketsv2.updatebasketqueryparameters",{"_index":910,"name":{},"parent":{"2063":{}}}],["shopperbasketsv2.updatebasketqueryparameters.__type",{"_index":911,"name":{},"parent":{"2064":{},"2065":{},"2066":{}}}],["shopperbasketsv2.updatebillingaddressforbasketpathparameters",{"_index":916,"name":{},"parent":{"2078":{}}}],["shopperbasketsv2.updatebillingaddressforbasketpathparameters.__type",{"_index":917,"name":{},"parent":{"2079":{},"2080":{}}}],["shopperbasketsv2.updatebillingaddressforbasketqueryparameters",{"_index":914,"name":{},"parent":{"2072":{}}}],["shopperbasketsv2.updatebillingaddressforbasketqueryparameters.__type",{"_index":915,"name":{},"parent":{"2073":{},"2074":{},"2075":{},"2076":{}}}],["shopperbasketsv2.updatecustomerforbasketpathparameters",{"_index":920,"name":{},"parent":{"2086":{}}}],["shopperbasketsv2.updatecustomerforbasketpathparameters.__type",{"_index":921,"name":{},"parent":{"2087":{},"2088":{}}}],["shopperbasketsv2.updatecustomerforbasketqueryparameters",{"_index":918,"name":{},"parent":{"2082":{}}}],["shopperbasketsv2.updatecustomerforbasketqueryparameters.__type",{"_index":919,"name":{},"parent":{"2083":{},"2084":{}}}],["shopperbasketsv2.updategiftcertificateiteminbasketpathparameters",{"_index":924,"name":{},"parent":{"2094":{}}}],["shopperbasketsv2.updategiftcertificateiteminbasketpathparameters.__type",{"_index":925,"name":{},"parent":{"2095":{},"2096":{},"2097":{}}}],["shopperbasketsv2.updategiftcertificateiteminbasketqueryparameters",{"_index":922,"name":{},"parent":{"2090":{}}}],["shopperbasketsv2.updategiftcertificateiteminbasketqueryparameters.__type",{"_index":923,"name":{},"parent":{"2091":{},"2092":{}}}],["shopperbasketsv2.updateiteminbasketpathparameters",{"_index":928,"name":{},"parent":{"2104":{}}}],["shopperbasketsv2.updateiteminbasketpathparameters.__type",{"_index":929,"name":{},"parent":{"2105":{},"2106":{},"2107":{}}}],["shopperbasketsv2.updateiteminbasketqueryparameters",{"_index":926,"name":{},"parent":{"2099":{}}}],["shopperbasketsv2.updateiteminbasketqueryparameters.__type",{"_index":927,"name":{},"parent":{"2100":{},"2101":{},"2102":{}}}],["shopperbasketsv2.updateitemsinbasketpathparameters",{"_index":932,"name":{},"parent":{"2114":{}}}],["shopperbasketsv2.updateitemsinbasketpathparameters.__type",{"_index":933,"name":{},"parent":{"2115":{},"2116":{}}}],["shopperbasketsv2.updateitemsinbasketqueryparameters",{"_index":930,"name":{},"parent":{"2109":{}}}],["shopperbasketsv2.updateitemsinbasketqueryparameters.__type",{"_index":931,"name":{},"parent":{"2110":{},"2111":{},"2112":{}}}],["shopperbasketsv2.updatepaymentinstrumentinbasketpathparameters",{"_index":936,"name":{},"parent":{"2123":{}}}],["shopperbasketsv2.updatepaymentinstrumentinbasketpathparameters.__type",{"_index":937,"name":{},"parent":{"2124":{},"2125":{},"2126":{}}}],["shopperbasketsv2.updatepaymentinstrumentinbasketqueryparameters",{"_index":934,"name":{},"parent":{"2118":{}}}],["shopperbasketsv2.updatepaymentinstrumentinbasketqueryparameters.__type",{"_index":935,"name":{},"parent":{"2119":{},"2120":{},"2121":{}}}],["shopperbasketsv2.updatepriceadjustmentinbasketpathparameters",{"_index":940,"name":{},"parent":{"2131":{}}}],["shopperbasketsv2.updatepriceadjustmentinbasketpathparameters.__type",{"_index":941,"name":{},"parent":{"2132":{},"2133":{},"2134":{}}}],["shopperbasketsv2.updatepriceadjustmentinbasketqueryparameters",{"_index":938,"name":{},"parent":{"2128":{}}}],["shopperbasketsv2.updatepriceadjustmentinbasketqueryparameters.__type",{"_index":939,"name":{},"parent":{"2129":{}}}],["shopperbasketsv2.updateshipmentforbasketpathparameters",{"_index":944,"name":{},"parent":{"2140":{}}}],["shopperbasketsv2.updateshipmentforbasketpathparameters.__type",{"_index":945,"name":{},"parent":{"2141":{},"2142":{},"2143":{}}}],["shopperbasketsv2.updateshipmentforbasketqueryparameters",{"_index":942,"name":{},"parent":{"2136":{}}}],["shopperbasketsv2.updateshipmentforbasketqueryparameters.__type",{"_index":943,"name":{},"parent":{"2137":{},"2138":{}}}],["shopperbasketsv2.updateshippingaddressforshipmentpathparameters",{"_index":948,"name":{},"parent":{"2151":{}}}],["shopperbasketsv2.updateshippingaddressforshipmentpathparameters.__type",{"_index":949,"name":{},"parent":{"2152":{},"2153":{},"2154":{}}}],["shopperbasketsv2.updateshippingaddressforshipmentqueryparameters",{"_index":946,"name":{},"parent":{"2145":{}}}],["shopperbasketsv2.updateshippingaddressforshipmentqueryparameters.__type",{"_index":947,"name":{},"parent":{"2146":{},"2147":{},"2148":{},"2149":{}}}],["shopperbasketsv2.updateshippingmethodforshipmentpathparameters",{"_index":952,"name":{},"parent":{"2160":{}}}],["shopperbasketsv2.updateshippingmethodforshipmentpathparameters.__type",{"_index":953,"name":{},"parent":{"2161":{},"2162":{},"2163":{}}}],["shopperbasketsv2.updateshippingmethodforshipmentqueryparameters",{"_index":950,"name":{},"parent":{"2156":{}}}],["shopperbasketsv2.updateshippingmethodforshipmentqueryparameters.__type",{"_index":951,"name":{},"parent":{"2157":{},"2158":{}}}],["shopperbasketsv2parameters",{"_index":956,"name":{"2166":{},"2248":{},"2332":{}},"parent":{}}],["shopperbasketsv2pathparameters",{"_index":954,"name":{"2164":{},"2246":{},"2330":{},"2390":{}},"parent":{}}],["shopperbasketsv2queryparameters",{"_index":955,"name":{"2165":{},"2247":{},"2331":{},"2391":{}},"parent":{}}],["shopperbasketsv2types",{"_index":957,"name":{"2389":{}},"parent":{}}],["shopperconfigurations",{"_index":959,"name":{"2520":{},"2528":{},"2553":{},"2560":{}},"parent":{"2521":{},"2522":{},"2523":{},"2524":{},"2525":{},"2526":{},"2527":{},"2528":{},"2539":{},"2542":{},"2545":{},"2546":{},"2547":{},"2548":{},"2549":{},"2550":{},"2551":{},"2552":{},"2553":{},"2554":{},"2555":{},"2556":{},"2557":{},"2558":{},"2559":{},"2560":{},"2561":{},"2562":{},"2563":{},"2564":{}}}],["shopperconfigurations.getconfigurationspathparameters",{"_index":972,"name":{},"parent":{"2543":{}}}],["shopperconfigurations.getconfigurationspathparameters.__type",{"_index":973,"name":{},"parent":{"2544":{}}}],["shopperconfigurations.getconfigurationsqueryparameters",{"_index":969,"name":{},"parent":{"2540":{}}}],["shopperconfigurations.getconfigurationsqueryparameters.__type",{"_index":970,"name":{},"parent":{"2541":{}}}],["shopperconfigurations.shopperconfigurations",{"_index":962,"name":{},"parent":{"2529":{},"2530":{},"2531":{},"2533":{},"2534":{},"2538":{}}}],["shopperconfigurations.shopperconfigurations.apipaths",{"_index":964,"name":{},"parent":{"2532":{}}}],["shopperconfigurations.shopperconfigurations.paramkeys",{"_index":965,"name":{},"parent":{"2535":{}}}],["shopperconfigurations.shopperconfigurations.paramkeys.__type",{"_index":966,"name":{},"parent":{"2536":{},"2537":{}}}],["shopperconfigurations.shopperconfigurationstypes",{"_index":978,"name":{},"parent":{"2565":{},"2566":{},"2567":{},"2568":{},"2569":{},"2570":{},"2571":{}}}],["shopperconfigurationsparameters",{"_index":976,"name":{"2547":{},"2552":{},"2559":{}},"parent":{}}],["shopperconfigurationspathparameters",{"_index":974,"name":{"2545":{},"2550":{},"2557":{},"2565":{}},"parent":{}}],["shopperconfigurationsqueryparameters",{"_index":975,"name":{"2546":{},"2551":{},"2558":{},"2566":{}},"parent":{}}],["shopperconfigurationstypes",{"_index":977,"name":{"2564":{}},"parent":{}}],["shopperconsents",{"_index":979,"name":{"2572":{},"2604":{},"2660":{},"2672":{}},"parent":{"2573":{},"2574":{},"2575":{},"2576":{},"2577":{},"2578":{},"2579":{},"2580":{},"2581":{},"2582":{},"2583":{},"2584":{},"2585":{},"2586":{},"2587":{},"2588":{},"2589":{},"2590":{},"2591":{},"2592":{},"2593":{},"2594":{},"2595":{},"2596":{},"2597":{},"2598":{},"2599":{},"2600":{},"2601":{},"2602":{},"2603":{},"2604":{},"2623":{},"2624":{},"2630":{},"2633":{},"2637":{},"2640":{},"2644":{},"2647":{},"2648":{},"2649":{},"2650":{},"2651":{},"2652":{},"2653":{},"2654":{},"2655":{},"2656":{},"2657":{},"2658":{},"2659":{},"2660":{},"2661":{},"2662":{},"2663":{},"2664":{},"2665":{},"2666":{},"2667":{},"2668":{},"2669":{},"2670":{},"2671":{},"2672":{},"2673":{},"2674":{},"2675":{},"2676":{},"2677":{},"2678":{},"2679":{},"2680":{},"2681":{},"2682":{},"2683":{},"2684":{},"2685":{},"2686":{},"2687":{},"2688":{}}}],["shopperconsents.getsubscriptionspathparameters",{"_index":1010,"name":{},"parent":{"2631":{}}}],["shopperconsents.getsubscriptionspathparameters.__type",{"_index":1011,"name":{},"parent":{"2632":{}}}],["shopperconsents.getsubscriptionsqueryparameters",{"_index":1005,"name":{},"parent":{"2625":{}}}],["shopperconsents.getsubscriptionsqueryparameters.__type",{"_index":1006,"name":{},"parent":{"2626":{},"2627":{},"2628":{},"2629":{}}}],["shopperconsents.shopperconsents",{"_index":993,"name":{},"parent":{"2605":{},"2606":{},"2607":{},"2611":{},"2612":{},"2620":{},"2621":{},"2622":{}}}],["shopperconsents.shopperconsents.apipaths",{"_index":995,"name":{},"parent":{"2608":{},"2609":{},"2610":{}}}],["shopperconsents.shopperconsents.paramkeys",{"_index":998,"name":{},"parent":{"2613":{}}}],["shopperconsents.shopperconsents.paramkeys.__type",{"_index":999,"name":{},"parent":{"2614":{},"2615":{},"2616":{},"2617":{},"2618":{},"2619":{}}}],["shopperconsents.shopperconsentstypes",{"_index":1028,"name":{},"parent":{"2689":{},"2690":{},"2691":{},"2692":{},"2693":{},"2694":{},"2695":{},"2696":{},"2697":{},"2698":{},"2699":{},"2700":{},"2701":{},"2702":{},"2703":{},"2704":{},"2705":{},"2706":{},"2707":{},"2708":{},"2709":{},"2710":{},"2711":{},"2712":{}}}],["shopperconsents.updatesubscriptionpathparameters",{"_index":1016,"name":{},"parent":{"2638":{}}}],["shopperconsents.updatesubscriptionpathparameters.__type",{"_index":1017,"name":{},"parent":{"2639":{}}}],["shopperconsents.updatesubscriptionqueryparameters",{"_index":1013,"name":{},"parent":{"2634":{}}}],["shopperconsents.updatesubscriptionqueryparameters.__type",{"_index":1014,"name":{},"parent":{"2635":{},"2636":{}}}],["shopperconsents.updatesubscriptionspathparameters",{"_index":1022,"name":{},"parent":{"2645":{}}}],["shopperconsents.updatesubscriptionspathparameters.__type",{"_index":1023,"name":{},"parent":{"2646":{}}}],["shopperconsents.updatesubscriptionsqueryparameters",{"_index":1019,"name":{},"parent":{"2641":{}}}],["shopperconsents.updatesubscriptionsqueryparameters.__type",{"_index":1020,"name":{},"parent":{"2642":{},"2643":{}}}],["shopperconsentsparameters",{"_index":1026,"name":{"2649":{},"2659":{},"2671":{}},"parent":{}}],["shopperconsentspathparameters",{"_index":1024,"name":{"2647":{},"2657":{},"2669":{},"2689":{}},"parent":{}}],["shopperconsentsqueryparameters",{"_index":1025,"name":{"2648":{},"2658":{},"2670":{},"2690":{}},"parent":{}}],["shopperconsentstypes",{"_index":1027,"name":{"2688":{}},"parent":{}}],["shoppercontext",{"_index":1029,"name":{"2713":{},"2717":{},"2719":{},"2812":{},"2826":{}},"parent":{"2714":{},"2715":{},"2716":{},"2717":{},"2718":{},"2719":{},"2720":{},"2721":{},"2744":{},"2748":{},"2752":{},"2755":{},"2759":{},"2762":{},"2766":{},"2770":{},"2774":{},"2775":{},"2776":{},"2777":{},"2778":{},"2779":{},"2780":{},"2781":{},"2782":{},"2783":{},"2784":{},"2785":{},"2786":{},"2787":{},"2788":{},"2789":{},"2790":{},"2791":{},"2792":{},"2793":{},"2794":{},"2795":{},"2796":{},"2797":{},"2798":{},"2799":{},"2800":{},"2801":{},"2802":{},"2803":{},"2804":{},"2805":{},"2806":{},"2807":{},"2808":{},"2809":{},"2810":{},"2811":{},"2812":{},"2813":{},"2814":{}}}],["shoppercontext.createshoppercontextpathparameters",{"_index":1049,"name":{},"parent":{"2749":{}}}],["shoppercontext.createshoppercontextpathparameters.__type",{"_index":1050,"name":{},"parent":{"2750":{},"2751":{}}}],["shoppercontext.createshoppercontextqueryparameters",{"_index":1045,"name":{},"parent":{"2745":{}}}],["shoppercontext.createshoppercontextqueryparameters.__type",{"_index":1046,"name":{},"parent":{"2746":{},"2747":{}}}],["shoppercontext.deleteshoppercontextpathparameters",{"_index":1055,"name":{},"parent":{"2756":{}}}],["shoppercontext.deleteshoppercontextpathparameters.__type",{"_index":1056,"name":{},"parent":{"2757":{},"2758":{}}}],["shoppercontext.deleteshoppercontextqueryparameters",{"_index":1052,"name":{},"parent":{"2753":{}}}],["shoppercontext.deleteshoppercontextqueryparameters.__type",{"_index":1053,"name":{},"parent":{"2754":{}}}],["shoppercontext.getshoppercontextpathparameters",{"_index":1061,"name":{},"parent":{"2763":{}}}],["shoppercontext.getshoppercontextpathparameters.__type",{"_index":1062,"name":{},"parent":{"2764":{},"2765":{}}}],["shoppercontext.getshoppercontextqueryparameters",{"_index":1058,"name":{},"parent":{"2760":{}}}],["shoppercontext.getshoppercontextqueryparameters.__type",{"_index":1059,"name":{},"parent":{"2761":{}}}],["shoppercontext.shoppercontexts",{"_index":1032,"name":{},"parent":{"2722":{},"2723":{},"2724":{},"2729":{},"2730":{},"2740":{},"2741":{},"2742":{},"2743":{}}}],["shoppercontext.shoppercontexts.apipaths",{"_index":1034,"name":{},"parent":{"2725":{},"2726":{},"2727":{},"2728":{}}}],["shoppercontext.shoppercontexts.paramkeys",{"_index":1038,"name":{},"parent":{"2731":{}}}],["shoppercontext.shoppercontexts.paramkeys.__type",{"_index":1039,"name":{},"parent":{"2732":{},"2733":{},"2734":{},"2735":{},"2736":{},"2737":{},"2738":{},"2739":{}}}],["shoppercontext.shoppercontextstypes",{"_index":1076,"name":{},"parent":{"2815":{},"2816":{},"2817":{},"2818":{},"2819":{},"2820":{},"2821":{},"2822":{},"2823":{},"2824":{},"2825":{},"2826":{},"2827":{}}}],["shoppercontext.updateshoppercontextpathparameters",{"_index":1067,"name":{},"parent":{"2771":{}}}],["shoppercontext.updateshoppercontextpathparameters.__type",{"_index":1068,"name":{},"parent":{"2772":{},"2773":{}}}],["shoppercontext.updateshoppercontextqueryparameters",{"_index":1064,"name":{},"parent":{"2767":{}}}],["shoppercontext.updateshoppercontextqueryparameters.__type",{"_index":1065,"name":{},"parent":{"2768":{},"2769":{}}}],["shoppercontextgeolocation",{"_index":1030,"name":{"2716":{},"2720":{},"2813":{},"2827":{}},"parent":{}}],["shoppercontextparameters",{"_index":1074,"name":{"2779":{},"2793":{},"2809":{}},"parent":{}}],["shoppercontextpathparameters",{"_index":1072,"name":{"2777":{},"2791":{},"2807":{}},"parent":{}}],["shoppercontextqueryparameters",{"_index":1073,"name":{"2778":{},"2792":{},"2808":{}},"parent":{}}],["shoppercontexts",{"_index":1031,"name":{"2721":{},"2794":{},"2810":{}},"parent":{}}],["shoppercontextsparameters",{"_index":1071,"name":{"2776":{},"2790":{},"2806":{}},"parent":{}}],["shoppercontextspathparameters",{"_index":1069,"name":{"2774":{},"2788":{},"2804":{},"2815":{}},"parent":{}}],["shoppercontextsqueryparameters",{"_index":1070,"name":{"2775":{},"2789":{},"2805":{},"2816":{}},"parent":{}}],["shoppercontextstypes",{"_index":1075,"name":{"2814":{}},"parent":{}}],["shoppercustomers",{"_index":1077,"name":{"2828":{},"3048":{},"3510":{},"3582":{}},"parent":{"2829":{},"2830":{},"2831":{},"2832":{},"2833":{},"2834":{},"2835":{},"2836":{},"2837":{},"2838":{},"2839":{},"2840":{},"2841":{},"2842":{},"2843":{},"2844":{},"2845":{},"2846":{},"2847":{},"2848":{},"2849":{},"2850":{},"2851":{},"2852":{},"2853":{},"2854":{},"2855":{},"2856":{},"2857":{},"2858":{},"2859":{},"2860":{},"2861":{},"2862":{},"2863":{},"2864":{},"2865":{},"2866":{},"2867":{},"2868":{},"2869":{},"2870":{},"2871":{},"2872":{},"2873":{},"2874":{},"2875":{},"2876":{},"2877":{},"2878":{},"2879":{},"2880":{},"2881":{},"2882":{},"2883":{},"2884":{},"2885":{},"2886":{},"2887":{},"2888":{},"2889":{},"2890":{},"2891":{},"2892":{},"2893":{},"2894":{},"2895":{},"2896":{},"2897":{},"2898":{},"2899":{},"2900":{},"2901":{},"2902":{},"2903":{},"2904":{},"2905":{},"2906":{},"2907":{},"2908":{},"2909":{},"2910":{},"2911":{},"2912":{},"2913":{},"2914":{},"2915":{},"2916":{},"2917":{},"2918":{},"2919":{},"2920":{},"2921":{},"2922":{},"2923":{},"2924":{},"2925":{},"2926":{},"2927":{},"2928":{},"2929":{},"2930":{},"2931":{},"2932":{},"2933":{},"2934":{},"2935":{},"2936":{},"2937":{},"2938":{},"2939":{},"2940":{},"2941":{},"2942":{},"2943":{},"2944":{},"2945":{},"2946":{},"2947":{},"2948":{},"2949":{},"2950":{},"2951":{},"2952":{},"2953":{},"2954":{},"2955":{},"2956":{},"2957":{},"2958":{},"2959":{},"2960":{},"2961":{},"2962":{},"2963":{},"2964":{},"2965":{},"2966":{},"2967":{},"2968":{},"2969":{},"2970":{},"2971":{},"2972":{},"2973":{},"2974":{},"2975":{},"2976":{},"2977":{},"2978":{},"2979":{},"2980":{},"2981":{},"2982":{},"2983":{},"2984":{},"2985":{},"2986":{},"2987":{},"2988":{},"2989":{},"2990":{},"2991":{},"2992":{},"2993":{},"2994":{},"2995":{},"2996":{},"2997":{},"2998":{},"2999":{},"3000":{},"3001":{},"3002":{},"3003":{},"3004":{},"3005":{},"3006":{},"3007":{},"3008":{},"3009":{},"3010":{},"3011":{},"3012":{},"3013":{},"3014":{},"3015":{},"3016":{},"3017":{},"3018":{},"3019":{},"3020":{},"3021":{},"3022":{},"3023":{},"3024":{},"3025":{},"3026":{},"3027":{},"3028":{},"3029":{},"3030":{},"3031":{},"3032":{},"3033":{},"3034":{},"3035":{},"3036":{},"3037":{},"3038":{},"3039":{},"3040":{},"3041":{},"3042":{},"3043":{},"3044":{},"3045":{},"3046":{},"3047":{},"3048":{},"3183":{},"3184":{},"3185":{},"3186":{},"3189":{},"3193":{},"3196":{},"3200":{},"3203":{},"3207":{},"3210":{},"3215":{},"3218":{},"3223":{},"3227":{},"3232":{},"3235":{},"3240":{},"3243":{},"3249":{},"3253":{},"3257":{},"3260":{},"3265":{},"3268":{},"3272":{},"3282":{},"3286":{},"3289":{},"3294":{},"3297":{},"3302":{},"3305":{},"3311":{},"3314":{},"3318":{},"3323":{},"3326":{},"3329":{},"3334":{},"3337":{},"3341":{},"3345":{},"3349":{},"3355":{},"3358":{},"3361":{},"3364":{},"3367":{},"3370":{},"3373":{},"3376":{},"3379":{},"3384":{},"3387":{},"3390":{},"3393":{},"3397":{},"3400":{},"3405":{},"3408":{},"3412":{},"3415":{},"3420":{},"3423":{},"3428":{},"3431":{},"3437":{},"3438":{},"3439":{},"3440":{},"3441":{},"3442":{},"3443":{},"3444":{},"3445":{},"3446":{},"3447":{},"3448":{},"3449":{},"3450":{},"3451":{},"3452":{},"3453":{},"3454":{},"3455":{},"3456":{},"3457":{},"3458":{},"3459":{},"3460":{},"3461":{},"3462":{},"3463":{},"3464":{},"3465":{},"3466":{},"3467":{},"3468":{},"3469":{},"3470":{},"3471":{},"3472":{},"3473":{},"3474":{},"3475":{},"3476":{},"3477":{},"3478":{},"3479":{},"3480":{},"3481":{},"3482":{},"3483":{},"3484":{},"3485":{},"3486":{},"3487":{},"3488":{},"3489":{},"3490":{},"3491":{},"3492":{},"3493":{},"3494":{},"3495":{},"3496":{},"3497":{},"3498":{},"3499":{},"3500":{},"3501":{},"3502":{},"3503":{},"3504":{},"3505":{},"3506":{},"3507":{},"3508":{},"3509":{},"3510":{},"3511":{},"3512":{},"3513":{},"3514":{},"3515":{},"3516":{},"3517":{},"3518":{},"3519":{},"3520":{},"3521":{},"3522":{},"3523":{},"3524":{},"3525":{},"3526":{},"3527":{},"3528":{},"3529":{},"3530":{},"3531":{},"3532":{},"3533":{},"3534":{},"3535":{},"3536":{},"3537":{},"3538":{},"3539":{},"3540":{},"3541":{},"3542":{},"3543":{},"3544":{},"3545":{},"3546":{},"3547":{},"3548":{},"3549":{},"3550":{},"3551":{},"3552":{},"3553":{},"3554":{},"3555":{},"3556":{},"3557":{},"3558":{},"3559":{},"3560":{},"3561":{},"3562":{},"3563":{},"3564":{},"3565":{},"3566":{},"3567":{},"3568":{},"3569":{},"3570":{},"3571":{},"3572":{},"3573":{},"3574":{},"3575":{},"3576":{},"3577":{},"3578":{},"3579":{},"3580":{},"3581":{},"3582":{},"3583":{},"3584":{},"3585":{},"3586":{},"3587":{},"3588":{},"3589":{},"3590":{},"3591":{},"3592":{},"3593":{},"3594":{},"3595":{},"3596":{},"3597":{},"3598":{},"3599":{},"3600":{},"3601":{},"3602":{},"3603":{},"3604":{},"3605":{},"3606":{},"3607":{},"3608":{},"3609":{},"3610":{},"3611":{},"3612":{},"3613":{},"3614":{},"3615":{},"3616":{},"3617":{},"3618":{},"3619":{},"3620":{},"3621":{},"3622":{},"3623":{},"3624":{},"3625":{},"3626":{},"3627":{},"3628":{},"3629":{},"3630":{},"3631":{},"3632":{},"3633":{},"3634":{},"3635":{},"3636":{},"3637":{},"3638":{},"3639":{},"3640":{},"3641":{},"3642":{},"3643":{},"3644":{},"3645":{},"3646":{},"3647":{},"3648":{},"3649":{},"3650":{},"3651":{},"3652":{},"3653":{},"3654":{},"3655":{},"3656":{},"3657":{},"3658":{},"3659":{},"3660":{},"3661":{},"3662":{},"3663":{},"3664":{},"3665":{},"3666":{},"3667":{},"3668":{},"3669":{},"3670":{},"3671":{},"3672":{},"3673":{},"3674":{},"3675":{},"3676":{},"3677":{},"3678":{},"3679":{},"3680":{},"3681":{},"3682":{},"3683":{},"3684":{},"3685":{},"3686":{},"3687":{},"3688":{},"3689":{},"3690":{},"3691":{},"3692":{}}}],["shoppercustomers.createcustomeraddresspathparameters",{"_index":1226,"name":{},"parent":{"3190":{}}}],["shoppercustomers.createcustomeraddresspathparameters.__type",{"_index":1228,"name":{},"parent":{"3191":{},"3192":{}}}],["shoppercustomers.createcustomeraddressqueryparameters",{"_index":1223,"name":{},"parent":{"3187":{}}}],["shoppercustomers.createcustomeraddressqueryparameters.__type",{"_index":1224,"name":{},"parent":{"3188":{}}}],["shoppercustomers.createcustomerpaymentinstrumentpathparameters",{"_index":1233,"name":{},"parent":{"3197":{}}}],["shoppercustomers.createcustomerpaymentinstrumentpathparameters.__type",{"_index":1234,"name":{},"parent":{"3198":{},"3199":{}}}],["shoppercustomers.createcustomerpaymentinstrumentqueryparameters",{"_index":1230,"name":{},"parent":{"3194":{}}}],["shoppercustomers.createcustomerpaymentinstrumentqueryparameters.__type",{"_index":1231,"name":{},"parent":{"3195":{}}}],["shoppercustomers.createcustomerproductlistitempathparameters",{"_index":1245,"name":{},"parent":{"3211":{}}}],["shoppercustomers.createcustomerproductlistitempathparameters.__type",{"_index":1247,"name":{},"parent":{"3212":{},"3213":{},"3214":{}}}],["shoppercustomers.createcustomerproductlistitemqueryparameters",{"_index":1242,"name":{},"parent":{"3208":{}}}],["shoppercustomers.createcustomerproductlistitemqueryparameters.__type",{"_index":1243,"name":{},"parent":{"3209":{}}}],["shoppercustomers.createcustomerproductlistpathparameters",{"_index":1239,"name":{},"parent":{"3204":{}}}],["shoppercustomers.createcustomerproductlistpathparameters.__type",{"_index":1240,"name":{},"parent":{"3205":{},"3206":{}}}],["shoppercustomers.createcustomerproductlistqueryparameters",{"_index":1236,"name":{},"parent":{"3201":{}}}],["shoppercustomers.createcustomerproductlistqueryparameters.__type",{"_index":1237,"name":{},"parent":{"3202":{}}}],["shoppercustomers.deletecustomerpaymentinstrumentpathparameters",{"_index":1252,"name":{},"parent":{"3219":{}}}],["shoppercustomers.deletecustomerpaymentinstrumentpathparameters.__type",{"_index":1253,"name":{},"parent":{"3220":{},"3221":{},"3222":{}}}],["shoppercustomers.deletecustomerpaymentinstrumentqueryparameters",{"_index":1249,"name":{},"parent":{"3216":{}}}],["shoppercustomers.deletecustomerpaymentinstrumentqueryparameters.__type",{"_index":1250,"name":{},"parent":{"3217":{}}}],["shoppercustomers.deletecustomerpaymentmethodreferencepathparameters",{"_index":1259,"name":{},"parent":{"3228":{}}}],["shoppercustomers.deletecustomerpaymentmethodreferencepathparameters.__type",{"_index":1261,"name":{},"parent":{"3229":{},"3230":{},"3231":{}}}],["shoppercustomers.deletecustomerpaymentmethodreferencequeryparameters",{"_index":1255,"name":{},"parent":{"3224":{}}}],["shoppercustomers.deletecustomerpaymentmethodreferencequeryparameters.__type",{"_index":1256,"name":{},"parent":{"3225":{},"3226":{}}}],["shoppercustomers.deletecustomerproductlistitempathparameters",{"_index":1272,"name":{},"parent":{"3244":{}}}],["shoppercustomers.deletecustomerproductlistitempathparameters.__type",{"_index":1273,"name":{},"parent":{"3245":{},"3246":{},"3247":{},"3248":{}}}],["shoppercustomers.deletecustomerproductlistitemqueryparameters",{"_index":1269,"name":{},"parent":{"3241":{}}}],["shoppercustomers.deletecustomerproductlistitemqueryparameters.__type",{"_index":1270,"name":{},"parent":{"3242":{}}}],["shoppercustomers.deletecustomerproductlistpathparameters",{"_index":1266,"name":{},"parent":{"3236":{}}}],["shoppercustomers.deletecustomerproductlistpathparameters.__type",{"_index":1267,"name":{},"parent":{"3237":{},"3238":{},"3239":{}}}],["shoppercustomers.deletecustomerproductlistqueryparameters",{"_index":1263,"name":{},"parent":{"3233":{}}}],["shoppercustomers.deletecustomerproductlistqueryparameters.__type",{"_index":1264,"name":{},"parent":{"3234":{}}}],["shoppercustomers.getcustomeraddresspathparameters",{"_index":1284,"name":{},"parent":{"3261":{}}}],["shoppercustomers.getcustomeraddresspathparameters.__type",{"_index":1286,"name":{},"parent":{"3262":{},"3263":{},"3264":{}}}],["shoppercustomers.getcustomeraddressqueryparameters",{"_index":1281,"name":{},"parent":{"3258":{}}}],["shoppercustomers.getcustomeraddressqueryparameters.__type",{"_index":1282,"name":{},"parent":{"3259":{}}}],["shoppercustomers.getcustomerbasketspathparameters",{"_index":1291,"name":{},"parent":{"3269":{}}}],["shoppercustomers.getcustomerbasketspathparameters.__type",{"_index":1292,"name":{},"parent":{"3270":{},"3271":{}}}],["shoppercustomers.getcustomerbasketsqueryparameters",{"_index":1288,"name":{},"parent":{"3266":{}}}],["shoppercustomers.getcustomerbasketsqueryparameters.__type",{"_index":1289,"name":{},"parent":{"3267":{}}}],["shoppercustomers.getcustomerorderspathparameters",{"_index":1302,"name":{},"parent":{"3283":{}}}],["shoppercustomers.getcustomerorderspathparameters.__type",{"_index":1303,"name":{},"parent":{"3284":{},"3285":{}}}],["shoppercustomers.getcustomerordersqueryparameters",{"_index":1294,"name":{},"parent":{"3273":{}}}],["shoppercustomers.getcustomerordersqueryparameters.__type",{"_index":1296,"name":{},"parent":{"3274":{},"3275":{},"3276":{},"3277":{},"3278":{},"3279":{},"3280":{},"3281":{}}}],["shoppercustomers.getcustomerpathparameters",{"_index":1278,"name":{},"parent":{"3254":{}}}],["shoppercustomers.getcustomerpathparameters.__type",{"_index":1279,"name":{},"parent":{"3255":{},"3256":{}}}],["shoppercustomers.getcustomerpaymentinstrumentpathparameters",{"_index":1308,"name":{},"parent":{"3290":{}}}],["shoppercustomers.getcustomerpaymentinstrumentpathparameters.__type",{"_index":1309,"name":{},"parent":{"3291":{},"3292":{},"3293":{}}}],["shoppercustomers.getcustomerpaymentinstrumentqueryparameters",{"_index":1305,"name":{},"parent":{"3287":{}}}],["shoppercustomers.getcustomerpaymentinstrumentqueryparameters.__type",{"_index":1306,"name":{},"parent":{"3288":{}}}],["shoppercustomers.getcustomerproductlistitempathparameters",{"_index":1320,"name":{},"parent":{"3306":{}}}],["shoppercustomers.getcustomerproductlistitempathparameters.__type",{"_index":1321,"name":{},"parent":{"3307":{},"3308":{},"3309":{},"3310":{}}}],["shoppercustomers.getcustomerproductlistitemqueryparameters",{"_index":1317,"name":{},"parent":{"3303":{}}}],["shoppercustomers.getcustomerproductlistitemqueryparameters.__type",{"_index":1318,"name":{},"parent":{"3304":{}}}],["shoppercustomers.getcustomerproductlistpathparameters",{"_index":1314,"name":{},"parent":{"3298":{}}}],["shoppercustomers.getcustomerproductlistpathparameters.__type",{"_index":1315,"name":{},"parent":{"3299":{},"3300":{},"3301":{}}}],["shoppercustomers.getcustomerproductlistqueryparameters",{"_index":1311,"name":{},"parent":{"3295":{}}}],["shoppercustomers.getcustomerproductlistqueryparameters.__type",{"_index":1312,"name":{},"parent":{"3296":{}}}],["shoppercustomers.getcustomerproductlistspathparameters",{"_index":1326,"name":{},"parent":{"3315":{}}}],["shoppercustomers.getcustomerproductlistspathparameters.__type",{"_index":1327,"name":{},"parent":{"3316":{},"3317":{}}}],["shoppercustomers.getcustomerproductlistsqueryparameters",{"_index":1323,"name":{},"parent":{"3312":{}}}],["shoppercustomers.getcustomerproductlistsqueryparameters.__type",{"_index":1324,"name":{},"parent":{"3313":{}}}],["shoppercustomers.getcustomerqueryparameters",{"_index":1275,"name":{},"parent":{"3250":{}}}],["shoppercustomers.getcustomerqueryparameters.__type",{"_index":1276,"name":{},"parent":{"3251":{},"3252":{}}}],["shoppercustomers.getexternalprofilepathparameters",{"_index":1334,"name":{},"parent":{"3324":{}}}],["shoppercustomers.getexternalprofilepathparameters.__type",{"_index":1335,"name":{},"parent":{"3325":{}}}],["shoppercustomers.getexternalprofilequeryparameters",{"_index":1329,"name":{},"parent":{"3319":{}}}],["shoppercustomers.getexternalprofilequeryparameters.__type",{"_index":1331,"name":{},"parent":{"3320":{},"3321":{},"3322":{}}}],["shoppercustomers.getproductlistitempathparameters",{"_index":1340,"name":{},"parent":{"3330":{}}}],["shoppercustomers.getproductlistitempathparameters.__type",{"_index":1341,"name":{},"parent":{"3331":{},"3332":{},"3333":{}}}],["shoppercustomers.getproductlistitemqueryparameters",{"_index":1337,"name":{},"parent":{"3327":{}}}],["shoppercustomers.getproductlistitemqueryparameters.__type",{"_index":1338,"name":{},"parent":{"3328":{}}}],["shoppercustomers.getpublicproductlistitemspathparameters",{"_index":1352,"name":{},"parent":{"3346":{}}}],["shoppercustomers.getpublicproductlistitemspathparameters.__type",{"_index":1353,"name":{},"parent":{"3347":{},"3348":{}}}],["shoppercustomers.getpublicproductlistitemsqueryparameters",{"_index":1349,"name":{},"parent":{"3342":{}}}],["shoppercustomers.getpublicproductlistitemsqueryparameters.__type",{"_index":1350,"name":{},"parent":{"3343":{},"3344":{}}}],["shoppercustomers.getpublicproductlistpathparameters",{"_index":1346,"name":{},"parent":{"3338":{}}}],["shoppercustomers.getpublicproductlistpathparameters.__type",{"_index":1347,"name":{},"parent":{"3339":{},"3340":{}}}],["shoppercustomers.getpublicproductlistqueryparameters",{"_index":1343,"name":{},"parent":{"3335":{}}}],["shoppercustomers.getpublicproductlistqueryparameters.__type",{"_index":1344,"name":{},"parent":{"3336":{}}}],["shoppercustomers.getpublicproductlistsbysearchtermpathparameters",{"_index":1360,"name":{},"parent":{"3356":{}}}],["shoppercustomers.getpublicproductlistsbysearchtermpathparameters.__type",{"_index":1361,"name":{},"parent":{"3357":{}}}],["shoppercustomers.getpublicproductlistsbysearchtermqueryparameters",{"_index":1355,"name":{},"parent":{"3350":{}}}],["shoppercustomers.getpublicproductlistsbysearchtermqueryparameters.__type",{"_index":1356,"name":{},"parent":{"3351":{},"3352":{},"3353":{},"3354":{}}}],["shoppercustomers.getresetpasswordtokenpathparameters",{"_index":1366,"name":{},"parent":{"3362":{}}}],["shoppercustomers.getresetpasswordtokenpathparameters.__type",{"_index":1367,"name":{},"parent":{"3363":{}}}],["shoppercustomers.getresetpasswordtokenqueryparameters",{"_index":1363,"name":{},"parent":{"3359":{}}}],["shoppercustomers.getresetpasswordtokenqueryparameters.__type",{"_index":1364,"name":{},"parent":{"3360":{}}}],["shoppercustomers.registercustomerpathparameters",{"_index":1372,"name":{},"parent":{"3368":{}}}],["shoppercustomers.registercustomerpathparameters.__type",{"_index":1373,"name":{},"parent":{"3369":{}}}],["shoppercustomers.registercustomerqueryparameters",{"_index":1369,"name":{},"parent":{"3365":{}}}],["shoppercustomers.registercustomerqueryparameters.__type",{"_index":1370,"name":{},"parent":{"3366":{}}}],["shoppercustomers.registerexternalprofilepathparameters",{"_index":1378,"name":{},"parent":{"3374":{}}}],["shoppercustomers.registerexternalprofilepathparameters.__type",{"_index":1379,"name":{},"parent":{"3375":{}}}],["shoppercustomers.registerexternalprofilequeryparameters",{"_index":1375,"name":{},"parent":{"3371":{}}}],["shoppercustomers.registerexternalprofilequeryparameters.__type",{"_index":1376,"name":{},"parent":{"3372":{}}}],["shoppercustomers.removecustomeraddresspathparameters",{"_index":1384,"name":{},"parent":{"3380":{}}}],["shoppercustomers.removecustomeraddresspathparameters.__type",{"_index":1385,"name":{},"parent":{"3381":{},"3382":{},"3383":{}}}],["shoppercustomers.removecustomeraddressqueryparameters",{"_index":1381,"name":{},"parent":{"3377":{}}}],["shoppercustomers.removecustomeraddressqueryparameters.__type",{"_index":1382,"name":{},"parent":{"3378":{}}}],["shoppercustomers.resetpasswordpathparameters",{"_index":1388,"name":{},"parent":{"3388":{}}}],["shoppercustomers.resetpasswordpathparameters.__type",{"_index":1389,"name":{},"parent":{"3389":{}}}],["shoppercustomers.resetpasswordqueryparameters",{"_index":1386,"name":{},"parent":{"3385":{}}}],["shoppercustomers.resetpasswordqueryparameters.__type",{"_index":1387,"name":{},"parent":{"3386":{}}}],["shoppercustomers.shoppercustomers",{"_index":1153,"name":{},"parent":{"3049":{},"3050":{},"3051":{},"3084":{},"3085":{},"3151":{},"3152":{},"3153":{},"3154":{},"3155":{},"3156":{},"3157":{},"3158":{},"3159":{},"3160":{},"3161":{},"3162":{},"3163":{},"3164":{},"3165":{},"3166":{},"3167":{},"3168":{},"3169":{},"3170":{},"3171":{},"3172":{},"3173":{},"3174":{},"3175":{},"3176":{},"3177":{},"3178":{},"3179":{},"3180":{},"3181":{},"3182":{}}}],["shoppercustomers.shoppercustomers.apipaths",{"_index":1155,"name":{},"parent":{"3052":{},"3053":{},"3054":{},"3055":{},"3056":{},"3057":{},"3058":{},"3059":{},"3060":{},"3061":{},"3062":{},"3063":{},"3064":{},"3065":{},"3066":{},"3067":{},"3068":{},"3069":{},"3070":{},"3071":{},"3072":{},"3073":{},"3074":{},"3075":{},"3076":{},"3077":{},"3078":{},"3079":{},"3080":{},"3081":{},"3082":{},"3083":{}}}],["shoppercustomers.shoppercustomers.paramkeys",{"_index":1186,"name":{},"parent":{"3086":{}}}],["shoppercustomers.shoppercustomers.paramkeys.__type",{"_index":1187,"name":{},"parent":{"3087":{},"3088":{},"3089":{},"3090":{},"3091":{},"3092":{},"3093":{},"3094":{},"3095":{},"3096":{},"3097":{},"3098":{},"3099":{},"3100":{},"3101":{},"3102":{},"3103":{},"3104":{},"3105":{},"3106":{},"3107":{},"3108":{},"3109":{},"3110":{},"3111":{},"3112":{},"3113":{},"3114":{},"3115":{},"3116":{},"3117":{},"3118":{},"3119":{},"3120":{},"3121":{},"3122":{},"3123":{},"3124":{},"3125":{},"3126":{},"3127":{},"3128":{},"3129":{},"3130":{},"3131":{},"3132":{},"3133":{},"3134":{},"3135":{},"3136":{},"3137":{},"3138":{},"3139":{},"3140":{},"3141":{},"3142":{},"3143":{},"3144":{},"3145":{},"3146":{},"3147":{},"3148":{},"3149":{},"3150":{}}}],["shoppercustomers.shoppercustomerstypes",{"_index":1430,"name":{},"parent":{"3693":{},"3694":{},"3695":{},"3696":{},"3697":{},"3698":{},"3699":{},"3700":{},"3701":{},"3702":{},"3703":{},"3704":{},"3705":{},"3706":{},"3707":{},"3708":{},"3709":{},"3710":{},"3711":{},"3712":{},"3713":{},"3714":{},"3715":{},"3716":{},"3717":{},"3718":{},"3719":{},"3720":{},"3721":{},"3722":{},"3723":{},"3724":{},"3725":{},"3726":{},"3727":{},"3728":{},"3729":{},"3730":{},"3731":{},"3732":{},"3733":{},"3734":{},"3735":{},"3736":{},"3737":{},"3738":{},"3739":{},"3740":{},"3741":{},"3742":{},"3743":{},"3744":{},"3745":{},"3746":{},"3747":{},"3748":{},"3749":{},"3750":{},"3751":{},"3752":{},"3753":{},"3754":{},"3755":{},"3756":{},"3757":{},"3758":{},"3759":{},"3760":{},"3761":{},"3762":{},"3763":{},"3764":{},"3765":{},"3766":{},"3767":{},"3768":{},"3769":{},"3770":{},"3771":{},"3772":{},"3773":{},"3774":{},"3775":{},"3776":{},"3777":{},"3778":{},"3779":{},"3780":{},"3781":{},"3782":{},"3783":{},"3784":{},"3785":{},"3786":{},"3787":{},"3788":{},"3789":{},"3790":{},"3791":{},"3792":{},"3793":{},"3794":{},"3795":{},"3796":{},"3797":{},"3798":{},"3799":{},"3800":{},"3801":{},"3802":{},"3803":{},"3804":{},"3805":{},"3806":{},"3807":{},"3808":{},"3809":{},"3810":{},"3811":{},"3812":{},"3813":{},"3814":{},"3815":{},"3816":{},"3817":{},"3818":{},"3819":{},"3820":{},"3821":{},"3822":{},"3823":{},"3824":{},"3825":{},"3826":{},"3827":{},"3828":{},"3829":{},"3830":{},"3831":{},"3832":{},"3833":{},"3834":{},"3835":{},"3836":{},"3837":{},"3838":{},"3839":{},"3840":{},"3841":{},"3842":{},"3843":{},"3844":{},"3845":{},"3846":{},"3847":{},"3848":{},"3849":{},"3850":{},"3851":{},"3852":{},"3853":{},"3854":{},"3855":{},"3856":{},"3857":{},"3858":{},"3859":{},"3860":{},"3861":{},"3862":{},"3863":{},"3864":{},"3865":{},"3866":{},"3867":{},"3868":{},"3869":{},"3870":{}}}],["shoppercustomers.updatecustomeraddresspathparameters",{"_index":1400,"name":{},"parent":{"3401":{}}}],["shoppercustomers.updatecustomeraddresspathparameters.__type",{"_index":1401,"name":{},"parent":{"3402":{},"3403":{},"3404":{}}}],["shoppercustomers.updatecustomeraddressqueryparameters",{"_index":1397,"name":{},"parent":{"3398":{}}}],["shoppercustomers.updatecustomeraddressqueryparameters.__type",{"_index":1398,"name":{},"parent":{"3399":{}}}],["shoppercustomers.updatecustomerpasswordpathparameters",{"_index":1406,"name":{},"parent":{"3409":{}}}],["shoppercustomers.updatecustomerpasswordpathparameters.__type",{"_index":1407,"name":{},"parent":{"3410":{},"3411":{}}}],["shoppercustomers.updatecustomerpasswordqueryparameters",{"_index":1403,"name":{},"parent":{"3406":{}}}],["shoppercustomers.updatecustomerpasswordqueryparameters.__type",{"_index":1404,"name":{},"parent":{"3407":{}}}],["shoppercustomers.updatecustomerpathparameters",{"_index":1394,"name":{},"parent":{"3394":{}}}],["shoppercustomers.updatecustomerpathparameters.__type",{"_index":1395,"name":{},"parent":{"3395":{},"3396":{}}}],["shoppercustomers.updatecustomerpaymentinstrumentpathparameters",{"_index":1412,"name":{},"parent":{"3416":{}}}],["shoppercustomers.updatecustomerpaymentinstrumentpathparameters.__type",{"_index":1413,"name":{},"parent":{"3417":{},"3418":{},"3419":{}}}],["shoppercustomers.updatecustomerpaymentinstrumentqueryparameters",{"_index":1409,"name":{},"parent":{"3413":{}}}],["shoppercustomers.updatecustomerpaymentinstrumentqueryparameters.__type",{"_index":1410,"name":{},"parent":{"3414":{}}}],["shoppercustomers.updatecustomerproductlistitempathparameters",{"_index":1424,"name":{},"parent":{"3432":{}}}],["shoppercustomers.updatecustomerproductlistitempathparameters.__type",{"_index":1425,"name":{},"parent":{"3433":{},"3434":{},"3435":{},"3436":{}}}],["shoppercustomers.updatecustomerproductlistitemqueryparameters",{"_index":1421,"name":{},"parent":{"3429":{}}}],["shoppercustomers.updatecustomerproductlistitemqueryparameters.__type",{"_index":1422,"name":{},"parent":{"3430":{}}}],["shoppercustomers.updatecustomerproductlistpathparameters",{"_index":1418,"name":{},"parent":{"3424":{}}}],["shoppercustomers.updatecustomerproductlistpathparameters.__type",{"_index":1419,"name":{},"parent":{"3425":{},"3426":{},"3427":{}}}],["shoppercustomers.updatecustomerproductlistqueryparameters",{"_index":1415,"name":{},"parent":{"3421":{}}}],["shoppercustomers.updatecustomerproductlistqueryparameters.__type",{"_index":1416,"name":{},"parent":{"3422":{}}}],["shoppercustomers.updatecustomerqueryparameters",{"_index":1391,"name":{},"parent":{"3391":{}}}],["shoppercustomers.updatecustomerqueryparameters.__type",{"_index":1392,"name":{},"parent":{"3392":{}}}],["shoppercustomersparameters",{"_index":1428,"name":{"3439":{},"3509":{},"3581":{}},"parent":{}}],["shoppercustomerspathparameters",{"_index":1426,"name":{"3437":{},"3507":{},"3579":{},"3693":{}},"parent":{}}],["shoppercustomersqueryparameters",{"_index":1427,"name":{"3438":{},"3508":{},"3580":{},"3694":{}},"parent":{}}],["shoppercustomerstypes",{"_index":1429,"name":{"3692":{}},"parent":{}}],["shopperexperience",{"_index":1431,"name":{"3871":{},"3903":{},"4026":{},"4045":{}},"parent":{"3872":{},"3873":{},"3874":{},"3875":{},"3876":{},"3877":{},"3878":{},"3879":{},"3880":{},"3881":{},"3882":{},"3883":{},"3884":{},"3885":{},"3886":{},"3887":{},"3888":{},"3889":{},"3890":{},"3891":{},"3892":{},"3893":{},"3894":{},"3895":{},"3896":{},"3897":{},"3898":{},"3899":{},"3900":{},"3901":{},"3902":{},"3903":{},"3938":{},"3942":{},"3946":{},"3951":{},"3955":{},"3961":{},"3964":{},"3969":{},"3972":{},"3978":{},"3982":{},"3991":{},"3994":{},"4003":{},"4006":{},"4007":{},"4008":{},"4009":{},"4010":{},"4011":{},"4012":{},"4013":{},"4014":{},"4015":{},"4016":{},"4017":{},"4018":{},"4019":{},"4020":{},"4021":{},"4022":{},"4023":{},"4024":{},"4025":{},"4026":{},"4027":{},"4028":{},"4029":{},"4030":{},"4031":{},"4032":{},"4033":{},"4034":{},"4035":{},"4036":{},"4037":{},"4038":{},"4039":{},"4040":{},"4041":{},"4042":{},"4043":{},"4044":{},"4045":{},"4046":{},"4047":{},"4048":{},"4049":{},"4050":{},"4051":{},"4052":{},"4053":{},"4054":{},"4055":{},"4056":{},"4057":{},"4058":{},"4059":{},"4060":{},"4061":{}}}],["shopperexperience.getcontentfolderpathparameters",{"_index":1473,"name":{},"parent":{"3952":{}}}],["shopperexperience.getcontentfolderpathparameters.__type",{"_index":1474,"name":{},"parent":{"3953":{},"3954":{}}}],["shopperexperience.getcontentfolderqueryparameters",{"_index":1469,"name":{},"parent":{"3947":{}}}],["shopperexperience.getcontentfolderqueryparameters.__type",{"_index":1471,"name":{},"parent":{"3948":{},"3949":{},"3950":{}}}],["shopperexperience.getcontentfolderspathparameters",{"_index":1480,"name":{},"parent":{"3962":{}}}],["shopperexperience.getcontentfolderspathparameters.__type",{"_index":1481,"name":{},"parent":{"3963":{}}}],["shopperexperience.getcontentfoldersqueryparameters",{"_index":1476,"name":{},"parent":{"3956":{}}}],["shopperexperience.getcontentfoldersqueryparameters.__type",{"_index":1478,"name":{},"parent":{"3957":{},"3958":{},"3959":{},"3960":{}}}],["shopperexperience.getcontentpathparameters",{"_index":1465,"name":{},"parent":{"3943":{}}}],["shopperexperience.getcontentpathparameters.__type",{"_index":1466,"name":{},"parent":{"3944":{},"3945":{}}}],["shopperexperience.getcontentqueryparameters",{"_index":1462,"name":{},"parent":{"3939":{}}}],["shopperexperience.getcontentqueryparameters.__type",{"_index":1463,"name":{},"parent":{"3940":{},"3941":{}}}],["shopperexperience.getmultiplecontentpathparameters",{"_index":1486,"name":{},"parent":{"3970":{}}}],["shopperexperience.getmultiplecontentpathparameters.__type",{"_index":1487,"name":{},"parent":{"3971":{}}}],["shopperexperience.getmultiplecontentqueryparameters",{"_index":1483,"name":{},"parent":{"3965":{}}}],["shopperexperience.getmultiplecontentqueryparameters.__type",{"_index":1484,"name":{},"parent":{"3966":{},"3967":{},"3968":{}}}],["shopperexperience.getpagepathparameters",{"_index":1493,"name":{},"parent":{"3979":{}}}],["shopperexperience.getpagepathparameters.__type",{"_index":1495,"name":{},"parent":{"3980":{},"3981":{}}}],["shopperexperience.getpagequeryparameters",{"_index":1489,"name":{},"parent":{"3973":{}}}],["shopperexperience.getpagequeryparameters.__type",{"_index":1491,"name":{},"parent":{"3974":{},"3975":{},"3976":{},"3977":{}}}],["shopperexperience.getpagespathparameters",{"_index":1503,"name":{},"parent":{"3992":{}}}],["shopperexperience.getpagespathparameters.__type",{"_index":1504,"name":{},"parent":{"3993":{}}}],["shopperexperience.getpagesqueryparameters",{"_index":1497,"name":{},"parent":{"3983":{}}}],["shopperexperience.getpagesqueryparameters.__type",{"_index":1499,"name":{},"parent":{"3984":{},"3985":{},"3986":{},"3987":{},"3988":{},"3989":{},"3990":{}}}],["shopperexperience.searchcontentpathparameters",{"_index":1512,"name":{},"parent":{"4004":{}}}],["shopperexperience.searchcontentpathparameters.__type",{"_index":1513,"name":{},"parent":{"4005":{}}}],["shopperexperience.searchcontentqueryparameters",{"_index":1506,"name":{},"parent":{"3995":{}}}],["shopperexperience.searchcontentqueryparameters.__type",{"_index":1508,"name":{},"parent":{"3996":{},"3997":{},"3998":{},"3999":{},"4000":{},"4001":{},"4002":{}}}],["shopperexperience.shopperexperience",{"_index":1443,"name":{},"parent":{"3904":{},"3905":{},"3906":{},"3914":{},"3915":{},"3931":{},"3932":{},"3933":{},"3934":{},"3935":{},"3936":{},"3937":{}}}],["shopperexperience.shopperexperience.apipaths",{"_index":1445,"name":{},"parent":{"3907":{},"3908":{},"3909":{},"3910":{},"3911":{},"3912":{},"3913":{}}}],["shopperexperience.shopperexperience.paramkeys",{"_index":1452,"name":{},"parent":{"3916":{}}}],["shopperexperience.shopperexperience.paramkeys.__type",{"_index":1453,"name":{},"parent":{"3917":{},"3918":{},"3919":{},"3920":{},"3921":{},"3922":{},"3923":{},"3924":{},"3925":{},"3926":{},"3927":{},"3928":{},"3929":{},"3930":{}}}],["shopperexperience.shopperexperiencetypes",{"_index":1518,"name":{},"parent":{"4062":{},"4063":{},"4064":{},"4065":{},"4066":{},"4067":{},"4068":{},"4069":{},"4070":{},"4071":{},"4072":{},"4073":{},"4074":{},"4075":{},"4076":{},"4077":{},"4078":{},"4079":{},"4080":{},"4081":{},"4082":{},"4083":{},"4084":{},"4085":{},"4086":{},"4087":{},"4088":{},"4089":{},"4090":{},"4091":{},"4092":{}}}],["shopperexperienceparameters",{"_index":1516,"name":{"4008":{},"4025":{},"4044":{}},"parent":{}}],["shopperexperiencepathparameters",{"_index":1514,"name":{"4006":{},"4023":{},"4042":{},"4062":{}},"parent":{}}],["shopperexperiencequeryparameters",{"_index":1515,"name":{"4007":{},"4024":{},"4043":{},"4063":{}},"parent":{}}],["shopperexperiencetypes",{"_index":1517,"name":{"4061":{}},"parent":{}}],["shoppergiftcertificates",{"_index":1519,"name":{"4093":{},"4103":{},"4128":{},"4135":{}},"parent":{"4094":{},"4095":{},"4096":{},"4097":{},"4098":{},"4099":{},"4100":{},"4101":{},"4102":{},"4103":{},"4114":{},"4117":{},"4120":{},"4121":{},"4122":{},"4123":{},"4124":{},"4125":{},"4126":{},"4127":{},"4128":{},"4129":{},"4130":{},"4131":{},"4132":{},"4133":{},"4134":{},"4135":{},"4136":{},"4137":{},"4138":{},"4139":{},"4140":{}}}],["shoppergiftcertificates.getgiftcertificatepathparameters",{"_index":1533,"name":{},"parent":{"4118":{}}}],["shoppergiftcertificates.getgiftcertificatepathparameters.__type",{"_index":1534,"name":{},"parent":{"4119":{}}}],["shoppergiftcertificates.getgiftcertificatequeryparameters",{"_index":1530,"name":{},"parent":{"4115":{}}}],["shoppergiftcertificates.getgiftcertificatequeryparameters.__type",{"_index":1531,"name":{},"parent":{"4116":{}}}],["shoppergiftcertificates.shoppergiftcertificates",{"_index":1523,"name":{},"parent":{"4104":{},"4105":{},"4106":{},"4108":{},"4109":{},"4113":{}}}],["shoppergiftcertificates.shoppergiftcertificates.apipaths",{"_index":1525,"name":{},"parent":{"4107":{}}}],["shoppergiftcertificates.shoppergiftcertificates.paramkeys",{"_index":1526,"name":{},"parent":{"4110":{}}}],["shoppergiftcertificates.shoppergiftcertificates.paramkeys.__type",{"_index":1527,"name":{},"parent":{"4111":{},"4112":{}}}],["shoppergiftcertificates.shoppergiftcertificatestypes",{"_index":1539,"name":{},"parent":{"4141":{},"4142":{},"4143":{},"4144":{},"4145":{},"4146":{},"4147":{},"4148":{}}}],["shoppergiftcertificatesparameters",{"_index":1537,"name":{"4122":{},"4127":{},"4134":{}},"parent":{}}],["shoppergiftcertificatespathparameters",{"_index":1535,"name":{"4120":{},"4125":{},"4132":{},"4141":{}},"parent":{}}],["shoppergiftcertificatesqueryparameters",{"_index":1536,"name":{"4121":{},"4126":{},"4133":{},"4142":{}},"parent":{}}],["shoppergiftcertificatestypes",{"_index":1538,"name":{"4140":{}},"parent":{}}],["shopperlogin",{"_index":42,"name":{"49":{},"133":{},"632":{},"4235":{}},"parent":{"50":{},"77":{},"78":{},"79":{},"80":{},"81":{},"82":{},"83":{},"84":{},"85":{},"86":{},"87":{},"88":{},"89":{},"90":{},"91":{},"92":{},"93":{},"94":{},"95":{},"96":{},"97":{},"98":{},"99":{},"100":{},"101":{},"102":{},"103":{},"104":{},"105":{},"106":{},"107":{},"108":{},"109":{},"110":{},"111":{},"112":{},"113":{},"114":{},"115":{},"116":{},"117":{},"118":{},"119":{},"120":{},"121":{},"122":{},"123":{},"124":{},"125":{},"126":{},"127":{},"128":{},"129":{},"130":{},"131":{},"132":{},"133":{},"240":{},"241":{},"242":{},"243":{},"244":{},"245":{},"246":{},"247":{},"248":{},"249":{},"250":{},"251":{},"252":{},"253":{},"254":{},"255":{},"257":{},"260":{},"270":{},"282":{},"285":{},"288":{},"291":{},"304":{},"306":{},"309":{},"320":{},"323":{},"328":{},"331":{},"335":{},"337":{},"340":{},"342":{},"345":{},"347":{},"350":{},"361":{},"363":{},"366":{},"369":{},"373":{},"375":{},"378":{},"386":{},"388":{},"391":{},"402":{},"404":{},"407":{},"420":{},"422":{},"425":{},"437":{},"446":{},"449":{},"451":{},"454":{},"465":{},"468":{},"471":{},"473":{},"476":{},"478":{},"481":{},"485":{},"491":{},"494":{},"496":{},"499":{},"508":{},"510":{},"513":{},"517":{},"519":{},"522":{},"528":{},"530":{},"533":{},"541":{},"542":{},"543":{},"544":{},"545":{},"546":{},"547":{},"548":{},"549":{},"550":{},"551":{},"552":{},"553":{},"554":{},"555":{},"556":{},"557":{},"558":{},"559":{},"560":{},"561":{},"562":{},"563":{},"564":{},"565":{},"566":{},"567":{},"568":{},"569":{},"570":{},"571":{},"572":{},"573":{},"574":{},"575":{},"576":{},"577":{},"578":{},"579":{},"580":{},"581":{},"582":{},"583":{},"584":{},"585":{},"586":{},"587":{},"588":{},"589":{},"590":{},"591":{},"592":{},"593":{},"594":{},"595":{},"596":{},"597":{},"598":{},"599":{},"600":{},"601":{},"602":{},"603":{},"604":{},"605":{},"606":{},"607":{},"608":{},"609":{},"610":{},"611":{},"612":{},"613":{},"614":{},"615":{},"616":{},"617":{},"618":{},"619":{},"620":{},"621":{},"622":{},"623":{},"624":{},"625":{},"626":{},"627":{},"628":{},"629":{},"630":{},"631":{},"632":{},"4149":{},"4150":{},"4151":{},"4152":{},"4153":{},"4154":{},"4155":{},"4156":{},"4157":{},"4158":{},"4159":{},"4160":{},"4161":{},"4162":{},"4163":{},"4164":{},"4165":{},"4166":{},"4167":{},"4168":{},"4169":{},"4170":{},"4171":{},"4172":{},"4173":{},"4174":{},"4175":{},"4176":{},"4177":{},"4178":{},"4179":{},"4180":{},"4181":{},"4182":{},"4183":{},"4184":{},"4185":{},"4186":{},"4187":{},"4188":{},"4189":{},"4190":{},"4191":{},"4192":{},"4193":{},"4194":{},"4195":{},"4196":{},"4197":{},"4198":{},"4199":{},"4200":{},"4201":{},"4202":{},"4203":{},"4204":{},"4205":{},"4206":{},"4207":{},"4208":{},"4209":{},"4210":{},"4211":{},"4212":{},"4213":{},"4214":{},"4215":{},"4216":{},"4217":{},"4218":{},"4219":{},"4220":{},"4221":{},"4222":{},"4223":{},"4224":{},"4225":{},"4226":{},"4227":{},"4228":{},"4229":{},"4230":{},"4231":{},"4232":{},"4233":{},"4234":{},"4235":{},"4236":{},"4237":{},"4238":{},"4239":{},"4240":{},"4241":{},"4242":{},"4243":{},"4244":{},"4245":{},"4246":{},"4247":{},"4248":{},"4249":{},"4250":{},"4251":{},"4252":{},"4253":{},"4254":{},"4255":{},"4256":{},"4257":{},"4258":{},"4259":{},"4260":{},"4261":{},"4262":{},"4263":{},"4264":{}}}],["shopperlogin.authenticatecustomerbodytype",{"_index":175,"name":{},"parent":{"261":{}}}],["shopperlogin.authenticatecustomerbodytype.__type",{"_index":177,"name":{},"parent":{"262":{},"263":{},"264":{},"265":{},"266":{},"267":{},"268":{},"269":{}}}],["shopperlogin.authenticatecustomerpathparameters",{"_index":171,"name":{},"parent":{"258":{}}}],["shopperlogin.authenticatecustomerpathparameters.__type",{"_index":173,"name":{},"parent":{"259":{}}}],["shopperlogin.authenticatecustomerqueryparameters",{"_index":169,"name":{},"parent":{"256":{}}}],["shopperlogin.authorizecustomerpathparameters",{"_index":191,"name":{},"parent":{"283":{}}}],["shopperlogin.authorizecustomerpathparameters.__type",{"_index":192,"name":{},"parent":{"284":{}}}],["shopperlogin.authorizecustomerqueryparameters",{"_index":186,"name":{},"parent":{"271":{}}}],["shopperlogin.authorizecustomerqueryparameters.__type",{"_index":187,"name":{},"parent":{"272":{},"273":{},"274":{},"275":{},"276":{},"277":{},"278":{},"279":{},"280":{},"281":{}}}],["shopperlogin.authorizepasswordlesscustomerbodytype",{"_index":201,"name":{},"parent":{"292":{}}}],["shopperlogin.authorizepasswordlesscustomerbodytype.__type",{"_index":203,"name":{},"parent":{"293":{},"294":{},"295":{},"296":{},"297":{},"298":{},"299":{},"300":{},"301":{},"302":{},"303":{}}}],["shopperlogin.authorizepasswordlesscustomerpathparameters",{"_index":198,"name":{},"parent":{"289":{}}}],["shopperlogin.authorizepasswordlesscustomerpathparameters.__type",{"_index":199,"name":{},"parent":{"290":{}}}],["shopperlogin.authorizepasswordlesscustomerqueryparameters",{"_index":194,"name":{},"parent":{"286":{}}}],["shopperlogin.authorizepasswordlesscustomerqueryparameters.__type",{"_index":196,"name":{},"parent":{"287":{}}}],["shopperlogin.authorizewebauthnregistrationbodytype",{"_index":218,"name":{},"parent":{"310":{}}}],["shopperlogin.authorizewebauthnregistrationbodytype.__type",{"_index":219,"name":{},"parent":{"311":{},"312":{},"313":{},"314":{},"315":{},"316":{},"317":{},"318":{},"319":{}}}],["shopperlogin.authorizewebauthnregistrationpathparameters",{"_index":215,"name":{},"parent":{"307":{}}}],["shopperlogin.authorizewebauthnregistrationpathparameters.__type",{"_index":216,"name":{},"parent":{"308":{}}}],["shopperlogin.authorizewebauthnregistrationqueryparameters",{"_index":213,"name":{},"parent":{"305":{}}}],["shopperlogin.deletepasskeycredentialpathparameters",{"_index":225,"name":{},"parent":{"324":{}}}],["shopperlogin.deletepasskeycredentialpathparameters.__type",{"_index":226,"name":{},"parent":{"325":{},"326":{},"327":{}}}],["shopperlogin.deletepasskeycredentialqueryparameters",{"_index":222,"name":{},"parent":{"321":{}}}],["shopperlogin.deletepasskeycredentialqueryparameters.__type",{"_index":223,"name":{},"parent":{"322":{}}}],["shopperlogin.deletepasskeyuserpathparameters",{"_index":233,"name":{},"parent":{"332":{}}}],["shopperlogin.deletepasskeyuserpathparameters.__type",{"_index":234,"name":{},"parent":{"333":{},"334":{}}}],["shopperlogin.deletepasskeyuserqueryparameters",{"_index":230,"name":{},"parent":{"329":{}}}],["shopperlogin.deletepasskeyuserqueryparameters.__type",{"_index":231,"name":{},"parent":{"330":{}}}],["shopperlogin.finishwebauthnauthenticationpathparameters",{"_index":238,"name":{},"parent":{"338":{}}}],["shopperlogin.finishwebauthnauthenticationpathparameters.__type",{"_index":239,"name":{},"parent":{"339":{}}}],["shopperlogin.finishwebauthnauthenticationqueryparameters",{"_index":236,"name":{},"parent":{"336":{}}}],["shopperlogin.finishwebauthnuserregistrationpathparameters",{"_index":243,"name":{},"parent":{"343":{}}}],["shopperlogin.finishwebauthnuserregistrationpathparameters.__type",{"_index":244,"name":{},"parent":{"344":{}}}],["shopperlogin.finishwebauthnuserregistrationqueryparameters",{"_index":241,"name":{},"parent":{"341":{}}}],["shopperlogin.getaccesstokenbodytype",{"_index":251,"name":{},"parent":{"351":{}}}],["shopperlogin.getaccesstokenbodytype.__type",{"_index":253,"name":{},"parent":{"352":{},"353":{},"354":{},"355":{},"356":{},"357":{},"358":{},"359":{},"360":{}}}],["shopperlogin.getaccesstokenpathparameters",{"_index":248,"name":{},"parent":{"348":{}}}],["shopperlogin.getaccesstokenpathparameters.__type",{"_index":249,"name":{},"parent":{"349":{}}}],["shopperlogin.getaccesstokenqueryparameters",{"_index":246,"name":{},"parent":{"346":{}}}],["shopperlogin.getjwksuripathparameters",{"_index":261,"name":{},"parent":{"364":{}}}],["shopperlogin.getjwksuripathparameters.__type",{"_index":262,"name":{},"parent":{"365":{}}}],["shopperlogin.getjwksuriqueryparameters",{"_index":259,"name":{},"parent":{"362":{}}}],["shopperlogin.getpasskeyuserbyloginidpathparameters",{"_index":267,"name":{},"parent":{"370":{}}}],["shopperlogin.getpasskeyuserbyloginidpathparameters.__type",{"_index":268,"name":{},"parent":{"371":{},"372":{}}}],["shopperlogin.getpasskeyuserbyloginidqueryparameters",{"_index":264,"name":{},"parent":{"367":{}}}],["shopperlogin.getpasskeyuserbyloginidqueryparameters.__type",{"_index":265,"name":{},"parent":{"368":{}}}],["shopperlogin.getpasswordlessaccesstokenbodytype",{"_index":275,"name":{},"parent":{"379":{}}}],["shopperlogin.getpasswordlessaccesstokenbodytype.__type",{"_index":276,"name":{},"parent":{"380":{},"381":{},"382":{},"383":{},"384":{},"385":{}}}],["shopperlogin.getpasswordlessaccesstokenpathparameters",{"_index":272,"name":{},"parent":{"376":{}}}],["shopperlogin.getpasswordlessaccesstokenpathparameters.__type",{"_index":273,"name":{},"parent":{"377":{}}}],["shopperlogin.getpasswordlessaccesstokenqueryparameters",{"_index":270,"name":{},"parent":{"374":{}}}],["shopperlogin.getpasswordresettokenbodytype",{"_index":285,"name":{},"parent":{"392":{}}}],["shopperlogin.getpasswordresettokenbodytype.__type",{"_index":286,"name":{},"parent":{"393":{},"394":{},"395":{},"396":{},"397":{},"398":{},"399":{},"400":{},"401":{}}}],["shopperlogin.getpasswordresettokenpathparameters",{"_index":282,"name":{},"parent":{"389":{}}}],["shopperlogin.getpasswordresettokenpathparameters.__type",{"_index":283,"name":{},"parent":{"390":{}}}],["shopperlogin.getpasswordresettokenqueryparameters",{"_index":280,"name":{},"parent":{"387":{}}}],["shopperlogin.getsessionbridgeaccesstokenbodytype",{"_index":293,"name":{},"parent":{"408":{}}}],["shopperlogin.getsessionbridgeaccesstokenbodytype.__type",{"_index":294,"name":{},"parent":{"409":{},"410":{},"411":{},"412":{},"413":{},"414":{},"415":{},"416":{},"417":{},"418":{},"419":{}}}],["shopperlogin.getsessionbridgeaccesstokenpathparameters",{"_index":290,"name":{},"parent":{"405":{}}}],["shopperlogin.getsessionbridgeaccesstokenpathparameters.__type",{"_index":291,"name":{},"parent":{"406":{}}}],["shopperlogin.getsessionbridgeaccesstokenqueryparameters",{"_index":288,"name":{},"parent":{"403":{}}}],["shopperlogin.gettrustedagentaccesstokenbodytype",{"_index":304,"name":{},"parent":{"426":{}}}],["shopperlogin.gettrustedagentaccesstokenbodytype.__type",{"_index":306,"name":{},"parent":{"427":{},"428":{},"429":{},"430":{},"431":{},"432":{},"433":{},"434":{},"435":{},"436":{}}}],["shopperlogin.gettrustedagentaccesstokenpathparameters",{"_index":301,"name":{},"parent":{"423":{}}}],["shopperlogin.gettrustedagentaccesstokenpathparameters.__type",{"_index":302,"name":{},"parent":{"424":{}}}],["shopperlogin.gettrustedagentaccesstokenqueryparameters",{"_index":299,"name":{},"parent":{"421":{}}}],["shopperlogin.gettrustedagentauthorizationtokenpathparameters",{"_index":312,"name":{},"parent":{"447":{}}}],["shopperlogin.gettrustedagentauthorizationtokenpathparameters.__type",{"_index":313,"name":{},"parent":{"448":{}}}],["shopperlogin.gettrustedagentauthorizationtokenqueryparameters",{"_index":309,"name":{},"parent":{"438":{}}}],["shopperlogin.gettrustedagentauthorizationtokenqueryparameters.__type",{"_index":310,"name":{},"parent":{"439":{},"440":{},"441":{},"442":{},"443":{},"444":{},"445":{}}}],["shopperlogin.gettrustedsystemaccesstokenbodytype",{"_index":320,"name":{},"parent":{"455":{}}}],["shopperlogin.gettrustedsystemaccesstokenbodytype.__type",{"_index":321,"name":{},"parent":{"456":{},"457":{},"458":{},"459":{},"460":{},"461":{},"462":{},"463":{},"464":{}}}],["shopperlogin.gettrustedsystemaccesstokenpathparameters",{"_index":317,"name":{},"parent":{"452":{}}}],["shopperlogin.gettrustedsystemaccesstokenpathparameters.__type",{"_index":318,"name":{},"parent":{"453":{}}}],["shopperlogin.gettrustedsystemaccesstokenqueryparameters",{"_index":315,"name":{},"parent":{"450":{}}}],["shopperlogin.getuserinfopathparameters",{"_index":327,"name":{},"parent":{"469":{}}}],["shopperlogin.getuserinfopathparameters.__type",{"_index":328,"name":{},"parent":{"470":{}}}],["shopperlogin.getuserinfoqueryparameters",{"_index":324,"name":{},"parent":{"466":{}}}],["shopperlogin.getuserinfoqueryparameters.__type",{"_index":325,"name":{},"parent":{"467":{}}}],["shopperlogin.getwellknownopenidconfigurationpathparameters",{"_index":332,"name":{},"parent":{"474":{}}}],["shopperlogin.getwellknownopenidconfigurationpathparameters.__type",{"_index":333,"name":{},"parent":{"475":{}}}],["shopperlogin.getwellknownopenidconfigurationqueryparameters",{"_index":330,"name":{},"parent":{"472":{}}}],["shopperlogin.introspecttokenbodytype",{"_index":340,"name":{},"parent":{"482":{}}}],["shopperlogin.introspecttokenbodytype.__type",{"_index":342,"name":{},"parent":{"483":{},"484":{}}}],["shopperlogin.introspecttokenpathparameters",{"_index":337,"name":{},"parent":{"479":{}}}],["shopperlogin.introspecttokenpathparameters.__type",{"_index":338,"name":{},"parent":{"480":{}}}],["shopperlogin.introspecttokenqueryparameters",{"_index":335,"name":{},"parent":{"477":{}}}],["shopperlogin.logoutcustomerpathparameters",{"_index":348,"name":{},"parent":{"492":{}}}],["shopperlogin.logoutcustomerpathparameters.__type",{"_index":349,"name":{},"parent":{"493":{}}}],["shopperlogin.logoutcustomerqueryparameters",{"_index":345,"name":{},"parent":{"486":{}}}],["shopperlogin.logoutcustomerqueryparameters.__type",{"_index":346,"name":{},"parent":{"487":{},"488":{},"489":{},"490":{}}}],["shopperlogin.resetpasswordbodytype",{"_index":356,"name":{},"parent":{"500":{}}}],["shopperlogin.resetpasswordbodytype.__type",{"_index":357,"name":{},"parent":{"501":{},"502":{},"503":{},"504":{},"505":{},"506":{},"507":{}}}],["shopperlogin.resetpasswordpathparameters",{"_index":353,"name":{},"parent":{"497":{}}}],["shopperlogin.resetpasswordpathparameters.__type",{"_index":354,"name":{},"parent":{"498":{}}}],["shopperlogin.resetpasswordqueryparameters",{"_index":351,"name":{},"parent":{"495":{}}}],["shopperlogin.revoketokenbodytype",{"_index":366,"name":{},"parent":{"514":{}}}],["shopperlogin.revoketokenbodytype.__type",{"_index":367,"name":{},"parent":{"515":{},"516":{}}}],["shopperlogin.revoketokenpathparameters",{"_index":363,"name":{},"parent":{"511":{}}}],["shopperlogin.revoketokenpathparameters.__type",{"_index":364,"name":{},"parent":{"512":{}}}],["shopperlogin.revoketokenqueryparameters",{"_index":361,"name":{},"parent":{"509":{}}}],["shopperlogin.shopperlogin",{"_index":97,"name":{},"parent":{"134":{},"135":{},"136":{},"162":{},"163":{},"215":{},"216":{},"217":{},"218":{},"219":{},"220":{},"221":{},"222":{},"223":{},"224":{},"225":{},"226":{},"227":{},"228":{},"229":{},"230":{},"231":{},"232":{},"233":{},"234":{},"235":{},"236":{},"237":{},"238":{},"239":{}}}],["shopperlogin.shopperlogin.apipaths",{"_index":100,"name":{},"parent":{"137":{},"138":{},"139":{},"140":{},"141":{},"142":{},"143":{},"144":{},"145":{},"146":{},"147":{},"148":{},"149":{},"150":{},"151":{},"152":{},"153":{},"154":{},"155":{},"156":{},"157":{},"158":{},"159":{},"160":{},"161":{}}}],["shopperlogin.shopperlogin.paramkeys",{"_index":126,"name":{},"parent":{"164":{}}}],["shopperlogin.shopperlogin.paramkeys.__type",{"_index":127,"name":{},"parent":{"165":{},"166":{},"167":{},"168":{},"169":{},"170":{},"171":{},"172":{},"173":{},"174":{},"175":{},"176":{},"177":{},"178":{},"179":{},"180":{},"181":{},"182":{},"183":{},"184":{},"185":{},"186":{},"187":{},"188":{},"189":{},"190":{},"191":{},"192":{},"193":{},"194":{},"195":{},"196":{},"197":{},"198":{},"199":{},"200":{},"201":{},"202":{},"203":{},"204":{},"205":{},"206":{},"207":{},"208":{},"209":{},"210":{},"211":{},"212":{},"213":{},"214":{}}}],["shopperlogin.shopperlogintypes",{"_index":1541,"name":{},"parent":{"4265":{},"4266":{},"4267":{},"4268":{},"4269":{},"4270":{},"4271":{},"4272":{},"4273":{},"4274":{},"4275":{},"4276":{},"4277":{},"4278":{},"4279":{},"4280":{},"4281":{},"4282":{},"4283":{},"4284":{},"4285":{},"4286":{},"4287":{},"4288":{},"4289":{},"4290":{},"4291":{},"4292":{},"4293":{},"4294":{},"4295":{},"4296":{},"4297":{},"4298":{},"4299":{},"4300":{},"4301":{},"4302":{},"4303":{},"4304":{},"4305":{},"4306":{},"4307":{},"4308":{},"4309":{},"4310":{},"4311":{},"4312":{},"4313":{},"4314":{},"4315":{},"4316":{},"4317":{},"4318":{},"4319":{},"4320":{},"4321":{},"4322":{},"4323":{},"4324":{},"4325":{},"4326":{},"4327":{},"4328":{},"4329":{},"4330":{},"4331":{},"4332":{},"4333":{},"4334":{},"4335":{},"4336":{},"4337":{},"4338":{},"4339":{},"4340":{},"4341":{},"4342":{},"4343":{},"4344":{},"4345":{},"4346":{},"4347":{},"4348":{},"4349":{},"4350":{},"4351":{},"4352":{},"4353":{},"4354":{},"4355":{},"4356":{},"4357":{},"4358":{},"4359":{},"4360":{},"4361":{},"4362":{},"4363":{},"4364":{},"4365":{},"4366":{},"4367":{},"4368":{},"4369":{},"4370":{},"4371":{},"4372":{},"4373":{}}}],["shopperlogin.startwebauthnauthenticationbodytype",{"_index":374,"name":{},"parent":{"523":{}}}],["shopperlogin.startwebauthnauthenticationbodytype.__type",{"_index":376,"name":{},"parent":{"524":{},"525":{},"526":{},"527":{}}}],["shopperlogin.startwebauthnauthenticationpathparameters",{"_index":371,"name":{},"parent":{"520":{}}}],["shopperlogin.startwebauthnauthenticationpathparameters.__type",{"_index":372,"name":{},"parent":{"521":{}}}],["shopperlogin.startwebauthnauthenticationqueryparameters",{"_index":369,"name":{},"parent":{"518":{}}}],["shopperlogin.startwebauthnuserregistrationbodytype",{"_index":383,"name":{},"parent":{"534":{}}}],["shopperlogin.startwebauthnuserregistrationbodytype.__type",{"_index":384,"name":{},"parent":{"535":{},"536":{},"537":{},"538":{},"539":{},"540":{}}}],["shopperlogin.startwebauthnuserregistrationpathparameters",{"_index":380,"name":{},"parent":{"531":{}}}],["shopperlogin.startwebauthnuserregistrationpathparameters.__type",{"_index":381,"name":{},"parent":{"532":{}}}],["shopperlogin.startwebauthnuserregistrationqueryparameters",{"_index":378,"name":{},"parent":{"529":{}}}],["shopperloginparameters",{"_index":389,"name":{"543":{},"628":{},"4231":{}},"parent":{}}],["shopperloginpathparameters",{"_index":387,"name":{"541":{},"626":{},"4229":{},"4265":{}},"parent":{}}],["shopperloginqueryparameters",{"_index":388,"name":{"542":{},"627":{},"4230":{},"4266":{}},"parent":{}}],["shopperlogintypes",{"_index":1540,"name":{"4264":{}},"parent":{}}],["shopperorders",{"_index":1542,"name":{"4374":{},"4504":{},"4647":{},"4671":{}},"parent":{"4375":{},"4376":{},"4377":{},"4378":{},"4379":{},"4380":{},"4381":{},"4382":{},"4383":{},"4384":{},"4385":{},"4386":{},"4387":{},"4388":{},"4389":{},"4390":{},"4391":{},"4392":{},"4393":{},"4394":{},"4395":{},"4396":{},"4397":{},"4398":{},"4399":{},"4400":{},"4401":{},"4402":{},"4403":{},"4404":{},"4405":{},"4406":{},"4407":{},"4408":{},"4409":{},"4410":{},"4411":{},"4412":{},"4413":{},"4414":{},"4415":{},"4416":{},"4417":{},"4418":{},"4419":{},"4420":{},"4421":{},"4422":{},"4423":{},"4424":{},"4425":{},"4426":{},"4427":{},"4428":{},"4429":{},"4430":{},"4431":{},"4432":{},"4433":{},"4434":{},"4435":{},"4436":{},"4437":{},"4438":{},"4439":{},"4440":{},"4441":{},"4442":{},"4443":{},"4444":{},"4445":{},"4446":{},"4447":{},"4448":{},"4449":{},"4450":{},"4451":{},"4452":{},"4453":{},"4454":{},"4455":{},"4456":{},"4457":{},"4458":{},"4459":{},"4460":{},"4461":{},"4462":{},"4463":{},"4464":{},"4465":{},"4466":{},"4467":{},"4468":{},"4469":{},"4470":{},"4471":{},"4472":{},"4473":{},"4474":{},"4475":{},"4476":{},"4477":{},"4478":{},"4479":{},"4480":{},"4481":{},"4482":{},"4483":{},"4484":{},"4485":{},"4486":{},"4487":{},"4488":{},"4489":{},"4490":{},"4491":{},"4492":{},"4493":{},"4494":{},"4495":{},"4496":{},"4497":{},"4498":{},"4499":{},"4500":{},"4501":{},"4502":{},"4503":{},"4504":{},"4547":{},"4548":{},"4552":{},"4555":{},"4559":{},"4563":{},"4568":{},"4572":{},"4577":{},"4581":{},"4585":{},"4589":{},"4592":{},"4596":{},"4600":{},"4604":{},"4608":{},"4613":{},"4617":{},"4622":{},"4623":{},"4624":{},"4625":{},"4626":{},"4627":{},"4628":{},"4629":{},"4630":{},"4631":{},"4632":{},"4633":{},"4634":{},"4635":{},"4636":{},"4637":{},"4638":{},"4639":{},"4640":{},"4641":{},"4642":{},"4643":{},"4644":{},"4645":{},"4646":{},"4647":{},"4648":{},"4649":{},"4650":{},"4651":{},"4652":{},"4653":{},"4654":{},"4655":{},"4656":{},"4657":{},"4658":{},"4659":{},"4660":{},"4661":{},"4662":{},"4663":{},"4664":{},"4665":{},"4666":{},"4667":{},"4668":{},"4669":{},"4670":{},"4671":{},"4672":{},"4673":{},"4674":{},"4675":{},"4676":{},"4677":{},"4678":{},"4679":{},"4680":{},"4681":{},"4682":{},"4683":{},"4684":{},"4685":{},"4686":{},"4687":{},"4688":{},"4689":{},"4690":{},"4691":{},"4692":{},"4693":{},"4694":{},"4695":{},"4696":{},"4697":{},"4698":{},"4699":{},"4700":{},"4701":{},"4702":{},"4703":{},"4704":{},"4705":{},"4706":{},"4707":{},"4708":{},"4709":{},"4710":{},"4711":{},"4712":{},"4713":{},"4714":{},"4715":{},"4716":{},"4717":{},"4718":{},"4719":{},"4720":{},"4721":{},"4722":{},"4723":{},"4724":{},"4725":{},"4726":{},"4727":{},"4728":{},"4729":{},"4730":{},"4731":{},"4732":{},"4733":{},"4734":{},"4735":{},"4736":{}}}],["shopperorders.createorderpathparameters",{"_index":1574,"name":{},"parent":{"4553":{}}}],["shopperorders.createorderpathparameters.__type",{"_index":1575,"name":{},"parent":{"4554":{}}}],["shopperorders.createorderqueryparameters",{"_index":1571,"name":{},"parent":{"4549":{}}}],["shopperorders.createorderqueryparameters.__type",{"_index":1572,"name":{},"parent":{"4550":{},"4551":{}}}],["shopperorders.createpaymentinstrumentfororderpathparameters",{"_index":1580,"name":{},"parent":{"4560":{}}}],["shopperorders.createpaymentinstrumentfororderpathparameters.__type",{"_index":1581,"name":{},"parent":{"4561":{},"4562":{}}}],["shopperorders.createpaymentinstrumentfororderqueryparameters",{"_index":1577,"name":{},"parent":{"4556":{}}}],["shopperorders.createpaymentinstrumentfororderqueryparameters.__type",{"_index":1578,"name":{},"parent":{"4557":{},"4558":{}}}],["shopperorders.failorderpathparameters",{"_index":1588,"name":{},"parent":{"4569":{}}}],["shopperorders.failorderpathparameters.__type",{"_index":1589,"name":{},"parent":{"4570":{},"4571":{}}}],["shopperorders.failorderqueryparameters",{"_index":1584,"name":{},"parent":{"4564":{}}}],["shopperorders.failorderqueryparameters.__type",{"_index":1585,"name":{},"parent":{"4565":{},"4566":{},"4567":{}}}],["shopperorders.getorderpathparameters",{"_index":1594,"name":{},"parent":{"4578":{}}}],["shopperorders.getorderpathparameters.__type",{"_index":1595,"name":{},"parent":{"4579":{},"4580":{}}}],["shopperorders.getorderqueryparameters",{"_index":1591,"name":{},"parent":{"4573":{}}}],["shopperorders.getorderqueryparameters.__type",{"_index":1592,"name":{},"parent":{"4574":{},"4575":{},"4576":{}}}],["shopperorders.getpaymentmethodsfororderpathparameters",{"_index":1600,"name":{},"parent":{"4586":{}}}],["shopperorders.getpaymentmethodsfororderpathparameters.__type",{"_index":1601,"name":{},"parent":{"4587":{},"4588":{}}}],["shopperorders.getpaymentmethodsfororderqueryparameters",{"_index":1597,"name":{},"parent":{"4582":{}}}],["shopperorders.getpaymentmethodsfororderqueryparameters.__type",{"_index":1598,"name":{},"parent":{"4583":{},"4584":{}}}],["shopperorders.gettaxesfromorderpathparameters",{"_index":1606,"name":{},"parent":{"4593":{}}}],["shopperorders.gettaxesfromorderpathparameters.__type",{"_index":1607,"name":{},"parent":{"4594":{},"4595":{}}}],["shopperorders.gettaxesfromorderqueryparameters",{"_index":1603,"name":{},"parent":{"4590":{}}}],["shopperorders.gettaxesfromorderqueryparameters.__type",{"_index":1604,"name":{},"parent":{"4591":{}}}],["shopperorders.guestorderlookuppathparameters",{"_index":1612,"name":{},"parent":{"4601":{}}}],["shopperorders.guestorderlookuppathparameters.__type",{"_index":1613,"name":{},"parent":{"4602":{},"4603":{}}}],["shopperorders.guestorderlookupqueryparameters",{"_index":1609,"name":{},"parent":{"4597":{}}}],["shopperorders.guestorderlookupqueryparameters.__type",{"_index":1610,"name":{},"parent":{"4598":{},"4599":{}}}],["shopperorders.removepaymentinstrumentfromorderpathparameters",{"_index":1618,"name":{},"parent":{"4609":{}}}],["shopperorders.removepaymentinstrumentfromorderpathparameters.__type",{"_index":1619,"name":{},"parent":{"4610":{},"4611":{},"4612":{}}}],["shopperorders.removepaymentinstrumentfromorderqueryparameters",{"_index":1615,"name":{},"parent":{"4605":{}}}],["shopperorders.removepaymentinstrumentfromorderqueryparameters.__type",{"_index":1616,"name":{},"parent":{"4606":{},"4607":{}}}],["shopperorders.shopperorders",{"_index":1547,"name":{},"parent":{"4505":{},"4506":{},"4507":{},"4517":{},"4518":{},"4538":{},"4539":{},"4540":{},"4541":{},"4542":{},"4543":{},"4544":{},"4545":{},"4546":{}}}],["shopperorders.shopperorders.apipaths",{"_index":1549,"name":{},"parent":{"4508":{},"4509":{},"4510":{},"4511":{},"4512":{},"4513":{},"4514":{},"4515":{},"4516":{}}}],["shopperorders.shopperorders.paramkeys",{"_index":1558,"name":{},"parent":{"4519":{}}}],["shopperorders.shopperorders.paramkeys.__type",{"_index":1559,"name":{},"parent":{"4520":{},"4521":{},"4522":{},"4523":{},"4524":{},"4525":{},"4526":{},"4527":{},"4528":{},"4529":{},"4530":{},"4531":{},"4532":{},"4533":{},"4534":{},"4535":{},"4536":{},"4537":{}}}],["shopperorders.shopperorderstypes",{"_index":1630,"name":{},"parent":{"4737":{},"4738":{},"4739":{},"4740":{},"4741":{},"4742":{},"4743":{},"4744":{},"4745":{},"4746":{},"4747":{},"4748":{},"4749":{},"4750":{},"4751":{},"4752":{},"4753":{},"4754":{},"4755":{},"4756":{},"4757":{},"4758":{},"4759":{},"4760":{},"4761":{},"4762":{},"4763":{},"4764":{},"4765":{},"4766":{},"4767":{},"4768":{},"4769":{},"4770":{},"4771":{},"4772":{},"4773":{},"4774":{},"4775":{},"4776":{},"4777":{},"4778":{},"4779":{},"4780":{},"4781":{},"4782":{},"4783":{},"4784":{},"4785":{},"4786":{},"4787":{},"4788":{},"4789":{},"4790":{},"4791":{},"4792":{},"4793":{},"4794":{},"4795":{},"4796":{},"4797":{},"4798":{},"4799":{},"4800":{},"4801":{},"4802":{},"4803":{},"4804":{},"4805":{},"4806":{},"4807":{},"4808":{},"4809":{},"4810":{},"4811":{},"4812":{},"4813":{},"4814":{},"4815":{},"4816":{},"4817":{},"4818":{},"4819":{},"4820":{},"4821":{}}}],["shopperorders.updatepaymentinstrumentfororderpathparameters",{"_index":1624,"name":{},"parent":{"4618":{}}}],["shopperorders.updatepaymentinstrumentfororderpathparameters.__type",{"_index":1625,"name":{},"parent":{"4619":{},"4620":{},"4621":{}}}],["shopperorders.updatepaymentinstrumentfororderqueryparameters",{"_index":1621,"name":{},"parent":{"4614":{}}}],["shopperorders.updatepaymentinstrumentfororderqueryparameters.__type",{"_index":1622,"name":{},"parent":{"4615":{},"4616":{}}}],["shopperordersparameters",{"_index":1628,"name":{"4624":{},"4646":{},"4670":{}},"parent":{}}],["shopperorderspathparameters",{"_index":1626,"name":{"4622":{},"4644":{},"4668":{},"4737":{}},"parent":{}}],["shopperordersqueryparameters",{"_index":1627,"name":{"4623":{},"4645":{},"4669":{},"4738":{}},"parent":{}}],["shopperorderstypes",{"_index":1629,"name":{"4736":{}},"parent":{}}],["shopperpayments",{"_index":1631,"name":{"4822":{},"4834":{},"4863":{},"4870":{}},"parent":{"4823":{},"4824":{},"4825":{},"4826":{},"4827":{},"4828":{},"4829":{},"4830":{},"4831":{},"4832":{},"4833":{},"4834":{},"4845":{},"4852":{},"4855":{},"4856":{},"4857":{},"4858":{},"4859":{},"4860":{},"4861":{},"4862":{},"4863":{},"4864":{},"4865":{},"4866":{},"4867":{},"4868":{},"4869":{},"4870":{},"4871":{},"4872":{},"4873":{},"4874":{},"4875":{},"4876":{}}}],["shopperpayments.getpaymentconfigurationpathparameters",{"_index":1650,"name":{},"parent":{"4853":{}}}],["shopperpayments.getpaymentconfigurationpathparameters.__type",{"_index":1651,"name":{},"parent":{"4854":{}}}],["shopperpayments.getpaymentconfigurationqueryparameters",{"_index":1643,"name":{},"parent":{"4846":{}}}],["shopperpayments.getpaymentconfigurationqueryparameters.__type",{"_index":1644,"name":{},"parent":{"4847":{},"4848":{},"4849":{},"4850":{},"4851":{}}}],["shopperpayments.shopperpayments",{"_index":1636,"name":{},"parent":{"4835":{},"4836":{},"4837":{},"4839":{},"4840":{},"4844":{}}}],["shopperpayments.shopperpayments.apipaths",{"_index":1638,"name":{},"parent":{"4838":{}}}],["shopperpayments.shopperpayments.paramkeys",{"_index":1639,"name":{},"parent":{"4841":{}}}],["shopperpayments.shopperpayments.paramkeys.__type",{"_index":1640,"name":{},"parent":{"4842":{},"4843":{}}}],["shopperpayments.shopperpaymentstypes",{"_index":1656,"name":{},"parent":{"4877":{},"4878":{},"4879":{},"4880":{},"4881":{},"4882":{},"4883":{},"4884":{},"4885":{}}}],["shopperpaymentsparameters",{"_index":1654,"name":{"4857":{},"4862":{},"4869":{}},"parent":{}}],["shopperpaymentspathparameters",{"_index":1652,"name":{"4855":{},"4860":{},"4867":{},"4877":{}},"parent":{}}],["shopperpaymentsqueryparameters",{"_index":1653,"name":{"4856":{},"4861":{},"4868":{},"4878":{}},"parent":{}}],["shopperpaymentstypes",{"_index":1655,"name":{"4876":{}},"parent":{}}],["shopperproducts",{"_index":1657,"name":{"4886":{},"4948":{},"5039":{},"5056":{}},"parent":{"4887":{},"4888":{},"4889":{},"4890":{},"4891":{},"4892":{},"4893":{},"4894":{},"4895":{},"4896":{},"4897":{},"4898":{},"4899":{},"4900":{},"4901":{},"4902":{},"4903":{},"4904":{},"4905":{},"4906":{},"4907":{},"4908":{},"4909":{},"4910":{},"4911":{},"4912":{},"4913":{},"4914":{},"4915":{},"4916":{},"4917":{},"4918":{},"4919":{},"4920":{},"4921":{},"4922":{},"4923":{},"4924":{},"4925":{},"4926":{},"4927":{},"4928":{},"4929":{},"4930":{},"4931":{},"4932":{},"4933":{},"4934":{},"4935":{},"4936":{},"4937":{},"4938":{},"4939":{},"4940":{},"4941":{},"4942":{},"4943":{},"4944":{},"4945":{},"4946":{},"4947":{},"4948":{},"4971":{},"4972":{},"4973":{},"4974":{},"4975":{},"4981":{},"4984":{},"4989":{},"4993":{},"5003":{},"5007":{},"5018":{},"5021":{},"5022":{},"5023":{},"5024":{},"5025":{},"5026":{},"5027":{},"5028":{},"5029":{},"5030":{},"5031":{},"5032":{},"5033":{},"5034":{},"5035":{},"5036":{},"5037":{},"5038":{},"5039":{},"5040":{},"5041":{},"5042":{},"5043":{},"5044":{},"5045":{},"5046":{},"5047":{},"5048":{},"5049":{},"5050":{},"5051":{},"5052":{},"5053":{},"5054":{},"5055":{},"5056":{},"5057":{},"5058":{},"5059":{},"5060":{},"5061":{},"5062":{},"5063":{},"5064":{},"5065":{},"5066":{},"5067":{},"5068":{},"5069":{},"5070":{},"5071":{},"5072":{},"5073":{},"5074":{},"5075":{},"5076":{},"5077":{},"5078":{},"5079":{},"5080":{},"5081":{},"5082":{},"5083":{},"5084":{},"5085":{},"5086":{},"5087":{}}}],["shopperproducts.getcategoriespathparameters",{"_index":1682,"name":{},"parent":{"4982":{}}}],["shopperproducts.getcategoriespathparameters.__type",{"_index":1683,"name":{},"parent":{"4983":{}}}],["shopperproducts.getcategoriesqueryparameters",{"_index":1679,"name":{},"parent":{"4976":{}}}],["shopperproducts.getcategoriesqueryparameters.__type",{"_index":1680,"name":{},"parent":{"4977":{},"4978":{},"4979":{},"4980":{}}}],["shopperproducts.getcategorypathparameters",{"_index":1688,"name":{},"parent":{"4990":{}}}],["shopperproducts.getcategorypathparameters.__type",{"_index":1689,"name":{},"parent":{"4991":{},"4992":{}}}],["shopperproducts.getcategoryqueryparameters",{"_index":1685,"name":{},"parent":{"4985":{}}}],["shopperproducts.getcategoryqueryparameters.__type",{"_index":1686,"name":{},"parent":{"4986":{},"4987":{},"4988":{}}}],["shopperproducts.getproductpathparameters",{"_index":1698,"name":{},"parent":{"5004":{}}}],["shopperproducts.getproductpathparameters.__type",{"_index":1699,"name":{},"parent":{"5005":{},"5006":{}}}],["shopperproducts.getproductqueryparameters",{"_index":1691,"name":{},"parent":{"4994":{}}}],["shopperproducts.getproductqueryparameters.__type",{"_index":1693,"name":{},"parent":{"4995":{},"4996":{},"4997":{},"4998":{},"4999":{},"5000":{},"5001":{},"5002":{}}}],["shopperproducts.getproductspathparameters",{"_index":1704,"name":{},"parent":{"5019":{}}}],["shopperproducts.getproductspathparameters.__type",{"_index":1705,"name":{},"parent":{"5020":{}}}],["shopperproducts.getproductsqueryparameters",{"_index":1701,"name":{},"parent":{"5008":{}}}],["shopperproducts.getproductsqueryparameters.__type",{"_index":1702,"name":{},"parent":{"5009":{},"5010":{},"5011":{},"5012":{},"5013":{},"5014":{},"5015":{},"5016":{},"5017":{}}}],["shopperproducts.shopperproducts",{"_index":1662,"name":{},"parent":{"4949":{},"4950":{},"4951":{},"4956":{},"4957":{},"4967":{},"4968":{},"4969":{},"4970":{}}}],["shopperproducts.shopperproducts.apipaths",{"_index":1664,"name":{},"parent":{"4952":{},"4953":{},"4954":{},"4955":{}}}],["shopperproducts.shopperproducts.paramkeys",{"_index":1668,"name":{},"parent":{"4958":{}}}],["shopperproducts.shopperproducts.paramkeys.__type",{"_index":1669,"name":{},"parent":{"4959":{},"4960":{},"4961":{},"4962":{},"4963":{},"4964":{},"4965":{},"4966":{}}}],["shopperproducts.shopperproductstypes",{"_index":1710,"name":{},"parent":{"5088":{},"5089":{},"5090":{},"5091":{},"5092":{},"5093":{},"5094":{},"5095":{},"5096":{},"5097":{},"5098":{},"5099":{},"5100":{},"5101":{},"5102":{},"5103":{},"5104":{},"5105":{},"5106":{},"5107":{},"5108":{},"5109":{},"5110":{},"5111":{},"5112":{},"5113":{},"5114":{},"5115":{},"5116":{},"5117":{},"5118":{},"5119":{},"5120":{},"5121":{},"5122":{},"5123":{},"5124":{},"5125":{},"5126":{},"5127":{},"5128":{},"5129":{},"5130":{},"5131":{}}}],["shopperproductsparameters",{"_index":1708,"name":{"5023":{},"5038":{},"5055":{}},"parent":{}}],["shopperproductspathparameters",{"_index":1706,"name":{"5021":{},"5036":{},"5053":{},"5088":{}},"parent":{}}],["shopperproductsqueryparameters",{"_index":1707,"name":{"5022":{},"5037":{},"5054":{},"5089":{}},"parent":{}}],["shopperproductstypes",{"_index":1709,"name":{"5087":{}},"parent":{}}],["shopperpromotions",{"_index":1711,"name":{"5132":{},"5144":{},"5187":{},"5196":{}},"parent":{"5133":{},"5134":{},"5135":{},"5136":{},"5137":{},"5138":{},"5139":{},"5140":{},"5141":{},"5142":{},"5143":{},"5144":{},"5159":{},"5164":{},"5167":{},"5173":{},"5177":{},"5178":{},"5179":{},"5180":{},"5181":{},"5182":{},"5183":{},"5184":{},"5185":{},"5186":{},"5187":{},"5188":{},"5189":{},"5190":{},"5191":{},"5192":{},"5193":{},"5194":{},"5195":{},"5196":{},"5197":{},"5198":{},"5199":{},"5200":{},"5201":{},"5202":{}}}],["shopperpromotions.getpromotionsforcampaignpathparameters",{"_index":1734,"name":{},"parent":{"5174":{}}}],["shopperpromotions.getpromotionsforcampaignpathparameters.__type",{"_index":1736,"name":{},"parent":{"5175":{},"5176":{}}}],["shopperpromotions.getpromotionsforcampaignqueryparameters",{"_index":1729,"name":{},"parent":{"5168":{}}}],["shopperpromotions.getpromotionsforcampaignqueryparameters.__type",{"_index":1730,"name":{},"parent":{"5169":{},"5170":{},"5171":{},"5172":{}}}],["shopperpromotions.getpromotionspathparameters",{"_index":1726,"name":{},"parent":{"5165":{}}}],["shopperpromotions.getpromotionspathparameters.__type",{"_index":1727,"name":{},"parent":{"5166":{}}}],["shopperpromotions.getpromotionsqueryparameters",{"_index":1723,"name":{},"parent":{"5160":{}}}],["shopperpromotions.getpromotionsqueryparameters.__type",{"_index":1724,"name":{},"parent":{"5161":{},"5162":{},"5163":{}}}],["shopperpromotions.shopperpromotions",{"_index":1714,"name":{},"parent":{"5145":{},"5146":{},"5147":{},"5150":{},"5151":{},"5157":{},"5158":{}}}],["shopperpromotions.shopperpromotions.apipaths",{"_index":1716,"name":{},"parent":{"5148":{},"5149":{}}}],["shopperpromotions.shopperpromotions.paramkeys",{"_index":1718,"name":{},"parent":{"5152":{}}}],["shopperpromotions.shopperpromotions.paramkeys.__type",{"_index":1719,"name":{},"parent":{"5153":{},"5154":{},"5155":{},"5156":{}}}],["shopperpromotions.shopperpromotionstypes",{"_index":1741,"name":{},"parent":{"5203":{},"5204":{},"5205":{},"5206":{},"5207":{},"5208":{},"5209":{},"5210":{},"5211":{},"5212":{},"5213":{}}}],["shopperpromotionsparameters",{"_index":1739,"name":{"5179":{},"5186":{},"5195":{}},"parent":{}}],["shopperpromotionspathparameters",{"_index":1737,"name":{"5177":{},"5184":{},"5193":{},"5203":{}},"parent":{}}],["shopperpromotionsqueryparameters",{"_index":1738,"name":{"5178":{},"5185":{},"5194":{},"5204":{}},"parent":{}}],["shopperpromotionstypes",{"_index":1740,"name":{"5202":{}},"parent":{}}],["shoppersearch",{"_index":1742,"name":{"5214":{},"5286":{},"5347":{},"5358":{}},"parent":{"5215":{},"5216":{},"5217":{},"5218":{},"5219":{},"5220":{},"5221":{},"5222":{},"5223":{},"5224":{},"5225":{},"5226":{},"5227":{},"5228":{},"5229":{},"5230":{},"5231":{},"5232":{},"5233":{},"5234":{},"5235":{},"5236":{},"5237":{},"5238":{},"5239":{},"5240":{},"5241":{},"5242":{},"5243":{},"5244":{},"5245":{},"5246":{},"5247":{},"5248":{},"5249":{},"5250":{},"5251":{},"5252":{},"5253":{},"5254":{},"5255":{},"5256":{},"5257":{},"5258":{},"5259":{},"5260":{},"5261":{},"5262":{},"5263":{},"5264":{},"5265":{},"5266":{},"5267":{},"5268":{},"5269":{},"5270":{},"5271":{},"5272":{},"5273":{},"5274":{},"5275":{},"5276":{},"5277":{},"5278":{},"5279":{},"5280":{},"5281":{},"5282":{},"5283":{},"5284":{},"5285":{},"5286":{},"5301":{},"5302":{},"5303":{},"5313":{},"5316":{},"5332":{},"5335":{},"5336":{},"5337":{},"5338":{},"5339":{},"5340":{},"5341":{},"5342":{},"5343":{},"5344":{},"5345":{},"5346":{},"5347":{},"5348":{},"5349":{},"5350":{},"5351":{},"5352":{},"5353":{},"5354":{},"5355":{},"5356":{},"5357":{},"5358":{},"5359":{},"5360":{},"5361":{},"5362":{},"5363":{},"5364":{},"5365":{},"5366":{},"5367":{},"5368":{},"5369":{},"5370":{},"5371":{},"5372":{},"5373":{},"5374":{},"5375":{},"5376":{},"5377":{},"5378":{},"5379":{},"5380":{},"5381":{},"5382":{},"5383":{},"5384":{},"5385":{},"5386":{},"5387":{},"5388":{},"5389":{},"5390":{},"5391":{},"5392":{},"5393":{},"5394":{}}}],["shoppersearch.getsearchsuggestionspathparameters",{"_index":1779,"name":{},"parent":{"5314":{}}}],["shoppersearch.getsearchsuggestionspathparameters.__type",{"_index":1780,"name":{},"parent":{"5315":{}}}],["shoppersearch.getsearchsuggestionsqueryparameters",{"_index":1774,"name":{},"parent":{"5304":{}}}],["shoppersearch.getsearchsuggestionsqueryparameters.__type",{"_index":1775,"name":{},"parent":{"5305":{},"5306":{},"5307":{},"5308":{},"5309":{},"5310":{},"5311":{},"5312":{}}}],["shoppersearch.productsearchpathparameters",{"_index":1787,"name":{},"parent":{"5333":{}}}],["shoppersearch.productsearchpathparameters.__type",{"_index":1788,"name":{},"parent":{"5334":{}}}],["shoppersearch.productsearchqueryparameters",{"_index":1782,"name":{},"parent":{"5317":{}}}],["shoppersearch.productsearchqueryparameters.__type",{"_index":1783,"name":{},"parent":{"5318":{},"5319":{},"5320":{},"5321":{},"5322":{},"5323":{},"5324":{},"5325":{},"5326":{},"5327":{},"5328":{},"5329":{},"5330":{},"5331":{}}}],["shoppersearch.shoppersearch",{"_index":1763,"name":{},"parent":{"5287":{},"5288":{},"5289":{},"5292":{},"5293":{},"5299":{},"5300":{}}}],["shoppersearch.shoppersearch.apipaths",{"_index":1765,"name":{},"parent":{"5290":{},"5291":{}}}],["shoppersearch.shoppersearch.paramkeys",{"_index":1767,"name":{},"parent":{"5294":{}}}],["shoppersearch.shoppersearch.paramkeys.__type",{"_index":1768,"name":{},"parent":{"5295":{},"5296":{},"5297":{},"5298":{}}}],["shoppersearch.shoppersearchtypes",{"_index":1793,"name":{},"parent":{"5395":{},"5396":{},"5397":{},"5398":{},"5399":{},"5400":{},"5401":{},"5402":{},"5403":{},"5404":{},"5405":{},"5406":{},"5407":{},"5408":{},"5409":{},"5410":{},"5411":{},"5412":{},"5413":{},"5414":{},"5415":{},"5416":{},"5417":{},"5418":{},"5419":{},"5420":{},"5421":{},"5422":{},"5423":{},"5424":{},"5425":{},"5426":{},"5427":{},"5428":{},"5429":{},"5430":{},"5431":{},"5432":{},"5433":{},"5434":{},"5435":{},"5436":{},"5437":{}}}],["shoppersearchparameters",{"_index":1791,"name":{"5337":{},"5346":{},"5357":{}},"parent":{}}],["shoppersearchpathparameters",{"_index":1789,"name":{"5335":{},"5344":{},"5355":{},"5395":{}},"parent":{}}],["shoppersearchqueryparameters",{"_index":1790,"name":{"5336":{},"5345":{},"5356":{},"5396":{}},"parent":{}}],["shoppersearchtypes",{"_index":1792,"name":{"5394":{}},"parent":{}}],["shopperseo",{"_index":1794,"name":{"5438":{},"5446":{},"5473":{},"5480":{}},"parent":{"5439":{},"5440":{},"5441":{},"5442":{},"5443":{},"5444":{},"5445":{},"5446":{},"5457":{},"5462":{},"5465":{},"5466":{},"5467":{},"5468":{},"5469":{},"5470":{},"5471":{},"5472":{},"5473":{},"5474":{},"5475":{},"5476":{},"5477":{},"5478":{},"5479":{},"5480":{},"5481":{},"5482":{},"5483":{},"5484":{}}}],["shopperseo.geturlmappingpathparameters",{"_index":1807,"name":{},"parent":{"5463":{}}}],["shopperseo.geturlmappingpathparameters.__type",{"_index":1808,"name":{},"parent":{"5464":{}}}],["shopperseo.geturlmappingqueryparameters",{"_index":1803,"name":{},"parent":{"5458":{}}}],["shopperseo.geturlmappingqueryparameters.__type",{"_index":1805,"name":{},"parent":{"5459":{},"5460":{},"5461":{}}}],["shopperseo.shopperseo",{"_index":1796,"name":{},"parent":{"5447":{},"5448":{},"5449":{},"5451":{},"5452":{},"5456":{}}}],["shopperseo.shopperseo.apipaths",{"_index":1798,"name":{},"parent":{"5450":{}}}],["shopperseo.shopperseo.paramkeys",{"_index":1799,"name":{},"parent":{"5453":{}}}],["shopperseo.shopperseo.paramkeys.__type",{"_index":1800,"name":{},"parent":{"5454":{},"5455":{}}}],["shopperseo.shopperseotypes",{"_index":1813,"name":{},"parent":{"5485":{},"5486":{},"5487":{},"5488":{},"5489":{},"5490":{},"5491":{}}}],["shopperseoparameters",{"_index":1811,"name":{"5467":{},"5472":{},"5479":{}},"parent":{}}],["shopperseopathparameters",{"_index":1809,"name":{"5465":{},"5470":{},"5477":{},"5485":{}},"parent":{}}],["shopperseoqueryparameters",{"_index":1810,"name":{"5466":{},"5471":{},"5478":{},"5486":{}},"parent":{}}],["shopperseotypes",{"_index":1812,"name":{"5484":{}},"parent":{}}],["shopperstores",{"_index":1814,"name":{"5492":{},"5510":{},"5558":{},"5567":{}},"parent":{"5493":{},"5494":{},"5495":{},"5496":{},"5497":{},"5498":{},"5499":{},"5500":{},"5501":{},"5502":{},"5503":{},"5504":{},"5505":{},"5506":{},"5507":{},"5508":{},"5509":{},"5510":{},"5525":{},"5530":{},"5533":{},"5545":{},"5548":{},"5549":{},"5550":{},"5551":{},"5552":{},"5553":{},"5554":{},"5555":{},"5556":{},"5557":{},"5558":{},"5559":{},"5560":{},"5561":{},"5562":{},"5563":{},"5564":{},"5565":{},"5566":{},"5567":{},"5568":{},"5569":{},"5570":{},"5571":{},"5572":{},"5573":{},"5574":{},"5575":{},"5576":{}}}],["shopperstores.getstorespathparameters",{"_index":1831,"name":{},"parent":{"5531":{}}}],["shopperstores.getstorespathparameters.__type",{"_index":1832,"name":{},"parent":{"5532":{}}}],["shopperstores.getstoresqueryparameters",{"_index":1828,"name":{},"parent":{"5526":{}}}],["shopperstores.getstoresqueryparameters.__type",{"_index":1829,"name":{},"parent":{"5527":{},"5528":{},"5529":{}}}],["shopperstores.searchstorespathparameters",{"_index":1841,"name":{},"parent":{"5546":{}}}],["shopperstores.searchstorespathparameters.__type",{"_index":1842,"name":{},"parent":{"5547":{}}}],["shopperstores.searchstoresqueryparameters",{"_index":1834,"name":{},"parent":{"5534":{}}}],["shopperstores.searchstoresqueryparameters.__type",{"_index":1835,"name":{},"parent":{"5535":{},"5536":{},"5537":{},"5538":{},"5539":{},"5540":{},"5541":{},"5542":{},"5543":{},"5544":{}}}],["shopperstores.shopperstores",{"_index":1819,"name":{},"parent":{"5511":{},"5512":{},"5513":{},"5516":{},"5517":{},"5523":{},"5524":{}}}],["shopperstores.shopperstores.apipaths",{"_index":1821,"name":{},"parent":{"5514":{},"5515":{}}}],["shopperstores.shopperstores.paramkeys",{"_index":1823,"name":{},"parent":{"5518":{}}}],["shopperstores.shopperstores.paramkeys.__type",{"_index":1824,"name":{},"parent":{"5519":{},"5520":{},"5521":{},"5522":{}}}],["shopperstores.shopperstorestypes",{"_index":1847,"name":{},"parent":{"5577":{},"5578":{},"5579":{},"5580":{},"5581":{},"5582":{},"5583":{},"5584":{},"5585":{},"5586":{},"5587":{},"5588":{},"5589":{},"5590":{}}}],["shopperstoresparameters",{"_index":1845,"name":{"5550":{},"5557":{},"5566":{}},"parent":{}}],["shopperstorespathparameters",{"_index":1843,"name":{"5548":{},"5555":{},"5564":{},"5577":{}},"parent":{}}],["shopperstoresqueryparameters",{"_index":1844,"name":{"5549":{},"5556":{},"5565":{},"5578":{}},"parent":{}}],["shopperstorestypes",{"_index":1846,"name":{"5576":{}},"parent":{}}],["shortcode",{"_index":2,"name":{"2":{},"695":{}},"parent":{}}],["siteconfiguration",{"_index":961,"name":{"2524":{},"2527":{},"2563":{},"2571":{}},"parent":{}}],["siteid",{"_index":547,"name":{"943":{},"951":{},"959":{},"967":{},"975":{},"983":{},"990":{},"997":{},"1005":{},"1013":{},"1021":{},"1028":{},"1036":{},"1044":{},"1051":{},"1060":{},"1067":{},"1076":{},"1085":{},"1094":{},"1103":{},"1112":{},"1121":{},"1130":{},"1139":{},"1147":{},"1156":{},"1165":{},"1175":{},"1183":{},"1193":{},"1202":{},"1212":{},"1221":{},"1229":{},"1240":{},"1249":{},"1848":{},"1856":{},"1864":{},"1872":{},"1880":{},"1888":{},"1895":{},"1902":{},"1910":{},"1920":{},"1928":{},"1935":{},"1943":{},"1951":{},"1958":{},"1967":{},"1974":{},"1983":{},"1992":{},"2001":{},"2010":{},"2019":{},"2028":{},"2037":{},"2047":{},"2055":{},"2064":{},"2073":{},"2083":{},"2091":{},"2101":{},"2110":{},"2120":{},"2129":{},"2137":{},"2148":{},"2157":{},"2541":{},"2626":{},"2635":{},"2642":{},"2746":{},"2754":{},"2761":{},"2768":{},"3188":{},"3195":{},"3202":{},"3209":{},"3217":{},"3225":{},"3234":{},"3242":{},"3251":{},"3259":{},"3267":{},"3279":{},"3288":{},"3296":{},"3304":{},"3313":{},"3322":{},"3328":{},"3336":{},"3344":{},"3354":{},"3360":{},"3366":{},"3372":{},"3378":{},"3386":{},"3392":{},"3399":{},"3407":{},"3414":{},"3422":{},"3430":{},"3940":{},"3949":{},"3959":{},"3967":{},"3976":{},"3989":{},"3999":{},"4116":{},"4550":{},"4557":{},"4565":{},"4574":{},"4583":{},"4591":{},"4598":{},"4606":{},"4615":{},"4847":{},"4980":{},"4988":{},"5002":{},"5014":{},"5161":{},"5169":{},"5305":{},"5319":{},"5460":{},"5528":{},"5541":{}},"parent":{}}],["sort",{"_index":1510,"name":{"3998":{},"5322":{}},"parent":{}}],["stack",{"_index":398,"name":{"639":{}},"parent":{}}],["startdate",{"_index":1731,"name":{"5170":{}},"parent":{}}],["startwebauthnauthentication",{"_index":123,"name":{"160":{},"211":{},"238":{}},"parent":{}}],["startwebauthnauthenticationbodytype",{"_index":373,"name":{"522":{},"622":{},"4225":{},"4340":{}},"parent":{}}],["startwebauthnauthenticationpathparameters",{"_index":370,"name":{"519":{},"621":{},"4224":{},"4342":{}},"parent":{}}],["startwebauthnauthenticationqueryparameters",{"_index":368,"name":{"517":{},"620":{},"4223":{},"4341":{}},"parent":{}}],["startwebauthnauthenticationrequired",{"_index":151,"name":{"212":{}},"parent":{}}],["startwebauthnuserregistration",{"_index":124,"name":{"161":{},"213":{},"239":{}},"parent":{}}],["startwebauthnuserregistrationbodytype",{"_index":382,"name":{"533":{},"625":{},"4228":{},"4343":{}},"parent":{}}],["startwebauthnuserregistrationpathparameters",{"_index":379,"name":{"530":{},"624":{},"4227":{},"4345":{}},"parent":{}}],["startwebauthnuserregistrationqueryparameters",{"_index":377,"name":{"528":{},"623":{},"4226":{},"4344":{}},"parent":{}}],["startwebauthnuserregistrationrequired",{"_index":152,"name":{"214":{}},"parent":{}}],["state",{"_index":180,"name":{"265":{},"276":{},"436":{}},"parent":{}}],["status",{"_index":425,"name":{"701":{},"780":{},"1458":{},"1579":{},"1586":{},"1685":{},"2385":{},"2516":{},"2831":{},"3043":{},"3277":{},"3687":{},"3866":{},"4377":{},"4500":{},"4732":{},"4818":{}},"parent":{}}],["store",{"_index":1816,"name":{"5499":{},"5507":{},"5573":{},"5588":{}},"parent":{}}],["storeresult",{"_index":1817,"name":{"5500":{},"5508":{},"5574":{},"5589":{}},"parent":{}}],["stores",{"_index":1818,"name":{"5501":{},"5509":{},"5575":{},"5590":{}},"parent":{}}],["stringtobase64",{"_index":400,"name":{"641":{},"671":{}},"parent":{}}],["subscriptionstatusentry",{"_index":982,"name":{"2576":{},"2603":{},"2687":{},"2712":{}},"parent":{}}],["suggestedcategory",{"_index":1748,"name":{"5221":{},"5275":{},"5383":{},"5427":{}},"parent":{}}],["suggestedphrase",{"_index":1746,"name":{"5219":{},"5276":{},"5384":{},"5428":{}},"parent":{}}],["suggestedproduct",{"_index":1760,"name":{"5247":{},"5277":{},"5385":{},"5429":{}},"parent":{}}],["suggestedterm",{"_index":1744,"name":{"5217":{},"5278":{},"5386":{},"5430":{}},"parent":{}}],["suggestedterms",{"_index":1745,"name":{"5218":{},"5279":{},"5387":{},"5431":{}},"parent":{}}],["suggestion",{"_index":1757,"name":{"5244":{},"5280":{},"5388":{},"5432":{}},"parent":{}}],["suggestionresult",{"_index":1762,"name":{"5250":{},"5281":{},"5389":{},"5433":{}},"parent":{}}],["tags",{"_index":1007,"name":{"2628":{}},"parent":{}}],["taxes",{"_index":464,"name":{"741":{},"783":{},"1461":{},"1582":{},"1636":{},"1688":{},"2388":{},"2519":{},"4439":{},"4503":{},"4735":{},"4821":{}},"parent":{}}],["taxitem",{"_index":462,"name":{"739":{},"781":{},"1459":{},"1580":{},"1634":{},"1686":{},"2386":{},"2517":{},"4437":{},"4501":{},"4733":{},"4819":{}},"parent":{}}],["taxitems",{"_index":463,"name":{"740":{},"782":{},"1460":{},"1581":{},"1635":{},"1687":{},"2387":{},"2518":{},"4438":{},"4502":{},"4734":{},"4820":{}},"parent":{}}],["taxmode",{"_index":599,"name":{"1006":{},"1911":{}},"parent":{}}],["templateurl",{"_index":44,"name":{"51":{},"52":{}},"parent":{"52":{}}}],["templateurl.templateurl",{"_index":45,"name":{},"parent":{"53":{},"54":{},"55":{},"56":{},"57":{},"58":{},"59":{},"60":{},"61":{},"62":{},"63":{},"64":{},"65":{},"66":{},"67":{},"68":{},"69":{},"70":{},"71":{},"72":{},"73":{}}}],["temporary",{"_index":838,"name":{"1912":{}},"parent":{}}],["tenant_id",{"_index":375,"name":{"524":{}},"parent":{}}],["throwonbadresponse",{"_index":27,"name":{"24":{},"34":{}},"parent":{}}],["tojson",{"_index":62,"name":{"70":{}},"parent":{}}],["token",{"_index":341,"name":{"483":{},"515":{}},"parent":{}}],["token_type_hint",{"_index":343,"name":{"484":{},"516":{}},"parent":{}}],["tokenactionrequest",{"_index":95,"name":{"103":{},"129":{},"4260":{},"4370":{}},"parent":{}}],["tokenactionrequesttokentypehintenum",{"_index":96,"name":{"104":{},"130":{},"4261":{},"4371":{}},"parent":{}}],["tokenresponse",{"_index":82,"name":{"90":{},"131":{},"4262":{},"4372":{}},"parent":{}}],["tokentype",{"_index":81,"name":{"89":{},"132":{},"4263":{},"4373":{}},"parent":{}}],["tostring",{"_index":53,"name":{"61":{}},"parent":{}}],["transferbasket",{"_index":490,"name":{"811":{},"874":{},"925":{},"1716":{},"1779":{},"1830":{}},"parent":{}}],["transferbasketpathparameters",{"_index":699,"name":{"1134":{},"1308":{},"1389":{},"1514":{},"2042":{},"2219":{},"2303":{},"2441":{}},"parent":{}}],["transferbasketqueryparameters",{"_index":694,"name":{"1128":{},"1307":{},"1388":{},"1513":{},"2035":{},"2218":{},"2302":{},"2440":{}},"parent":{}}],["transferbasketrequired",{"_index":529,"name":{"875":{},"1780":{}},"parent":{}}],["transformrequest",{"_index":26,"name":{"23":{},"33":{},"37":{}},"parent":{}}],["ui_locales",{"_index":189,"name":{"281":{}},"parent":{}}],["until",{"_index":1298,"name":{"3276":{}},"parent":{}}],["updateasagentbasket",{"_index":491,"name":{"812":{},"876":{},"926":{},"1717":{},"1781":{},"1831":{}},"parent":{}}],["updateasagentbasketpathparameters",{"_index":705,"name":{"1141":{},"1310":{},"1391":{},"1516":{},"2049":{},"2221":{},"2305":{},"2443":{}},"parent":{}}],["updateasagentbasketqueryparameters",{"_index":702,"name":{"1137":{},"1309":{},"1390":{},"1515":{},"2045":{},"2220":{},"2304":{},"2442":{}},"parent":{}}],["updateasagentbasketrequired",{"_index":530,"name":{"877":{},"1782":{}},"parent":{}}],["updateasstorefrontbasket",{"_index":492,"name":{"813":{},"878":{},"927":{},"1718":{},"1783":{},"1832":{}},"parent":{}}],["updateasstorefrontbasketpathparameters",{"_index":712,"name":{"1150":{},"1312":{},"1393":{},"1518":{},"2058":{},"2223":{},"2307":{},"2445":{}},"parent":{}}],["updateasstorefrontbasketqueryparameters",{"_index":708,"name":{"1145":{},"1311":{},"1392":{},"1517":{},"2053":{},"2222":{},"2306":{},"2444":{}},"parent":{}}],["updateasstorefrontbasketrequired",{"_index":531,"name":{"879":{},"1784":{}},"parent":{}}],["updatebasket",{"_index":493,"name":{"814":{},"880":{},"928":{},"1719":{},"1785":{},"1833":{}},"parent":{}}],["updatebasketpathparameters",{"_index":719,"name":{"1159":{},"1314":{},"1395":{},"1520":{},"2067":{},"2225":{},"2309":{},"2447":{}},"parent":{}}],["updatebasketqueryparameters",{"_index":715,"name":{"1154":{},"1313":{},"1394":{},"1519":{},"2062":{},"2224":{},"2308":{},"2446":{}},"parent":{}}],["updatebasketrequired",{"_index":532,"name":{"881":{},"1786":{}},"parent":{}}],["updatebillingaddressforbasket",{"_index":494,"name":{"815":{},"882":{},"929":{},"1720":{},"1787":{},"1834":{}},"parent":{}}],["updatebillingaddressforbasketpathparameters",{"_index":726,"name":{"1169":{},"1316":{},"1397":{},"1522":{},"2077":{},"2227":{},"2311":{},"2449":{}},"parent":{}}],["updatebillingaddressforbasketqueryparameters",{"_index":722,"name":{"1163":{},"1315":{},"1396":{},"1521":{},"2071":{},"2226":{},"2310":{},"2448":{}},"parent":{}}],["updatebillingaddressforbasketrequired",{"_index":533,"name":{"883":{},"1788":{}},"parent":{}}],["updatecustomer",{"_index":1180,"name":{"3078":{},"3139":{},"3177":{}},"parent":{}}],["updatecustomeraddress",{"_index":1181,"name":{"3079":{},"3141":{},"3178":{}},"parent":{}}],["updatecustomeraddresspathparameters",{"_index":1399,"name":{"3400":{},"3498":{},"3570":{},"3753":{}},"parent":{}}],["updatecustomeraddressqueryparameters",{"_index":1396,"name":{"3397":{},"3497":{},"3569":{},"3752":{}},"parent":{}}],["updatecustomeraddressrequired",{"_index":1214,"name":{"3142":{}},"parent":{}}],["updatecustomerforbasket",{"_index":495,"name":{"816":{},"884":{},"930":{},"1721":{},"1789":{},"1835":{}},"parent":{}}],["updatecustomerforbasketpathparameters",{"_index":732,"name":{"1177":{},"1318":{},"1399":{},"1524":{},"2085":{},"2229":{},"2313":{},"2451":{}},"parent":{}}],["updatecustomerforbasketqueryparameters",{"_index":729,"name":{"1173":{},"1317":{},"1398":{},"1523":{},"2081":{},"2228":{},"2312":{},"2450":{}},"parent":{}}],["updatecustomerforbasketrequired",{"_index":534,"name":{"885":{},"1790":{}},"parent":{}}],["updatecustomerpassword",{"_index":1182,"name":{"3080":{},"3143":{},"3179":{}},"parent":{}}],["updatecustomerpasswordpathparameters",{"_index":1405,"name":{"3408":{},"3500":{},"3572":{},"3755":{}},"parent":{}}],["updatecustomerpasswordqueryparameters",{"_index":1402,"name":{"3405":{},"3499":{},"3571":{},"3754":{}},"parent":{}}],["updatecustomerpasswordrequired",{"_index":1215,"name":{"3144":{}},"parent":{}}],["updatecustomerpathparameters",{"_index":1393,"name":{"3393":{},"3496":{},"3568":{},"3751":{}},"parent":{}}],["updatecustomerpaymentinstrument",{"_index":1183,"name":{"3081":{},"3145":{},"3180":{}},"parent":{}}],["updatecustomerpaymentinstrumentpathparameters",{"_index":1411,"name":{"3415":{},"3502":{},"3574":{},"3757":{}},"parent":{}}],["updatecustomerpaymentinstrumentqueryparameters",{"_index":1408,"name":{"3412":{},"3501":{},"3573":{},"3756":{}},"parent":{}}],["updatecustomerpaymentinstrumentrequired",{"_index":1216,"name":{"3146":{}},"parent":{}}],["updatecustomerproductlist",{"_index":1184,"name":{"3082":{},"3147":{},"3181":{}},"parent":{}}],["updatecustomerproductlistitem",{"_index":1185,"name":{"3083":{},"3149":{},"3182":{}},"parent":{}}],["updatecustomerproductlistitempathparameters",{"_index":1423,"name":{"3431":{},"3506":{},"3578":{},"3761":{}},"parent":{}}],["updatecustomerproductlistitemqueryparameters",{"_index":1420,"name":{"3428":{},"3505":{},"3577":{},"3760":{}},"parent":{}}],["updatecustomerproductlistitemrequired",{"_index":1218,"name":{"3150":{}},"parent":{}}],["updatecustomerproductlistpathparameters",{"_index":1417,"name":{"3423":{},"3504":{},"3576":{},"3759":{}},"parent":{}}],["updatecustomerproductlistqueryparameters",{"_index":1414,"name":{"3420":{},"3503":{},"3575":{},"3758":{}},"parent":{}}],["updatecustomerproductlistrequired",{"_index":1217,"name":{"3148":{}},"parent":{}}],["updatecustomerqueryparameters",{"_index":1390,"name":{"3390":{},"3495":{},"3567":{},"3750":{}},"parent":{}}],["updatecustomerrequired",{"_index":1213,"name":{"3140":{}},"parent":{}}],["updategiftcertificateiteminbasket",{"_index":496,"name":{"817":{},"886":{},"931":{},"1722":{},"1791":{},"1836":{}},"parent":{}}],["updategiftcertificateiteminbasketpathparameters",{"_index":738,"name":{"1185":{},"1320":{},"1401":{},"1526":{},"2093":{},"2231":{},"2315":{},"2453":{}},"parent":{}}],["updategiftcertificateiteminbasketqueryparameters",{"_index":735,"name":{"1181":{},"1319":{},"1400":{},"1525":{},"2089":{},"2230":{},"2314":{},"2452":{}},"parent":{}}],["updategiftcertificateiteminbasketrequired",{"_index":535,"name":{"887":{},"1792":{}},"parent":{}}],["updateiteminbasket",{"_index":497,"name":{"818":{},"888":{},"932":{},"1723":{},"1793":{},"1837":{}},"parent":{}}],["updateiteminbasketpathparameters",{"_index":744,"name":{"1195":{},"1322":{},"1403":{},"1528":{},"2103":{},"2233":{},"2317":{},"2455":{}},"parent":{}}],["updateiteminbasketqueryparameters",{"_index":741,"name":{"1190":{},"1321":{},"1402":{},"1527":{},"2098":{},"2232":{},"2316":{},"2454":{}},"parent":{}}],["updateiteminbasketrequired",{"_index":536,"name":{"889":{},"1794":{}},"parent":{}}],["updateitemsinbasket",{"_index":498,"name":{"819":{},"890":{},"933":{},"1724":{},"1795":{},"1838":{}},"parent":{}}],["updateitemsinbasketpathparameters",{"_index":750,"name":{"1205":{},"1324":{},"1405":{},"1530":{},"2113":{},"2235":{},"2319":{},"2457":{}},"parent":{}}],["updateitemsinbasketqueryparameters",{"_index":747,"name":{"1200":{},"1323":{},"1404":{},"1529":{},"2108":{},"2234":{},"2318":{},"2456":{}},"parent":{}}],["updateitemsinbasketrequired",{"_index":537,"name":{"891":{},"1796":{}},"parent":{}}],["updatepaymentinstrumentfororder",{"_index":1557,"name":{"4516":{},"4536":{},"4546":{}},"parent":{}}],["updatepaymentinstrumentfororderpathparameters",{"_index":1623,"name":{"4617":{},"4643":{},"4667":{},"4757":{}},"parent":{}}],["updatepaymentinstrumentfororderqueryparameters",{"_index":1620,"name":{"4613":{},"4642":{},"4666":{},"4756":{}},"parent":{}}],["updatepaymentinstrumentfororderrequired",{"_index":1568,"name":{"4537":{}},"parent":{}}],["updatepaymentinstrumentinbasket",{"_index":499,"name":{"820":{},"892":{},"934":{},"1725":{},"1797":{},"1839":{}},"parent":{}}],["updatepaymentinstrumentinbasketpathparameters",{"_index":756,"name":{"1214":{},"1326":{},"1407":{},"1532":{},"2122":{},"2237":{},"2321":{},"2459":{}},"parent":{}}],["updatepaymentinstrumentinbasketqueryparameters",{"_index":753,"name":{"1209":{},"1325":{},"1406":{},"1531":{},"2117":{},"2236":{},"2320":{},"2458":{}},"parent":{}}],["updatepaymentinstrumentinbasketrequired",{"_index":538,"name":{"893":{},"1798":{}},"parent":{}}],["updatepriceadjustmentinbasket",{"_index":500,"name":{"821":{},"894":{},"935":{},"1726":{},"1799":{},"1840":{}},"parent":{}}],["updatepriceadjustmentinbasketpathparameters",{"_index":762,"name":{"1222":{},"1328":{},"1409":{},"1534":{},"2130":{},"2239":{},"2323":{},"2461":{}},"parent":{}}],["updatepriceadjustmentinbasketqueryparameters",{"_index":759,"name":{"1219":{},"1327":{},"1408":{},"1533":{},"2127":{},"2238":{},"2322":{},"2460":{}},"parent":{}}],["updatepriceadjustmentinbasketrequired",{"_index":539,"name":{"895":{},"1800":{}},"parent":{}}],["updateshipmentforbasket",{"_index":501,"name":{"822":{},"896":{},"936":{},"1727":{},"1801":{},"1841":{}},"parent":{}}],["updateshipmentforbasketpathparameters",{"_index":768,"name":{"1231":{},"1330":{},"1411":{},"1536":{},"2139":{},"2241":{},"2325":{},"2463":{}},"parent":{}}],["updateshipmentforbasketqueryparameters",{"_index":765,"name":{"1227":{},"1329":{},"1410":{},"1535":{},"2135":{},"2240":{},"2324":{},"2462":{}},"parent":{}}],["updateshipmentforbasketrequired",{"_index":540,"name":{"897":{},"1802":{}},"parent":{}}],["updateshippingaddressforshipment",{"_index":502,"name":{"823":{},"898":{},"937":{},"1728":{},"1803":{},"1842":{}},"parent":{}}],["updateshippingaddressforshipmentpathparameters",{"_index":775,"name":{"1242":{},"1332":{},"1413":{},"1538":{},"2150":{},"2243":{},"2327":{},"2465":{}},"parent":{}}],["updateshippingaddressforshipmentqueryparameters",{"_index":771,"name":{"1236":{},"1331":{},"1412":{},"1537":{},"2144":{},"2242":{},"2326":{},"2464":{}},"parent":{}}],["updateshippingaddressforshipmentrequired",{"_index":541,"name":{"899":{},"1804":{}},"parent":{}}],["updateshippingmethodforshipment",{"_index":503,"name":{"824":{},"900":{},"938":{},"1729":{},"1805":{},"1843":{}},"parent":{}}],["updateshippingmethodforshipmentpathparameters",{"_index":781,"name":{"1251":{},"1334":{},"1415":{},"1540":{},"2159":{},"2245":{},"2329":{},"2467":{}},"parent":{}}],["updateshippingmethodforshipmentqueryparameters",{"_index":778,"name":{"1247":{},"1333":{},"1414":{},"1539":{},"2155":{},"2244":{},"2328":{},"2466":{}},"parent":{}}],["updateshippingmethodforshipmentrequired",{"_index":542,"name":{"901":{},"1806":{}},"parent":{}}],["updateshoppercontext",{"_index":1037,"name":{"2728":{},"2738":{},"2743":{}},"parent":{}}],["updateshoppercontextpathparameters",{"_index":1066,"name":{"2770":{},"2787":{},"2803":{},"2824":{}},"parent":{}}],["updateshoppercontextqueryparameters",{"_index":1063,"name":{"2766":{},"2786":{},"2802":{},"2823":{}},"parent":{}}],["updateshoppercontextrequired",{"_index":1043,"name":{"2739":{}},"parent":{}}],["updatesubscription",{"_index":996,"name":{"2609":{},"2616":{},"2621":{}},"parent":{}}],["updatesubscriptionpathparameters",{"_index":1015,"name":{"2637":{},"2654":{},"2666":{},"2695":{}},"parent":{}}],["updatesubscriptionqueryparameters",{"_index":1012,"name":{"2633":{},"2653":{},"2665":{},"2694":{}},"parent":{}}],["updatesubscriptionrequired",{"_index":1001,"name":{"2617":{}},"parent":{}}],["updatesubscriptions",{"_index":997,"name":{"2610":{},"2618":{},"2622":{}},"parent":{}}],["updatesubscriptionspathparameters",{"_index":1021,"name":{"2644":{},"2656":{},"2668":{},"2697":{}},"parent":{}}],["updatesubscriptionsqueryparameters",{"_index":1018,"name":{"2640":{},"2655":{},"2667":{},"2696":{}},"parent":{}}],["updatesubscriptionsrequired",{"_index":1002,"name":{"2619":{}},"parent":{}}],["url",{"_index":63,"name":{"71":{}},"parent":{}}],["urlmapping",{"_index":1795,"name":{"5442":{},"5445":{},"5483":{},"5491":{}},"parent":{}}],["urlparameters",{"_index":12,"name":{"10":{},"681":{}},"parent":{}}],["urlsegment",{"_index":1804,"name":{"5459":{}},"parent":{}}],["useasbilling",{"_index":773,"name":{"1238":{},"2146":{}},"parent":{}}],["useasshipping",{"_index":725,"name":{"1167":{},"2075":{}},"parent":{}}],["user_agent_header",{"_index":67,"name":{"75":{}},"parent":{}}],["user_agent_value",{"_index":68,"name":{"76":{}},"parent":{}}],["user_id",{"_index":202,"name":{"293":{},"311":{},"393":{},"507":{},"527":{},"537":{}},"parent":{}}],["username",{"_index":61,"name":{"69":{}},"parent":{}}],["usid",{"_index":182,"name":{"267":{},"277":{},"296":{},"354":{},"418":{},"434":{},"456":{},"2750":{},"2757":{},"2764":{},"2772":{}},"parent":{}}],["variant",{"_index":1090,"name":{"2875":{},"3044":{},"3688":{},"3867":{},"4901":{},"4944":{},"5083":{},"5128":{},"5238":{},"5282":{},"5390":{},"5434":{}},"parent":{}}],["variationattribute",{"_index":1081,"name":{"2866":{},"3045":{},"3689":{},"3868":{},"4890":{},"4945":{},"5084":{},"5129":{},"5228":{},"5283":{},"5391":{},"5435":{}},"parent":{}}],["variationattributevalue",{"_index":1080,"name":{"2865":{},"3046":{},"3690":{},"3869":{},"4889":{},"4946":{},"5085":{},"5130":{},"5227":{},"5284":{},"5392":{},"5436":{}},"parent":{}}],["variationgroup",{"_index":1082,"name":{"2867":{},"3047":{},"3691":{},"3870":{},"4893":{},"4947":{},"5086":{},"5131":{},"5239":{},"5285":{},"5393":{},"5437":{}},"parent":{}}],["version",{"_index":66,"name":{"74":{}},"parent":{"75":{},"76":{}}}],["zoneid",{"_index":1647,"name":{"4850":{}},"parent":{}}]],"pipeline":[]}} \ No newline at end of file diff --git a/docs/classes/clientconfig.clientconfig-1.html b/docs/classes/clientconfig.clientconfig-1.html index 9ade27da..685e7ad4 100644 --- a/docs/classes/clientconfig.clientconfig-1.html +++ b/docs/classes/clientconfig.clientconfig-1.html @@ -112,6 +112,7 @@

Constructors

Properties

  • baseUri
  • +
  • fetch
  • fetchOptions
  • headers
  • parameters
  • @@ -141,7 +142,7 @@

    constructor

  • Parameters

    @@ -164,7 +165,18 @@

    Optional baseUri

    + +
    + +

    Optional fetch

    + +
    @@ -175,7 +187,7 @@

    fetchOptions

    @@ -186,7 +198,7 @@

    headers

    @@ -205,7 +217,7 @@

    parameters

    @@ -216,7 +228,7 @@

    Optional proxy

    @@ -227,7 +239,7 @@

    throwOnBadResponse

    @@ -238,7 +250,7 @@

    transformRequest

    @@ -251,7 +263,7 @@

    Static defaults: object

    @@ -264,7 +276,7 @@

    transformRequest

  • @@ -348,6 +360,9 @@

    Returns string shopperOrders

  • +
  • + shopperPayments +
  • shopperProducts
  • @@ -384,6 +399,9 @@

    Returns string baseUri

  • +
  • + fetch +
  • fetchOptions
  • diff --git a/docs/classes/responseerror.responseerror-1.html b/docs/classes/responseerror.responseerror-1.html index e4b5f762..e482a3cf 100644 --- a/docs/classes/responseerror.responseerror-1.html +++ b/docs/classes/responseerror.responseerror-1.html @@ -244,6 +244,9 @@

    Static Error

  • shopperOrders
  • +
  • + shopperPayments +
  • shopperProducts
  • diff --git a/docs/classes/shopperbaskets.shopperbaskets-3.html b/docs/classes/shopperbaskets.shopperbaskets-3.html index 9dd7327a..5212f61c 100644 --- a/docs/classes/shopperbaskets.shopperbaskets-3.html +++ b/docs/classes/shopperbaskets.shopperbaskets-3.html @@ -106,7 +106,7 @@

    Authentication & Authorization

    The client requesting the basket information must have access to the /baskets resource. The Shopper Baskets API requires a shopper access token from the Shopper Login and API Access Service (SLAS).

    For details on how to request a shopper access token from SLAS, see the guest user flows for public clients and private clients in the SLAS guides.

    -

    You must include the relevant scope(s) in the client ID used to generate the SLAS token. For details, see the Authorization Scopes Catalog.

    +

    You must include sfcc.shopper-baskets-orders or sfcc.shopper-baskets-orders.rw in the client ID used to generate the SLAS token. For a full list of permissions, see the Authorization Scopes Catalog.

    The following resources require an Account Manager OAuth token with a client ID:

    • /baskets/{basketId}/taxes
    • @@ -288,7 +288,7 @@

      constructor

    • Parameters

      @@ -310,7 +310,7 @@

      clientConfig

      clientConfig: ClientConfig<ConfigParameters> & { baseUri: string }
      @@ -320,7 +320,7 @@

      Static defaultBaseUri: "https://{shortCode}.api.commercecloud.salesforce.com/checkout/shopper-baskets/v1" = currentBaseUri @@ -330,7 +330,7 @@

      Static paramKeys: { addCouponToBasket: ["siteId", "organizationId", "basketId", "locale"]; addCouponToBasketRequired: ["siteId", "organizationId", "basketId"]; addGiftCertificateItemToBasket: ["siteId", "organizationId", "basketId", "locale"]; addGiftCertificateItemToBasketRequired: ["siteId", "organizationId", "basketId"]; addItemToBasket: ["organizationId", "basketId", "siteId", "locale"]; addItemToBasketRequired: ["organizationId", "basketId", "siteId"]; addPaymentInstrumentToBasket: ["organizationId", "basketId", "siteId", "locale"]; addPaymentInstrumentToBasketRequired: ["organizationId", "basketId", "siteId"]; addPriceAdjustmentToBasket: ["organizationId", "basketId", "siteId", "locale"]; addPriceAdjustmentToBasketRequired: ["organizationId", "basketId", "siteId"]; addPriceBooksToBasket: ["organizationId", "basketId", "siteId"]; addPriceBooksToBasketRequired: ["organizationId", "basketId", "siteId"]; addTaxesForBasket: ["organizationId", "basketId", "siteId"]; addTaxesForBasketItem: ["organizationId", "itemId", "basketId", "siteId"]; addTaxesForBasketItemRequired: ["organizationId", "itemId", "basketId", "siteId"]; addTaxesForBasketRequired: ["organizationId", "basketId", "siteId"]; createBasket: ["siteId", "organizationId", "taxMode", "locale"]; createBasketRequired: ["siteId", "organizationId"]; createShipmentForBasket: ["organizationId", "basketId", "siteId", "locale"]; createShipmentForBasketRequired: ["organizationId", "basketId", "siteId"]; deleteBasket: ["siteId", "organizationId", "basketId"]; deleteBasketRequired: ["siteId", "organizationId", "basketId"]; getBasket: ["siteId", "organizationId", "basketId", "locale"]; getBasketRequired: ["siteId", "organizationId", "basketId"]; getPaymentMethodsForBasket: ["organizationId", "basketId", "siteId", "locale"]; getPaymentMethodsForBasketRequired: ["organizationId", "basketId", "siteId"]; getPriceBooksForBasket: ["organizationId", "basketId", "siteId"]; getPriceBooksForBasketRequired: ["organizationId", "basketId", "siteId"]; getShippingMethodsForShipment: ["organizationId", "shipmentId", "basketId", "siteId", "locale"]; getShippingMethodsForShipmentRequired: ["organizationId", "shipmentId", "basketId", "siteId"]; getTaxesFromBasket: ["organizationId", "basketId", "siteId"]; getTaxesFromBasketRequired: ["organizationId", "basketId", "siteId"]; mergeBasket: ["siteId", "organizationId", "createDestinationBasket", "productItemMergeMode", "locale"]; mergeBasketRequired: ["siteId", "organizationId"]; removeCouponFromBasket: ["siteId", "organizationId", "basketId", "couponItemId", "locale"]; removeCouponFromBasketRequired: ["siteId", "organizationId", "basketId", "couponItemId"]; removeGiftCertificateItemFromBasket: ["siteId", "organizationId", "basketId", "giftCertificateItemId", "locale"]; removeGiftCertificateItemFromBasketRequired: ["siteId", "organizationId", "basketId", "giftCertificateItemId"]; removeItemFromBasket: ["itemId", "organizationId", "basketId", "siteId", "locale"]; removeItemFromBasketRequired: ["itemId", "organizationId", "basketId", "siteId"]; removePaymentInstrumentFromBasket: ["paymentInstrumentId", "organizationId", "basketId", "siteId", "locale"]; removePaymentInstrumentFromBasketRequired: ["paymentInstrumentId", "organizationId", "basketId", "siteId"]; removePriceAdjustmentFromBasket: ["priceAdjustmentId", "organizationId", "basketId", "siteId", "locale"]; removePriceAdjustmentFromBasketRequired: ["priceAdjustmentId", "organizationId", "basketId", "siteId"]; removeShipmentFromBasket: ["shipmentId", "organizationId", "basketId", "siteId", "locale"]; removeShipmentFromBasketRequired: ["shipmentId", "organizationId", "basketId", "siteId"]; transferBasket: ["siteId", "organizationId", "overrideExisting", "merge", "locale"]; transferBasketRequired: ["siteId", "organizationId"]; updateAsAgentBasket: ["siteId", "organizationId", "basketId", "locale"]; updateAsAgentBasketRequired: ["siteId", "organizationId", "basketId"]; updateAsStorefrontBasket: ["organizationId", "basketId", "siteId", "exchange", "locale"]; updateAsStorefrontBasketRequired: ["organizationId", "basketId", "siteId"]; updateBasket: ["siteId", "organizationId", "basketId", "removeExternalTax", "locale"]; updateBasketRequired: ["siteId", "organizationId", "basketId"]; updateBillingAddressForBasket: ["siteId", "organizationId", "basketId", "locale", "useAsShipping", "removeExternalTax"]; updateBillingAddressForBasketRequired: ["siteId", "organizationId", "basketId"]; updateCustomerForBasket: ["siteId", "organizationId", "basketId", "locale"]; updateCustomerForBasketRequired: ["siteId", "organizationId", "basketId"]; updateGiftCertificateItemInBasket: ["siteId", "organizationId", "basketId", "giftCertificateItemId", "locale"]; updateGiftCertificateItemInBasketRequired: ["siteId", "organizationId", "basketId", "giftCertificateItemId"]; updateItemInBasket: ["itemId", "organizationId", "basketId", "siteId", "removeExternalTax", "locale"]; updateItemInBasketRequired: ["itemId", "organizationId", "basketId", "siteId"]; updateItemsInBasket: ["organizationId", "basketId", "siteId", "removeExternalTax", "locale"]; updateItemsInBasketRequired: ["organizationId", "basketId", "siteId"]; updatePaymentInstrumentInBasket: ["paymentInstrumentId", "organizationId", "basketId", "siteId", "removeExternalTax", "locale"]; updatePaymentInstrumentInBasketRequired: ["paymentInstrumentId", "organizationId", "basketId", "siteId"]; updatePriceAdjustmentInBasket: ["priceAdjustmentId", "organizationId", "basketId", "siteId"]; updatePriceAdjustmentInBasketRequired: ["priceAdjustmentId", "organizationId", "basketId", "siteId"]; updateShipmentForBasket: ["shipmentId", "organizationId", "basketId", "siteId", "locale"]; updateShipmentForBasketRequired: ["shipmentId", "organizationId", "basketId", "siteId"]; updateShippingAddressForShipment: ["organizationId", "shipmentId", "basketId", "siteId", "useAsBilling", "removeExternalTax", "locale"]; updateShippingAddressForShipmentRequired: ["organizationId", "shipmentId", "basketId", "siteId"]; updateShippingMethodForShipment: ["organizationId", "shipmentId", "basketId", "siteId", "locale"]; updateShippingMethodForShipmentRequired: ["organizationId", "shipmentId", "basketId", "siteId"] } = {addCouponToBasket: ['siteId','organizationId','basketId','locale',],addCouponToBasketRequired: ['siteId','organizationId','basketId',],addGiftCertificateItemToBasket: ['siteId','organizationId','basketId','locale',],addGiftCertificateItemToBasketRequired: ['siteId','organizationId','basketId',],addItemToBasket: ['organizationId','basketId','siteId','locale',],addItemToBasketRequired: ['organizationId','basketId','siteId',],addPaymentInstrumentToBasket: ['organizationId','basketId','siteId','locale',],addPaymentInstrumentToBasketRequired: ['organizationId','basketId','siteId',],addPriceAdjustmentToBasket: ['organizationId','basketId','siteId','locale',],addPriceAdjustmentToBasketRequired: ['organizationId','basketId','siteId',],addPriceBooksToBasket: ['organizationId','basketId','siteId',],addPriceBooksToBasketRequired: ['organizationId','basketId','siteId',],addTaxesForBasket: ['organizationId','basketId','siteId',],addTaxesForBasketRequired: ['organizationId','basketId','siteId',],addTaxesForBasketItem: ['organizationId','itemId','basketId','siteId',],addTaxesForBasketItemRequired: ['organizationId','itemId','basketId','siteId',],createBasket: ['siteId','organizationId','taxMode','locale',],createBasketRequired: ['siteId','organizationId',],createShipmentForBasket: ['organizationId','basketId','siteId','locale',],createShipmentForBasketRequired: ['organizationId','basketId','siteId',],deleteBasket: ['siteId','organizationId','basketId',],deleteBasketRequired: ['siteId','organizationId','basketId',],getBasket: ['siteId','organizationId','basketId','locale',],getBasketRequired: ['siteId','organizationId','basketId',],getPaymentMethodsForBasket: ['organizationId','basketId','siteId','locale',],getPaymentMethodsForBasketRequired: ['organizationId','basketId','siteId',],getPriceBooksForBasket: ['organizationId','basketId','siteId',],getPriceBooksForBasketRequired: ['organizationId','basketId','siteId',],getShippingMethodsForShipment: ['organizationId','shipmentId','basketId','siteId','locale',],getShippingMethodsForShipmentRequired: ['organizationId','shipmentId','basketId','siteId',],getTaxesFromBasket: ['organizationId','basketId','siteId',],getTaxesFromBasketRequired: ['organizationId','basketId','siteId',],mergeBasket: ['siteId','organizationId','createDestinationBasket','productItemMergeMode','locale',],mergeBasketRequired: ['siteId','organizationId',],removeCouponFromBasket: ['siteId','organizationId','basketId','couponItemId','locale',],removeCouponFromBasketRequired: ['siteId','organizationId','basketId','couponItemId',],removeGiftCertificateItemFromBasket: ['siteId','organizationId','basketId','giftCertificateItemId','locale',],removeGiftCertificateItemFromBasketRequired: ['siteId','organizationId','basketId','giftCertificateItemId',],removeItemFromBasket: ['itemId','organizationId','basketId','siteId','locale',],removeItemFromBasketRequired: ['itemId','organizationId','basketId','siteId',],removePaymentInstrumentFromBasket: ['paymentInstrumentId','organizationId','basketId','siteId','locale',],removePaymentInstrumentFromBasketRequired: ['paymentInstrumentId','organizationId','basketId','siteId',],removePriceAdjustmentFromBasket: ['priceAdjustmentId','organizationId','basketId','siteId','locale',],removePriceAdjustmentFromBasketRequired: ['priceAdjustmentId','organizationId','basketId','siteId',],removeShipmentFromBasket: ['shipmentId','organizationId','basketId','siteId','locale',],removeShipmentFromBasketRequired: ['shipmentId','organizationId','basketId','siteId',],transferBasket: ['siteId','organizationId','overrideExisting','merge','locale',],transferBasketRequired: ['siteId','organizationId',],updateAsAgentBasket: ['siteId','organizationId','basketId','locale',],updateAsAgentBasketRequired: ['siteId','organizationId','basketId',],updateAsStorefrontBasket: ['organizationId','basketId','siteId','exchange','locale',],updateAsStorefrontBasketRequired: ['organizationId','basketId','siteId',],updateBasket: ['siteId','organizationId','basketId','removeExternalTax','locale',],updateBasketRequired: ['siteId','organizationId','basketId',],updateBillingAddressForBasket: ['siteId','organizationId','basketId','locale','useAsShipping','removeExternalTax',],updateBillingAddressForBasketRequired: ['siteId','organizationId','basketId',],updateCustomerForBasket: ['siteId','organizationId','basketId','locale',],updateCustomerForBasketRequired: ['siteId','organizationId','basketId',],updateGiftCertificateItemInBasket: ['siteId','organizationId','basketId','giftCertificateItemId','locale',],updateGiftCertificateItemInBasketRequired: ['siteId','organizationId','basketId','giftCertificateItemId',],updateItemInBasket: ['itemId','organizationId','basketId','siteId','removeExternalTax','locale',],updateItemInBasketRequired: ['itemId','organizationId','basketId','siteId',],updateItemsInBasket: ['organizationId','basketId','siteId','removeExternalTax','locale',],updateItemsInBasketRequired: ['organizationId','basketId','siteId',],updatePaymentInstrumentInBasket: ['paymentInstrumentId','organizationId','basketId','siteId','removeExternalTax','locale',],updatePaymentInstrumentInBasketRequired: ['paymentInstrumentId','organizationId','basketId','siteId',],updatePriceAdjustmentInBasket: ['priceAdjustmentId','organizationId','basketId','siteId',],updatePriceAdjustmentInBasketRequired: ['priceAdjustmentId','organizationId','basketId','siteId',],updateShipmentForBasket: ['shipmentId','organizationId','basketId','siteId','locale',],updateShipmentForBasketRequired: ['shipmentId','organizationId','basketId','siteId',],updateShippingAddressForShipment: ['organizationId','shipmentId','basketId','siteId','useAsBilling','removeExternalTax','locale',],updateShippingAddressForShipmentRequired: ['organizationId','shipmentId','basketId','siteId',],updateShippingMethodForShipment: ['organizationId','shipmentId','basketId','siteId','locale',],updateShippingMethodForShipmentRequired: ['organizationId','shipmentId','basketId','siteId',],} as const
      @@ -575,7 +575,7 @@

      addCouponToBasket

    • @@ -601,7 +601,7 @@

      Returns Promise
      @@ -650,7 +650,7 @@

      addGiftCertificateItemToBasket

    • @@ -676,7 +676,7 @@

      Returns Promise
      @@ -718,14 +718,14 @@

      Returns Promise

      addItemToBasket

      • @@ -763,7 +763,7 @@

        addItemToBasket

        Parameters

        • -
          options: RequireParametersUnlessAllAreOptional<{ body: Array<ProductItem> & CustomRequestBody; headers?: undefined | {}; parameters?: CompositeParameters<{ basketId: string; locale?: LocaleCode; organizationId: string; siteId: string } & QueryParameters, ConfigParameters> }>
          +
          options: RequireParametersUnlessAllAreOptional<{ body: Array<ProductItem & CustomRequestBody>; headers?: undefined | {}; parameters?: CompositeParameters<{ basketId: string; locale?: LocaleCode; organizationId: string; siteId: string } & QueryParameters, ConfigParameters> }>

          An object containing the options for this method.

          @@ -777,7 +777,7 @@

          Returns Promise
          @@ -820,7 +820,7 @@

          T: Parameters

          • -
            options: RequireParametersUnlessAllAreOptional<{ body: Array<ProductItem> & CustomRequestBody; headers?: undefined | {}; parameters?: CompositeParameters<{ basketId: string; locale?: LocaleCode; organizationId: string; siteId: string } & QueryParameters, ConfigParameters> }>
            +
            options: RequireParametersUnlessAllAreOptional<{ body: Array<ProductItem & CustomRequestBody>; headers?: undefined | {}; parameters?: CompositeParameters<{ basketId: string; locale?: LocaleCode; organizationId: string; siteId: string } & QueryParameters, ConfigParameters> }>

            An object containing the options for this method.

            @@ -852,7 +852,7 @@

            addPaymentInstrumentToBasket

          • @@ -878,7 +878,7 @@

            Returns Promise
            @@ -927,7 +927,7 @@

            addPriceAdjustmentToBasket

          • @@ -953,7 +953,7 @@

            Returns Promise
            @@ -995,14 +995,14 @@

            Returns Promise

            addPriceBooksToBasket

            • @@ -1014,7 +1014,7 @@

              addPriceBooksToBasket

              Parameters

              • -
                options: RequireParametersUnlessAllAreOptional<{ body: Array<string> & CustomRequestBody; headers?: undefined | {}; parameters?: CompositeParameters<{ basketId: string; organizationId: string; siteId: string } & QueryParameters, ConfigParameters> }>
                +
                options: RequireParametersUnlessAllAreOptional<{ body: Array<string>; headers?: undefined | {}; parameters?: CompositeParameters<{ basketId: string; organizationId: string; siteId: string } & QueryParameters, ConfigParameters> }>

                An object containing the options for this method.

                @@ -1028,7 +1028,7 @@

                Returns Promise
                @@ -1045,7 +1045,7 @@

                T: Parameters

                • -
                  options: RequireParametersUnlessAllAreOptional<{ body: Array<string> & CustomRequestBody; headers?: undefined | {}; parameters?: CompositeParameters<{ basketId: string; organizationId: string; siteId: string } & QueryParameters, ConfigParameters> }>
                  +
                  options: RequireParametersUnlessAllAreOptional<{ body: Array<string>; headers?: undefined | {}; parameters?: CompositeParameters<{ basketId: string; organizationId: string; siteId: string } & QueryParameters, ConfigParameters> }>

                  An object containing the options for this method.

                  @@ -1077,7 +1077,7 @@

                  addTaxesForBasket

                • @@ -1104,7 +1104,7 @@

                  Returns Promise
                  @@ -1154,7 +1154,7 @@

                  addTaxesForBasketItem

                • @@ -1180,7 +1180,7 @@

                  Returns Promise
                  @@ -1229,7 +1229,7 @@

                  createBasket

                • @@ -1237,7 +1237,8 @@

                  createBasket

                  Creates a new basket.

                  The created basket is initialized with default values. Optional JSON data provided in the request body is populated into the created basket. It can be updated with other endpoints offered by the Shopper Baskets API.

                  -

                  Each customer can have just one open basket. When a basket is created, it is said to be open. It remains open until either an order is created from it or it is deleted.

                  +

                  Each shopper is limited to one open basket at a time. Attempting to create a second basket for the same customer will result in a 400 Bad Request error with the message: "Customer Baskets Quota Exceeded". + A basket is considered "open" upon creation and remains in this state until it is either converted into an order or explicitly deleted. For implementation best practices, see Hybrid Storefront Best Practices for Working with Baskets.

                  If you would like to get a raw Response object use the other createBasket function.

                • Parameters

                  @@ -1257,7 +1258,7 @@

                  Returns Promise
                  @@ -1265,7 +1266,8 @@

                  Returns PromiseCreates a new basket.

                  The created basket is initialized with default values. Optional JSON data provided in the request body is populated into the created basket. It can be updated with other endpoints offered by the Shopper Baskets API.

                  -

                  Each customer can have just one open basket. When a basket is created, it is said to be open. It remains open until either an order is created from it or it is deleted.

                  +

                  Each shopper is limited to one open basket at a time. Attempting to create a second basket for the same customer will result in a 400 Bad Request error with the message: "Customer Baskets Quota Exceeded". + A basket is considered "open" upon creation and remains in this state until it is either converted into an order or explicitly deleted. For implementation best practices, see Hybrid Storefront Best Practices for Working with Baskets.

                  Type parameters

                    @@ -1308,7 +1310,7 @@

                    createShipmentForBasket

                  • @@ -1345,7 +1347,7 @@

                    Returns Promise
                    @@ -1405,7 +1407,7 @@

                    deleteBasket

                  • @@ -1431,7 +1433,7 @@

                    Returns Promise
                    @@ -1480,7 +1482,7 @@

                    getBasket

                  • @@ -1506,7 +1508,7 @@

                    Returns Promise
                    @@ -1555,7 +1557,7 @@

                    getPaymentMethodsForBasket

                  • @@ -1581,7 +1583,7 @@

                    Returns Promise
                    @@ -1630,7 +1632,7 @@

                    getPriceBooksForBasket

                  • @@ -1658,7 +1660,7 @@

                    Returns Promise
                    @@ -1709,7 +1711,7 @@

                    getShippingMethodsForShipment

                  • @@ -1735,7 +1737,7 @@

                    Returns Promise
                    @@ -1784,7 +1786,7 @@

                    getTaxesFromBasket

                  • @@ -1810,7 +1812,7 @@

                    Returns Promise
                    @@ -1859,7 +1861,7 @@

                    mergeBasket

                  • @@ -1954,7 +1956,7 @@

                    Returns Promise
                    @@ -2072,7 +2074,7 @@

                    removeCouponFromBasket

                  • @@ -2098,7 +2100,7 @@

                    Returns Promise
                    @@ -2147,7 +2149,7 @@

                    removeGiftCertificateItemFromBasket

                  • @@ -2173,7 +2175,7 @@

                    Returns Promise
                    @@ -2222,7 +2224,7 @@

                    removeItemFromBasket

                  • @@ -2248,7 +2250,7 @@

                    Returns Promise
                    @@ -2297,7 +2299,7 @@

                    removePaymentInstrumentFromBasket

                  • @@ -2323,7 +2325,7 @@

                    Returns Promise
                    @@ -2372,7 +2374,7 @@

                    removePriceAdjustmentFromBasket

                  • @@ -2398,7 +2400,7 @@

                    Returns Promise
                    @@ -2447,7 +2449,7 @@

                    removeShipmentFromBasket

                  • @@ -2475,7 +2477,7 @@

                    Returns Promise
                    @@ -2526,7 +2528,7 @@

                    transferBasket

                  • @@ -2564,7 +2566,7 @@

                    Returns Promise
                    @@ -2625,7 +2627,7 @@

                    updateAsAgentBasket

                  • @@ -2651,7 +2653,7 @@

                    Returns Promise
                    @@ -2700,7 +2702,7 @@

                    updateAsStorefrontBasket

                  • @@ -2726,7 +2728,7 @@

                    Returns Promise
                    @@ -2775,7 +2777,7 @@

                    updateBasket

                  • @@ -2802,7 +2804,7 @@

                    Returns Promise
                    @@ -2852,7 +2854,7 @@

                    updateBillingAddressForBasket

                  • @@ -2878,7 +2880,7 @@

                    Returns Promise
                    @@ -2927,7 +2929,7 @@

                    updateCustomerForBasket

                  • @@ -2953,7 +2955,7 @@

                    Returns Promise
                    @@ -3002,7 +3004,7 @@

                    updateGiftCertificateItemInBasket

                  • @@ -3028,7 +3030,7 @@

                    Returns Promise
                    @@ -3077,7 +3079,7 @@

                    updateItemInBasket

                  • @@ -3114,7 +3116,7 @@

                    Returns Promise
                    @@ -3167,14 +3169,14 @@

                    Returns Promise

                    updateItemsInBasket

                    • @@ -3219,7 +3221,7 @@

                      updateItemsInBasket

                      Parameters

                      • -
                        options: RequireParametersUnlessAllAreOptional<{ body: Array<ProductItem> & CustomRequestBody; headers?: undefined | {}; parameters?: CompositeParameters<{ basketId: string; locale?: LocaleCode; organizationId: string; removeExternalTax?: undefined | false | true; siteId: string } & QueryParameters, ConfigParameters> }>
                        +
                        options: RequireParametersUnlessAllAreOptional<{ body: Array<ProductItem & CustomRequestBody>; headers?: undefined | {}; parameters?: CompositeParameters<{ basketId: string; locale?: LocaleCode; organizationId: string; removeExternalTax?: undefined | false | true; siteId: string } & QueryParameters, ConfigParameters> }>

                        An object containing the options for this method.

                        @@ -3233,7 +3235,7 @@

                        Returns Promise
                        @@ -3283,7 +3285,7 @@

                        T: Parameters

                        • -
                          options: RequireParametersUnlessAllAreOptional<{ body: Array<ProductItem> & CustomRequestBody; headers?: undefined | {}; parameters?: CompositeParameters<{ basketId: string; locale?: LocaleCode; organizationId: string; removeExternalTax?: undefined | false | true; siteId: string } & QueryParameters, ConfigParameters> }>
                          +
                          options: RequireParametersUnlessAllAreOptional<{ body: Array<ProductItem & CustomRequestBody>; headers?: undefined | {}; parameters?: CompositeParameters<{ basketId: string; locale?: LocaleCode; organizationId: string; removeExternalTax?: undefined | false | true; siteId: string } & QueryParameters, ConfigParameters> }>

                          An object containing the options for this method.

                          @@ -3315,7 +3317,7 @@

                          updatePaymentInstrumentInBasket

                        • @@ -3341,7 +3343,7 @@

                          Returns Promise
                          @@ -3390,7 +3392,7 @@

                          updatePriceAdjustmentInBasket

                        • @@ -3423,7 +3425,7 @@

                          Returns Promise
                          @@ -3479,7 +3481,7 @@

                          updateShipmentForBasket

                        • @@ -3516,7 +3518,7 @@

                          Returns Promise
                          @@ -3576,7 +3578,7 @@

                          updateShippingAddressForShipment

                        • @@ -3602,7 +3604,7 @@

                          Returns Promise
                          @@ -3651,7 +3653,7 @@

                          updateShippingMethodForShipment

                        • @@ -3677,7 +3679,7 @@

                          Returns Promise
                          @@ -3724,7 +3726,7 @@

                          Static apiPaths: object

                          @@ -3733,7 +3735,7 @@

                          addCouponToBasket

                          addCouponToBasket: string = "/organizations/{organizationId}/baskets/{basketId}/coupons"
                          @@ -3743,7 +3745,7 @@

                          addGiftCertificateItemToBasket

                          addGiftCertificateItemToBasket: string = "/organizations/{organizationId}/baskets/{basketId}/gift-certificate-items"
                          @@ -3753,7 +3755,7 @@

                          addItemToBasket

                          addItemToBasket: string = "/organizations/{organizationId}/baskets/{basketId}/items"
                          @@ -3763,7 +3765,7 @@

                          addPaymentInstrumentToBasket

                          addPaymentInstrumentToBasket: string = "/organizations/{organizationId}/baskets/{basketId}/payment-instruments"
                          @@ -3773,7 +3775,7 @@

                          addPriceAdjustmentToBasket

                          addPriceAdjustmentToBasket: string = "/organizations/{organizationId}/baskets/{basketId}/price-adjustments"
                          @@ -3783,7 +3785,7 @@

                          addPriceBooksToBasket

                          addPriceBooksToBasket: string = "/organizations/{organizationId}/baskets/{basketId}/price-books"
                          @@ -3793,7 +3795,7 @@

                          addTaxesForBasket

                          addTaxesForBasket: string = "/organizations/{organizationId}/baskets/{basketId}/taxes"
                          @@ -3803,7 +3805,7 @@

                          addTaxesForBasketItem

                          addTaxesForBasketItem: string = "/organizations/{organizationId}/baskets/{basketId}/items/{itemId}/taxes"
                          @@ -3813,7 +3815,7 @@

                          createBasket

                          createBasket: string = "/organizations/{organizationId}/baskets"
                          @@ -3823,7 +3825,7 @@

                          createShipmentForBasket

                          createShipmentForBasket: string = "/organizations/{organizationId}/baskets/{basketId}/shipments"
                          @@ -3833,7 +3835,7 @@

                          deleteBasket

                          deleteBasket: string = "/organizations/{organizationId}/baskets/{basketId}"
                          @@ -3843,7 +3845,7 @@

                          getBasket

                          getBasket: string = "/organizations/{organizationId}/baskets/{basketId}"
                          @@ -3853,7 +3855,7 @@

                          getPaymentMethodsForBasket

                          getPaymentMethodsForBasket: string = "/organizations/{organizationId}/baskets/{basketId}/payment-methods"
                          @@ -3863,7 +3865,7 @@

                          getPriceBooksForBasket

                          getPriceBooksForBasket: string = "/organizations/{organizationId}/baskets/{basketId}/price-books"
                          @@ -3873,7 +3875,7 @@

                          getShippingMethodsForShipment

                          getShippingMethodsForShipment: string = "/organizations/{organizationId}/baskets/{basketId}/shipments/{shipmentId}/shipping-methods"
                          @@ -3883,7 +3885,7 @@

                          getTaxesFromBasket

                          getTaxesFromBasket: string = "/organizations/{organizationId}/baskets/{basketId}/taxes"
                          @@ -3893,7 +3895,7 @@

                          mergeBasket

                          mergeBasket: string = "/organizations/{organizationId}/baskets/actions/merge"
                          @@ -3903,7 +3905,7 @@

                          removeCouponFromBasket

                          removeCouponFromBasket: string = "/organizations/{organizationId}/baskets/{basketId}/coupons/{couponItemId}"
                          @@ -3913,7 +3915,7 @@

                          removeGiftCertificateItemFromBasket

                          removeGiftCertificateItemFromBasket: string = "/organizations/{organizationId}/baskets/{basketId}/gift-certificate-items/{giftCertificateItemId}"
                          @@ -3923,7 +3925,7 @@

                          removeItemFromBasket

                          removeItemFromBasket: string = "/organizations/{organizationId}/baskets/{basketId}/items/{itemId}"
                          @@ -3933,7 +3935,7 @@

                          removePaymentInstrumentFromBasket

                          removePaymentInstrumentFromBasket: string = "/organizations/{organizationId}/baskets/{basketId}/payment-instruments/{paymentInstrumentId}"
                          @@ -3943,7 +3945,7 @@

                          removePriceAdjustmentFromBasket

                          removePriceAdjustmentFromBasket: string = "/organizations/{organizationId}/baskets/{basketId}/price-adjustments/{priceAdjustmentId}"
                          @@ -3953,7 +3955,7 @@

                          removeShipmentFromBasket

                          removeShipmentFromBasket: string = "/organizations/{organizationId}/baskets/{basketId}/shipments/{shipmentId}"
                          @@ -3963,7 +3965,7 @@

                          transferBasket

                          transferBasket: string = "/organizations/{organizationId}/baskets/actions/transfer"
                          @@ -3973,7 +3975,7 @@

                          updateAsAgentBasket

                          updateAsAgentBasket: string = "/organizations/{organizationId}/baskets/{basketId}/agent"
                          @@ -3983,7 +3985,7 @@

                          updateAsStorefrontBasket

                          updateAsStorefrontBasket: string = "/organizations/{organizationId}/baskets/{basketId}/storefront"
                          @@ -3993,7 +3995,7 @@

                          updateBasket

                          updateBasket: string = "/organizations/{organizationId}/baskets/{basketId}"
                          @@ -4003,7 +4005,7 @@

                          updateBillingAddressForBasket

                          updateBillingAddressForBasket: string = "/organizations/{organizationId}/baskets/{basketId}/billing-address"
                          @@ -4013,7 +4015,7 @@

                          updateCustomerForBasket

                          updateCustomerForBasket: string = "/organizations/{organizationId}/baskets/{basketId}/customer"
                          @@ -4023,7 +4025,7 @@

                          updateGiftCertificateItemInBasket

                          updateGiftCertificateItemInBasket: string = "/organizations/{organizationId}/baskets/{basketId}/gift-certificate-items/{giftCertificateItemId}"
                          @@ -4033,7 +4035,7 @@

                          updateItemInBasket

                          updateItemInBasket: string = "/organizations/{organizationId}/baskets/{basketId}/items/{itemId}"
                          @@ -4043,7 +4045,7 @@

                          updateItemsInBasket

                          updateItemsInBasket: string = "/organizations/{organizationId}/baskets/{basketId}/items"
                          @@ -4053,7 +4055,7 @@

                          updatePaymentInstrumentInBasket

                          updatePaymentInstrumentInBasket: string = "/organizations/{organizationId}/baskets/{basketId}/payment-instruments/{paymentInstrumentId}"
                          @@ -4063,7 +4065,7 @@

                          updatePriceAdjustmentInBasket

                          updatePriceAdjustmentInBasket: string = "/organizations/{organizationId}/baskets/{basketId}/price-adjustments/{priceAdjustmentId}"
                          @@ -4073,7 +4075,7 @@

                          updateShipmentForBasket

                          updateShipmentForBasket: string = "/organizations/{organizationId}/baskets/{basketId}/shipments/{shipmentId}"
                          @@ -4083,7 +4085,7 @@

                          updateShippingAddressForShipment

                          updateShippingAddressForShipment: string = "/organizations/{organizationId}/baskets/{basketId}/shipments/{shipmentId}/shipping-address"
                          @@ -4093,7 +4095,7 @@

                          updateShippingMethodForShipment

                          updateShippingMethodForShipment: string = "/organizations/{organizationId}/baskets/{basketId}/shipments/{shipmentId}/shipping-method"
                          @@ -4153,6 +4155,9 @@

                          updateShippingMethodForShipment

                        • shopperOrders
                        • +
                        • + shopperPayments +
                        • shopperProducts
                        • diff --git a/docs/classes/shopperbasketsv2.shopperbasketsv2-3.html b/docs/classes/shopperbasketsv2.shopperbasketsv2-3.html index 3524ed55..300d4d82 100644 --- a/docs/classes/shopperbasketsv2.shopperbasketsv2-3.html +++ b/docs/classes/shopperbasketsv2.shopperbasketsv2-3.html @@ -109,7 +109,7 @@

                          Authentication & Authorization

                          The client requesting the basket information must have access to the /baskets resource. The Shopper Baskets API requires a shopper access token from the Shopper Login and API Access Service (SLAS).

                          For details on how to request a shopper access token from SLAS, see the guest user flows for public clients and private clients in the SLAS guides.

                          -

                          You must include the relevant scope(s) in the client ID used to generate the SLAS token. For details, see the Authorization Scopes Catalog.

                          +

                          You must include sfcc.shopper-baskets-orders or sfcc.shopper-baskets-orders.rw in the client ID used to generate the SLAS token. For a full list of permissions, see the Authorization Scopes Catalog.

                          The following resources require an Account Manager OAuth token with a client ID:

                          • /baskets/{basketId}/taxes
                          • @@ -124,7 +124,7 @@

                            Use Hooks

                            For details on working with hooks, see Extensibility with Hooks.

                            -

                            Basket Calculation

                            +

                            Basket Calculation

                            Unless you’re using hooks, each modification to a basket triggers the following calculations:

                              @@ -152,7 +152,7 @@

                              Basket Calculation

                            1. Calculate the order’s net, tax, and gross totals by adding up the line totals.
                            -

                            External Taxation

                            +

                            External Taxation

                            The B2C Commerce API calculates taxes internally using tax tables. If you want to integrate with a third-party tax provider, or calculate tax on your own, you can use the external taxation feature to add a taxation rate and optional taxation value. When setting a taxation rate, the taxation is calculated for this specific rate. If you pass a value, this value is used as taxation value, as well, without recalculation. To use this feature, set the taxMode parameter to external when creating the basket.

                            When using external taxation, you must set a tax rate either in one request to the /baskets/{basketId}/taxes or with separate requests for each line item, using /baskets/{basketId}/items/{lineItemId}/taxes.

                            @@ -208,7 +208,7 @@

                            Temporary Baskets

                            Type parameters

                            @@ -301,7 +301,7 @@

                            constructor

                          • Parameters

                            @@ -323,7 +323,7 @@

                            clientConfig

                            clientConfig: ClientConfig<ConfigParameters> & { baseUri: string }
                            @@ -333,17 +333,17 @@

                            Static defaultBaseUri: "https://{shortCode}.api.commercecloud.salesforce.com/checkout/shopper-baskets/v2" = currentBaseUri

                          Static Readonly paramKeys

                          -
                          paramKeys: { addCouponToBasket: ["siteId", "organizationId", "basketId", "locale"]; addCouponToBasketRequired: ["siteId", "organizationId", "basketId"]; addGiftCertificateItemToBasket: ["siteId", "organizationId", "basketId", "locale"]; addGiftCertificateItemToBasketRequired: ["siteId", "organizationId", "basketId"]; addItemToBasket: ["organizationId", "basketId", "siteId", "locale"]; addItemToBasketRequired: ["organizationId", "basketId", "siteId"]; addPaymentInstrumentToBasket: ["organizationId", "basketId", "siteId", "locale"]; addPaymentInstrumentToBasketRequired: ["organizationId", "basketId", "siteId"]; addPriceAdjustmentToBasket: ["organizationId", "basketId", "siteId", "locale"]; addPriceAdjustmentToBasketRequired: ["organizationId", "basketId", "siteId"]; addPriceBooksToBasket: ["organizationId", "basketId", "siteId"]; addPriceBooksToBasketRequired: ["organizationId", "basketId", "siteId"]; addTaxesForBasket: ["organizationId", "basketId", "siteId"]; addTaxesForBasketItem: ["organizationId", "itemId", "basketId", "siteId"]; addTaxesForBasketItemRequired: ["organizationId", "itemId", "basketId", "siteId"]; addTaxesForBasketRequired: ["organizationId", "basketId", "siteId"]; createBasket: ["siteId", "organizationId", "taxMode", "temporary", "locale"]; createBasketRequired: ["siteId", "organizationId"]; createShipmentForBasket: ["organizationId", "basketId", "siteId", "locale"]; createShipmentForBasketRequired: ["organizationId", "basketId", "siteId"]; deleteBasket: ["siteId", "organizationId", "basketId"]; deleteBasketRequired: ["siteId", "organizationId", "basketId"]; getBasket: ["siteId", "organizationId", "basketId", "locale"]; getBasketRequired: ["siteId", "organizationId", "basketId"]; getPaymentMethodsForBasket: ["organizationId", "basketId", "siteId", "locale"]; getPaymentMethodsForBasketRequired: ["organizationId", "basketId", "siteId"]; getPriceBooksForBasket: ["organizationId", "basketId", "siteId"]; getPriceBooksForBasketRequired: ["organizationId", "basketId", "siteId"]; getShippingMethodsForShipment: ["organizationId", "shipmentId", "basketId", "siteId", "locale"]; getShippingMethodsForShipmentRequired: ["organizationId", "shipmentId", "basketId", "siteId"]; getTaxesFromBasket: ["organizationId", "basketId", "siteId"]; getTaxesFromBasketRequired: ["organizationId", "basketId", "siteId"]; mergeBasket: ["siteId", "organizationId", "createDestinationBasket", "productItemMergeMode", "locale"]; mergeBasketRequired: ["siteId", "organizationId"]; removeCouponFromBasket: ["siteId", "organizationId", "basketId", "couponItemId", "locale"]; removeCouponFromBasketRequired: ["siteId", "organizationId", "basketId", "couponItemId"]; removeGiftCertificateItemFromBasket: ["siteId", "organizationId", "basketId", "giftCertificateItemId", "locale"]; removeGiftCertificateItemFromBasketRequired: ["siteId", "organizationId", "basketId", "giftCertificateItemId"]; removeItemFromBasket: ["itemId", "organizationId", "basketId", "siteId", "locale"]; removeItemFromBasketRequired: ["itemId", "organizationId", "basketId", "siteId"]; removePaymentInstrumentFromBasket: ["paymentInstrumentId", "organizationId", "basketId", "siteId", "locale"]; removePaymentInstrumentFromBasketRequired: ["paymentInstrumentId", "organizationId", "basketId", "siteId"]; removePriceAdjustmentFromBasket: ["priceAdjustmentId", "organizationId", "basketId", "siteId", "locale"]; removePriceAdjustmentFromBasketRequired: ["priceAdjustmentId", "organizationId", "basketId", "siteId"]; removeShipmentFromBasket: ["shipmentId", "organizationId", "basketId", "siteId", "locale"]; removeShipmentFromBasketRequired: ["shipmentId", "organizationId", "basketId", "siteId"]; transferBasket: ["siteId", "organizationId", "overrideExisting", "merge", "locale"]; transferBasketRequired: ["siteId", "organizationId"]; updateAsAgentBasket: ["siteId", "organizationId", "basketId", "locale"]; updateAsAgentBasketRequired: ["siteId", "organizationId", "basketId"]; updateAsStorefrontBasket: ["organizationId", "basketId", "siteId", "exchange", "locale"]; updateAsStorefrontBasketRequired: ["organizationId", "basketId", "siteId"]; updateBasket: ["siteId", "organizationId", "basketId", "removeExternalTax", "locale"]; updateBasketRequired: ["siteId", "organizationId", "basketId"]; updateBillingAddressForBasket: ["siteId", "organizationId", "basketId", "locale", "useAsShipping", "removeExternalTax"]; updateBillingAddressForBasketRequired: ["siteId", "organizationId", "basketId"]; updateCustomerForBasket: ["siteId", "organizationId", "basketId", "locale"]; updateCustomerForBasketRequired: ["siteId", "organizationId", "basketId"]; updateGiftCertificateItemInBasket: ["siteId", "organizationId", "basketId", "giftCertificateItemId", "locale"]; updateGiftCertificateItemInBasketRequired: ["siteId", "organizationId", "basketId", "giftCertificateItemId"]; updateItemInBasket: ["itemId", "organizationId", "basketId", "siteId", "removeExternalTax", "locale"]; updateItemInBasketRequired: ["itemId", "organizationId", "basketId", "siteId"]; updateItemsInBasket: ["organizationId", "basketId", "siteId", "removeExternalTax", "locale"]; updateItemsInBasketRequired: ["organizationId", "basketId", "siteId"]; updatePaymentInstrumentInBasket: ["paymentInstrumentId", "organizationId", "basketId", "siteId", "removeExternalTax", "locale"]; updatePaymentInstrumentInBasketRequired: ["paymentInstrumentId", "organizationId", "basketId", "siteId"]; updatePriceAdjustmentInBasket: ["priceAdjustmentId", "organizationId", "basketId", "siteId"]; updatePriceAdjustmentInBasketRequired: ["priceAdjustmentId", "organizationId", "basketId", "siteId"]; updateShipmentForBasket: ["shipmentId", "organizationId", "basketId", "siteId", "locale"]; updateShipmentForBasketRequired: ["shipmentId", "organizationId", "basketId", "siteId"]; updateShippingAddressForShipment: ["organizationId", "shipmentId", "basketId", "siteId", "useAsBilling", "removeExternalTax", "locale"]; updateShippingAddressForShipmentRequired: ["organizationId", "shipmentId", "basketId", "siteId"]; updateShippingMethodForShipment: ["organizationId", "shipmentId", "basketId", "siteId", "locale"]; updateShippingMethodForShipmentRequired: ["organizationId", "shipmentId", "basketId", "siteId"] } = {addCouponToBasket: ['siteId','organizationId','basketId','locale',],addCouponToBasketRequired: ['siteId','organizationId','basketId',],addGiftCertificateItemToBasket: ['siteId','organizationId','basketId','locale',],addGiftCertificateItemToBasketRequired: ['siteId','organizationId','basketId',],addItemToBasket: ['organizationId','basketId','siteId','locale',],addItemToBasketRequired: ['organizationId','basketId','siteId',],addPaymentInstrumentToBasket: ['organizationId','basketId','siteId','locale',],addPaymentInstrumentToBasketRequired: ['organizationId','basketId','siteId',],addPriceAdjustmentToBasket: ['organizationId','basketId','siteId','locale',],addPriceAdjustmentToBasketRequired: ['organizationId','basketId','siteId',],addPriceBooksToBasket: ['organizationId','basketId','siteId',],addPriceBooksToBasketRequired: ['organizationId','basketId','siteId',],addTaxesForBasket: ['organizationId','basketId','siteId',],addTaxesForBasketRequired: ['organizationId','basketId','siteId',],addTaxesForBasketItem: ['organizationId','itemId','basketId','siteId',],addTaxesForBasketItemRequired: ['organizationId','itemId','basketId','siteId',],createBasket: ['siteId','organizationId','taxMode','temporary','locale',],createBasketRequired: ['siteId','organizationId',],createShipmentForBasket: ['organizationId','basketId','siteId','locale',],createShipmentForBasketRequired: ['organizationId','basketId','siteId',],deleteBasket: ['siteId','organizationId','basketId',],deleteBasketRequired: ['siteId','organizationId','basketId',],getBasket: ['siteId','organizationId','basketId','locale',],getBasketRequired: ['siteId','organizationId','basketId',],getPaymentMethodsForBasket: ['organizationId','basketId','siteId','locale',],getPaymentMethodsForBasketRequired: ['organizationId','basketId','siteId',],getPriceBooksForBasket: ['organizationId','basketId','siteId',],getPriceBooksForBasketRequired: ['organizationId','basketId','siteId',],getShippingMethodsForShipment: ['organizationId','shipmentId','basketId','siteId','locale',],getShippingMethodsForShipmentRequired: ['organizationId','shipmentId','basketId','siteId',],getTaxesFromBasket: ['organizationId','basketId','siteId',],getTaxesFromBasketRequired: ['organizationId','basketId','siteId',],mergeBasket: ['siteId','organizationId','createDestinationBasket','productItemMergeMode','locale',],mergeBasketRequired: ['siteId','organizationId',],removeCouponFromBasket: ['siteId','organizationId','basketId','couponItemId','locale',],removeCouponFromBasketRequired: ['siteId','organizationId','basketId','couponItemId',],removeGiftCertificateItemFromBasket: ['siteId','organizationId','basketId','giftCertificateItemId','locale',],removeGiftCertificateItemFromBasketRequired: ['siteId','organizationId','basketId','giftCertificateItemId',],removeItemFromBasket: ['itemId','organizationId','basketId','siteId','locale',],removeItemFromBasketRequired: ['itemId','organizationId','basketId','siteId',],removePaymentInstrumentFromBasket: ['paymentInstrumentId','organizationId','basketId','siteId','locale',],removePaymentInstrumentFromBasketRequired: ['paymentInstrumentId','organizationId','basketId','siteId',],removePriceAdjustmentFromBasket: ['priceAdjustmentId','organizationId','basketId','siteId','locale',],removePriceAdjustmentFromBasketRequired: ['priceAdjustmentId','organizationId','basketId','siteId',],removeShipmentFromBasket: ['shipmentId','organizationId','basketId','siteId','locale',],removeShipmentFromBasketRequired: ['shipmentId','organizationId','basketId','siteId',],transferBasket: ['siteId','organizationId','overrideExisting','merge','locale',],transferBasketRequired: ['siteId','organizationId',],updateAsAgentBasket: ['siteId','organizationId','basketId','locale',],updateAsAgentBasketRequired: ['siteId','organizationId','basketId',],updateAsStorefrontBasket: ['organizationId','basketId','siteId','exchange','locale',],updateAsStorefrontBasketRequired: ['organizationId','basketId','siteId',],updateBasket: ['siteId','organizationId','basketId','removeExternalTax','locale',],updateBasketRequired: ['siteId','organizationId','basketId',],updateBillingAddressForBasket: ['siteId','organizationId','basketId','locale','useAsShipping','removeExternalTax',],updateBillingAddressForBasketRequired: ['siteId','organizationId','basketId',],updateCustomerForBasket: ['siteId','organizationId','basketId','locale',],updateCustomerForBasketRequired: ['siteId','organizationId','basketId',],updateGiftCertificateItemInBasket: ['siteId','organizationId','basketId','giftCertificateItemId','locale',],updateGiftCertificateItemInBasketRequired: ['siteId','organizationId','basketId','giftCertificateItemId',],updateItemInBasket: ['itemId','organizationId','basketId','siteId','removeExternalTax','locale',],updateItemInBasketRequired: ['itemId','organizationId','basketId','siteId',],updateItemsInBasket: ['organizationId','basketId','siteId','removeExternalTax','locale',],updateItemsInBasketRequired: ['organizationId','basketId','siteId',],updatePaymentInstrumentInBasket: ['paymentInstrumentId','organizationId','basketId','siteId','removeExternalTax','locale',],updatePaymentInstrumentInBasketRequired: ['paymentInstrumentId','organizationId','basketId','siteId',],updatePriceAdjustmentInBasket: ['priceAdjustmentId','organizationId','basketId','siteId',],updatePriceAdjustmentInBasketRequired: ['priceAdjustmentId','organizationId','basketId','siteId',],updateShipmentForBasket: ['shipmentId','organizationId','basketId','siteId','locale',],updateShipmentForBasketRequired: ['shipmentId','organizationId','basketId','siteId',],updateShippingAddressForShipment: ['organizationId','shipmentId','basketId','siteId','useAsBilling','removeExternalTax','locale',],updateShippingAddressForShipmentRequired: ['organizationId','shipmentId','basketId','siteId',],updateShippingMethodForShipment: ['organizationId','shipmentId','basketId','siteId','locale',],updateShippingMethodForShipmentRequired: ['organizationId','shipmentId','basketId','siteId',],} as const
                          +
                          paramKeys: { addCouponToBasket: ["siteId", "organizationId", "basketId", "locale"]; addCouponToBasketRequired: ["siteId", "organizationId", "basketId"]; addGiftCertificateItemToBasket: ["siteId", "organizationId", "basketId", "locale"]; addGiftCertificateItemToBasketRequired: ["siteId", "organizationId", "basketId"]; addItemToBasket: ["organizationId", "basketId", "siteId", "locale"]; addItemToBasketRequired: ["organizationId", "basketId", "siteId"]; addPaymentInstrumentToBasket: ["organizationId", "basketId", "siteId", "locale"]; addPaymentInstrumentToBasketRequired: ["organizationId", "basketId", "siteId"]; addPriceAdjustmentToBasket: ["organizationId", "basketId", "siteId", "locale"]; addPriceAdjustmentToBasketRequired: ["organizationId", "basketId", "siteId"]; addPriceBooksToBasket: ["organizationId", "basketId", "siteId"]; addPriceBooksToBasketRequired: ["organizationId", "basketId", "siteId"]; addTaxesForBasket: ["organizationId", "basketId", "siteId"]; addTaxesForBasketItem: ["organizationId", "itemId", "basketId", "siteId"]; addTaxesForBasketItemRequired: ["organizationId", "itemId", "basketId", "siteId"]; addTaxesForBasketRequired: ["organizationId", "basketId", "siteId"]; createBasket: ["siteId", "organizationId", "taxMode", "temporary", "populateCustomerDetails", "locale"]; createBasketRequired: ["siteId", "organizationId"]; createShipmentForBasket: ["organizationId", "basketId", "siteId", "locale"]; createShipmentForBasketRequired: ["organizationId", "basketId", "siteId"]; deleteBasket: ["siteId", "organizationId", "basketId"]; deleteBasketRequired: ["siteId", "organizationId", "basketId"]; getBasket: ["siteId", "organizationId", "basketId", "locale"]; getBasketRequired: ["siteId", "organizationId", "basketId"]; getPaymentMethodsForBasket: ["organizationId", "basketId", "siteId", "locale"]; getPaymentMethodsForBasketRequired: ["organizationId", "basketId", "siteId"]; getPriceBooksForBasket: ["organizationId", "basketId", "siteId"]; getPriceBooksForBasketRequired: ["organizationId", "basketId", "siteId"]; getShippingMethodsForShipment: ["organizationId", "shipmentId", "basketId", "siteId", "locale"]; getShippingMethodsForShipmentRequired: ["organizationId", "shipmentId", "basketId", "siteId"]; getTaxesFromBasket: ["organizationId", "basketId", "siteId"]; getTaxesFromBasketRequired: ["organizationId", "basketId", "siteId"]; mergeBasket: ["siteId", "organizationId", "createDestinationBasket", "productItemMergeMode", "locale"]; mergeBasketRequired: ["siteId", "organizationId"]; removeCouponFromBasket: ["siteId", "organizationId", "basketId", "couponItemId", "locale"]; removeCouponFromBasketRequired: ["siteId", "organizationId", "basketId", "couponItemId"]; removeGiftCertificateItemFromBasket: ["siteId", "organizationId", "basketId", "giftCertificateItemId", "locale"]; removeGiftCertificateItemFromBasketRequired: ["siteId", "organizationId", "basketId", "giftCertificateItemId"]; removeItemFromBasket: ["itemId", "organizationId", "basketId", "siteId", "locale"]; removeItemFromBasketRequired: ["itemId", "organizationId", "basketId", "siteId"]; removePaymentInstrumentFromBasket: ["paymentInstrumentId", "organizationId", "basketId", "siteId", "locale"]; removePaymentInstrumentFromBasketRequired: ["paymentInstrumentId", "organizationId", "basketId", "siteId"]; removePriceAdjustmentFromBasket: ["priceAdjustmentId", "organizationId", "basketId", "siteId", "locale"]; removePriceAdjustmentFromBasketRequired: ["priceAdjustmentId", "organizationId", "basketId", "siteId"]; removeShipmentFromBasket: ["shipmentId", "organizationId", "basketId", "siteId", "locale"]; removeShipmentFromBasketRequired: ["shipmentId", "organizationId", "basketId", "siteId"]; transferBasket: ["siteId", "organizationId", "overrideExisting", "merge", "populateCustomerDetails", "locale"]; transferBasketRequired: ["siteId", "organizationId"]; updateAsAgentBasket: ["siteId", "organizationId", "basketId", "locale"]; updateAsAgentBasketRequired: ["siteId", "organizationId", "basketId"]; updateAsStorefrontBasket: ["organizationId", "basketId", "siteId", "exchange", "locale"]; updateAsStorefrontBasketRequired: ["organizationId", "basketId", "siteId"]; updateBasket: ["siteId", "organizationId", "basketId", "removeExternalTax", "locale"]; updateBasketRequired: ["siteId", "organizationId", "basketId"]; updateBillingAddressForBasket: ["siteId", "organizationId", "basketId", "locale", "useAsShipping", "removeExternalTax"]; updateBillingAddressForBasketRequired: ["siteId", "organizationId", "basketId"]; updateCustomerForBasket: ["siteId", "organizationId", "basketId", "locale"]; updateCustomerForBasketRequired: ["siteId", "organizationId", "basketId"]; updateGiftCertificateItemInBasket: ["siteId", "organizationId", "basketId", "giftCertificateItemId", "locale"]; updateGiftCertificateItemInBasketRequired: ["siteId", "organizationId", "basketId", "giftCertificateItemId"]; updateItemInBasket: ["itemId", "organizationId", "basketId", "siteId", "removeExternalTax", "locale"]; updateItemInBasketRequired: ["itemId", "organizationId", "basketId", "siteId"]; updateItemsInBasket: ["organizationId", "basketId", "siteId", "removeExternalTax", "locale"]; updateItemsInBasketRequired: ["organizationId", "basketId", "siteId"]; updatePaymentInstrumentInBasket: ["paymentInstrumentId", "organizationId", "basketId", "siteId", "removeExternalTax", "locale"]; updatePaymentInstrumentInBasketRequired: ["paymentInstrumentId", "organizationId", "basketId", "siteId"]; updatePriceAdjustmentInBasket: ["priceAdjustmentId", "organizationId", "basketId", "siteId"]; updatePriceAdjustmentInBasketRequired: ["priceAdjustmentId", "organizationId", "basketId", "siteId"]; updateShipmentForBasket: ["shipmentId", "organizationId", "basketId", "siteId", "locale"]; updateShipmentForBasketRequired: ["shipmentId", "organizationId", "basketId", "siteId"]; updateShippingAddressForShipment: ["organizationId", "shipmentId", "basketId", "siteId", "useAsBilling", "removeExternalTax", "locale"]; updateShippingAddressForShipmentRequired: ["organizationId", "shipmentId", "basketId", "siteId"]; updateShippingMethodForShipment: ["organizationId", "shipmentId", "basketId", "siteId", "locale"]; updateShippingMethodForShipmentRequired: ["organizationId", "shipmentId", "basketId", "siteId"] } = {addCouponToBasket: ['siteId','organizationId','basketId','locale',],addCouponToBasketRequired: ['siteId','organizationId','basketId',],addGiftCertificateItemToBasket: ['siteId','organizationId','basketId','locale',],addGiftCertificateItemToBasketRequired: ['siteId','organizationId','basketId',],addItemToBasket: ['organizationId','basketId','siteId','locale',],addItemToBasketRequired: ['organizationId','basketId','siteId',],addPaymentInstrumentToBasket: ['organizationId','basketId','siteId','locale',],addPaymentInstrumentToBasketRequired: ['organizationId','basketId','siteId',],addPriceAdjustmentToBasket: ['organizationId','basketId','siteId','locale',],addPriceAdjustmentToBasketRequired: ['organizationId','basketId','siteId',],addPriceBooksToBasket: ['organizationId','basketId','siteId',],addPriceBooksToBasketRequired: ['organizationId','basketId','siteId',],addTaxesForBasket: ['organizationId','basketId','siteId',],addTaxesForBasketRequired: ['organizationId','basketId','siteId',],addTaxesForBasketItem: ['organizationId','itemId','basketId','siteId',],addTaxesForBasketItemRequired: ['organizationId','itemId','basketId','siteId',],createBasket: ['siteId','organizationId','taxMode','temporary','populateCustomerDetails','locale',],createBasketRequired: ['siteId','organizationId',],createShipmentForBasket: ['organizationId','basketId','siteId','locale',],createShipmentForBasketRequired: ['organizationId','basketId','siteId',],deleteBasket: ['siteId','organizationId','basketId',],deleteBasketRequired: ['siteId','organizationId','basketId',],getBasket: ['siteId','organizationId','basketId','locale',],getBasketRequired: ['siteId','organizationId','basketId',],getPaymentMethodsForBasket: ['organizationId','basketId','siteId','locale',],getPaymentMethodsForBasketRequired: ['organizationId','basketId','siteId',],getPriceBooksForBasket: ['organizationId','basketId','siteId',],getPriceBooksForBasketRequired: ['organizationId','basketId','siteId',],getShippingMethodsForShipment: ['organizationId','shipmentId','basketId','siteId','locale',],getShippingMethodsForShipmentRequired: ['organizationId','shipmentId','basketId','siteId',],getTaxesFromBasket: ['organizationId','basketId','siteId',],getTaxesFromBasketRequired: ['organizationId','basketId','siteId',],mergeBasket: ['siteId','organizationId','createDestinationBasket','productItemMergeMode','locale',],mergeBasketRequired: ['siteId','organizationId',],removeCouponFromBasket: ['siteId','organizationId','basketId','couponItemId','locale',],removeCouponFromBasketRequired: ['siteId','organizationId','basketId','couponItemId',],removeGiftCertificateItemFromBasket: ['siteId','organizationId','basketId','giftCertificateItemId','locale',],removeGiftCertificateItemFromBasketRequired: ['siteId','organizationId','basketId','giftCertificateItemId',],removeItemFromBasket: ['itemId','organizationId','basketId','siteId','locale',],removeItemFromBasketRequired: ['itemId','organizationId','basketId','siteId',],removePaymentInstrumentFromBasket: ['paymentInstrumentId','organizationId','basketId','siteId','locale',],removePaymentInstrumentFromBasketRequired: ['paymentInstrumentId','organizationId','basketId','siteId',],removePriceAdjustmentFromBasket: ['priceAdjustmentId','organizationId','basketId','siteId','locale',],removePriceAdjustmentFromBasketRequired: ['priceAdjustmentId','organizationId','basketId','siteId',],removeShipmentFromBasket: ['shipmentId','organizationId','basketId','siteId','locale',],removeShipmentFromBasketRequired: ['shipmentId','organizationId','basketId','siteId',],transferBasket: ['siteId','organizationId','overrideExisting','merge','populateCustomerDetails','locale',],transferBasketRequired: ['siteId','organizationId',],updateAsAgentBasket: ['siteId','organizationId','basketId','locale',],updateAsAgentBasketRequired: ['siteId','organizationId','basketId',],updateAsStorefrontBasket: ['organizationId','basketId','siteId','exchange','locale',],updateAsStorefrontBasketRequired: ['organizationId','basketId','siteId',],updateBasket: ['siteId','organizationId','basketId','removeExternalTax','locale',],updateBasketRequired: ['siteId','organizationId','basketId',],updateBillingAddressForBasket: ['siteId','organizationId','basketId','locale','useAsShipping','removeExternalTax',],updateBillingAddressForBasketRequired: ['siteId','organizationId','basketId',],updateCustomerForBasket: ['siteId','organizationId','basketId','locale',],updateCustomerForBasketRequired: ['siteId','organizationId','basketId',],updateGiftCertificateItemInBasket: ['siteId','organizationId','basketId','giftCertificateItemId','locale',],updateGiftCertificateItemInBasketRequired: ['siteId','organizationId','basketId','giftCertificateItemId',],updateItemInBasket: ['itemId','organizationId','basketId','siteId','removeExternalTax','locale',],updateItemInBasketRequired: ['itemId','organizationId','basketId','siteId',],updateItemsInBasket: ['organizationId','basketId','siteId','removeExternalTax','locale',],updateItemsInBasketRequired: ['organizationId','basketId','siteId',],updatePaymentInstrumentInBasket: ['paymentInstrumentId','organizationId','basketId','siteId','removeExternalTax','locale',],updatePaymentInstrumentInBasketRequired: ['paymentInstrumentId','organizationId','basketId','siteId',],updatePriceAdjustmentInBasket: ['priceAdjustmentId','organizationId','basketId','siteId',],updatePriceAdjustmentInBasketRequired: ['priceAdjustmentId','organizationId','basketId','siteId',],updateShipmentForBasket: ['shipmentId','organizationId','basketId','siteId','locale',],updateShipmentForBasketRequired: ['shipmentId','organizationId','basketId','siteId',],updateShippingAddressForShipment: ['organizationId','shipmentId','basketId','siteId','useAsBilling','removeExternalTax','locale',],updateShippingAddressForShipmentRequired: ['organizationId','shipmentId','basketId','siteId',],updateShippingMethodForShipment: ['organizationId','shipmentId','basketId','siteId','locale',],updateShippingMethodForShipmentRequired: ['organizationId','shipmentId','basketId','siteId',],} as const
                          @@ -398,7 +398,7 @@
                          addTaxesForBasketItemRequired: ["organizationId", "basketId", "siteId"]
                        • -
                          createBasket: ["siteId", "organizationId", "taxMode", "temporary", "locale"]
                          +
                          createBasket: ["siteId", "organizationId", "taxMode", "temporary", "populateCustomerDetails", "locale"]
                        • createBasketRequired: ["siteId", "organizationId"]
                          @@ -488,7 +488,7 @@
                          removeShipmentFromBasket:
                          removeShipmentFromBasketRequired: ["shipmentId", "organizationId", "basketId", "siteId"]
                        • -
                          transferBasket: ["siteId", "organizationId", "overrideExisting", "merge", "locale"]
                          +
                          transferBasket: ["siteId", "organizationId", "overrideExisting", "merge", "populateCustomerDetails", "locale"]
                        • transferBasketRequired: ["siteId", "organizationId"]
                          @@ -588,7 +588,7 @@

                          addCouponToBasket

                        • @@ -614,7 +614,7 @@

                          Returns Promise
                          @@ -663,7 +663,7 @@

                          addGiftCertificateItemToBasket

                        • @@ -689,7 +689,7 @@

                          Returns Promise
                          @@ -731,14 +731,14 @@

                          Returns Promise

                          addItemToBasket

                          • @@ -776,7 +776,7 @@

                            addItemToBasket

                            Parameters

                            • -
                              options: RequireParametersUnlessAllAreOptional<{ body: Array<ProductItem> & CustomRequestBody; headers?: undefined | {}; parameters?: CompositeParameters<{ basketId: string; locale?: LocaleCode; organizationId: string; siteId: string } & QueryParameters, ConfigParameters> }>
                              +
                              options: RequireParametersUnlessAllAreOptional<{ body: Array<BasketProductItem & CustomRequestBody>; headers?: undefined | {}; parameters?: CompositeParameters<{ basketId: string; locale?: LocaleCode; organizationId: string; siteId: string } & QueryParameters, ConfigParameters> }>

                              An object containing the options for this method.

                              @@ -790,7 +790,7 @@

                              Returns Promise
                              @@ -833,7 +833,7 @@

                              T: Parameters

                              • -
                                options: RequireParametersUnlessAllAreOptional<{ body: Array<ProductItem> & CustomRequestBody; headers?: undefined | {}; parameters?: CompositeParameters<{ basketId: string; locale?: LocaleCode; organizationId: string; siteId: string } & QueryParameters, ConfigParameters> }>
                                +
                                options: RequireParametersUnlessAllAreOptional<{ body: Array<BasketProductItem & CustomRequestBody>; headers?: undefined | {}; parameters?: CompositeParameters<{ basketId: string; locale?: LocaleCode; organizationId: string; siteId: string } & QueryParameters, ConfigParameters> }>

                                An object containing the options for this method.

                                @@ -865,7 +865,7 @@

                                addPaymentInstrumentToBasket

                              • @@ -891,7 +891,7 @@

                                Returns Promise
                                @@ -940,7 +940,7 @@

                                addPriceAdjustmentToBasket

                              • @@ -966,7 +966,7 @@

                                Returns Promise
                                @@ -1008,14 +1008,14 @@

                                Returns Promise

                                addPriceBooksToBasket

                                • @@ -1029,7 +1029,7 @@

                                  addPriceBooksToBasket

                                  Parameters

                                  • -
                                    options: RequireParametersUnlessAllAreOptional<{ body: Array<string> & CustomRequestBody; headers?: undefined | {}; parameters?: CompositeParameters<{ basketId: string; organizationId: string; siteId: string } & QueryParameters, ConfigParameters> }>
                                    +
                                    options: RequireParametersUnlessAllAreOptional<{ body: Array<string>; headers?: undefined | {}; parameters?: CompositeParameters<{ basketId: string; organizationId: string; siteId: string } & QueryParameters, ConfigParameters> }>

                                    An object containing the options for this method.

                                    @@ -1043,7 +1043,7 @@

                                    Returns Promise
                                    @@ -1062,7 +1062,7 @@

                                    T: Parameters

                                    • -
                                      options: RequireParametersUnlessAllAreOptional<{ body: Array<string> & CustomRequestBody; headers?: undefined | {}; parameters?: CompositeParameters<{ basketId: string; organizationId: string; siteId: string } & QueryParameters, ConfigParameters> }>
                                      +
                                      options: RequireParametersUnlessAllAreOptional<{ body: Array<string>; headers?: undefined | {}; parameters?: CompositeParameters<{ basketId: string; organizationId: string; siteId: string } & QueryParameters, ConfigParameters> }>

                                      An object containing the options for this method.

                                      @@ -1094,7 +1094,7 @@

                                      addTaxesForBasket

                                    • @@ -1120,7 +1120,7 @@

                                      Returns Promise
                                      @@ -1169,7 +1169,7 @@

                                      addTaxesForBasketItem

                                    • @@ -1195,7 +1195,7 @@

                                      Returns Promise
                                      @@ -1237,14 +1237,14 @@

                                      Returns Promise

                                      createBasket

                                      • @@ -1252,13 +1252,14 @@

                                        createBasket

                                        Creates a new basket.

                                        The created basket is initialized with default values. Optional JSON data provided in the request body is populated into the created basket. It can be updated with other endpoints offered by the Shopper Baskets API.

                                        -

                                        Each customer can have just one open basket. When a basket is created, it is said to be open. It remains open until either an order is created from it or it is deleted.

                                        +

                                        Each shopper is limited to one open basket at a time. Attempting to create a second basket for the same customer will result in a 400 Bad Request error with the message: "Customer Baskets Quota Exceeded". + A basket is considered "open" upon creation and remains in this state until it is either converted into an order or explicitly deleted. For implementation best practices, see Hybrid Storefront Best Practices for Working with Baskets.

                                        If you would like to get a raw Response object use the other createBasket function.

                                      Parameters

                                      • -
                                        options: RequireParametersUnlessAllAreOptional<{ body: Basket & CustomRequestBody; headers?: undefined | {}; parameters?: CompositeParameters<{ locale?: LocaleCode; organizationId: string; siteId: string; taxMode?: CreateBasketTaxModeEnum; temporary?: undefined | false | true } & QueryParameters, ConfigParameters> }>
                                        +
                                        options: RequireParametersUnlessAllAreOptional<{ body: Basket & CustomRequestBody; headers?: undefined | {}; parameters?: CompositeParameters<{ locale?: LocaleCode; organizationId: string; populateCustomerDetails?: undefined | false | true; siteId: string; taxMode?: CreateBasketTaxModeEnum; temporary?: undefined | false | true } & QueryParameters, ConfigParameters> }>

                                        An object containing the options for this method.

                                        @@ -1272,7 +1273,7 @@

                                        Returns Promise
                                        @@ -1280,7 +1281,8 @@

                                        Returns PromiseCreates a new basket.

                                        The created basket is initialized with default values. Optional JSON data provided in the request body is populated into the created basket. It can be updated with other endpoints offered by the Shopper Baskets API.

                                        -

                                        Each customer can have just one open basket. When a basket is created, it is said to be open. It remains open until either an order is created from it or it is deleted.

                                        +

                                        Each shopper is limited to one open basket at a time. Attempting to create a second basket for the same customer will result in a 400 Bad Request error with the message: "Customer Baskets Quota Exceeded". + A basket is considered "open" upon creation and remains in this state until it is either converted into an order or explicitly deleted. For implementation best practices, see Hybrid Storefront Best Practices for Working with Baskets.

                                        Type parameters

                                          @@ -1291,7 +1293,7 @@

                                          T: Parameters

                                          • -
                                            options: RequireParametersUnlessAllAreOptional<{ body: Basket & CustomRequestBody; headers?: undefined | {}; parameters?: CompositeParameters<{ locale?: LocaleCode; organizationId: string; siteId: string; taxMode?: CreateBasketTaxModeEnum; temporary?: undefined | false | true } & QueryParameters, ConfigParameters> }>
                                            +
                                            options: RequireParametersUnlessAllAreOptional<{ body: Basket & CustomRequestBody; headers?: undefined | {}; parameters?: CompositeParameters<{ locale?: LocaleCode; organizationId: string; populateCustomerDetails?: undefined | false | true; siteId: string; taxMode?: CreateBasketTaxModeEnum; temporary?: undefined | false | true } & QueryParameters, ConfigParameters> }>

                                            An object containing the options for this method.

                                            @@ -1323,7 +1325,7 @@

                                            createShipmentForBasket

                                          • @@ -1360,7 +1362,7 @@

                                            Returns Promise
                                            @@ -1420,7 +1422,7 @@

                                            deleteBasket

                                          • @@ -1446,7 +1448,7 @@

                                            Returns Promise
                                            @@ -1495,7 +1497,7 @@

                                            getBasket

                                          • @@ -1521,7 +1523,7 @@

                                            Returns Promise
                                            @@ -1570,7 +1572,7 @@

                                            getPaymentMethodsForBasket

                                          • @@ -1596,7 +1598,7 @@

                                            Returns Promise
                                            @@ -1645,7 +1647,7 @@

                                            getPriceBooksForBasket

                                          • @@ -1673,7 +1675,7 @@

                                            Returns Promise
                                            @@ -1724,7 +1726,7 @@

                                            getShippingMethodsForShipment

                                          • @@ -1750,7 +1752,7 @@

                                            Returns Promise
                                            @@ -1799,7 +1801,7 @@

                                            getTaxesFromBasket

                                          • @@ -1825,7 +1827,7 @@

                                            Returns Promise
                                            @@ -1874,7 +1876,7 @@

                                            mergeBasket

                                          • @@ -1969,7 +1971,7 @@

                                            Returns Promise
                                            @@ -2087,7 +2089,7 @@

                                            removeCouponFromBasket

                                          • @@ -2113,7 +2115,7 @@

                                            Returns Promise
                                            @@ -2162,7 +2164,7 @@

                                            removeGiftCertificateItemFromBasket

                                          • @@ -2188,7 +2190,7 @@

                                            Returns Promise
                                            @@ -2237,7 +2239,7 @@

                                            removeItemFromBasket

                                          • @@ -2263,7 +2265,7 @@

                                            Returns Promise
                                            @@ -2312,7 +2314,7 @@

                                            removePaymentInstrumentFromBasket

                                          • @@ -2338,7 +2340,7 @@

                                            Returns Promise
                                            @@ -2387,7 +2389,7 @@

                                            removePriceAdjustmentFromBasket

                                          • @@ -2413,7 +2415,7 @@

                                            Returns Promise
                                            @@ -2462,7 +2464,7 @@

                                            removeShipmentFromBasket

                                          • @@ -2490,7 +2492,7 @@

                                            Returns Promise
                                            @@ -2534,14 +2536,14 @@

                                            Returns Promise

                                            transferBasket

                                            • @@ -2565,7 +2567,7 @@

                                              transferBasket

                                              Parameters

                                              • -
                                                Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ locale?: LocaleCode; merge?: undefined | false | true; organizationId: string; overrideExisting?: undefined | false | true; siteId: string } & QueryParameters, ConfigParameters> }>
                                                +
                                                Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ locale?: LocaleCode; merge?: undefined | false | true; organizationId: string; overrideExisting?: undefined | false | true; populateCustomerDetails?: undefined | false | true; siteId: string } & QueryParameters, ConfigParameters> }>

                                                An object containing the options for this method.

                                                @@ -2579,7 +2581,7 @@

                                                Returns Promise
                                                @@ -2608,7 +2610,7 @@

                                                T: Parameters

                                                • -
                                                  Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ locale?: LocaleCode; merge?: undefined | false | true; organizationId: string; overrideExisting?: undefined | false | true; siteId: string } & QueryParameters, ConfigParameters> }>
                                                  +
                                                  Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ locale?: LocaleCode; merge?: undefined | false | true; organizationId: string; overrideExisting?: undefined | false | true; populateCustomerDetails?: undefined | false | true; siteId: string } & QueryParameters, ConfigParameters> }>

                                                  An object containing the options for this method.

                                                  @@ -2640,7 +2642,7 @@

                                                  updateAsAgentBasket

                                                • @@ -2666,7 +2668,7 @@

                                                  Returns Promise
                                                  @@ -2715,7 +2717,7 @@

                                                  updateAsStorefrontBasket

                                                • @@ -2741,7 +2743,7 @@

                                                  Returns Promise
                                                  @@ -2790,7 +2792,7 @@

                                                  updateBasket

                                                • @@ -2817,7 +2819,7 @@

                                                  Returns Promise
                                                  @@ -2867,7 +2869,7 @@

                                                  updateBillingAddressForBasket

                                                • @@ -2893,7 +2895,7 @@

                                                  Returns Promise
                                                  @@ -2942,7 +2944,7 @@

                                                  updateCustomerForBasket

                                                • @@ -2968,7 +2970,7 @@

                                                  Returns Promise
                                                  @@ -3017,7 +3019,7 @@

                                                  updateGiftCertificateItemInBasket

                                                • @@ -3043,7 +3045,7 @@

                                                  Returns Promise
                                                  @@ -3085,14 +3087,14 @@

                                                  Returns Promise

                                                  updateItemInBasket

                                                  • @@ -3134,7 +3136,7 @@

                                                    updateItemInBasket

                                                    Parameters

                                                    • -
                                                      options: RequireParametersUnlessAllAreOptional<{ body: ProductItem & CustomRequestBody; headers?: undefined | {}; parameters?: CompositeParameters<{ basketId: string; itemId: string; locale?: LocaleCode; organizationId: string; removeExternalTax?: undefined | false | true; siteId: string } & QueryParameters, ConfigParameters> }>
                                                      +
                                                      options: RequireParametersUnlessAllAreOptional<{ body: BasketProductItem & CustomRequestBody; headers?: undefined | {}; parameters?: CompositeParameters<{ basketId: string; itemId: string; locale?: LocaleCode; organizationId: string; removeExternalTax?: undefined | false | true; siteId: string } & QueryParameters, ConfigParameters> }>

                                                      An object containing the options for this method.

                                                      @@ -3148,7 +3150,7 @@

                                                      Returns Promise
                                                      @@ -3195,7 +3197,7 @@

                                                      T: Parameters

                                                      • -
                                                        options: RequireParametersUnlessAllAreOptional<{ body: ProductItem & CustomRequestBody; headers?: undefined | {}; parameters?: CompositeParameters<{ basketId: string; itemId: string; locale?: LocaleCode; organizationId: string; removeExternalTax?: undefined | false | true; siteId: string } & QueryParameters, ConfigParameters> }>
                                                        +
                                                        options: RequireParametersUnlessAllAreOptional<{ body: BasketProductItem & CustomRequestBody; headers?: undefined | {}; parameters?: CompositeParameters<{ basketId: string; itemId: string; locale?: LocaleCode; organizationId: string; removeExternalTax?: undefined | false | true; siteId: string } & QueryParameters, ConfigParameters> }>

                                                        An object containing the options for this method.

                                                        @@ -3220,14 +3222,14 @@

                                                        Returns Promise

                                                        updateItemsInBasket

                                                        • @@ -3272,7 +3274,7 @@

                                                          updateItemsInBasket

                                                          Parameters

                                                          • -
                                                            options: RequireParametersUnlessAllAreOptional<{ body: Array<ProductItem> & CustomRequestBody; headers?: undefined | {}; parameters?: CompositeParameters<{ basketId: string; locale?: LocaleCode; organizationId: string; removeExternalTax?: undefined | false | true; siteId: string } & QueryParameters, ConfigParameters> }>
                                                            +
                                                            options: RequireParametersUnlessAllAreOptional<{ body: Array<BasketProductItem & CustomRequestBody>; headers?: undefined | {}; parameters?: CompositeParameters<{ basketId: string; locale?: LocaleCode; organizationId: string; removeExternalTax?: undefined | false | true; siteId: string } & QueryParameters, ConfigParameters> }>

                                                            An object containing the options for this method.

                                                            @@ -3286,7 +3288,7 @@

                                                            Returns Promise
                                                            @@ -3336,7 +3338,7 @@

                                                            T: Parameters

                                                            • -
                                                              options: RequireParametersUnlessAllAreOptional<{ body: Array<ProductItem> & CustomRequestBody; headers?: undefined | {}; parameters?: CompositeParameters<{ basketId: string; locale?: LocaleCode; organizationId: string; removeExternalTax?: undefined | false | true; siteId: string } & QueryParameters, ConfigParameters> }>
                                                              +
                                                              options: RequireParametersUnlessAllAreOptional<{ body: Array<BasketProductItem & CustomRequestBody>; headers?: undefined | {}; parameters?: CompositeParameters<{ basketId: string; locale?: LocaleCode; organizationId: string; removeExternalTax?: undefined | false | true; siteId: string } & QueryParameters, ConfigParameters> }>

                                                              An object containing the options for this method.

                                                              @@ -3368,7 +3370,7 @@

                                                              updatePaymentInstrumentInBasket

                                                            • @@ -3394,7 +3396,7 @@

                                                              Returns Promise
                                                              @@ -3443,7 +3445,7 @@

                                                              updatePriceAdjustmentInBasket

                                                            • @@ -3476,7 +3478,7 @@

                                                              Returns Promise
                                                              @@ -3532,7 +3534,7 @@

                                                              updateShipmentForBasket

                                                            • @@ -3569,7 +3571,7 @@

                                                              Returns Promise
                                                              @@ -3629,7 +3631,7 @@

                                                              updateShippingAddressForShipment

                                                            • @@ -3655,7 +3657,7 @@

                                                              Returns Promise
                                                              @@ -3704,7 +3706,7 @@

                                                              updateShippingMethodForShipment

                                                            • @@ -3730,7 +3732,7 @@

                                                              Returns Promise
                                                              @@ -3777,7 +3779,7 @@

                                                              Static apiPaths: object

                                                              @@ -3786,7 +3788,7 @@

                                                              addCouponToBasket

                                                              addCouponToBasket: string = "/organizations/{organizationId}/baskets/{basketId}/coupons"
                                                              @@ -3796,7 +3798,7 @@

                                                              addGiftCertificateItemToBasket

                                                              addGiftCertificateItemToBasket: string = "/organizations/{organizationId}/baskets/{basketId}/gift-certificate-items"
                                                              @@ -3806,7 +3808,7 @@

                                                              addItemToBasket

                                                              addItemToBasket: string = "/organizations/{organizationId}/baskets/{basketId}/items"
                                                              @@ -3816,7 +3818,7 @@

                                                              addPaymentInstrumentToBasket

                                                              addPaymentInstrumentToBasket: string = "/organizations/{organizationId}/baskets/{basketId}/payment-instruments"
                                                              @@ -3826,7 +3828,7 @@

                                                              addPriceAdjustmentToBasket

                                                              addPriceAdjustmentToBasket: string = "/organizations/{organizationId}/baskets/{basketId}/price-adjustments"
                                                              @@ -3836,7 +3838,7 @@

                                                              addPriceBooksToBasket

                                                              addPriceBooksToBasket: string = "/organizations/{organizationId}/baskets/{basketId}/price-books"
                                                              @@ -3846,7 +3848,7 @@

                                                              addTaxesForBasket

                                                              addTaxesForBasket: string = "/organizations/{organizationId}/baskets/{basketId}/taxes"
                                                              @@ -3856,7 +3858,7 @@

                                                              addTaxesForBasketItem

                                                              addTaxesForBasketItem: string = "/organizations/{organizationId}/baskets/{basketId}/items/{itemId}/taxes"
                                                              @@ -3866,7 +3868,7 @@

                                                              createBasket

                                                              createBasket: string = "/organizations/{organizationId}/baskets"
                                                              @@ -3876,7 +3878,7 @@

                                                              createShipmentForBasket

                                                              createShipmentForBasket: string = "/organizations/{organizationId}/baskets/{basketId}/shipments"
                                                              @@ -3886,7 +3888,7 @@

                                                              deleteBasket

                                                              deleteBasket: string = "/organizations/{organizationId}/baskets/{basketId}"
                                                              @@ -3896,7 +3898,7 @@

                                                              getBasket

                                                              getBasket: string = "/organizations/{organizationId}/baskets/{basketId}"
                                                              @@ -3906,7 +3908,7 @@

                                                              getPaymentMethodsForBasket

                                                              getPaymentMethodsForBasket: string = "/organizations/{organizationId}/baskets/{basketId}/payment-methods"
                                                              @@ -3916,7 +3918,7 @@

                                                              getPriceBooksForBasket

                                                              getPriceBooksForBasket: string = "/organizations/{organizationId}/baskets/{basketId}/price-books"
                                                              @@ -3926,7 +3928,7 @@

                                                              getShippingMethodsForShipment

                                                              getShippingMethodsForShipment: string = "/organizations/{organizationId}/baskets/{basketId}/shipments/{shipmentId}/shipping-methods"
                                                              @@ -3936,7 +3938,7 @@

                                                              getTaxesFromBasket

                                                              getTaxesFromBasket: string = "/organizations/{organizationId}/baskets/{basketId}/taxes"
                                                              @@ -3946,7 +3948,7 @@

                                                              mergeBasket

                                                              mergeBasket: string = "/organizations/{organizationId}/baskets/actions/merge"
                                                              @@ -3956,7 +3958,7 @@

                                                              removeCouponFromBasket

                                                              removeCouponFromBasket: string = "/organizations/{organizationId}/baskets/{basketId}/coupons/{couponItemId}"
                                                              @@ -3966,7 +3968,7 @@

                                                              removeGiftCertificateItemFromBasket

                                                              removeGiftCertificateItemFromBasket: string = "/organizations/{organizationId}/baskets/{basketId}/gift-certificate-items/{giftCertificateItemId}"
                                                              @@ -3976,7 +3978,7 @@

                                                              removeItemFromBasket

                                                              removeItemFromBasket: string = "/organizations/{organizationId}/baskets/{basketId}/items/{itemId}"
                                                              @@ -3986,7 +3988,7 @@

                                                              removePaymentInstrumentFromBasket

                                                              removePaymentInstrumentFromBasket: string = "/organizations/{organizationId}/baskets/{basketId}/payment-instruments/{paymentInstrumentId}"
                                                              @@ -3996,7 +3998,7 @@

                                                              removePriceAdjustmentFromBasket

                                                              removePriceAdjustmentFromBasket: string = "/organizations/{organizationId}/baskets/{basketId}/price-adjustments/{priceAdjustmentId}"
                                                              @@ -4006,7 +4008,7 @@

                                                              removeShipmentFromBasket

                                                              removeShipmentFromBasket: string = "/organizations/{organizationId}/baskets/{basketId}/shipments/{shipmentId}"
                                                              @@ -4016,7 +4018,7 @@

                                                              transferBasket

                                                              transferBasket: string = "/organizations/{organizationId}/baskets/actions/transfer"
                                                              @@ -4026,7 +4028,7 @@

                                                              updateAsAgentBasket

                                                              updateAsAgentBasket: string = "/organizations/{organizationId}/baskets/{basketId}/agent"
                                                              @@ -4036,7 +4038,7 @@

                                                              updateAsStorefrontBasket

                                                              updateAsStorefrontBasket: string = "/organizations/{organizationId}/baskets/{basketId}/storefront"
                                                              @@ -4046,7 +4048,7 @@

                                                              updateBasket

                                                              updateBasket: string = "/organizations/{organizationId}/baskets/{basketId}"
                                                              @@ -4056,7 +4058,7 @@

                                                              updateBillingAddressForBasket

                                                              updateBillingAddressForBasket: string = "/organizations/{organizationId}/baskets/{basketId}/billing-address"
                                                              @@ -4066,7 +4068,7 @@

                                                              updateCustomerForBasket

                                                              updateCustomerForBasket: string = "/organizations/{organizationId}/baskets/{basketId}/customer"
                                                              @@ -4076,7 +4078,7 @@

                                                              updateGiftCertificateItemInBasket

                                                              updateGiftCertificateItemInBasket: string = "/organizations/{organizationId}/baskets/{basketId}/gift-certificate-items/{giftCertificateItemId}"
                                                              @@ -4086,7 +4088,7 @@

                                                              updateItemInBasket

                                                              updateItemInBasket: string = "/organizations/{organizationId}/baskets/{basketId}/items/{itemId}"
                                                              @@ -4096,7 +4098,7 @@

                                                              updateItemsInBasket

                                                              updateItemsInBasket: string = "/organizations/{organizationId}/baskets/{basketId}/items"
                                                              @@ -4106,7 +4108,7 @@

                                                              updatePaymentInstrumentInBasket

                                                              updatePaymentInstrumentInBasket: string = "/organizations/{organizationId}/baskets/{basketId}/payment-instruments/{paymentInstrumentId}"
                                                              @@ -4116,7 +4118,7 @@

                                                              updatePriceAdjustmentInBasket

                                                              updatePriceAdjustmentInBasket: string = "/organizations/{organizationId}/baskets/{basketId}/price-adjustments/{priceAdjustmentId}"
                                                              @@ -4126,7 +4128,7 @@

                                                              updateShipmentForBasket

                                                              updateShipmentForBasket: string = "/organizations/{organizationId}/baskets/{basketId}/shipments/{shipmentId}"
                                                              @@ -4136,7 +4138,7 @@

                                                              updateShippingAddressForShipment

                                                              updateShippingAddressForShipment: string = "/organizations/{organizationId}/baskets/{basketId}/shipments/{shipmentId}/shipping-address"
                                                              @@ -4146,7 +4148,7 @@

                                                              updateShippingMethodForShipment

                                                              updateShippingMethodForShipment: string = "/organizations/{organizationId}/baskets/{basketId}/shipments/{shipmentId}/shipping-method"
                                                              @@ -4206,6 +4208,9 @@

                                                              updateShippingMethodForShipment

                                                            • shopperOrders
                                                            • +
                                                            • + shopperPayments +
                                                            • shopperProducts
                                                            • diff --git a/docs/classes/shopperconfigurations.shopperconfigurations-3.html b/docs/classes/shopperconfigurations.shopperconfigurations-3.html index 15b0f51f..f718d627 100644 --- a/docs/classes/shopperconfigurations.shopperconfigurations-3.html +++ b/docs/classes/shopperconfigurations.shopperconfigurations-3.html @@ -80,167 +80,54 @@

                                                              API Overview

                                                              -

                                                              In commerce, there is a need to provide information to the shopper facing application to allow for making decisions on execution. This is highly cache-able data that rarely changes.

                                                              -

                                                              It encompasses toggles, preferences, and configuration that allow the application to be reactive to changes performed by the merchant, admin, or support engineer.

                                                              +

                                                              The Shopper Configurations API provides cacheable configuration data to shopper-facing applications, enabling them to make decisions based on merchant settings without requiring server-side logic.

                                                              +

                                                              This highly cacheable data encompasses toggles, preferences, and configuration information that allows the application to be reactive to changes performed by the merchant, admin, or support engineer.

                                                              +

                                                              Configuration types include:

                                                              +
                                                                +
                                                              • siteConfiguration: Site-specific settings such as name, status, currencies, and locales
                                                              • +
                                                              • globalConfiguration: Instance-wide settings such as feature flags
                                                              • +
                                                              + +

                                                              Authentication & Authorization

                                                              +
                                                              +

                                                              The Shopper Configuration API requires a shopper access token from the Shopper Login and API Access Service (SLAS).

                                                              +

                                                              You must include sfcc.shopper-configuations in the client ID used to generate the SLAS token. For a full list of required permissions, see the Authorization Scopes Catalog.

                                                              +

                                                              For details on how to request a shopper access token from SLAS, see the guest user flows for public clients and private clients in the SLAS guides.

                                                              Use Cases

                                                              -
                                                                -
                                                              1. What is the site name and site status (online / offline)
                                                              2. -
                                                              3. What is the default and supported currencies
                                                              4. -
                                                              5. What is the default and supported locales
                                                              6. -
                                                              7. Which features are enabled
                                                              8. -
                                                              - -

                                                              Example

                                                              +
                                                              +

                                                              Use Hooks

                                                              +
                                                              +

                                                              You can extend the Shopper Configurations response with custom data using the dw.shop.shopper_configuration.modifyGETResponse hook. This is useful for adding custom site preferences to the response.

                                                              + +

                                                              Example Hook Implementation

                                                              +
                                                              +
                                                              exports.modifyGETResponse = function (configResp) {
                                                              +var customPreference = dw.system.Site.getCurrent().getCustomPreferenceValue(
                                                              +"customerServiceEmail"
                                                              +);
                                                              +configResp.c_customPrefs = {
                                                              +customerServiceEmail: customPreference || "noreply@example.com"
                                                              +};
                                                              +};
                                                              +

                                                              For details on hook registration, see Hook Method Details.

                                                              + +

                                                              Site Identification and Availability

                                                              +
                                                              +

                                                              Retrieve the site's display name and current operational status to determine if the storefront is online, offline, or in a maintenance state for shoppers.

                                                              + +

                                                              Currency Configuration

                                                              -
                                                              {
                                                              -"configurations":[
                                                              -{
                                                              -"configurationType":"siteConfiguration",
                                                              -"id":"id",
                                                              -"value":"TestWapi"
                                                              -},
                                                              -{
                                                              -"configurationType":"siteConfiguration",
                                                              -"id":"name",
                                                              -"value":"Test WAPI"
                                                              -},
                                                              -{
                                                              -"configurationType":"siteConfiguration",
                                                              -"id":"status",
                                                              -"value":"online"
                                                              -},
                                                              -{
                                                              -"configurationType":"siteConfiguration",
                                                              -"id":"timezone",
                                                              -"value":"Etc/UTC"
                                                              -},
                                                              -{
                                                              -"configurationType":"siteConfiguration",
                                                              -"id":"timezoneOffset",
                                                              -"value":0
                                                              -},
                                                              -{
                                                              -"configurationType":"siteConfiguration",
                                                              -"id":"defaultCurrency",
                                                              -"value":"USD"
                                                              -},
                                                              -{
                                                              -"configurationType":"siteConfiguration",
                                                              -"id":"allowedCurrencies",
                                                              -"value":[
                                                              -"USD",
                                                              -"EUR"
                                                              -]
                                                              -},
                                                              -{
                                                              -"configurationType":"siteConfiguration",
                                                              -"id":"defaultLocale",
                                                              -"value":"default"
                                                              -},
                                                              -{
                                                              -"configurationType":"siteConfiguration",
                                                              -"id":"allowedLocales",
                                                              -"value":[
                                                              -{
                                                              -"country":"",
                                                              -"default":true,
                                                              -"displayCountry":"",
                                                              -"displayLanguage":"",
                                                              -"displayName":"default",
                                                              -"id":"default",
                                                              -"iso3Country":"",
                                                              -"iso3Language":"",
                                                              -"language":"",
                                                              -"name":"default"
                                                              -},
                                                              -{
                                                              -"country":"DE",
                                                              -"default":false,
                                                              -"displayCountry":"Deutschland",
                                                              -"displayLanguage":"Deutsch",
                                                              -"displayName":"Deutsch (Deutschland)",
                                                              -"id":"de-DE",
                                                              -"iso3Country":"DEU",
                                                              -"iso3Language":"deu",
                                                              -"language":"de",
                                                              -"name":"German (Germany)"
                                                              -},
                                                              -{
                                                              -"country":"",
                                                              -"default":false,
                                                              -"displayCountry":"",
                                                              -"displayLanguage":"Deutsch",
                                                              -"displayName":"Deutsch",
                                                              -"id":"de",
                                                              -"iso3Country":"",
                                                              -"iso3Language":"deu",
                                                              -"language":"de",
                                                              -"name":"German"
                                                              -},
                                                              -{
                                                              -"country":"US",
                                                              -"default":false,
                                                              -"displayCountry":"United States",
                                                              -"displayLanguage":"English",
                                                              -"displayName":"English (United States)",
                                                              -"id":"en-US",
                                                              -"iso3Country":"USA",
                                                              -"iso3Language":"eng",
                                                              -"language":"en",
                                                              -"name":"English (United States)"
                                                              -},
                                                              -{
                                                              -"country":"CA",
                                                              -"default":false,
                                                              -"displayCountry":"Canada",
                                                              -"displayLanguage":"English",
                                                              -"displayName":"English (Canada)",
                                                              -"id":"en-CA",
                                                              -"iso3Country":"CAN",
                                                              -"iso3Language":"eng",
                                                              -"language":"en",
                                                              -"name":"English (Canada)"
                                                              -},
                                                              -{
                                                              -"country":"",
                                                              -"default":false,
                                                              -"displayCountry":"",
                                                              -"displayLanguage":"English",
                                                              -"displayName":"English",
                                                              -"id":"en",
                                                              -"iso3Country":"",
                                                              -"iso3Language":"eng",
                                                              -"language":"en",
                                                              -"name":"English"
                                                              -},
                                                              -{
                                                              -"country":"",
                                                              -"default":false,
                                                              -"displayCountry":"",
                                                              -"displayLanguage":"español",
                                                              -"displayName":"español",
                                                              -"id":"es",
                                                              -"iso3Country":"",
                                                              -"iso3Language":"spa",
                                                              -"language":"es",
                                                              -"name":"Spanish"
                                                              -}
                                                              -]
                                                              -},
                                                              -{
                                                              -"configurationType":"globalConfiguration",
                                                              -"id":"SalesforcePaymentsAllowed",
                                                              -"value":true
                                                              -},
                                                              -{
                                                              -"configurationType":"globalConfiguration",
                                                              -"id":"gcp",
                                                              -"value":"test-gcp-key"
                                                              -}
                                                              -]
                                                              -}
                                                              +

                                                              Identify the default currency for the site and the list of all supported currencies to ensure correct price rendering and multi-currency support.

                                                              + +

                                                              Locale and Language Settings

                                                              +
                                                              +

                                                              Access the default locale and the full set of supported locales to localize content, formatting, and language for the shopper's specific region.

                                                              + +

                                                              Feature Enablement

                                                              +
                                                              +

                                                              View the status of various storefront features and toggles to dynamically enable or disable application logic based on the merchant's active configuration.

                                                              Caching

                                                              @@ -324,7 +211,7 @@

                                                              constructor

                                                            • Parameters

                                                              @@ -346,7 +233,7 @@

                                                              clientConfig

                                                              clientConfig: ClientConfig<ConfigParameters> & { baseUri: string }
                                                              @@ -356,7 +243,7 @@

                                                              Static defaultBaseUri: "https://{shortCode}.api.commercecloud.salesforce.com/configuration/shopper-configurations/v1" = currentBaseUri

                                                            • @@ -366,7 +253,7 @@

                                                              Static paramKeys: { getConfigurations: ["organizationId", "siteId"]; getConfigurationsRequired: ["organizationId", "siteId"] } = {getConfigurations: ['organizationId','siteId',],getConfigurationsRequired: ['organizationId','siteId',],} as const

                                                            • @@ -395,7 +282,7 @@

                                                              getConfigurations

                                                            • @@ -421,7 +308,7 @@

                                                              Returns Promise
                                                              @@ -468,7 +355,7 @@

                                                              Static apiPaths: object

                                                              @@ -477,7 +364,7 @@

                                                              getConfigurations

                                                              getConfigurations: string = "/organizations/{organizationId}/configurations"
                                                              @@ -537,6 +424,9 @@

                                                              getConfigurations

                                                            • shopperOrders
                                                            • +
                                                            • + shopperPayments +
                                                            • shopperProducts
                                                            • diff --git a/docs/classes/shopperconsents.shopperconsents-3.html b/docs/classes/shopperconsents.shopperconsents-3.html index cad2a05d..b29397bf 100644 --- a/docs/classes/shopperconsents.shopperconsents-3.html +++ b/docs/classes/shopperconsents.shopperconsents-3.html @@ -81,40 +81,24 @@

                                                              -

                                                              Key Features

                                                              -
                                                              +

                                                              The Shopper Consent API provides sensible defaults for optional fields to simplify integration:

                                                                -
                                                              • Multi-Channel Support: Manage communication subscriptions across email, SMS, push notifications, in-app messages, and postal mail.
                                                              • -
                                                              • Organization-Based Management: Isolate consent preferences by organization for multi-tenant environments.
                                                              • -
                                                              • Real-Time Updates: Instantly create and retrieve subscription preferences.
                                                              • -
                                                              • Compliance Ready: Built with privacy regulations and consent-management best practices in mind.
                                                              • +
                                                              • Consent Type: Defaults to "marketing" for marketing communications.
                                                              • +
                                                              • Consent Required: Defaults to false, making subscriptions optional by default.
                                                              • +
                                                              • Default Status: Defaults to "opt_out" to respect privacy-first principles.
                                                              • +
                                                              • Tags: Defaults to an empty array when not specified.

                                                              Authentication & Authorization

                                                              -

                                                              The Shopper Consent API requires a JSON Web Token acquired using the Shopper Consent endpoint:

                                                              -
                                                              https://{{shortcode}}.api.commercecloud.salesforce.com/customer/shopper-customers/v1/organizations/{{organizationId}}/customers/actions/login

                                                              You must include the relevant scope(s) in the client ID used to generate the SLAS token.

                                                              - -

                                                              Required Scopes

                                                              -
                                                              +

                                                              The Shopper Consent API requires a shopper access token from the Shopper Login and API Access Service (SLAS).

                                                              +

                                                              You must include the relevant scope(s) in the client ID used to generate the SLAS token.

                                                              • sfcc.shopper-consents: Required for reading communication subscription data (GET operations).
                                                              • -
                                                              • sfcc.shopper-consents.rw: Required for creating and modifying communication subscription data (POST operations).
                                                              • -
                                                              - -

                                                              Use Cases

                                                              -
                                                              - -

                                                              Shopper Subscription Management

                                                              -
                                                              -
                                                                -
                                                              • Retrieve communication subscriptions: Retrieve relevant communication subscription options with display information.
                                                              • -
                                                              • Guest shoppers can retrieve communication subscriptions options without pre-defined shopper credentials, for example: email address, phone number.
                                                              • -
                                                              • Authenticated shoppers can retrieve communication subscription options available to their shopper credentials.
                                                              • -
                                                              • Communication subscription options can be filtered by one or more qualifying tags.
                                                              • -
                                                              • Update communication subscription consent preferences.
                                                              • +
                                                              • sfcc.shopper-consents.rw: Required for creating and modifying communication subscription consent data (POST operations).
                                                              +

                                                              For a full list of required permissions, see the Authorization Scopes Catalog.

                                                              +

                                                              For details on how to request a shopper access token from SLAS, see the guest user flows for public clients and private clients in the SLAS guides.

                                                              Data Model

                                                              @@ -123,11 +107,17 @@

                                                              Subscriptions

                                                              Subscriptions represent a shopper's consent to receive specific types of marketing communications. Each subscription includes:

                                                                -
                                                              • Identifier: Descriptive identifier
                                                              • -
                                                              • Consent Status: Opt-in or opt-out
                                                              • -
                                                              • Display Information: Title, subtitle, and description for customer-facing interfaces
                                                              • -
                                                              • Tags: Categorical tags indicating where the subscription option can appear
                                                              • -
                                                              • Channels: Supported communication methods, such as email, SMS, push notification
                                                              • +
                                                              • Subscription Id: Descriptive identifier
                                                              • +
                                                              • Channels: Array of communication methods - Email, SMS, or WhatsApp
                                                              • +
                                                              • Consent Type: Marketing or legal subscription classification
                                                              • +
                                                              • Consent Required: Whether the subscription is mandatory for the shopper
                                                              • +
                                                              • Default Status: Default opt-in or opt-out behavior
                                                              • +
                                                              • Consent Status: Array of status entries for each channel showing current opt-in or opt-out status (conditionally returned based on expand parameter)
                                                              • +
                                                              • Rich Display Information:
                                                              • +
                                                              • Title: Simple localized string for subscription name
                                                              • +
                                                              • Subtitle: Simple localized string with HTML markup support for descriptions
                                                              • +
                                                              • Localized content determined by the locale parameter
                                                              • +
                                                              • Tags: Categorical tags indicating where the subscription option can appear (defaults to empty array, max 10 tags)

                                                              Channels

                                                              @@ -136,7 +126,7 @@

                                                              Channels

                                                              • email: Email communications
                                                              • sms: SMS/text messages
                                                              • -
                                                              • whatsapp: WhatsApp
                                                              • +
                                                              • whatsapp: WhatsApp messaging

                                                              Tags

                                                              @@ -144,49 +134,53 @@

                                                              Tags

                                                              Tags indicate where subscription options are displayed in your shopper experience. Tags are also accepted as optional filtering parameters in the retrieval of shopper consent subscriptions. For example:

                                                              • homepage_banner: Main website homepage
                                                              • -
                                                              • registration: Shopper registration process
                                                              • -
                                                              • checkout: Checkout process
                                                              • -
                                                              • user_profile: User profile management area
                                                              • +
                                                              • registration: Shopper registration form
                                                              • +
                                                              • checkout: Checkout flow
                                                              • +
                                                              • user_profile: User profile management section
                                                              -
                                                              -

                                                              Best Practices

                                                              +
                                                              +

                                                              Use Cases

                                                              - -

                                                              User Experience

                                                              +
                                                              +

                                                              Retrieve communication subscriptions

                                                              +

                                                              Retrieve relevant communication subscription options with rich display information.

                                                                -
                                                              • Make it easy for shoppers to update their preferences.
                                                              • -
                                                              • Respect shopper choices immediately.
                                                              • +
                                                              • Communication subscription options can be filtered by one or more qualifying tags.
                                                              • +
                                                              • Use the expand parameter to conditionally include subscription status.
                                                              - -

                                                              Implementation Guidelines

                                                              +
                                                              +

                                                              Update individual subscription consent

                                                              +
                                                              +

                                                              Update consent status for a single subscription with simple request/response pattern.

                                                              + +

                                                              Bulk subscription updates

                                                              +

                                                              Efficiently manage multiple subscription preferences with a single request.

                                                                -
                                                              • Implement clear and prominent unsubscribe mechanisms.
                                                              • +
                                                              • Update 1-50 subscriptions per bulk request.
                                                              • +
                                                              • Partial success handling with detailed error reporting for failed updates.
                                                              - -

                                                              Compliance Considerations

                                                              +
                                                              +

                                                              Advanced Features

                                                              +
                                                              + +

                                                              Expand Parameter

                                                              +

                                                              The expand parameter provides conditional field inclusion:

                                                                -
                                                              • Ensure consent is freely given, specific, informed, and unambiguous.
                                                              • -
                                                              • Implement proper data retention and deletion policies.
                                                              • -
                                                              • Provide easy access to consent history and preferences.
                                                              • +
                                                              • expand=[] (default): Returns basic subscription information
                                                              • +
                                                              • expand=["consentStatus"]: Include consent status information in the response
                                                              • +
                                                              • Future expansion may include additional fields
                                                              - -

                                                              Error Handling

                                                              +
                                                              +

                                                              Best Practices

                                                              -

                                                              The API uses standard HTTP status codes and returns detailed error information to help with troubleshooting:

                                                                -
                                                              • 400 Bad Request: Invalid request format or missing required fields
                                                              • -
                                                              • 401 Unauthorized: Invalid or missing authentication token
                                                              • -
                                                              • 403 Forbidden: Insufficient permissions for the requested operation
                                                              • -
                                                              • 404 Not Found: Requested organization or resource not found
                                                              • -
                                                              • 500 Internal Server Error: Unexpected server error
                                                              • +
                                                              • Use single subscription updates for real-time, interactive preference changes.
                                                              • +
                                                              • Use bulk operations when updating multiple subscriptions to reduce API calls and improve performance.
                                                              • +
                                                              • Only request status information when needed using the expand parameter to reduce latency.*
                                                              - -

                                                              Rate Limits

                                                              -
                                                              -

                                                              To ensure fair usage and system stability, the Shopper Consent API implements rate limiting. Refer to the response headers for current rate limit status and adjust your integration accordingly.*

                                                              Simple example:

                                                                import { ShopperConsents } from "commerce-sdk-isomorphic";
                                                               
                                                              @@ -244,6 +238,7 @@ 

                                                              Methods

                                                              @@ -267,7 +262,7 @@

                                                              constructor

                                                            • Parameters

                                                              @@ -289,7 +284,7 @@

                                                              clientConfig

                                                              clientConfig: ClientConfig<ConfigParameters> & { baseUri: string }
                                                            • @@ -299,24 +294,24 @@

                                                              Static defaultBaseUri: "https://{shortCode}.api.commercecloud.salesforce.com/shopper/shopper-consents/v1" = currentBaseUri

                                                              Static Readonly paramKeys

                                                              -
                                                              paramKeys: { getSubscriptions: ["organizationId", "siteId", "locale", "tags"]; getSubscriptionsRequired: ["organizationId", "siteId"]; updateSubscription: ["organizationId", "siteId", "locale"]; updateSubscriptionRequired: ["organizationId", "siteId"] } = {getSubscriptions: ['organizationId','siteId','locale','tags',],getSubscriptionsRequired: ['organizationId','siteId',],updateSubscription: ['organizationId','siteId','locale',],updateSubscriptionRequired: ['organizationId','siteId',],} as const
                                                              +
                                                              paramKeys: { getSubscriptions: ["organizationId", "siteId", "locale", "tags", "expand"]; getSubscriptionsRequired: ["organizationId", "siteId"]; updateSubscription: ["organizationId", "siteId", "locale"]; updateSubscriptionRequired: ["organizationId", "siteId"]; updateSubscriptions: ["organizationId", "siteId", "locale"]; updateSubscriptionsRequired: ["organizationId", "siteId"] } = {getSubscriptions: ['organizationId','siteId','locale','tags','expand',],getSubscriptionsRequired: ['organizationId','siteId',],updateSubscription: ['organizationId','siteId','locale',],updateSubscriptionRequired: ['organizationId','siteId',],updateSubscriptions: ['organizationId','siteId','locale',],updateSubscriptionsRequired: ['organizationId','siteId',],} as const

                                                              Type declaration

                                                              • -
                                                                getSubscriptions: ["organizationId", "siteId", "locale", "tags"]
                                                                +
                                                                getSubscriptions: ["organizationId", "siteId", "locale", "tags", "expand"]
                                                              • getSubscriptionsRequired: ["organizationId", "siteId"]
                                                                @@ -327,6 +322,12 @@
                                                                updateSubscription:
                                                                updateSubscriptionRequired: ["organizationId", "siteId"]
                                                              • +
                                                              • +
                                                                updateSubscriptions: ["organizationId", "siteId", "locale"]
                                                                +
                                                              • +
                                                              • +
                                                                updateSubscriptionsRequired: ["organizationId", "siteId"]
                                                                +
                                                              @@ -337,26 +338,33 @@

                                                              Methods

                                                              getSubscriptions

                                                            • @@ -224,7 +224,7 @@

                                                              Static paramKeys: { createShopperContext: ["usid", "organizationId", "siteId", "evaluateContextWithClientIp"]; createShopperContextRequired: ["usid", "organizationId", "siteId"]; deleteShopperContext: ["usid", "organizationId", "siteId"]; deleteShopperContextRequired: ["usid", "organizationId", "siteId"]; getShopperContext: ["usid", "organizationId", "siteId"]; getShopperContextRequired: ["usid", "organizationId", "siteId"]; updateShopperContext: ["usid", "organizationId", "siteId", "evaluateContextWithClientIp"]; updateShopperContextRequired: ["usid", "organizationId", "siteId"] } = {createShopperContext: ['usid','organizationId','siteId','evaluateContextWithClientIp',],createShopperContextRequired: ['usid','organizationId','siteId',],deleteShopperContext: ['usid','organizationId','siteId',],deleteShopperContextRequired: ['usid','organizationId','siteId',],getShopperContext: ['usid','organizationId','siteId',],getShopperContextRequired: ['usid','organizationId','siteId',],updateShopperContext: ['usid','organizationId','siteId','evaluateContextWithClientIp',],updateShopperContextRequired: ['usid','organizationId','siteId',],} as const

                                                              @@ -271,7 +271,7 @@

                                                              createShopperContext

                                                            • @@ -296,7 +296,7 @@

                                                              Returns Promise
                                                              @@ -342,7 +342,7 @@

                                                              deleteShopperContext

                                                            • @@ -368,7 +368,7 @@

                                                              Returns Promise
                                                              @@ -417,7 +417,7 @@

                                                              getShopperContext

                                                            • @@ -442,7 +442,7 @@

                                                              Returns Promise
                                                              @@ -488,7 +488,7 @@

                                                              updateShopperContext

                                                            • @@ -539,7 +539,7 @@

                                                              Returns Promise
                                                              @@ -611,7 +611,7 @@

                                                              Static apiPaths: object

                                                              @@ -620,7 +620,7 @@

                                                              createShopperContext

                                                              createShopperContext: string = "/organizations/{organizationId}/shopper-context/{usid}"
                                                              @@ -630,7 +630,7 @@

                                                              deleteShopperContext

                                                              deleteShopperContext: string = "/organizations/{organizationId}/shopper-context/{usid}"
                                                              @@ -640,7 +640,7 @@

                                                              getShopperContext

                                                              getShopperContext: string = "/organizations/{organizationId}/shopper-context/{usid}"
                                                              @@ -650,7 +650,7 @@

                                                              updateShopperContext

                                                              updateShopperContext: string = "/organizations/{organizationId}/shopper-context/{usid}"
                                                              @@ -710,6 +710,9 @@

                                                              updateShopperContext

                                                            • shopperOrders
                                                            • +
                                                            • + shopperPayments +
                                                            • shopperProducts
                                                            • diff --git a/docs/classes/shoppercustomers.shoppercustomers-3.html b/docs/classes/shoppercustomers.shoppercustomers-3.html index 0738fbf2..0c6ff002 100644 --- a/docs/classes/shoppercustomers.shoppercustomers-3.html +++ b/docs/classes/shoppercustomers.shoppercustomers-3.html @@ -84,9 +84,9 @@

                                                              API Overview

                                                              Authentication & Authorization

                                                              -

                                                              The client requesting the customer information must have access to the Customer and Product List resources. The API requests pass a system-to-system bearer token in the header of the request. For the trusted system API, the trusted client must first authenticate against Account manager to log in on behalf of a customer.

                                                              +

                                                              The client requesting the customer information must have access to the Customer and Product List resources. The Shopper Customer API requires a shopper access token from the Shopper Login and API Access Service (SLAS).

                                                              +

                                                              You must include the relevant scope(s) in the client ID used to generate the SLAS token. For a full list of permissions, see the Authorization Scopes Catalog.

                                                              For details on how to request a shopper access token from SLAS, see the guest user flows for public clients and private clients in the SLAS guides.

                                                              -

                                                              You must include the relevant scope(s) in the client ID used to generate the SLAS token. For details, see the Authorization Scopes Catalog.

                                                              Use Cases

                                                              @@ -186,6 +186,7 @@

                                                              Methods

                                                            • createCustomerProductList
                                                            • createCustomerProductListItem
                                                            • deleteCustomerPaymentInstrument
                                                            • +
                                                            • deleteCustomerPaymentMethodReference
                                                            • deleteCustomerProductList
                                                            • deleteCustomerProductListItem
                                                            • getCustomer
                                                            • @@ -199,6 +200,7 @@

                                                              Methods

                                                            • getExternalProfile
                                                            • getProductListItem
                                                            • getPublicProductList
                                                            • +
                                                            • getPublicProductListItems
                                                            • getPublicProductListsBySearchTerm
                                                            • getResetPasswordToken
                                                            • registerCustomer
                                                            • @@ -208,6 +210,7 @@

                                                              Methods

                                                            • updateCustomer
                                                            • updateCustomerAddress
                                                            • updateCustomerPassword
                                                            • +
                                                            • updateCustomerPaymentInstrument
                                                            • updateCustomerProductList
                                                            • updateCustomerProductListItem
                                                            @@ -233,7 +236,7 @@

                                                            constructor

                                                          • Parameters

                                                            @@ -255,7 +258,7 @@

                                                            clientConfig

                                                            clientConfig: ClientConfig<ConfigParameters> & { baseUri: string }
                                                            @@ -265,17 +268,17 @@

                                                            Static defaultBaseUri: "https://{shortCode}.api.commercecloud.salesforce.com/customer/shopper-customers/v1" = currentBaseUri

                                                          • Static Readonly paramKeys

                                                            -
                                                            paramKeys: { createCustomerAddress: ["customerId", "organizationId", "siteId"]; createCustomerAddressRequired: ["customerId", "organizationId", "siteId"]; createCustomerPaymentInstrument: ["customerId", "organizationId", "siteId"]; createCustomerPaymentInstrumentRequired: ["customerId", "organizationId", "siteId"]; createCustomerProductList: ["customerId", "organizationId", "siteId"]; createCustomerProductListItem: ["listId", "customerId", "organizationId", "siteId"]; createCustomerProductListItemRequired: ["listId", "customerId", "organizationId", "siteId"]; createCustomerProductListRequired: ["customerId", "organizationId", "siteId"]; deleteCustomerPaymentInstrument: ["paymentInstrumentId", "customerId", "organizationId", "siteId"]; deleteCustomerPaymentInstrumentRequired: ["paymentInstrumentId", "customerId", "organizationId", "siteId"]; deleteCustomerProductList: ["listId", "customerId", "organizationId", "siteId"]; deleteCustomerProductListItem: ["itemId", "listId", "customerId", "organizationId", "siteId"]; deleteCustomerProductListItemRequired: ["itemId", "listId", "customerId", "organizationId", "siteId"]; deleteCustomerProductListRequired: ["listId", "customerId", "organizationId", "siteId"]; getCustomer: ["customerId", "organizationId", "siteId"]; getCustomerAddress: ["addressName", "customerId", "organizationId", "siteId"]; getCustomerAddressRequired: ["addressName", "customerId", "organizationId", "siteId"]; getCustomerBaskets: ["customerId", "organizationId", "siteId"]; getCustomerBasketsRequired: ["customerId", "organizationId", "siteId"]; getCustomerOrders: ["customerId", "organizationId", "siteId", "crossSites", "from", "until", "status", "limit", "offset"]; getCustomerOrdersRequired: ["customerId", "organizationId", "siteId"]; getCustomerPaymentInstrument: ["paymentInstrumentId", "customerId", "organizationId", "siteId"]; getCustomerPaymentInstrumentRequired: ["paymentInstrumentId", "customerId", "organizationId", "siteId"]; getCustomerProductList: ["listId", "customerId", "organizationId", "siteId"]; getCustomerProductListItem: ["itemId", "listId", "customerId", "organizationId", "siteId"]; getCustomerProductListItemRequired: ["itemId", "listId", "customerId", "organizationId", "siteId"]; getCustomerProductListRequired: ["listId", "customerId", "organizationId", "siteId"]; getCustomerProductLists: ["customerId", "organizationId", "siteId"]; getCustomerProductListsRequired: ["customerId", "organizationId", "siteId"]; getCustomerRequired: ["customerId", "organizationId", "siteId"]; getExternalProfile: ["organizationId", "externalId", "authenticationProviderId", "siteId"]; getExternalProfileRequired: ["organizationId", "externalId", "authenticationProviderId", "siteId"]; getProductListItem: ["itemId", "listId", "organizationId", "siteId"]; getProductListItemRequired: ["itemId", "listId", "organizationId", "siteId"]; getPublicProductList: ["listId", "organizationId", "siteId"]; getPublicProductListRequired: ["listId", "organizationId", "siteId"]; getPublicProductListsBySearchTerm: ["organizationId", "siteId", "email", "firstName", "lastName"]; getPublicProductListsBySearchTermRequired: ["organizationId", "siteId"]; getResetPasswordToken: ["organizationId", "siteId"]; getResetPasswordTokenRequired: ["organizationId", "siteId"]; registerCustomer: ["organizationId", "siteId"]; registerCustomerRequired: ["organizationId", "siteId"]; registerExternalProfile: ["organizationId", "siteId"]; registerExternalProfileRequired: ["organizationId", "siteId"]; removeCustomerAddress: ["addressName", "customerId", "organizationId", "siteId"]; removeCustomerAddressRequired: ["addressName", "customerId", "organizationId", "siteId"]; resetPassword: ["organizationId", "siteId"]; resetPasswordRequired: ["organizationId", "siteId"]; updateCustomer: ["customerId", "organizationId", "siteId"]; updateCustomerAddress: ["addressName", "customerId", "organizationId", "siteId"]; updateCustomerAddressRequired: ["addressName", "customerId", "organizationId", "siteId"]; updateCustomerPassword: ["customerId", "organizationId", "siteId"]; updateCustomerPasswordRequired: ["customerId", "organizationId", "siteId"]; updateCustomerProductList: ["listId", "customerId", "organizationId", "siteId"]; updateCustomerProductListItem: ["itemId", "listId", "customerId", "organizationId", "siteId"]; updateCustomerProductListItemRequired: ["itemId", "listId", "customerId", "organizationId", "siteId"]; updateCustomerProductListRequired: ["listId", "customerId", "organizationId", "siteId"]; updateCustomerRequired: ["customerId", "organizationId", "siteId"] } = {createCustomerAddress: ['customerId','organizationId','siteId',],createCustomerAddressRequired: ['customerId','organizationId','siteId',],createCustomerPaymentInstrument: ['customerId','organizationId','siteId',],createCustomerPaymentInstrumentRequired: ['customerId','organizationId','siteId',],createCustomerProductList: ['customerId','organizationId','siteId',],createCustomerProductListRequired: ['customerId','organizationId','siteId',],createCustomerProductListItem: ['listId','customerId','organizationId','siteId',],createCustomerProductListItemRequired: ['listId','customerId','organizationId','siteId',],deleteCustomerPaymentInstrument: ['paymentInstrumentId','customerId','organizationId','siteId',],deleteCustomerPaymentInstrumentRequired: ['paymentInstrumentId','customerId','organizationId','siteId',],deleteCustomerProductList: ['listId','customerId','organizationId','siteId',],deleteCustomerProductListRequired: ['listId','customerId','organizationId','siteId',],deleteCustomerProductListItem: ['itemId','listId','customerId','organizationId','siteId',],deleteCustomerProductListItemRequired: ['itemId','listId','customerId','organizationId','siteId',],getCustomer: ['customerId','organizationId','siteId',],getCustomerRequired: ['customerId','organizationId','siteId',],getCustomerAddress: ['addressName','customerId','organizationId','siteId',],getCustomerAddressRequired: ['addressName','customerId','organizationId','siteId',],getCustomerBaskets: ['customerId','organizationId','siteId',],getCustomerBasketsRequired: ['customerId','organizationId','siteId',],getCustomerOrders: ['customerId','organizationId','siteId','crossSites','from','until','status','limit','offset',],getCustomerOrdersRequired: ['customerId','organizationId','siteId',],getCustomerPaymentInstrument: ['paymentInstrumentId','customerId','organizationId','siteId',],getCustomerPaymentInstrumentRequired: ['paymentInstrumentId','customerId','organizationId','siteId',],getCustomerProductList: ['listId','customerId','organizationId','siteId',],getCustomerProductListRequired: ['listId','customerId','organizationId','siteId',],getCustomerProductListItem: ['itemId','listId','customerId','organizationId','siteId',],getCustomerProductListItemRequired: ['itemId','listId','customerId','organizationId','siteId',],getCustomerProductLists: ['customerId','organizationId','siteId',],getCustomerProductListsRequired: ['customerId','organizationId','siteId',],getExternalProfile: ['organizationId','externalId','authenticationProviderId','siteId',],getExternalProfileRequired: ['organizationId','externalId','authenticationProviderId','siteId',],getProductListItem: ['itemId','listId','organizationId','siteId',],getProductListItemRequired: ['itemId','listId','organizationId','siteId',],getPublicProductList: ['listId','organizationId','siteId',],getPublicProductListRequired: ['listId','organizationId','siteId',],getPublicProductListsBySearchTerm: ['organizationId','siteId','email','firstName','lastName',],getPublicProductListsBySearchTermRequired: ['organizationId','siteId',],getResetPasswordToken: ['organizationId','siteId',],getResetPasswordTokenRequired: ['organizationId','siteId',],registerCustomer: ['organizationId','siteId',],registerCustomerRequired: ['organizationId','siteId',],registerExternalProfile: ['organizationId','siteId',],registerExternalProfileRequired: ['organizationId','siteId',],removeCustomerAddress: ['addressName','customerId','organizationId','siteId',],removeCustomerAddressRequired: ['addressName','customerId','organizationId','siteId',],resetPassword: ['organizationId','siteId',],resetPasswordRequired: ['organizationId','siteId',],updateCustomer: ['customerId','organizationId','siteId',],updateCustomerRequired: ['customerId','organizationId','siteId',],updateCustomerAddress: ['addressName','customerId','organizationId','siteId',],updateCustomerAddressRequired: ['addressName','customerId','organizationId','siteId',],updateCustomerPassword: ['customerId','organizationId','siteId',],updateCustomerPasswordRequired: ['customerId','organizationId','siteId',],updateCustomerProductList: ['listId','customerId','organizationId','siteId',],updateCustomerProductListRequired: ['listId','customerId','organizationId','siteId',],updateCustomerProductListItem: ['itemId','listId','customerId','organizationId','siteId',],updateCustomerProductListItemRequired: ['itemId','listId','customerId','organizationId','siteId',],} as const
                                                            +
                                                            paramKeys: { createCustomerAddress: ["customerId", "organizationId", "siteId"]; createCustomerAddressRequired: ["customerId", "organizationId", "siteId"]; createCustomerPaymentInstrument: ["customerId", "organizationId", "siteId"]; createCustomerPaymentInstrumentRequired: ["customerId", "organizationId", "siteId"]; createCustomerProductList: ["customerId", "organizationId", "siteId"]; createCustomerProductListItem: ["listId", "customerId", "organizationId", "siteId"]; createCustomerProductListItemRequired: ["listId", "customerId", "organizationId", "siteId"]; createCustomerProductListRequired: ["customerId", "organizationId", "siteId"]; deleteCustomerPaymentInstrument: ["paymentInstrumentId", "customerId", "organizationId", "siteId"]; deleteCustomerPaymentInstrumentRequired: ["paymentInstrumentId", "customerId", "organizationId", "siteId"]; deleteCustomerPaymentMethodReference: ["paymentMethodReferenceId", "customerId", "organizationId", "siteId", "accountId"]; deleteCustomerPaymentMethodReferenceRequired: ["paymentMethodReferenceId", "customerId", "organizationId", "siteId", "accountId"]; deleteCustomerProductList: ["listId", "customerId", "organizationId", "siteId"]; deleteCustomerProductListItem: ["itemId", "listId", "customerId", "organizationId", "siteId"]; deleteCustomerProductListItemRequired: ["itemId", "listId", "customerId", "organizationId", "siteId"]; deleteCustomerProductListRequired: ["listId", "customerId", "organizationId", "siteId"]; getCustomer: ["customerId", "organizationId", "siteId", "expand"]; getCustomerAddress: ["addressName", "customerId", "organizationId", "siteId"]; getCustomerAddressRequired: ["addressName", "customerId", "organizationId", "siteId"]; getCustomerBaskets: ["customerId", "organizationId", "siteId"]; getCustomerBasketsRequired: ["customerId", "organizationId", "siteId"]; getCustomerOrders: ["customerId", "organizationId", "siteId", "crossSites", "from", "until", "status", "expand", "limit", "offset"]; getCustomerOrdersRequired: ["customerId", "organizationId", "siteId"]; getCustomerPaymentInstrument: ["paymentInstrumentId", "customerId", "organizationId", "siteId"]; getCustomerPaymentInstrumentRequired: ["paymentInstrumentId", "customerId", "organizationId", "siteId"]; getCustomerProductList: ["listId", "customerId", "organizationId", "siteId"]; getCustomerProductListItem: ["itemId", "listId", "customerId", "organizationId", "siteId"]; getCustomerProductListItemRequired: ["itemId", "listId", "customerId", "organizationId", "siteId"]; getCustomerProductListRequired: ["listId", "customerId", "organizationId", "siteId"]; getCustomerProductLists: ["customerId", "organizationId", "siteId"]; getCustomerProductListsRequired: ["customerId", "organizationId", "siteId"]; getCustomerRequired: ["customerId", "organizationId", "siteId"]; getExternalProfile: ["organizationId", "externalId", "authenticationProviderId", "siteId"]; getExternalProfileRequired: ["organizationId", "externalId", "authenticationProviderId", "siteId"]; getProductListItem: ["itemId", "listId", "organizationId", "siteId"]; getProductListItemRequired: ["itemId", "listId", "organizationId", "siteId"]; getPublicProductList: ["listId", "organizationId", "siteId"]; getPublicProductListItems: ["listId", "organizationId", "siteId", "expand"]; getPublicProductListItemsRequired: ["listId", "organizationId", "siteId"]; getPublicProductListRequired: ["listId", "organizationId", "siteId"]; getPublicProductListsBySearchTerm: ["organizationId", "siteId", "email", "firstName", "lastName"]; getPublicProductListsBySearchTermRequired: ["organizationId", "siteId"]; getResetPasswordToken: ["organizationId", "siteId"]; getResetPasswordTokenRequired: ["organizationId", "siteId"]; registerCustomer: ["organizationId", "siteId"]; registerCustomerRequired: ["organizationId", "siteId"]; registerExternalProfile: ["organizationId", "siteId"]; registerExternalProfileRequired: ["organizationId", "siteId"]; removeCustomerAddress: ["addressName", "customerId", "organizationId", "siteId"]; removeCustomerAddressRequired: ["addressName", "customerId", "organizationId", "siteId"]; resetPassword: ["organizationId", "siteId"]; resetPasswordRequired: ["organizationId", "siteId"]; updateCustomer: ["customerId", "organizationId", "siteId"]; updateCustomerAddress: ["addressName", "customerId", "organizationId", "siteId"]; updateCustomerAddressRequired: ["addressName", "customerId", "organizationId", "siteId"]; updateCustomerPassword: ["customerId", "organizationId", "siteId"]; updateCustomerPasswordRequired: ["customerId", "organizationId", "siteId"]; updateCustomerPaymentInstrument: ["paymentInstrumentId", "customerId", "organizationId", "siteId"]; updateCustomerPaymentInstrumentRequired: ["paymentInstrumentId", "customerId", "organizationId", "siteId"]; updateCustomerProductList: ["listId", "customerId", "organizationId", "siteId"]; updateCustomerProductListItem: ["itemId", "listId", "customerId", "organizationId", "siteId"]; updateCustomerProductListItemRequired: ["itemId", "listId", "customerId", "organizationId", "siteId"]; updateCustomerProductListRequired: ["listId", "customerId", "organizationId", "siteId"]; updateCustomerRequired: ["customerId", "organizationId", "siteId"] } = {createCustomerAddress: ['customerId','organizationId','siteId',],createCustomerAddressRequired: ['customerId','organizationId','siteId',],createCustomerPaymentInstrument: ['customerId','organizationId','siteId',],createCustomerPaymentInstrumentRequired: ['customerId','organizationId','siteId',],createCustomerProductList: ['customerId','organizationId','siteId',],createCustomerProductListRequired: ['customerId','organizationId','siteId',],createCustomerProductListItem: ['listId','customerId','organizationId','siteId',],createCustomerProductListItemRequired: ['listId','customerId','organizationId','siteId',],deleteCustomerPaymentInstrument: ['paymentInstrumentId','customerId','organizationId','siteId',],deleteCustomerPaymentInstrumentRequired: ['paymentInstrumentId','customerId','organizationId','siteId',],deleteCustomerPaymentMethodReference: ['paymentMethodReferenceId','customerId','organizationId','siteId','accountId',],deleteCustomerPaymentMethodReferenceRequired: ['paymentMethodReferenceId','customerId','organizationId','siteId','accountId',],deleteCustomerProductList: ['listId','customerId','organizationId','siteId',],deleteCustomerProductListRequired: ['listId','customerId','organizationId','siteId',],deleteCustomerProductListItem: ['itemId','listId','customerId','organizationId','siteId',],deleteCustomerProductListItemRequired: ['itemId','listId','customerId','organizationId','siteId',],getCustomer: ['customerId','organizationId','siteId','expand',],getCustomerRequired: ['customerId','organizationId','siteId',],getCustomerAddress: ['addressName','customerId','organizationId','siteId',],getCustomerAddressRequired: ['addressName','customerId','organizationId','siteId',],getCustomerBaskets: ['customerId','organizationId','siteId',],getCustomerBasketsRequired: ['customerId','organizationId','siteId',],getCustomerOrders: ['customerId','organizationId','siteId','crossSites','from','until','status','expand','limit','offset',],getCustomerOrdersRequired: ['customerId','organizationId','siteId',],getCustomerPaymentInstrument: ['paymentInstrumentId','customerId','organizationId','siteId',],getCustomerPaymentInstrumentRequired: ['paymentInstrumentId','customerId','organizationId','siteId',],getCustomerProductList: ['listId','customerId','organizationId','siteId',],getCustomerProductListRequired: ['listId','customerId','organizationId','siteId',],getCustomerProductListItem: ['itemId','listId','customerId','organizationId','siteId',],getCustomerProductListItemRequired: ['itemId','listId','customerId','organizationId','siteId',],getCustomerProductLists: ['customerId','organizationId','siteId',],getCustomerProductListsRequired: ['customerId','organizationId','siteId',],getExternalProfile: ['organizationId','externalId','authenticationProviderId','siteId',],getExternalProfileRequired: ['organizationId','externalId','authenticationProviderId','siteId',],getProductListItem: ['itemId','listId','organizationId','siteId',],getProductListItemRequired: ['itemId','listId','organizationId','siteId',],getPublicProductList: ['listId','organizationId','siteId',],getPublicProductListRequired: ['listId','organizationId','siteId',],getPublicProductListItems: ['listId','organizationId','siteId','expand',],getPublicProductListItemsRequired: ['listId','organizationId','siteId',],getPublicProductListsBySearchTerm: ['organizationId','siteId','email','firstName','lastName',],getPublicProductListsBySearchTermRequired: ['organizationId','siteId',],getResetPasswordToken: ['organizationId','siteId',],getResetPasswordTokenRequired: ['organizationId','siteId',],registerCustomer: ['organizationId','siteId',],registerCustomerRequired: ['organizationId','siteId',],registerExternalProfile: ['organizationId','siteId',],registerExternalProfileRequired: ['organizationId','siteId',],removeCustomerAddress: ['addressName','customerId','organizationId','siteId',],removeCustomerAddressRequired: ['addressName','customerId','organizationId','siteId',],resetPassword: ['organizationId','siteId',],resetPasswordRequired: ['organizationId','siteId',],updateCustomer: ['customerId','organizationId','siteId',],updateCustomerRequired: ['customerId','organizationId','siteId',],updateCustomerAddress: ['addressName','customerId','organizationId','siteId',],updateCustomerAddressRequired: ['addressName','customerId','organizationId','siteId',],updateCustomerPassword: ['customerId','organizationId','siteId',],updateCustomerPasswordRequired: ['customerId','organizationId','siteId',],updateCustomerPaymentInstrument: ['paymentInstrumentId','customerId','organizationId','siteId',],updateCustomerPaymentInstrumentRequired: ['paymentInstrumentId','customerId','organizationId','siteId',],updateCustomerProductList: ['listId','customerId','organizationId','siteId',],updateCustomerProductListRequired: ['listId','customerId','organizationId','siteId',],updateCustomerProductListItem: ['itemId','listId','customerId','organizationId','siteId',],updateCustomerProductListItemRequired: ['itemId','listId','customerId','organizationId','siteId',],} as const
                                                            @@ -311,6 +314,12 @@
                                                            deleteCustomerPaymentInstrument
                                                            deleteCustomerPaymentInstrumentRequired: ["paymentInstrumentId", "customerId", "organizationId", "siteId"]

                                                          • +
                                                          • +
                                                            deleteCustomerPaymentMethodReference: ["paymentMethodReferenceId", "customerId", "organizationId", "siteId", "accountId"]
                                                            +
                                                          • +
                                                          • +
                                                            deleteCustomerPaymentMethodReferenceRequired: ["paymentMethodReferenceId", "customerId", "organizationId", "siteId", "accountId"]
                                                            +
                                                          • deleteCustomerProductList: ["listId", "customerId", "organizationId", "siteId"]
                                                          • @@ -324,7 +333,7 @@
                                                            deleteCustomerProductListItemRequired: ["listId", "customerId", "organizationId", "siteId"]
                                                          • -
                                                            getCustomer: ["customerId", "organizationId", "siteId"]
                                                            +
                                                            getCustomer: ["customerId", "organizationId", "siteId", "expand"]
                                                          • getCustomerAddress: ["addressName", "customerId", "organizationId", "siteId"]
                                                            @@ -339,7 +348,7 @@
                                                            getCustomerBaskets: getCustomerBasketsRequired: ["customerId", "organizationId", "siteId"]
                                                          • -
                                                            getCustomerOrders: ["customerId", "organizationId", "siteId", "crossSites", "from", "until", "status", "limit", "offset"]
                                                            +
                                                            getCustomerOrders: ["customerId", "organizationId", "siteId", "crossSites", "from", "until", "status", "expand", "limit", "offset"]
                                                          • getCustomerOrdersRequired: ["customerId", "organizationId", "siteId"]
                                                            @@ -386,6 +395,12 @@
                                                            getProductListItemRequired
                                                            getPublicProductList: ["listId", "organizationId", "siteId"]
                                                          • +
                                                          • +
                                                            getPublicProductListItems: ["listId", "organizationId", "siteId", "expand"]
                                                            +
                                                          • +
                                                          • +
                                                            getPublicProductListItemsRequired: ["listId", "organizationId", "siteId"]
                                                            +
                                                          • getPublicProductListRequired: ["listId", "organizationId", "siteId"]
                                                          • @@ -440,6 +455,12 @@
                                                            updateCustomerPassword:
                                                          • updateCustomerPasswordRequired: ["customerId", "organizationId", "siteId"]
                                                          • +
                                                          • +
                                                            updateCustomerPaymentInstrument: ["paymentInstrumentId", "customerId", "organizationId", "siteId"]
                                                            +
                                                          • +
                                                          • +
                                                            updateCustomerPaymentInstrumentRequired: ["paymentInstrumentId", "customerId", "organizationId", "siteId"]
                                                            +
                                                          • updateCustomerProductList: ["listId", "customerId", "organizationId", "siteId"]
                                                          • @@ -472,7 +493,7 @@

                                                            createCustomerAddress

                                                          • @@ -497,7 +518,7 @@

                                                            Returns Promise
                                                            @@ -543,7 +564,7 @@

                                                            createCustomerPaymentInstrument

                                                          • @@ -568,7 +589,7 @@

                                                            Returns Promise
                                                            @@ -614,7 +635,7 @@

                                                            createCustomerProductList

                                                          • @@ -639,7 +660,7 @@

                                                            Returns Promise
                                                            @@ -685,7 +706,7 @@

                                                            createCustomerProductListItem

                                                          • @@ -721,7 +742,7 @@

                                                            Returns Promise
                                                            @@ -780,7 +801,7 @@

                                                            deleteCustomerPaymentInstrument

                                                          • @@ -805,7 +826,7 @@

                                                            Returns Promise
                                                            @@ -840,6 +861,81 @@

                                                            Returns Promise

                                                          +
                                                          + +

                                                          deleteCustomerPaymentMethodReference

                                                          + +
                                                            +
                                                          • + +
                                                            +
                                                            +

                                                            Deletes a specific payment method reference from a customer's account using the payment method reference ID and account ID.

                                                            +
                                                            +

                                                            If you would like to get a raw Response object use the other deleteCustomerPaymentMethodReference function.

                                                            +
                                                            +

                                                            Parameters

                                                            + +

                                                            Returns Promise<void>

                                                            +

                                                            A promise of type void.

                                                            +
                                                          • +
                                                          • + +
                                                            +
                                                            +

                                                            Deletes a specific payment method reference from a customer's account using the payment method reference ID and account ID.

                                                            +
                                                            +
                                                            +

                                                            Type parameters

                                                            +
                                                              +
                                                            • +

                                                              T: boolean

                                                              +
                                                            • +
                                                            +

                                                            Parameters

                                                            +
                                                              +
                                                            • +
                                                              Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ accountId: string; customerId: string; organizationId: string; paymentMethodReferenceId: string; siteId: string } & QueryParameters, ConfigParameters> }>
                                                              +
                                                              +
                                                              +

                                                              An object containing the options for this method.

                                                              +
                                                              +
                                                              +
                                                            • +
                                                            • +
                                                              Optional rawResponse: T
                                                              +
                                                              +
                                                              +

                                                              Set to true to return entire Response object instead of DTO.

                                                              +
                                                              +
                                                              +
                                                            • +
                                                            +

                                                            Returns Promise<T extends true ? Response : void>

                                                            +

                                                            A promise of type Response if rawResponse is true, a promise of type void otherwise.

                                                            +
                                                          • +
                                                          +

                                                          deleteCustomerProductList

                                                          @@ -851,7 +947,7 @@

                                                          deleteCustomerProductList

                                                        • @@ -877,7 +973,7 @@

                                                          Returns Promise
                                                          @@ -926,7 +1022,7 @@

                                                          deleteCustomerProductListItem

                                                        • @@ -951,7 +1047,7 @@

                                                          Returns Promise
                                                          @@ -990,14 +1086,14 @@

                                                          Returns Promise

                                                          getCustomer

                                                          • @@ -1008,7 +1104,7 @@

                                                            getCustomer

                                                            Parameters

                                                            • -
                                                              Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ customerId: string; organizationId: string; siteId: string } & QueryParameters, ConfigParameters> }>
                                                              +
                                                              Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ customerId: string; expand?: Array<GetCustomerExpandEnum>; organizationId: string; siteId: string } & QueryParameters, ConfigParameters> }>

                                                              An object containing the options for this method.

                                                              @@ -1022,7 +1118,7 @@

                                                              Returns Promise
                                                              @@ -1036,7 +1132,7 @@

                                                              T: Parameters

                                                              • -
                                                                Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ customerId: string; organizationId: string; siteId: string } & QueryParameters, ConfigParameters> }>
                                                                +
                                                                Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ customerId: string; expand?: Array<GetCustomerExpandEnum>; organizationId: string; siteId: string } & QueryParameters, ConfigParameters> }>

                                                                An object containing the options for this method.

                                                                @@ -1068,7 +1164,7 @@

                                                                getCustomerAddress

                                                              • @@ -1093,7 +1189,7 @@

                                                                Returns Promise
                                                                @@ -1139,7 +1235,7 @@

                                                                getCustomerBaskets

                                                              • @@ -1164,7 +1260,7 @@

                                                                Returns Promise
                                                                @@ -1203,14 +1299,14 @@

                                                                Returns Promise

                                                                getCustomerOrders

                                                                  -
                                                                • getCustomerOrders(options?: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ crossSites?: undefined | false | true; customerId: string; from?: undefined | string; limit?: undefined | number; offset?: undefined | number; organizationId: string; siteId: string; status?: undefined | string; until?: undefined | string } & QueryParameters, ConfigParameters> }>): Promise<CustomerOrderResult>
                                                                • -
                                                                • getCustomerOrders<T>(options?: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ crossSites?: undefined | false | true; customerId: string; from?: undefined | string; limit?: undefined | number; offset?: undefined | number; organizationId: string; siteId: string; status?: undefined | string; until?: undefined | string } & QueryParameters, ConfigParameters> }>, rawResponse?: T): Promise<T extends true ? Response : CustomerOrderResult>
                                                                • +
                                                                • getCustomerOrders(options?: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ crossSites?: undefined | false | true; customerId: string; expand?: GetCustomerOrdersExpandEnum; from?: undefined | string; limit?: undefined | number; offset?: undefined | number; organizationId: string; siteId: string; status?: undefined | string; until?: undefined | string } & QueryParameters, ConfigParameters> }>): Promise<CustomerOrderResult>
                                                                • +
                                                                • getCustomerOrders<T>(options?: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ crossSites?: undefined | false | true; customerId: string; expand?: GetCustomerOrdersExpandEnum; from?: undefined | string; limit?: undefined | number; offset?: undefined | number; organizationId: string; siteId: string; status?: undefined | string; until?: undefined | string } & QueryParameters, ConfigParameters> }>, rawResponse?: T): Promise<T extends true ? Response : CustomerOrderResult>
                                                                • @@ -1221,7 +1317,7 @@

                                                                  getCustomerOrders

                                                                  Parameters

                                                                  • -
                                                                    Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ crossSites?: undefined | false | true; customerId: string; from?: undefined | string; limit?: undefined | number; offset?: undefined | number; organizationId: string; siteId: string; status?: undefined | string; until?: undefined | string } & QueryParameters, ConfigParameters> }>
                                                                    +
                                                                    Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ crossSites?: undefined | false | true; customerId: string; expand?: GetCustomerOrdersExpandEnum; from?: undefined | string; limit?: undefined | number; offset?: undefined | number; organizationId: string; siteId: string; status?: undefined | string; until?: undefined | string } & QueryParameters, ConfigParameters> }>

                                                                    An object containing the options for this method.

                                                                    @@ -1235,7 +1331,7 @@

                                                                    Returns Promise
                                                                    @@ -1249,7 +1345,7 @@

                                                                    T: Parameters

                                                                    • -
                                                                      Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ crossSites?: undefined | false | true; customerId: string; from?: undefined | string; limit?: undefined | number; offset?: undefined | number; organizationId: string; siteId: string; status?: undefined | string; until?: undefined | string } & QueryParameters, ConfigParameters> }>
                                                                      +
                                                                      Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ crossSites?: undefined | false | true; customerId: string; expand?: GetCustomerOrdersExpandEnum; from?: undefined | string; limit?: undefined | number; offset?: undefined | number; organizationId: string; siteId: string; status?: undefined | string; until?: undefined | string } & QueryParameters, ConfigParameters> }>

                                                                      An object containing the options for this method.

                                                                      @@ -1281,7 +1377,7 @@

                                                                      getCustomerPaymentInstrument

                                                                    • @@ -1306,7 +1402,7 @@

                                                                      Returns Promise
                                                                      @@ -1352,7 +1448,7 @@

                                                                      getCustomerProductList

                                                                    • @@ -1377,7 +1473,7 @@

                                                                      Returns Promise
                                                                      @@ -1423,7 +1519,7 @@

                                                                      getCustomerProductListItem

                                                                    • @@ -1448,7 +1544,7 @@

                                                                      Returns Promise
                                                                      @@ -1494,7 +1590,7 @@

                                                                      getCustomerProductLists

                                                                    • @@ -1519,7 +1615,7 @@

                                                                      Returns Promise
                                                                      @@ -1565,7 +1661,7 @@

                                                                      getExternalProfile

                                                                    • @@ -1590,7 +1686,7 @@

                                                                      Returns Promise
                                                                      @@ -1636,7 +1732,7 @@

                                                                      getProductListItem

                                                                    • @@ -1661,7 +1757,7 @@

                                                                      Returns Promise
                                                                      @@ -1707,7 +1803,7 @@

                                                                      getPublicProductList

                                                                    • @@ -1732,7 +1828,7 @@

                                                                      Returns Promise
                                                                      @@ -1767,6 +1863,81 @@

                                                                      Returns Promise

                                                        • +
                                                          + +

                                                          getPublicProductListItems

                                                          + +
                                                            +
                                                          • + +
                                                            +
                                                            +

                                                            The possible expansions are product, images, and availability. For images and availability, the product must be expanded as well. This endpoint accepts a registered customer ShopperToken (JWT) or a guest customer ShopperToken.

                                                            +
                                                            +

                                                            If you would like to get a raw Response object use the other getPublicProductListItems function.

                                                            +
                                                            +

                                                            Parameters

                                                            + +

                                                            Returns Promise<PublicProductListItemResult>

                                                            +

                                                            A promise of type PublicProductListItemResult.

                                                            +
                                                          • +
                                                          • + +
                                                            +
                                                            +

                                                            The possible expansions are product, images, and availability. For images and availability, the product must be expanded as well. This endpoint accepts a registered customer ShopperToken (JWT) or a guest customer ShopperToken.

                                                            +
                                                            +
                                                            +

                                                            Type parameters

                                                            +
                                                              +
                                                            • +

                                                              T: boolean

                                                              +
                                                            • +
                                                            +

                                                            Parameters

                                                            + +

                                                            Returns Promise<T extends true ? Response : PublicProductListItemResult>

                                                            +

                                                            A promise of type Response if rawResponse is true, a promise of type PublicProductListItemResult otherwise.

                                                            +
                                                          • +
                                                          +

                                                          getPublicProductListsBySearchTerm

                                                          @@ -1778,7 +1949,7 @@

                                                          getPublicProductListsBySearchTerm

                                                        • @@ -1803,7 +1974,7 @@

                                                          Returns Promise
                                                          @@ -1849,7 +2020,7 @@

                                                          getResetPasswordToken

                                                        • @@ -1875,7 +2046,7 @@

                                                          Returns Promise
                                                          @@ -1924,7 +2095,7 @@

                                                          registerCustomer

                                                        • @@ -1950,7 +2121,7 @@

                                                          Returns Promise
                                                          @@ -1999,7 +2170,7 @@

                                                          registerExternalProfile

                                                        • @@ -2024,7 +2195,7 @@

                                                          Returns Promise
                                                          @@ -2070,7 +2241,7 @@

                                                          removeCustomerAddress

                                                        • @@ -2095,7 +2266,7 @@

                                                          Returns Promise
                                                          @@ -2141,7 +2312,7 @@

                                                          resetPassword

                                                        • @@ -2167,7 +2338,7 @@

                                                          Returns Promise
                                                          @@ -2216,7 +2387,7 @@

                                                          updateCustomer

                                                        • @@ -2241,7 +2412,7 @@

                                                          Returns Promise
                                                          @@ -2287,7 +2458,7 @@

                                                          updateCustomerAddress

                                                        • @@ -2312,7 +2483,7 @@

                                                          Returns Promise
                                                          @@ -2358,7 +2529,7 @@

                                                          updateCustomerPassword

                                                        • @@ -2383,7 +2554,7 @@

                                                          Returns Promise
                                                          @@ -2418,6 +2589,77 @@

                                                          Returns Promise

                                                        +
                                                        + +

                                                        updateCustomerPaymentInstrument

                                                        + +
                                                          +
                                                        • + +
                                                          +
                                                          +

                                                          If you would like to get a raw Response object use the other updateCustomerPaymentInstrument function.

                                                          +
                                                          +
                                                          +

                                                          Parameters

                                                          + +

                                                          Returns Promise<CustomerPaymentInstrument>

                                                          +

                                                          A promise of type CustomerPaymentInstrument.

                                                          +
                                                        • +
                                                        • + +
                                                          +
                                                          +

                                                          Type parameters

                                                          +
                                                            +
                                                          • +

                                                            T: boolean

                                                            +
                                                          • +
                                                          +

                                                          Parameters

                                                          + +

                                                          Returns Promise<T extends true ? Response : CustomerPaymentInstrument>

                                                          +

                                                          A promise of type Response if rawResponse is true, a promise of type CustomerPaymentInstrument otherwise.

                                                          +
                                                        • +
                                                        +

                                                        updateCustomerProductList

                                                        @@ -2429,7 +2671,7 @@

                                                        updateCustomerProductList

                                                      • @@ -2454,7 +2696,7 @@

                                                        Returns Promise
                                                        @@ -2500,7 +2742,7 @@

                                                        updateCustomerProductListItem

                                                      • @@ -2534,7 +2776,7 @@

                                                        Returns Promise
                                                        @@ -2589,7 +2831,7 @@

                                                        Static apiPaths: object

                                                        @@ -2598,7 +2840,7 @@

                                                        createCustomerAddress

                                                        createCustomerAddress: string = "/organizations/{organizationId}/customers/{customerId}/addresses"
                                                        @@ -2608,7 +2850,7 @@

                                                        createCustomerPaymentInstrument

                                                        createCustomerPaymentInstrument: string = "/organizations/{organizationId}/customers/{customerId}/payment-instruments"

                                                      • @@ -2618,7 +2860,7 @@

                                                        createCustomerProductList

                                                        createCustomerProductList: string = "/organizations/{organizationId}/customers/{customerId}/product-lists"
                                                        @@ -2628,7 +2870,7 @@

                                                        createCustomerProductListItem

                                                        createCustomerProductListItem: string = "/organizations/{organizationId}/customers/{customerId}/product-lists/{listId}/items"
                                                        @@ -2638,7 +2880,17 @@

                                                        deleteCustomerPaymentInstrument

                                                        deleteCustomerPaymentInstrument: string = "/organizations/{organizationId}/customers/{customerId}/payment-instruments/{paymentInstrumentId}"
                                                        + +
                                                        + +

                                                        deleteCustomerPaymentMethodReference

                                                        +
                                                        deleteCustomerPaymentMethodReference: string = "/organizations/{organizationId}/customers/{customerId}/payment-method-references/{paymentMethodReferenceId}"
                                                        +
                                                        @@ -2648,7 +2900,7 @@

                                                        deleteCustomerProductList

                                                        deleteCustomerProductList: string = "/organizations/{organizationId}/customers/{customerId}/product-lists/{listId}"
                                                        @@ -2658,7 +2910,7 @@

                                                        deleteCustomerProductListItem

                                                        deleteCustomerProductListItem: string = "/organizations/{organizationId}/customers/{customerId}/product-lists/{listId}/items/{itemId}"
                                                        @@ -2668,7 +2920,7 @@

                                                        getCustomer

                                                        getCustomer: string = "/organizations/{organizationId}/customers/{customerId}"
                                                        @@ -2678,7 +2930,7 @@

                                                        getCustomerAddress

                                                        getCustomerAddress: string = "/organizations/{organizationId}/customers/{customerId}/addresses/{addressName}"
                                                        @@ -2688,7 +2940,7 @@

                                                        getCustomerBaskets

                                                        getCustomerBaskets: string = "/organizations/{organizationId}/customers/{customerId}/baskets"
                                                        @@ -2698,7 +2950,7 @@

                                                        getCustomerOrders

                                                        getCustomerOrders: string = "/organizations/{organizationId}/customers/{customerId}/orders"
                                                        @@ -2708,7 +2960,7 @@

                                                        getCustomerPaymentInstrument

                                                        getCustomerPaymentInstrument: string = "/organizations/{organizationId}/customers/{customerId}/payment-instruments/{paymentInstrumentId}"
                                                        @@ -2718,7 +2970,7 @@

                                                        getCustomerProductList

                                                        getCustomerProductList: string = "/organizations/{organizationId}/customers/{customerId}/product-lists/{listId}"
                                                        @@ -2728,7 +2980,7 @@

                                                        getCustomerProductListItem

                                                        getCustomerProductListItem: string = "/organizations/{organizationId}/customers/{customerId}/product-lists/{listId}/items/{itemId}"
                                                        @@ -2738,7 +2990,7 @@

                                                        getCustomerProductLists

                                                        getCustomerProductLists: string = "/organizations/{organizationId}/customers/{customerId}/product-lists"
                                                        @@ -2748,7 +3000,7 @@

                                                        getExternalProfile

                                                        getExternalProfile: string = "/organizations/{organizationId}/customers/external-profile"
                                                        @@ -2758,7 +3010,7 @@

                                                        getProductListItem

                                                        getProductListItem: string = "/organizations/{organizationId}/product-lists/{listId}/items/{itemId}"
                                                        @@ -2768,7 +3020,17 @@

                                                        getPublicProductList

                                                        getPublicProductList: string = "/organizations/{organizationId}/product-lists/{listId}"
                                                        + +
                                                        + +

                                                        getPublicProductListItems

                                                        +
                                                        getPublicProductListItems: string = "/organizations/{organizationId}/product-lists/{listId}/items"
                                                        +
                                                        @@ -2778,7 +3040,7 @@

                                                        getPublicProductListsBySearchTerm

                                                        getPublicProductListsBySearchTerm: string = "/organizations/{organizationId}/product-lists"
                                                        @@ -2788,7 +3050,7 @@

                                                        getResetPasswordToken

                                                        getResetPasswordToken: string = "/organizations/{organizationId}/customers/password/actions/create-reset-token"
                                                        @@ -2798,7 +3060,7 @@

                                                        registerCustomer

                                                        registerCustomer: string = "/organizations/{organizationId}/customers"
                                                        @@ -2808,7 +3070,7 @@

                                                        registerExternalProfile

                                                        registerExternalProfile: string = "/organizations/{organizationId}/customers/external-profile"
                                                        @@ -2818,7 +3080,7 @@

                                                        removeCustomerAddress

                                                        removeCustomerAddress: string = "/organizations/{organizationId}/customers/{customerId}/addresses/{addressName}"
                                                        @@ -2828,7 +3090,7 @@

                                                        resetPassword

                                                        resetPassword: string = "/organizations/{organizationId}/customers/password/actions/reset"
                                                        @@ -2838,7 +3100,7 @@

                                                        updateCustomer

                                                        updateCustomer: string = "/organizations/{organizationId}/customers/{customerId}"
                                                        @@ -2848,7 +3110,7 @@

                                                        updateCustomerAddress

                                                        updateCustomerAddress: string = "/organizations/{organizationId}/customers/{customerId}/addresses/{addressName}"
                                                        @@ -2858,7 +3120,17 @@

                                                        updateCustomerPassword

                                                        updateCustomerPassword: string = "/organizations/{organizationId}/customers/{customerId}/password"
                                                        + +
                                                        + +

                                                        updateCustomerPaymentInstrument

                                                        +
                                                        updateCustomerPaymentInstrument: string = "/organizations/{organizationId}/customers/{customerId}/payment-instruments/{paymentInstrumentId}"
                                                        +
                                                        @@ -2868,7 +3140,7 @@

                                                        updateCustomerProductList

                                                        updateCustomerProductList: string = "/organizations/{organizationId}/customers/{customerId}/product-lists/{listId}"
                                                        @@ -2878,7 +3150,7 @@

                                                        updateCustomerProductListItem

                                                        updateCustomerProductListItem: string = "/organizations/{organizationId}/customers/{customerId}/product-lists/{listId}/items/{itemId}"
                                                        @@ -2938,6 +3210,9 @@

                                                        updateCustomerProductListItem

                                                      • shopperOrders
                                                      • +
                                                      • + shopperPayments +
                                                      • shopperProducts
                                                      • @@ -2995,6 +3270,9 @@

                                                        updateCustomerProductListItem

                                                      • deleteCustomerPaymentInstrument
                                                      • +
                                                      • + deleteCustomerPaymentMethodReference +
                                                      • deleteCustomerProductList
                                                      • @@ -3034,6 +3312,9 @@

                                                        updateCustomerProductListItem

                                                      • getPublicProductList
                                                      • +
                                                      • + getPublicProductListItems +
                                                      • getPublicProductListsBySearchTerm
                                                      • @@ -3061,6 +3342,9 @@

                                                        updateCustomerProductListItem

                                                      • updateCustomerPassword
                                                      • +
                                                      • + updateCustomerPaymentInstrument +
                                                      • updateCustomerProductList
                                                      • diff --git a/docs/classes/shopperexperience.shopperexperience-3.html b/docs/classes/shopperexperience.shopperexperience-3.html index e76c528c..2cbbf74e 100644 --- a/docs/classes/shopperexperience.shopperexperience-3.html +++ b/docs/classes/shopperexperience.shopperexperience-3.html @@ -80,8 +80,32 @@

                                                        API Overview

                                                        -

                                                        Use the Shopper Experience API to look up page information for pages that are created in Page Designer.

                                                        -

                                                        Responses include the following:

                                                        +

                                                        Use the Shopper Experience API to look up page information for pages that are created in Page Designer, content assets and to access content folders.

                                                        + +

                                                        Authentication & Authorization

                                                        +
                                                        +

                                                        The Shopper Experience API requires a shopper access token from the Shopper Login and API Access Service (SLAS).

                                                        +

                                                        For details on how to request a shopper access token from SLAS, see the guest user flows for public clients and private clients in the SLAS guides.

                                                        +

                                                        You must include sfcc.shopper-experience in the client ID used to generate the SLAS token. For a full list of required permissions, see the Authorization Scopes Catalog.

                                                        +

                                                        Important*: Currently, the Shopper Experience Pages endpoints can’t be used when the storefront password protection feature is enabled.

                                                        + +

                                                        Use Cases

                                                        +
                                                        + +

                                                        Access Content Folders

                                                        +
                                                        +

                                                        The API provides access to content folders, which are used to organize and manage content assets. Content folders support:

                                                        +
                                                          +
                                                        • Hierarchical organization with nested subfolders
                                                        • +
                                                        • Localized metadata including names, descriptions, and SEO attributes
                                                        • +
                                                        • Custom attributes for extended functionality
                                                        • +
                                                        • Configurable depth levels for subfolder retrieval (0, 1, or 2 levels)
                                                        • +
                                                        +

                                                        Only content folders that are marked as online are returned in the API responses.

                                                        + +

                                                        Page Responses

                                                        +
                                                        +

                                                        Responses for pages include the following:

                                                        • The entire component hierarchy of the page at design time.
                                                        • All merchant data provided at design time.
                                                        • @@ -89,13 +113,18 @@

                                                          API Overview

                                                        Both the page and components contain the values of all native and custom attributes that have been populated during page authoring.

                                                        Only visible pages are returned. Because the visibility of components is driven by rules (scheduling or customer groups, for example), these rules are subject to evaluation when assembling the component hierarchy in the response. Only components that are visible for the current customer context appear in the response. The same rules apply to the page itself, which is only be processed and returned if it is visible.

                                                        -

                                                        Important*: Currently, the Shopper Experience API can’t be used when the storefront password protection feature is enabled.

                                                        - -

                                                        Authentication & Authorization

                                                        +
                                                        +

                                                        Content Asset Responses

                                                        -

                                                        The Shopper Experience API requires a shopper access token from the Shopper Login and API Access Service (SLAS).

                                                        -

                                                        For details on how to request a shopper access token from SLAS, see the guest user flows for public clients and private clients in the SLAS guides.

                                                        -

                                                        You must include the relevant scope(s) in the client ID used to generate the SLAS token. For details, see the Authorization Scopes Catalog..*

                                                        +

                                                        Content asset responses include:

                                                        +
                                                          +
                                                        • Rich content including text, HTML, and images
                                                        • +
                                                        • SEO metadata (title, description, keywords)
                                                        • +
                                                        • Template information for rendering
                                                        • +
                                                        • Folder organization structure
                                                        • +
                                                        • Custom attributes and properties
                                                        • +
                                                        +

                                                        Only content assets that are marked as online are returned. Content assets provide flexible content management capabilities for storefronts.*

                                                        Simple example:

                                                          import { ShopperExperience } from "commerce-sdk-isomorphic";
                                                         
                                                        @@ -151,8 +180,13 @@ 

                                                        Properties

                                                        Methods

                                                        @@ -176,7 +210,7 @@

                                                        constructor

                                                      • Parameters

                                                        @@ -198,7 +232,7 @@

                                                        clientConfig

                                                        clientConfig: ClientConfig<ConfigParameters> & { baseUri: string }
                                                      • @@ -208,22 +242,46 @@

                                                        Static defaultBaseUri: "https://{shortCode}.api.commercecloud.salesforce.com/experience/shopper-experience/v1" = currentBaseUri

                                                        Static Readonly paramKeys

                                                        -
                                                        paramKeys: { getPage: ["pageId", "organizationId", "siteId", "aspectAttributes", "parameters", "locale"]; getPageRequired: ["pageId", "organizationId", "siteId"]; getPages: ["organizationId", "aspectTypeId", "siteId", "categoryId", "productId", "aspectAttributes", "parameters", "locale"]; getPagesRequired: ["organizationId", "aspectTypeId", "siteId"] } = {getPage: ['pageId','organizationId','siteId','aspectAttributes','parameters','locale',],getPageRequired: ['pageId','organizationId','siteId',],getPages: ['organizationId','aspectTypeId','siteId','categoryId','productId','aspectAttributes','parameters','locale',],getPagesRequired: ['organizationId','aspectTypeId','siteId',],} as const
                                                        +
                                                        paramKeys: { getContent: ["organizationId", "id", "siteId", "locale"]; getContentFolder: ["organizationId", "id", "siteId", "levels", "locale"]; getContentFolderRequired: ["organizationId", "id", "siteId"]; getContentFolders: ["organizationId", "ids", "siteId", "levels", "locale"]; getContentFoldersRequired: ["organizationId", "ids", "siteId"]; getContentRequired: ["organizationId", "id", "siteId"]; getMultipleContent: ["organizationId", "ids", "siteId", "locale"]; getMultipleContentRequired: ["organizationId", "ids", "siteId"]; getPage: ["pageId", "organizationId", "siteId", "aspectAttributes", "parameters", "locale"]; getPageRequired: ["pageId", "organizationId", "siteId"]; getPages: ["organizationId", "aspectTypeId", "siteId", "categoryId", "productId", "aspectAttributes", "parameters", "locale"]; getPagesRequired: ["organizationId", "aspectTypeId", "siteId"]; searchContent: ["organizationId", "siteId", "q", "refine", "sort", "locale", "limit", "offset"]; searchContentRequired: ["organizationId", "siteId"] } = {getContent: ['organizationId','id','siteId','locale',],getContentRequired: ['organizationId','id','siteId',],getContentFolder: ['organizationId','id','siteId','levels','locale',],getContentFolderRequired: ['organizationId','id','siteId',],getContentFolders: ['organizationId','ids','siteId','levels','locale',],getContentFoldersRequired: ['organizationId','ids','siteId',],getMultipleContent: ['organizationId','ids','siteId','locale',],getMultipleContentRequired: ['organizationId','ids','siteId',],getPage: ['pageId','organizationId','siteId','aspectAttributes','parameters','locale',],getPageRequired: ['pageId','organizationId','siteId',],getPages: ['organizationId','aspectTypeId','siteId','categoryId','productId','aspectAttributes','parameters','locale',],getPagesRequired: ['organizationId','aspectTypeId','siteId',],searchContent: ['organizationId','siteId','q','refine','sort','locale','limit','offset',],searchContentRequired: ['organizationId','siteId',],} as const

                                                        Type declaration

                                                          +
                                                        • +
                                                          getContent: ["organizationId", "id", "siteId", "locale"]
                                                          +
                                                        • +
                                                        • +
                                                          getContentFolder: ["organizationId", "id", "siteId", "levels", "locale"]
                                                          +
                                                        • +
                                                        • +
                                                          getContentFolderRequired: ["organizationId", "id", "siteId"]
                                                          +
                                                        • +
                                                        • +
                                                          getContentFolders: ["organizationId", "ids", "siteId", "levels", "locale"]
                                                          +
                                                        • +
                                                        • +
                                                          getContentFoldersRequired: ["organizationId", "ids", "siteId"]
                                                          +
                                                        • +
                                                        • +
                                                          getContentRequired: ["organizationId", "id", "siteId"]
                                                          +
                                                        • +
                                                        • +
                                                          getMultipleContent: ["organizationId", "ids", "siteId", "locale"]
                                                          +
                                                        • +
                                                        • +
                                                          getMultipleContentRequired: ["organizationId", "ids", "siteId"]
                                                          +
                                                        • getPage: ["pageId", "organizationId", "siteId", "aspectAttributes", "parameters", "locale"]
                                                        • @@ -236,12 +294,350 @@
                                                          getPages:
                                                          getPagesRequired: ["organizationId", "aspectTypeId", "siteId"]
                                                          +
                                                        • +
                                                          searchContent: ["organizationId", "siteId", "q", "refine", "sort", "locale", "limit", "offset"]
                                                          +
                                                        • +
                                                        • +
                                                          searchContentRequired: ["organizationId", "siteId"]
                                                          +

                                                        Methods

                                                        +
                                                        + +

                                                        getContent

                                                        + +
                                                          +
                                                        • + +
                                                          +
                                                          +

                                                          Get a content asset by its unique identifier. Only content assets that are marked as online are returned.

                                                          +
                                                          +

                                                          Content assets contain rich content that can be displayed on storefronts, including text, HTML, images, and custom attributes.

                                                          +

                                                          Important*:

                                                          +
                                                            +
                                                          • Because this resource uses the GET method, you must not pass sensitive data and must not perform transactional processes.
                                                          • +
                                                          +

                                                          If you would like to get a raw Response object use the other getContent function.

                                                          +
                                                          +

                                                          Parameters

                                                          + +

                                                          Returns Promise<Content>

                                                          +

                                                          A promise of type Content.

                                                          +
                                                        • +
                                                        • + +
                                                          +
                                                          +

                                                          Get a content asset by its unique identifier. Only content assets that are marked as online are returned.

                                                          +
                                                          +

                                                          Content assets contain rich content that can be displayed on storefronts, including text, HTML, images, and custom attributes.

                                                          +

                                                          Important*:

                                                          +
                                                            +
                                                          • Because this resource uses the GET method, you must not pass sensitive data and must not perform transactional processes.
                                                          • +
                                                          +
                                                          +

                                                          Type parameters

                                                          +
                                                            +
                                                          • +

                                                            T: boolean

                                                            +
                                                          • +
                                                          +

                                                          Parameters

                                                          + +

                                                          Returns Promise<T extends true ? Response : Content>

                                                          +

                                                          A promise of type Response if rawResponse is true, a promise of type Content otherwise.

                                                          +
                                                        • +
                                                        +
                                                        +
                                                        + +

                                                        getContentFolder

                                                        + +
                                                          +
                                                        • + +
                                                          +
                                                          +

                                                          To access a content folder, you construct a URL using the template shown below. + This template requires you to specify a content folder id and a subfolder level. + In response, the server returns a corresponding content folder document. + Only content folders which are marked as online are returned.

                                                          +
                                                          +

                                                          If you would like to get a raw Response object use the other getContentFolder function.

                                                          +
                                                          +

                                                          Parameters

                                                          + +

                                                          Returns Promise<ContentFolder>

                                                          +

                                                          A promise of type ContentFolder.

                                                          +
                                                        • +
                                                        • + +
                                                          +
                                                          +

                                                          To access a content folder, you construct a URL using the template shown below. + This template requires you to specify a content folder id and a subfolder level. + In response, the server returns a corresponding content folder document. + Only content folders which are marked as online are returned.

                                                          +
                                                          +
                                                          +

                                                          Type parameters

                                                          +
                                                            +
                                                          • +

                                                            T: boolean

                                                            +
                                                          • +
                                                          +

                                                          Parameters

                                                          +
                                                            +
                                                          • +
                                                            Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ id: string; levels?: undefined | number; locale?: LocaleCode; organizationId: string; siteId: string } & QueryParameters, ConfigParameters> }>
                                                            +
                                                            +
                                                            +

                                                            An object containing the options for this method.

                                                            +
                                                            +
                                                            +
                                                          • +
                                                          • +
                                                            Optional rawResponse: T
                                                            +
                                                            +
                                                            +

                                                            Set to true to return entire Response object instead of DTO.

                                                            +
                                                            +
                                                            +
                                                          • +
                                                          +

                                                          Returns Promise<T extends true ? Response : ContentFolder>

                                                          +

                                                          A promise of type Response if rawResponse is true, a promise of type ContentFolder otherwise.

                                                          +
                                                        • +
                                                        +
                                                        +
                                                        + +

                                                        getContentFolders

                                                        + +
                                                          +
                                                        • + +
                                                          +
                                                          +

                                                          To access one or more content folders, you construct a URL using the template shown below. + This template requires you to specify one or more content folder ids as a query parameter and a subfolder level. + In response, the server returns a result set of corresponding content folder documents. + Only content folders which are marked as online are returned.

                                                          +
                                                          +

                                                          If you would like to get a raw Response object use the other getContentFolders function.

                                                          +
                                                          +

                                                          Parameters

                                                          + +

                                                          Returns Promise<ContentFolderResult>

                                                          +

                                                          A promise of type ContentFolderResult.

                                                          +
                                                        • +
                                                        • + +
                                                          +
                                                          +

                                                          To access one or more content folders, you construct a URL using the template shown below. + This template requires you to specify one or more content folder ids as a query parameter and a subfolder level. + In response, the server returns a result set of corresponding content folder documents. + Only content folders which are marked as online are returned.

                                                          +
                                                          +
                                                          +

                                                          Type parameters

                                                          +
                                                            +
                                                          • +

                                                            T: boolean

                                                            +
                                                          • +
                                                          +

                                                          Parameters

                                                          +
                                                            +
                                                          • +
                                                            Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ ids: Array<string>; levels?: undefined | number; locale?: LocaleCode; organizationId: string; siteId: string } & QueryParameters, ConfigParameters> }>
                                                            +
                                                            +
                                                            +

                                                            An object containing the options for this method.

                                                            +
                                                            +
                                                            +
                                                          • +
                                                          • +
                                                            Optional rawResponse: T
                                                            +
                                                            +
                                                            +

                                                            Set to true to return entire Response object instead of DTO.

                                                            +
                                                            +
                                                            +
                                                          • +
                                                          +

                                                          Returns Promise<T extends true ? Response : ContentFolderResult>

                                                          +

                                                          A promise of type Response if rawResponse is true, a promise of type ContentFolderResult otherwise.

                                                          +
                                                        • +
                                                        +
                                                        +
                                                        + +

                                                        getMultipleContent

                                                        + +
                                                          +
                                                        • + +
                                                          +
                                                          +

                                                          Get multiple content assets by their identifiers. Only content assets that are marked as online are returned.

                                                          +
                                                          +

                                                          This endpoint allows you to retrieve multiple content assets in a single request, which is more efficient than making multiple individual requests.

                                                          +

                                                          Important*:

                                                          +
                                                            +
                                                          • Because this resource uses the GET method, you must not pass sensitive data and must not perform transactional processes.
                                                          • +
                                                          +

                                                          If you would like to get a raw Response object use the other getMultipleContent function.

                                                          +
                                                          +

                                                          Parameters

                                                          + +

                                                          Returns Promise<ContentResult>

                                                          +

                                                          A promise of type ContentResult.

                                                          +
                                                        • +
                                                        • + +
                                                          +
                                                          +

                                                          Get multiple content assets by their identifiers. Only content assets that are marked as online are returned.

                                                          +
                                                          +

                                                          This endpoint allows you to retrieve multiple content assets in a single request, which is more efficient than making multiple individual requests.

                                                          +

                                                          Important*:

                                                          +
                                                            +
                                                          • Because this resource uses the GET method, you must not pass sensitive data and must not perform transactional processes.
                                                          • +
                                                          +
                                                          +

                                                          Type parameters

                                                          +
                                                            +
                                                          • +

                                                            T: boolean

                                                            +
                                                          • +
                                                          +

                                                          Parameters

                                                          +
                                                            +
                                                          • +
                                                            Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ ids: Array<string>; locale?: LocaleCode; organizationId: string; siteId: string } & QueryParameters, ConfigParameters> }>
                                                            +
                                                            +
                                                            +

                                                            An object containing the options for this method.

                                                            +
                                                            +
                                                            +
                                                          • +
                                                          • +
                                                            Optional rawResponse: T
                                                            +
                                                            +
                                                            +

                                                            Set to true to return entire Response object instead of DTO.

                                                            +
                                                            +
                                                            +
                                                          • +
                                                          +

                                                          Returns Promise<T extends true ? Response : ContentResult>

                                                          +

                                                          A promise of type Response if rawResponse is true, a promise of type ContentResult otherwise.

                                                          +
                                                        • +
                                                        +

                                                        getPage

                                                        @@ -253,7 +649,7 @@

                                                        getPage

                                                      • @@ -262,7 +658,7 @@

                                                        getPage

                                                        Important*:

                                                          -
                                                        • Currently, you can't use the Shopper Experience API when the storefront password protection feature is enabled.
                                                        • +
                                                        • Currently, you can't use the Shopper Experience Pages endpoints when the storefront password protection feature is enabled.
                                                        • Because this resource uses the GET method, you must not pass sensitive data, for example: payment card information, and must not perform transactional processes within the server-side scripts that are run for the page and components.
                                                        • Be aware that pagecache during fingerprint calculation will only be leveraged for pages and their components that don't use visibility rules. Furthermore the pagecaching of the actual response assembly solely depends on the response instrumentation with the serverside page type and component type script implementations. For more details also see the Page Designer Caching Guide.
                                                        @@ -285,7 +681,7 @@

                                                        Returns Promise
                                                        @@ -294,7 +690,7 @@

                                                        Returns Promise

                                                        Important*:

                                                          -
                                                        • Currently, you can't use the Shopper Experience API when the storefront password protection feature is enabled.
                                                        • +
                                                        • Currently, you can't use the Shopper Experience Pages endpoints when the storefront password protection feature is enabled.
                                                        • Because this resource uses the GET method, you must not pass sensitive data, for example: payment card information, and must not perform transactional processes within the server-side scripts that are run for the page and components.
                                                        • Be aware that pagecache during fingerprint calculation will only be leveraged for pages and their components that don't use visibility rules. Furthermore the pagecaching of the actual response assembly solely depends on the response instrumentation with the serverside page type and component type script implementations. For more details also see the Page Designer Caching Guide.
                                                        @@ -340,7 +736,7 @@

                                                        getPages

                                                      • @@ -350,7 +746,7 @@

                                                        getPages

                                                        You must provide the aspectTypeId along with either a categoryId or a productId. Since you can only create one page-to-product or page-to-category assignment per aspect type, the result contains at most one element.

                                                        Important*:

                                                          -
                                                        • Currently, you can't use the Shopper Experience API when the storefront password protection feature is enabled.
                                                        • +
                                                        • Currently, you can't use the Shopper Experience Pages endpoints when the storefront password protection feature is enabled.
                                                        • Because this resource uses the GET method, you must not pass sensitive data, for example: payment card information, and must not perform transactional processes within the server-side scripts that are run for the page and components.
                                                        • Be aware that pagecache during fingerprint calculation will only be leveraged for pages and their components that don't use visibility rules. Furthermore the pagecaching of the actual response assembly solely depends on the response instrumentation with the serverside page type and component type script implementations. For more details also see the Page Designer Caching Guide.
                                                        @@ -373,7 +769,7 @@

                                                        Returns Promise
                                                        @@ -383,7 +779,7 @@

                                                        Returns PromiseYou must provide the aspectTypeId along with either a categoryId or a productId. Since you can only create one page-to-product or page-to-category assignment per aspect type, the result contains at most one element.

                                                        Important*:

                                                          -
                                                        • Currently, you can't use the Shopper Experience API when the storefront password protection feature is enabled.
                                                        • +
                                                        • Currently, you can't use the Shopper Experience Pages endpoints when the storefront password protection feature is enabled.
                                                        • Because this resource uses the GET method, you must not pass sensitive data, for example: payment card information, and must not perform transactional processes within the server-side scripts that are run for the page and components.
                                                        • Be aware that pagecache during fingerprint calculation will only be leveraged for pages and their components that don't use visibility rules. Furthermore the pagecaching of the actual response assembly solely depends on the response instrumentation with the serverside page type and component type script implementations. For more details also see the Page Designer Caching Guide.
                                                        @@ -418,6 +814,101 @@

                                                        Returns Promise

                                                      +
                                                      + +

                                                      searchContent

                                                      + +
                                                        +
                                                      • + +
                                                        +
                                                        +

                                                        Provides keyword and refinement search functionality for content assets. The search result contains only content + that is online and assigned to a folder.

                                                        +
                                                        +

                                                        Refinement Parameters:* + The following system refinement attribute IDs are supported:

                                                        +
                                                          +
                                                        • fdid: Allows refinement per single content folder ID. Multiple folder IDs are not supported.
                                                        • +
                                                        +

                                                        Important*:

                                                        +
                                                          +
                                                        • Because this resource uses the GET method, you must not pass sensitive data and must not perform transactional processes.
                                                        • +
                                                        +

                                                        If you would like to get a raw Response object use the other searchContent function.

                                                        +
                                                        +

                                                        Parameters

                                                        +
                                                          +
                                                        • +
                                                          Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ limit?: undefined | number; locale?: LocaleCode; offset?: undefined | number; organizationId: string; q?: undefined | string; refine?: undefined | string; siteId: string; sort?: undefined | string } & QueryParameters, ConfigParameters> }>
                                                          +
                                                          +
                                                          +

                                                          An object containing the options for this method.

                                                          +
                                                          +
                                                          +
                                                        • +
                                                        +

                                                        Returns Promise<ContentSearchResult>

                                                        +

                                                        A promise of type ContentSearchResult.

                                                        +
                                                      • +
                                                      • + +
                                                        +
                                                        +

                                                        Provides keyword and refinement search functionality for content assets. The search result contains only content + that is online and assigned to a folder.

                                                        +
                                                        +

                                                        Refinement Parameters:* + The following system refinement attribute IDs are supported:

                                                        +
                                                          +
                                                        • fdid: Allows refinement per single content folder ID. Multiple folder IDs are not supported.
                                                        • +
                                                        +

                                                        Important*:

                                                        +
                                                          +
                                                        • Because this resource uses the GET method, you must not pass sensitive data and must not perform transactional processes.
                                                        • +
                                                        +
                                                        +

                                                        Type parameters

                                                        +
                                                          +
                                                        • +

                                                          T: boolean

                                                          +
                                                        • +
                                                        +

                                                        Parameters

                                                        +
                                                          +
                                                        • +
                                                          Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ limit?: undefined | number; locale?: LocaleCode; offset?: undefined | number; organizationId: string; q?: undefined | string; refine?: undefined | string; siteId: string; sort?: undefined | string } & QueryParameters, ConfigParameters> }>
                                                          +
                                                          +
                                                          +

                                                          An object containing the options for this method.

                                                          +
                                                          +
                                                          +
                                                        • +
                                                        • +
                                                          Optional rawResponse: T
                                                          +
                                                          +
                                                          +

                                                          Set to true to return entire Response object instead of DTO.

                                                          +
                                                          +
                                                          +
                                                        • +
                                                        +

                                                        Returns Promise<T extends true ? Response : ContentSearchResult>

                                                        +

                                                        A promise of type Response if rawResponse is true, a promise of type ContentSearchResult otherwise.

                                                        +
                                                      • +
                                                      +

                                                      Object literals

                                                      @@ -427,16 +918,56 @@

                                                      Static apiPaths: object

                                                      +
                                                      + +

                                                      getContent

                                                      +
                                                      getContent: string = "/organizations/{organizationId}/contents/{id}"
                                                      + +
                                                      +
                                                      + +

                                                      getContentFolder

                                                      +
                                                      getContentFolder: string = "/organizations/{organizationId}/folders/{id}"
                                                      + +
                                                      +
                                                      + +

                                                      getContentFolders

                                                      +
                                                      getContentFolders: string = "/organizations/{organizationId}/folders"
                                                      + +
                                                      +
                                                      + +

                                                      getMultipleContent

                                                      +
                                                      getMultipleContent: string = "/organizations/{organizationId}/contents"
                                                      + +

                                                      getPage

                                                      getPage: string = "/organizations/{organizationId}/pages/{pageId}"
                                                      @@ -446,7 +977,17 @@

                                                      getPages

                                                      getPages: string = "/organizations/{organizationId}/pages"
                                                      + +
                                                      + +

                                                      searchContent

                                                      +
                                                      searchContent: string = "/organizations/{organizationId}/content-search"
                                                      +
                                                      @@ -506,6 +1047,9 @@

                                                      getPages

                                                    • shopperOrders
                                                    • +
                                                    • + shopperPayments +
                                                    • shopperProducts
                                                    • @@ -548,12 +1092,27 @@

                                                      getPages

                                                    • paramKeys
                                                    • +
                                                    • + getContent +
                                                    • +
                                                    • + getContentFolder +
                                                    • +
                                                    • + getContentFolders +
                                                    • +
                                                    • + getMultipleContent +
                                                    • getPage
                                                    • getPages
                                                    • +
                                                    • + searchContent +
                                                    • apiPaths
                                                    • diff --git a/docs/classes/shoppergiftcertificates.shoppergiftcertificates-3.html b/docs/classes/shoppergiftcertificates.shoppergiftcertificates-3.html index ab0a733a..299c187d 100644 --- a/docs/classes/shoppergiftcertificates.shoppergiftcertificates-3.html +++ b/docs/classes/shoppergiftcertificates.shoppergiftcertificates-3.html @@ -76,8 +76,10 @@

                                                      Class ShopperGiftCertificates<ConfigParameters>

                                                      Shopper Gift Certificates

                                                      -

                                                      *# API Overview - Download API specification

                                                      +

                                                      *Download API specification

                                                      + +

                                                      API Overview

                                                      +

                                                      Use the Shopper Gift Certificates API to obtain gift certificate details.

                                                      Authentication & Authorization

                                                      @@ -174,7 +176,7 @@

                                                      constructor

                                                    • Parameters

                                                      @@ -196,7 +198,7 @@

                                                      clientConfig

                                                      clientConfig: ClientConfig<ConfigParameters> & { baseUri: string }
                                                      @@ -206,7 +208,7 @@

                                                      Static defaultBaseUri: "https://{shortCode}.api.commercecloud.salesforce.com/pricing/shopper-gift-certificates/v1" = currentBaseUri

                                                    @@ -216,7 +218,7 @@

                                                    Static paramKeys: { getGiftCertificate: ["organizationId", "siteId"]; getGiftCertificateRequired: ["organizationId", "siteId"] } = {getGiftCertificate: ['organizationId','siteId',],getGiftCertificateRequired: ['organizationId','siteId',],} as const

                                                  @@ -245,7 +247,7 @@

                                                  getGiftCertificate

                                                • @@ -270,7 +272,7 @@

                                                  Returns Promise
                                                  @@ -314,7 +316,7 @@

                                                  Static apiPaths: object

                                                  @@ -323,7 +325,7 @@

                                                  getGiftCertificate

                                                  getGiftCertificate: string = "/organizations/{organizationId}/gift-certificate"
                                                  @@ -383,6 +385,9 @@

                                                  getGiftCertificate

                                                • shopperOrders
                                                • +
                                                • + shopperPayments +
                                                • shopperProducts
                                                • diff --git a/docs/classes/shopperlogin.shopperlogin-3.html b/docs/classes/shopperlogin.shopperlogin-3.html index 9b93fd3b..c31fd73b 100644 --- a/docs/classes/shopperlogin.shopperlogin-3.html +++ b/docs/classes/shopperlogin.shopperlogin-3.html @@ -72,11 +72,11 @@

                                                  Class ShopperLogin<ConfigParameters>

                                                  -

                                                  *Download API specification

                                                  +

                                                  *Download API specification

                                                  API Overview

                                                  @@ -84,7 +84,7 @@

                                                  API Overview

                                                  Important:* Before using this API, see Authorization for Shopper APIs in the Get Started guides and the more detailed SLAS guides for instructions on setting up a SLAS client, obtaining credentials, as well as flow and use case information.

                                                  For load shedding and rate limiting information, see Load Shedding and Rate Limiting.*

                                                  Simple example:

                                                  -
                                                    import { ShopperLogin } from "commerce-sdk-isomorphic";
                                                  +					
                                                    import { Auth } from "commerce-sdk-isomorphic";
                                                   
                                                     const clientConfig = {
                                                       parameters: {
                                                  @@ -94,7 +94,7 @@ 

                                                  API Overview

                                                  siteId: "XX" } }; - const shopperLoginClient = new ShopperLogin(clientConfig);
                                                  + const authClient = new Auth(clientConfig);
                                                  API Version: 0.0.33
                                                  Last Updated:
                                                  @@ -141,8 +141,14 @@

                                                  Methods

                                                • authenticateCustomer
                                                • authorizeCustomer
                                                • authorizePasswordlessCustomer
                                                • +
                                                • authorizeWebauthnRegistration
                                                • +
                                                • deletePasskeyCredential
                                                • +
                                                • deletePasskeyUser
                                                • +
                                                • finishWebauthnAuthentication
                                                • +
                                                • finishWebauthnUserRegistration
                                                • getAccessToken
                                                • getJwksUri
                                                • +
                                                • getPasskeyUserByLoginId
                                                • getPasswordLessAccessToken
                                                • getPasswordResetToken
                                                • getSessionBridgeAccessToken
                                                • @@ -155,6 +161,8 @@

                                                  Methods

                                                • logoutCustomer
                                                • resetPassword
                                                • revokeToken
                                                • +
                                                • startWebauthnAuthentication
                                                • +
                                                • startWebauthnUserRegistration
                                                @@ -178,7 +186,7 @@

                                                constructor

                                              • Parameters

                                                @@ -200,7 +208,7 @@

                                                clientConfig

                                                clientConfig: ClientConfig<ConfigParameters> & { baseUri: string }
                                              • @@ -210,17 +218,17 @@

                                                Static defaultBaseUri: "https://{shortCode}.api.commercecloud.salesforce.com/shopper/auth/v1" = currentBaseUri

                                                Static Readonly paramKeys

                                                -
                                                paramKeys: { authenticateCustomer: ["organizationId", "redirect_uri", "channel_id", "client_id", "response_type", "state", "scope", "usid", "code_challenge"]; authenticateCustomerRequired: ["organizationId", "redirect_uri", "channel_id"]; authorizeCustomer: ["organizationId", "redirect_uri", "response_type", "client_id", "scope", "state", "usid", "hint", "channel_id", "code_challenge", "ui_locales"]; authorizeCustomerRequired: ["organizationId", "redirect_uri", "response_type", "client_id"]; authorizePasswordlessCustomer: ["organizationId", "user_id", "mode", "channel_id", "locale", "usid", "callback_uri"]; authorizePasswordlessCustomerRequired: ["organizationId", "user_id", "mode", "channel_id"]; getAccessToken: ["organizationId", "grant_type", "refresh_token", "code", "usid", "redirect_uri", "code_verifier", "client_id", "channel_id", "dnt"]; getAccessTokenRequired: ["organizationId", "grant_type"]; getJwksUri: ["organizationId"]; getJwksUriRequired: ["organizationId"]; getPasswordLessAccessToken: ["organizationId", "grant_type", "hint", "pwdless_login_token", "client_id", "code_verifier", "login_id"]; getPasswordLessAccessTokenRequired: ["organizationId", "grant_type", "hint", "pwdless_login_token"]; getPasswordResetToken: ["organizationId", "user_id", "mode", "channel_id", "locale", "client_id", "code_challenge", "callback_uri", "idp_name", "hint"]; getPasswordResetTokenRequired: ["organizationId", "user_id", "mode", "channel_id"]; getSessionBridgeAccessToken: ["organizationId", "code", "client_id", "channel_id", "code_verifier", "dwsid", "grant_type", "login_id", "dwsgst", "dwsrst", "usid", "dnt"]; getSessionBridgeAccessTokenRequired: ["organizationId", "code", "client_id", "channel_id", "code_verifier", "dwsid", "grant_type", "login_id"]; getTrustedAgentAccessToken: ["organizationId", "client_id", "channel_id", "code_verifier", "grant_type", "login_id", "idp_origin", "agent_id", "usid", "dnt", "state"]; getTrustedAgentAccessTokenRequired: ["organizationId", "client_id", "channel_id", "code_verifier", "grant_type", "login_id", "idp_origin"]; getTrustedAgentAuthorizationToken: ["organizationId", "client_id", "channel_id", "login_id", "idp_origin", "redirect_uri", "response_type", "code_challenge"]; getTrustedAgentAuthorizationTokenRequired: ["organizationId", "client_id", "channel_id", "login_id", "idp_origin", "redirect_uri", "response_type"]; getTrustedSystemAccessToken: ["organizationId", "grant_type", "hint", "login_id", "idp_origin", "client_id", "channel_id", "usid", "email_id", "dnt"]; getTrustedSystemAccessTokenRequired: ["organizationId", "grant_type", "hint", "login_id", "idp_origin", "client_id", "channel_id"]; getUserInfo: ["organizationId", "channel_id"]; getUserInfoRequired: ["organizationId"]; getWellknownOpenidConfiguration: ["organizationId"]; getWellknownOpenidConfigurationRequired: ["organizationId"]; introspectToken: ["organizationId", "token", "token_type_hint"]; introspectTokenRequired: ["organizationId", "token"]; logoutCustomer: ["organizationId", "client_id", "refresh_token", "channel_id", "hint"]; logoutCustomerRequired: ["organizationId", "client_id", "refresh_token"]; resetPassword: ["organizationId", "client_id", "pwd_action_token", "code_verifier", "channel_id", "new_password", "hint"]; resetPasswordRequired: ["organizationId", "client_id", "pwd_action_token", "code_verifier", "channel_id"]; revokeToken: ["organizationId", "token", "token_type_hint"]; revokeTokenRequired: ["organizationId", "token"] } = {authenticateCustomer: ['organizationId','redirect_uri','channel_id','client_id','response_type','state','scope','usid','code_challenge',],authenticateCustomerRequired: ['organizationId','redirect_uri','channel_id',],authorizeCustomer: ['organizationId','redirect_uri','response_type','client_id','scope','state','usid','hint','channel_id','code_challenge','ui_locales',],authorizeCustomerRequired: ['organizationId','redirect_uri','response_type','client_id',],authorizePasswordlessCustomer: ['organizationId','user_id','mode','channel_id','locale','usid','callback_uri',],authorizePasswordlessCustomerRequired: ['organizationId','user_id','mode','channel_id',],getAccessToken: ['organizationId','grant_type','refresh_token','code','usid','redirect_uri','code_verifier','client_id','channel_id','dnt',],getAccessTokenRequired: ['organizationId','grant_type',],getJwksUri: ['organizationId',],getJwksUriRequired: ['organizationId',],getPasswordLessAccessToken: ['organizationId','grant_type','hint','pwdless_login_token','client_id','code_verifier','login_id',],getPasswordLessAccessTokenRequired: ['organizationId','grant_type','hint','pwdless_login_token',],getPasswordResetToken: ['organizationId','user_id','mode','channel_id','locale','client_id','code_challenge','callback_uri','idp_name','hint',],getPasswordResetTokenRequired: ['organizationId','user_id','mode','channel_id',],getSessionBridgeAccessToken: ['organizationId','code','client_id','channel_id','code_verifier','dwsid','grant_type','login_id','dwsgst','dwsrst','usid','dnt',],getSessionBridgeAccessTokenRequired: ['organizationId','code','client_id','channel_id','code_verifier','dwsid','grant_type','login_id',],getTrustedAgentAccessToken: ['organizationId','client_id','channel_id','code_verifier','grant_type','login_id','idp_origin','agent_id','usid','dnt','state',],getTrustedAgentAccessTokenRequired: ['organizationId','client_id','channel_id','code_verifier','grant_type','login_id','idp_origin',],getTrustedAgentAuthorizationToken: ['organizationId','client_id','channel_id','login_id','idp_origin','redirect_uri','response_type','code_challenge',],getTrustedAgentAuthorizationTokenRequired: ['organizationId','client_id','channel_id','login_id','idp_origin','redirect_uri','response_type',],getTrustedSystemAccessToken: ['organizationId','grant_type','hint','login_id','idp_origin','client_id','channel_id','usid','email_id','dnt',],getTrustedSystemAccessTokenRequired: ['organizationId','grant_type','hint','login_id','idp_origin','client_id','channel_id',],getUserInfo: ['organizationId','channel_id',],getUserInfoRequired: ['organizationId',],getWellknownOpenidConfiguration: ['organizationId',],getWellknownOpenidConfigurationRequired: ['organizationId',],introspectToken: ['organizationId','token','token_type_hint',],introspectTokenRequired: ['organizationId','token',],logoutCustomer: ['organizationId','client_id','refresh_token','channel_id','hint',],logoutCustomerRequired: ['organizationId','client_id','refresh_token',],resetPassword: ['organizationId','client_id','pwd_action_token','code_verifier','channel_id','new_password','hint',],resetPasswordRequired: ['organizationId','client_id','pwd_action_token','code_verifier','channel_id',],revokeToken: ['organizationId','token','token_type_hint',],revokeTokenRequired: ['organizationId','token',],} as const
                                                +
                                                paramKeys: { authenticateCustomer: ["organizationId", "redirect_uri", "channel_id", "client_id", "response_type", "state", "scope", "usid", "code_challenge"]; authenticateCustomerRequired: ["organizationId", "redirect_uri", "channel_id"]; authorizeCustomer: ["organizationId", "redirect_uri", "response_type", "client_id", "scope", "state", "usid", "hint", "channel_id", "code_challenge", "ui_locales"]; authorizeCustomerRequired: ["organizationId", "redirect_uri", "response_type", "client_id"]; authorizePasswordlessCustomer: ["organizationId", "user_id", "mode", "channel_id", "register_customer", "locale", "usid", "callback_uri", "last_name", "email", "first_name", "phone_number", "customer_no"]; authorizePasswordlessCustomerRequired: ["organizationId", "user_id", "mode", "channel_id"]; authorizeWebauthnRegistration: ["organizationId", "user_id", "mode", "channel_id", "locale", "client_id", "code_challenge", "callback_uri", "idp_name", "hint"]; authorizeWebauthnRegistrationRequired: ["organizationId", "user_id", "mode", "channel_id"]; deletePasskeyCredential: ["organizationId", "channel_id", "loginId", "credentialId"]; deletePasskeyCredentialRequired: ["organizationId", "channel_id", "loginId", "credentialId"]; deletePasskeyUser: ["organizationId", "channel_id", "loginId"]; deletePasskeyUserRequired: ["organizationId", "channel_id", "loginId"]; finishWebauthnAuthentication: ["organizationId"]; finishWebauthnAuthenticationRequired: ["organizationId"]; finishWebauthnUserRegistration: ["organizationId"]; finishWebauthnUserRegistrationRequired: ["organizationId"]; getAccessToken: ["organizationId", "grant_type", "refresh_token", "code", "usid", "redirect_uri", "code_verifier", "client_id", "channel_id", "dnt"]; getAccessTokenRequired: ["organizationId", "grant_type"]; getJwksUri: ["organizationId"]; getJwksUriRequired: ["organizationId"]; getPasskeyUserByLoginId: ["organizationId", "channel_id", "loginId"]; getPasskeyUserByLoginIdRequired: ["organizationId", "channel_id", "loginId"]; getPasswordLessAccessToken: ["organizationId", "grant_type", "hint", "pwdless_login_token", "client_id", "code_verifier", "login_id"]; getPasswordLessAccessTokenRequired: ["organizationId", "grant_type", "hint", "pwdless_login_token"]; getPasswordResetToken: ["organizationId", "user_id", "mode", "channel_id", "locale", "client_id", "code_challenge", "callback_uri", "idp_name", "hint"]; getPasswordResetTokenRequired: ["organizationId", "user_id", "mode", "channel_id"]; getSessionBridgeAccessToken: ["organizationId", "code", "client_id", "channel_id", "code_verifier", "dwsid", "grant_type", "login_id", "dwsgst", "dwsrst", "usid", "dnt"]; getSessionBridgeAccessTokenRequired: ["organizationId", "code", "client_id", "channel_id", "code_verifier", "dwsid", "grant_type", "login_id"]; getTrustedAgentAccessToken: ["organizationId", "client_id", "channel_id", "code_verifier", "grant_type", "login_id", "idp_origin", "agent_id", "usid", "dnt", "state"]; getTrustedAgentAccessTokenRequired: ["organizationId", "client_id", "channel_id", "code_verifier", "grant_type", "login_id", "idp_origin"]; getTrustedAgentAuthorizationToken: ["organizationId", "client_id", "channel_id", "login_id", "idp_origin", "redirect_uri", "response_type", "code_challenge"]; getTrustedAgentAuthorizationTokenRequired: ["organizationId", "client_id", "channel_id", "login_id", "idp_origin", "redirect_uri", "response_type"]; getTrustedSystemAccessToken: ["organizationId", "grant_type", "hint", "login_id", "idp_origin", "client_id", "channel_id", "usid", "email_id", "dnt"]; getTrustedSystemAccessTokenRequired: ["organizationId", "grant_type", "hint", "login_id", "idp_origin", "client_id", "channel_id"]; getUserInfo: ["organizationId", "channel_id"]; getUserInfoRequired: ["organizationId"]; getWellknownOpenidConfiguration: ["organizationId"]; getWellknownOpenidConfigurationRequired: ["organizationId"]; introspectToken: ["organizationId", "token", "token_type_hint"]; introspectTokenRequired: ["organizationId", "token"]; logoutCustomer: ["organizationId", "client_id", "refresh_token", "channel_id", "hint"]; logoutCustomerRequired: ["organizationId", "client_id", "refresh_token"]; resetPassword: ["organizationId", "client_id", "pwd_action_token", "channel_id", "code_verifier", "new_password", "hint", "user_id"]; resetPasswordRequired: ["organizationId", "client_id", "pwd_action_token", "channel_id"]; revokeToken: ["organizationId", "token", "token_type_hint"]; revokeTokenRequired: ["organizationId", "token"]; startWebauthnAuthentication: ["organizationId", "client_id", "channel_id", "tenant_id", "user_id"]; startWebauthnAuthenticationRequired: ["organizationId", "client_id", "channel_id"]; startWebauthnUserRegistration: ["organizationId", "pwd_action_token", "user_id", "channel_id", "client_id", "display_name", "nick_name"]; startWebauthnUserRegistrationRequired: ["organizationId", "pwd_action_token", "user_id", "channel_id"] } = {authenticateCustomer: ['organizationId','redirect_uri','channel_id','client_id','response_type','state','scope','usid','code_challenge',],authenticateCustomerRequired: ['organizationId','redirect_uri','channel_id',],authorizeCustomer: ['organizationId','redirect_uri','response_type','client_id','scope','state','usid','hint','channel_id','code_challenge','ui_locales',],authorizeCustomerRequired: ['organizationId','redirect_uri','response_type','client_id',],authorizePasswordlessCustomer: ['organizationId','user_id','mode','channel_id','register_customer','locale','usid','callback_uri','last_name','email','first_name','phone_number','customer_no',],authorizePasswordlessCustomerRequired: ['organizationId','user_id','mode','channel_id',],authorizeWebauthnRegistration: ['organizationId','user_id','mode','channel_id','locale','client_id','code_challenge','callback_uri','idp_name','hint',],authorizeWebauthnRegistrationRequired: ['organizationId','user_id','mode','channel_id',],deletePasskeyCredential: ['organizationId','channel_id','loginId','credentialId',],deletePasskeyCredentialRequired: ['organizationId','channel_id','loginId','credentialId',],deletePasskeyUser: ['organizationId','channel_id','loginId',],deletePasskeyUserRequired: ['organizationId','channel_id','loginId',],finishWebauthnAuthentication: ['organizationId',],finishWebauthnAuthenticationRequired: ['organizationId',],finishWebauthnUserRegistration: ['organizationId',],finishWebauthnUserRegistrationRequired: ['organizationId',],getAccessToken: ['organizationId','grant_type','refresh_token','code','usid','redirect_uri','code_verifier','client_id','channel_id','dnt',],getAccessTokenRequired: ['organizationId','grant_type',],getJwksUri: ['organizationId',],getJwksUriRequired: ['organizationId',],getPasskeyUserByLoginId: ['organizationId','channel_id','loginId',],getPasskeyUserByLoginIdRequired: ['organizationId','channel_id','loginId',],getPasswordLessAccessToken: ['organizationId','grant_type','hint','pwdless_login_token','client_id','code_verifier','login_id',],getPasswordLessAccessTokenRequired: ['organizationId','grant_type','hint','pwdless_login_token',],getPasswordResetToken: ['organizationId','user_id','mode','channel_id','locale','client_id','code_challenge','callback_uri','idp_name','hint',],getPasswordResetTokenRequired: ['organizationId','user_id','mode','channel_id',],getSessionBridgeAccessToken: ['organizationId','code','client_id','channel_id','code_verifier','dwsid','grant_type','login_id','dwsgst','dwsrst','usid','dnt',],getSessionBridgeAccessTokenRequired: ['organizationId','code','client_id','channel_id','code_verifier','dwsid','grant_type','login_id',],getTrustedAgentAccessToken: ['organizationId','client_id','channel_id','code_verifier','grant_type','login_id','idp_origin','agent_id','usid','dnt','state',],getTrustedAgentAccessTokenRequired: ['organizationId','client_id','channel_id','code_verifier','grant_type','login_id','idp_origin',],getTrustedAgentAuthorizationToken: ['organizationId','client_id','channel_id','login_id','idp_origin','redirect_uri','response_type','code_challenge',],getTrustedAgentAuthorizationTokenRequired: ['organizationId','client_id','channel_id','login_id','idp_origin','redirect_uri','response_type',],getTrustedSystemAccessToken: ['organizationId','grant_type','hint','login_id','idp_origin','client_id','channel_id','usid','email_id','dnt',],getTrustedSystemAccessTokenRequired: ['organizationId','grant_type','hint','login_id','idp_origin','client_id','channel_id',],getUserInfo: ['organizationId','channel_id',],getUserInfoRequired: ['organizationId',],getWellknownOpenidConfiguration: ['organizationId',],getWellknownOpenidConfigurationRequired: ['organizationId',],introspectToken: ['organizationId','token','token_type_hint',],introspectTokenRequired: ['organizationId','token',],logoutCustomer: ['organizationId','client_id','refresh_token','channel_id','hint',],logoutCustomerRequired: ['organizationId','client_id','refresh_token',],resetPassword: ['organizationId','client_id','pwd_action_token','channel_id','code_verifier','new_password','hint','user_id',],resetPasswordRequired: ['organizationId','client_id','pwd_action_token','channel_id',],revokeToken: ['organizationId','token','token_type_hint',],revokeTokenRequired: ['organizationId','token',],startWebauthnAuthentication: ['organizationId','client_id','channel_id','tenant_id','user_id',],startWebauthnAuthenticationRequired: ['organizationId','client_id','channel_id',],startWebauthnUserRegistration: ['organizationId','pwd_action_token','user_id','channel_id','client_id','display_name','nick_name',],startWebauthnUserRegistrationRequired: ['organizationId','pwd_action_token','user_id','channel_id',],} as const
                                                @@ -239,11 +247,41 @@
                                                authorizeCustomer: authorizeCustomerRequired: ["organizationId", "redirect_uri", "response_type", "client_id"]

                                              • -
                                                authorizePasswordlessCustomer: ["organizationId", "user_id", "mode", "channel_id", "locale", "usid", "callback_uri"]
                                                +
                                                authorizePasswordlessCustomer: ["organizationId", "user_id", "mode", "channel_id", "register_customer", "locale", "usid", "callback_uri", "last_name", "email", "first_name", "phone_number", "customer_no"]
                                              • authorizePasswordlessCustomerRequired: ["organizationId", "user_id", "mode", "channel_id"]
                                              • +
                                              • +
                                                authorizeWebauthnRegistration: ["organizationId", "user_id", "mode", "channel_id", "locale", "client_id", "code_challenge", "callback_uri", "idp_name", "hint"]
                                                +
                                              • +
                                              • +
                                                authorizeWebauthnRegistrationRequired: ["organizationId", "user_id", "mode", "channel_id"]
                                                +
                                              • +
                                              • +
                                                deletePasskeyCredential: ["organizationId", "channel_id", "loginId", "credentialId"]
                                                +
                                              • +
                                              • +
                                                deletePasskeyCredentialRequired: ["organizationId", "channel_id", "loginId", "credentialId"]
                                                +
                                              • +
                                              • +
                                                deletePasskeyUser: ["organizationId", "channel_id", "loginId"]
                                                +
                                              • +
                                              • +
                                                deletePasskeyUserRequired: ["organizationId", "channel_id", "loginId"]
                                                +
                                              • +
                                              • +
                                                finishWebauthnAuthentication: ["organizationId"]
                                                +
                                              • +
                                              • +
                                                finishWebauthnAuthenticationRequired: ["organizationId"]
                                                +
                                              • +
                                              • +
                                                finishWebauthnUserRegistration: ["organizationId"]
                                                +
                                              • +
                                              • +
                                                finishWebauthnUserRegistrationRequired: ["organizationId"]
                                                +
                                              • getAccessToken: ["organizationId", "grant_type", "refresh_token", "code", "usid", "redirect_uri", "code_verifier", "client_id", "channel_id", "dnt"]
                                              • @@ -256,6 +294,12 @@
                                                getJwksUri:
                                                getJwksUriRequired: ["organizationId"]
                                                +
                                              • +
                                                getPasskeyUserByLoginId: ["organizationId", "channel_id", "loginId"]
                                                +
                                              • +
                                              • +
                                                getPasskeyUserByLoginIdRequired: ["organizationId", "channel_id", "loginId"]
                                                +
                                              • getPasswordLessAccessToken: ["organizationId", "grant_type", "hint", "pwdless_login_token", "client_id", "code_verifier", "login_id"]
                                              • @@ -317,10 +361,10 @@
                                                logoutCustomer: : ["organizationId", "client_id", "refresh_token"]
                                              • -
                                                resetPassword: ["organizationId", "client_id", "pwd_action_token", "code_verifier", "channel_id", "new_password", "hint"]
                                                +
                                                resetPassword: ["organizationId", "client_id", "pwd_action_token", "channel_id", "code_verifier", "new_password", "hint", "user_id"]
                                              • -
                                                resetPasswordRequired: ["organizationId", "client_id", "pwd_action_token", "code_verifier", "channel_id"]
                                                +
                                                resetPasswordRequired: ["organizationId", "client_id", "pwd_action_token", "channel_id"]
                                              • revokeToken: ["organizationId", "token", "token_type_hint"]
                                                @@ -328,6 +372,18 @@
                                                revokeToken:
                                                revokeTokenRequired: ["organizationId", "token"]
                                              • +
                                              • +
                                                startWebauthnAuthentication: ["organizationId", "client_id", "channel_id", "tenant_id", "user_id"]
                                                +
                                              • +
                                              • +
                                                startWebauthnAuthenticationRequired: ["organizationId", "client_id", "channel_id"]
                                                +
                                              • +
                                              • +
                                                startWebauthnUserRegistration: ["organizationId", "pwd_action_token", "user_id", "channel_id", "client_id", "display_name", "nick_name"]
                                                +
                                              • +
                                              • +
                                                startWebauthnUserRegistrationRequired: ["organizationId", "pwd_action_token", "user_id", "channel_id"]
                                                +
                                              @@ -345,7 +401,7 @@

                                              authenticateCustomer

                                            • @@ -381,7 +437,7 @@

                                              Returns Promise
                                              @@ -440,7 +496,7 @@

                                              authorizeCustomer

                                            • @@ -467,7 +523,7 @@

                                              Returns Promise
                                              @@ -510,14 +566,14 @@

                                              Returns Promise

                                              authorizePasswordlessCustomer

                                              +
                                              + +

                                              getPasskeyUserByLoginId

                                              + +
                                                +
                                              • + +
                                                +
                                                +

                                                This endpoint retrieves a user's WebAuthn passkey information including all associated credentials. + It returns the user's profile information along with a list of all registered passkey credentials.

                                                +
                                                +

                                                The SLAS client must have the sfcc.pwdless_login scope to access this endpoint.

                                                +

                                                This endpoint requires Shopper JWT authentication.

                                                +

                                                If you would like to get a raw Response object use the other getPasskeyUserByLoginId function.

                                                +
                                                +

                                                Parameters

                                                + +

                                                Returns Promise<PasskeyUser>

                                                +

                                                A promise of type PasskeyUser.

                                                +
                                              • +
                                              • + +
                                                +
                                                +

                                                This endpoint retrieves a user's WebAuthn passkey information including all associated credentials. + It returns the user's profile information along with a list of all registered passkey credentials.

                                                +
                                                +

                                                The SLAS client must have the sfcc.pwdless_login scope to access this endpoint.

                                                +

                                                This endpoint requires Shopper JWT authentication.

                                                +
                                                +

                                                Type parameters

                                                +
                                                  +
                                                • +

                                                  T: boolean

                                                  +
                                                • +
                                                +

                                                Parameters

                                                +
                                                  +
                                                • +
                                                  Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ channel_id: string; loginId: string; organizationId: string } & QueryParameters, ConfigParameters> }>
                                                  +
                                                  +
                                                  +

                                                  An object containing the options for this method.

                                                  +
                                                  +
                                                  +
                                                • +
                                                • +
                                                  Optional rawResponse: T
                                                  +
                                                  +
                                                  +

                                                  Set to true to return entire Response object instead of DTO.

                                                  +
                                                  +
                                                  +
                                                • +
                                                +

                                                Returns Promise<T extends true ? Response : PasskeyUser>

                                                +

                                                A promise of type Response if rawResponse is true, a promise of type PasskeyUser otherwise.

                                                +
                                              • +
                                              +

                                              getPasswordLessAccessToken

                                              @@ -758,7 +1300,7 @@

                                              getPasswordLessAccessToken

                                            • @@ -784,7 +1326,7 @@

                                              Returns Promise
                                              @@ -833,7 +1375,7 @@

                                              getPasswordResetToken

                                            • @@ -859,7 +1401,7 @@

                                              Returns Promise
                                              @@ -908,7 +1450,7 @@

                                              getSessionBridgeAccessToken

                                            • @@ -938,7 +1480,7 @@

                                              Returns Promise
                                              @@ -991,7 +1533,7 @@

                                              getTrustedAgentAccessToken

                                            • @@ -1018,7 +1560,7 @@

                                              Returns Promise
                                              @@ -1068,7 +1610,7 @@

                                              getTrustedAgentAuthorizationToken

                                            • @@ -1094,7 +1636,7 @@

                                              Returns Promise
                                              @@ -1143,7 +1685,7 @@

                                              getTrustedSystemAccessToken

                                            • @@ -1171,7 +1713,7 @@

                                              Returns Promise
                                              @@ -1222,7 +1764,7 @@

                                              getUserInfo

                                            • @@ -1248,7 +1790,7 @@

                                              Returns Promise
                                              @@ -1297,7 +1839,7 @@

                                              getWellknownOpenidConfiguration

                                            • @@ -1323,7 +1865,7 @@

                                              Returns Promise
                                              @@ -1372,7 +1914,7 @@

                                              introspectToken

                                            • @@ -1398,7 +1940,7 @@

                                              Returns Promise
                                              @@ -1447,7 +1989,7 @@

                                              logoutCustomer

                                            • @@ -1475,7 +2017,7 @@

                                              Returns Promise
                                              @@ -1526,7 +2068,7 @@

                                              resetPassword

                                            • @@ -1552,7 +2094,7 @@

                                              Returns Promise
                                              @@ -1601,7 +2143,7 @@

                                              revokeToken

                                            • @@ -1627,7 +2169,7 @@

                                              Returns Promise
                                              @@ -1665,6 +2207,164 @@

                                              Returns Promise

                                            +
                                            + +

                                            startWebauthnAuthentication

                                            + +
                                              +
                                            • + +
                                              +
                                              +

                                              Starts the WebAuthn authentication process by generating credential request options. + Returns the challenge and allowed credentials for the user to authenticate with.

                                              +
                                              +

                                              The SLAS client must have the sfcc.pwdless_login scope to access this endpoint.

                                              +

                                              If you would like to get a raw Response object use the other startWebauthnAuthentication function.

                                              +
                                              +

                                              Parameters

                                              + +

                                              Returns Promise<PublicKeyCredentialRequestOptions>

                                              +

                                              A promise of type PublicKeyCredentialRequestOptions.

                                              +
                                            • +
                                            • + +
                                              +
                                              +

                                              Starts the WebAuthn authentication process by generating credential request options. + Returns the challenge and allowed credentials for the user to authenticate with.

                                              +
                                              +

                                              The SLAS client must have the sfcc.pwdless_login scope to access this endpoint.

                                              +
                                              +

                                              Type parameters

                                              +
                                                +
                                              • +

                                                T: boolean

                                                +
                                              • +
                                              +

                                              Parameters

                                              + +

                                              Returns Promise<T extends true ? Response : PublicKeyCredentialRequestOptions>

                                              +

                                              A promise of type Response if rawResponse is true, a promise of type PublicKeyCredentialRequestOptions otherwise.

                                              +
                                            • +
                                            +
                                            +
                                            + +

                                            startWebauthnUserRegistration

                                            + +
                                              +
                                            • + +
                                              +
                                              +

                                              Starts the WebAuthn registration process by generating credential creation options. + Returns the challenge and other parameters needed by the authenticator to create a new credential.

                                              +
                                              +

                                              The SLAS client must have the sfcc.pwdless_login scope to access this endpoint.

                                              +

                                              If you would like to get a raw Response object use the other startWebauthnUserRegistration function.

                                              +
                                              +

                                              Parameters

                                              + +

                                              Returns Promise<object>

                                              +

                                              A promise of type object.

                                              +
                                            • +
                                            • + +
                                              +
                                              +

                                              Starts the WebAuthn registration process by generating credential creation options. + Returns the challenge and other parameters needed by the authenticator to create a new credential.

                                              +
                                              +

                                              The SLAS client must have the sfcc.pwdless_login scope to access this endpoint.

                                              +
                                              +

                                              Type parameters

                                              +
                                                +
                                              • +

                                                T: boolean

                                                +
                                              • +
                                              +

                                              Parameters

                                              + +

                                              Returns Promise<T extends true ? Response : object>

                                              +

                                              A promise of type Response if rawResponse is true, a promise of type object otherwise.

                                              +
                                            • +
                                            +

                                            Object literals

                                            @@ -1674,7 +2374,7 @@

                                            Static apiPaths: object

                                            @@ -1683,7 +2383,7 @@

                                            authenticateCustomer

                                            authenticateCustomer: string = "/organizations/{organizationId}/oauth2/login"
                                            @@ -1693,7 +2393,7 @@

                                            authorizeCustomer

                                            authorizeCustomer: string = "/organizations/{organizationId}/oauth2/authorize"
                                            @@ -1703,7 +2403,57 @@

                                            authorizePasswordlessCustomer

                                            authorizePasswordlessCustomer: string = "/organizations/{organizationId}/oauth2/passwordless/login"
                                            + +
                                            + +

                                            authorizeWebauthnRegistration

                                            +
                                            authorizeWebauthnRegistration: string = "/organizations/{organizationId}/oauth2/webauthn/register/authorize"
                                            + +
                                            +
                                            + +

                                            deletePasskeyCredential

                                            +
                                            deletePasskeyCredential: string = "/organizations/{organizationId}/oauth2/webauthn/passkey/user/{loginId}/credentials/{credentialId}"
                                            + +
                                            +
                                            + +

                                            deletePasskeyUser

                                            +
                                            deletePasskeyUser: string = "/organizations/{organizationId}/oauth2/webauthn/passkey/user/{loginId}"
                                            + +
                                            +
                                            + +

                                            finishWebauthnAuthentication

                                            +
                                            finishWebauthnAuthentication: string = "/organizations/{organizationId}/oauth2/webauthn/authenticate/finish"
                                            + +
                                            +
                                            + +

                                            finishWebauthnUserRegistration

                                            +
                                            finishWebauthnUserRegistration: string = "/organizations/{organizationId}/oauth2/webauthn/register/finish"
                                            +
                                            @@ -1713,7 +2463,7 @@

                                            getAccessToken

                                            getAccessToken: string = "/organizations/{organizationId}/oauth2/token"
                                            @@ -1723,7 +2473,17 @@

                                            getJwksUri

                                            getJwksUri: string = "/organizations/{organizationId}/oauth2/jwks"
                                            + +
                                            + +

                                            getPasskeyUserByLoginId

                                            +
                                            getPasskeyUserByLoginId: string = "/organizations/{organizationId}/oauth2/webauthn/passkey/user/{loginId}"
                                            +
                                            @@ -1733,7 +2493,7 @@

                                            getPasswordLessAccessToken

                                            getPasswordLessAccessToken: string = "/organizations/{organizationId}/oauth2/passwordless/token"
                                            @@ -1743,7 +2503,7 @@

                                            getPasswordResetToken

                                            getPasswordResetToken: string = "/organizations/{organizationId}/oauth2/password/reset"
                                            @@ -1753,7 +2513,7 @@

                                            getSessionBridgeAccessToken

                                            getSessionBridgeAccessToken: string = "/organizations/{organizationId}/oauth2/session-bridge/token"
                                            @@ -1763,7 +2523,7 @@

                                            getTrustedAgentAccessToken

                                            getTrustedAgentAccessToken: string = "/organizations/{organizationId}/oauth2/trusted-agent/token"
                                            @@ -1773,7 +2533,7 @@

                                            getTrustedAgentAuthorizationToken

                                            getTrustedAgentAuthorizationToken: string = "/organizations/{organizationId}/oauth2/trusted-agent/authorize"
                                            @@ -1783,7 +2543,7 @@

                                            getTrustedSystemAccessToken

                                            getTrustedSystemAccessToken: string = "/organizations/{organizationId}/oauth2/trusted-system/token"
                                            @@ -1793,7 +2553,7 @@

                                            getUserInfo

                                            getUserInfo: string = "/organizations/{organizationId}/oauth2/userinfo"
                                            @@ -1803,7 +2563,7 @@

                                            getWellknownOpenidConfiguration

                                            getWellknownOpenidConfiguration: string = "/organizations/{organizationId}/oauth2/.well-known/openid-configuration"
                                            @@ -1813,7 +2573,7 @@

                                            introspectToken

                                            introspectToken: string = "/organizations/{organizationId}/oauth2/introspect"
                                            @@ -1823,7 +2583,7 @@

                                            logoutCustomer

                                            logoutCustomer: string = "/organizations/{organizationId}/oauth2/logout"
                                            @@ -1833,7 +2593,7 @@

                                            resetPassword

                                            resetPassword: string = "/organizations/{organizationId}/oauth2/password/action"
                                            @@ -1843,7 +2603,27 @@

                                            revokeToken

                                            revokeToken: string = "/organizations/{organizationId}/oauth2/revoke"
                                            + +
                                            + +

                                            startWebauthnAuthentication

                                            +
                                            startWebauthnAuthentication: string = "/organizations/{organizationId}/oauth2/webauthn/authenticate/start"
                                            + +
                                            +
                                            + +

                                            startWebauthnUserRegistration

                                            +
                                            startWebauthnUserRegistration: string = "/organizations/{organizationId}/oauth2/webauthn/register/start"
                                            +
                                            @@ -1903,6 +2683,9 @@

                                            revokeToken

                                          • shopperOrders
                                          • +
                                          • + shopperPayments +
                                          • shopperProducts
                                          • @@ -1954,12 +2737,30 @@

                                            revokeToken

                                          • authorizePasswordlessCustomer
                                          • +
                                          • + authorizeWebauthnRegistration +
                                          • +
                                          • + deletePasskeyCredential +
                                          • +
                                          • + deletePasskeyUser +
                                          • +
                                          • + finishWebauthnAuthentication +
                                          • +
                                          • + finishWebauthnUserRegistration +
                                          • getAccessToken
                                          • getJwksUri
                                          • +
                                          • + getPasskeyUserByLoginId +
                                          • getPasswordLessAccessToken
                                          • @@ -1996,6 +2797,12 @@

                                            revokeToken

                                          • revokeToken
                                          • +
                                          • + startWebauthnAuthentication +
                                          • +
                                          • + startWebauthnUserRegistration +
                                          • apiPaths
                                          • diff --git a/docs/classes/shopperorders.shopperorders-3.html b/docs/classes/shopperorders.shopperorders-3.html index 3fe98578..c717edab 100644 --- a/docs/classes/shopperorders.shopperorders-3.html +++ b/docs/classes/shopperorders.shopperorders-3.html @@ -76,8 +76,10 @@

                                            Class ShopperOrders<ConfigParameters>

                                            Shopper Orders

                                            -

                                            *# API Overview - Download API specification

                                            +

                                            *Download API specification

                                            + +

                                            API Overview

                                            +

                                            The Shopper Orders API enables you to:

                                            • Create orders based on baskets prepared using the Shopper Baskets API.
                                            • @@ -93,7 +95,7 @@

                                              Authentication & Authorization

                                              The client requesting the product information must have access to the Products resource. The Shopper Products API requires a shopper access token from the Shopper Login and API Access Service (SLAS).

                                              For details on how to request a shopper access token from SLAS, see the guest user flows for public clients and private clients in the SLAS guides.

                                              -

                                              You must include the relevant scope(s) in the client ID used to generate the SLAS token. For details, see the Authorization Scopes Catalog.

                                              +

                                              You must include sfcc.shopper-baskets-orders or sfcc.shopper-baskets-orders.rw in the client ID used to generate the SLAS token. For a full list of permissions, see the Authorization Scopes Catalog.

                                              Use Cases

                                              @@ -158,6 +160,7 @@

                                              Methods

                                              • createOrder
                                              • createPaymentInstrumentForOrder
                                              • +
                                              • failOrder
                                              • getOrder
                                              • getPaymentMethodsForOrder
                                              • getTaxesFromOrder
                                              • @@ -187,7 +190,7 @@

                                                constructor

                                              • Parameters

                                                @@ -209,7 +212,7 @@

                                                clientConfig

                                                clientConfig: ClientConfig<ConfigParameters> & { baseUri: string }
                                                @@ -219,17 +222,17 @@

                                                Static defaultBaseUri: "https://{shortCode}.api.commercecloud.salesforce.com/checkout/shopper-orders/v1" = currentBaseUri

                                          • Static Readonly paramKeys

                                            -
                                            paramKeys: { createOrder: ["organizationId", "siteId", "locale"]; createOrderRequired: ["organizationId", "siteId"]; createPaymentInstrumentForOrder: ["organizationId", "orderNo", "siteId", "locale"]; createPaymentInstrumentForOrderRequired: ["organizationId", "orderNo", "siteId"]; getOrder: ["orderNo", "organizationId", "siteId", "locale"]; getOrderRequired: ["orderNo", "organizationId", "siteId"]; getPaymentMethodsForOrder: ["organizationId", "orderNo", "siteId", "locale"]; getPaymentMethodsForOrderRequired: ["organizationId", "orderNo", "siteId"]; getTaxesFromOrder: ["organizationId", "orderNo", "siteId"]; getTaxesFromOrderRequired: ["organizationId", "orderNo", "siteId"]; guestOrderLookup: ["organizationId", "orderNo", "siteId", "locale"]; guestOrderLookupRequired: ["organizationId", "orderNo", "siteId"]; removePaymentInstrumentFromOrder: ["paymentInstrumentId", "organizationId", "orderNo", "siteId", "locale"]; removePaymentInstrumentFromOrderRequired: ["paymentInstrumentId", "organizationId", "orderNo", "siteId"]; updatePaymentInstrumentForOrder: ["paymentInstrumentId", "organizationId", "orderNo", "siteId", "locale"]; updatePaymentInstrumentForOrderRequired: ["paymentInstrumentId", "organizationId", "orderNo", "siteId"] } = {createOrder: ['organizationId','siteId','locale',],createOrderRequired: ['organizationId','siteId',],createPaymentInstrumentForOrder: ['organizationId','orderNo','siteId','locale',],createPaymentInstrumentForOrderRequired: ['organizationId','orderNo','siteId',],getOrder: ['orderNo','organizationId','siteId','locale',],getOrderRequired: ['orderNo','organizationId','siteId',],getPaymentMethodsForOrder: ['organizationId','orderNo','siteId','locale',],getPaymentMethodsForOrderRequired: ['organizationId','orderNo','siteId',],getTaxesFromOrder: ['organizationId','orderNo','siteId',],getTaxesFromOrderRequired: ['organizationId','orderNo','siteId',],guestOrderLookup: ['organizationId','orderNo','siteId','locale',],guestOrderLookupRequired: ['organizationId','orderNo','siteId',],removePaymentInstrumentFromOrder: ['paymentInstrumentId','organizationId','orderNo','siteId','locale',],removePaymentInstrumentFromOrderRequired: ['paymentInstrumentId','organizationId','orderNo','siteId',],updatePaymentInstrumentForOrder: ['paymentInstrumentId','organizationId','orderNo','siteId','locale',],updatePaymentInstrumentForOrderRequired: ['paymentInstrumentId','organizationId','orderNo','siteId',],} as const
                                            +
                                            paramKeys: { createOrder: ["organizationId", "siteId", "locale"]; createOrderRequired: ["organizationId", "siteId"]; createPaymentInstrumentForOrder: ["organizationId", "orderNo", "siteId", "locale"]; createPaymentInstrumentForOrderRequired: ["organizationId", "orderNo", "siteId"]; failOrder: ["organizationId", "orderNo", "siteId", "locale", "reopenBasket"]; failOrderRequired: ["organizationId", "orderNo", "siteId"]; getOrder: ["orderNo", "organizationId", "siteId", "locale", "expand"]; getOrderRequired: ["orderNo", "organizationId", "siteId"]; getPaymentMethodsForOrder: ["organizationId", "orderNo", "siteId", "locale"]; getPaymentMethodsForOrderRequired: ["organizationId", "orderNo", "siteId"]; getTaxesFromOrder: ["organizationId", "orderNo", "siteId"]; getTaxesFromOrderRequired: ["organizationId", "orderNo", "siteId"]; guestOrderLookup: ["organizationId", "orderNo", "siteId", "locale"]; guestOrderLookupRequired: ["organizationId", "orderNo", "siteId"]; removePaymentInstrumentFromOrder: ["paymentInstrumentId", "organizationId", "orderNo", "siteId", "locale"]; removePaymentInstrumentFromOrderRequired: ["paymentInstrumentId", "organizationId", "orderNo", "siteId"]; updatePaymentInstrumentForOrder: ["paymentInstrumentId", "organizationId", "orderNo", "siteId", "locale"]; updatePaymentInstrumentForOrderRequired: ["paymentInstrumentId", "organizationId", "orderNo", "siteId"] } = {createOrder: ['organizationId','siteId','locale',],createOrderRequired: ['organizationId','siteId',],createPaymentInstrumentForOrder: ['organizationId','orderNo','siteId','locale',],createPaymentInstrumentForOrderRequired: ['organizationId','orderNo','siteId',],failOrder: ['organizationId','orderNo','siteId','locale','reopenBasket',],failOrderRequired: ['organizationId','orderNo','siteId',],getOrder: ['orderNo','organizationId','siteId','locale','expand',],getOrderRequired: ['orderNo','organizationId','siteId',],getPaymentMethodsForOrder: ['organizationId','orderNo','siteId','locale',],getPaymentMethodsForOrderRequired: ['organizationId','orderNo','siteId',],getTaxesFromOrder: ['organizationId','orderNo','siteId',],getTaxesFromOrderRequired: ['organizationId','orderNo','siteId',],guestOrderLookup: ['organizationId','orderNo','siteId','locale',],guestOrderLookupRequired: ['organizationId','orderNo','siteId',],removePaymentInstrumentFromOrder: ['paymentInstrumentId','organizationId','orderNo','siteId','locale',],removePaymentInstrumentFromOrderRequired: ['paymentInstrumentId','organizationId','orderNo','siteId',],updatePaymentInstrumentForOrder: ['paymentInstrumentId','organizationId','orderNo','siteId','locale',],updatePaymentInstrumentForOrderRequired: ['paymentInstrumentId','organizationId','orderNo','siteId',],} as const
                                            @@ -248,7 +251,13 @@
                                            createPaymentInstrumentForOrder: ["organizationId", "orderNo", "siteId"]

                                          • -
                                            getOrder: ["orderNo", "organizationId", "siteId", "locale"]
                                            +
                                            failOrder: ["organizationId", "orderNo", "siteId", "locale", "reopenBasket"]
                                            +
                                          • +
                                          • +
                                            failOrderRequired: ["organizationId", "orderNo", "siteId"]
                                            +
                                          • +
                                          • +
                                            getOrder: ["orderNo", "organizationId", "siteId", "locale", "expand"]
                                          • getOrderRequired: ["orderNo", "organizationId", "siteId"]
                                            @@ -300,7 +309,7 @@

                                            createOrder

                                          • @@ -326,7 +335,7 @@

                                            Returns Promise
                                            @@ -375,7 +384,7 @@

                                            createPaymentInstrumentForOrder

                                          • @@ -404,7 +413,7 @@

                                            Returns Promise
                                            @@ -445,18 +454,95 @@

                                            Returns Promise

                                          +
                                          + +

                                          failOrder

                                          + +
                                            +
                                          • + +
                                            +
                                            +

                                            Fails an unplaced order and optionally reopens the basket when indicated. + Creates a HistoryEntry in the failed Order with provided reasonCode.

                                            +
                                            +

                                            If you would like to get a raw Response object use the other failOrder function.

                                            +
                                            +

                                            Parameters

                                            + +

                                            Returns Promise<void>

                                            +

                                            A promise of type void.

                                            +
                                          • +
                                          • + +
                                            +
                                            +

                                            Fails an unplaced order and optionally reopens the basket when indicated. + Creates a HistoryEntry in the failed Order with provided reasonCode.

                                            +
                                            +
                                            +

                                            Type parameters

                                            +
                                              +
                                            • +

                                              T: boolean

                                              +
                                            • +
                                            +

                                            Parameters

                                            + +

                                            Returns Promise<T extends true ? Response : void>

                                            +

                                            A promise of type Response if rawResponse is true, a promise of type void otherwise.

                                            +
                                          • +
                                          +

                                          getOrder

                                          • @@ -468,7 +554,7 @@

                                            getOrder

                                            Parameters

                                            • -
                                              Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ locale?: LocaleCode; orderNo: string; organizationId: string; siteId: string } & QueryParameters, ConfigParameters> }>
                                              +
                                              Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ expand?: Array<GetOrderExpandEnum>; locale?: LocaleCode; orderNo: string; organizationId: string; siteId: string } & QueryParameters, ConfigParameters> }>

                                              An object containing the options for this method.

                                              @@ -482,7 +568,7 @@

                                              Returns Promise
                                              @@ -499,7 +585,7 @@

                                              T: Parameters

                                              • -
                                                Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ locale?: LocaleCode; orderNo: string; organizationId: string; siteId: string } & QueryParameters, ConfigParameters> }>
                                                +
                                                Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ expand?: Array<GetOrderExpandEnum>; locale?: LocaleCode; orderNo: string; organizationId: string; siteId: string } & QueryParameters, ConfigParameters> }>

                                                An object containing the options for this method.

                                                @@ -531,7 +617,7 @@

                                                getPaymentMethodsForOrder

                                              • @@ -557,7 +643,7 @@

                                                Returns Promise
                                                @@ -606,7 +692,7 @@

                                                getTaxesFromOrder

                                              • @@ -634,7 +720,7 @@

                                                Returns Promise
                                                @@ -685,7 +771,7 @@

                                                guestOrderLookup

                                              • @@ -715,7 +801,7 @@

                                                Returns Promise
                                                @@ -768,7 +854,7 @@

                                                removePaymentInstrumentFromOrder

                                              • @@ -794,7 +880,7 @@

                                                Returns Promise
                                                @@ -843,7 +929,7 @@

                                                updatePaymentInstrumentForOrder

                                              • @@ -873,7 +959,7 @@

                                                Returns Promise
                                                @@ -924,7 +1010,7 @@

                                                Static apiPaths: object

                                                @@ -933,7 +1019,7 @@

                                                createOrder

                                                createOrder: string = "/organizations/{organizationId}/orders"
                                                @@ -943,7 +1029,17 @@

                                                createPaymentInstrumentForOrder

                                                createPaymentInstrumentForOrder: string = "/organizations/{organizationId}/orders/{orderNo}/payment-instruments"
                                                +

                                          +
                                          + +

                                          failOrder

                                          +
                                          failOrder: string = "/organizations/{organizationId}/orders/{orderNo}/actions/fail"
                                          +
                                          @@ -953,7 +1049,7 @@

                                          getOrder

                                          getOrder: string = "/organizations/{organizationId}/orders/{orderNo}"
                                          @@ -963,7 +1059,7 @@

                                          getPaymentMethodsForOrder

                                          getPaymentMethodsForOrder: string = "/organizations/{organizationId}/orders/{orderNo}/payment-methods"
                                          @@ -973,7 +1069,7 @@

                                          getTaxesFromOrder

                                          getTaxesFromOrder: string = "/organizations/{organizationId}/orders/{orderNo}/taxes"
                                          @@ -983,7 +1079,7 @@

                                          guestOrderLookup

                                          guestOrderLookup: string = "/organizations/{organizationId}/orders/{orderNo}/lookup"
                                          @@ -993,7 +1089,7 @@

                                          removePaymentInstrumentFromOrder

                                          removePaymentInstrumentFromOrder: string = "/organizations/{organizationId}/orders/{orderNo}/payment-instruments/{paymentInstrumentId}"
                                          @@ -1003,7 +1099,7 @@

                                          updatePaymentInstrumentForOrder

                                          updatePaymentInstrumentForOrder: string = "/organizations/{organizationId}/orders/{orderNo}/payment-instruments/{paymentInstrumentId}"
                                          @@ -1063,6 +1159,9 @@

                                          updatePaymentInstrumentForOrder

                                      • +
                                      • + shopperPayments +
                                      • shopperProducts
                                      • @@ -1111,6 +1210,9 @@

                                        updatePaymentInstrumentForOrder

                                      • createPaymentInstrumentForOrder
                                      • +
                                      • + failOrder +
                                      • getOrder
                                      • diff --git a/docs/classes/shopperpayments.shopperpayments-3.html b/docs/classes/shopperpayments.shopperpayments-3.html new file mode 100644 index 00000000..6f668fb8 --- /dev/null +++ b/docs/classes/shopperpayments.shopperpayments-3.html @@ -0,0 +1,621 @@ + + + + + + ShopperPayments | commerce-sdk-isomorphic + + + + + +
                                        +
                                        +
                                        +
                                        + +
                                        +
                                        + Options +
                                        +
                                        + All +
                                          +
                                        • Public
                                        • +
                                        • Public/Protected
                                        • +
                                        • All
                                        • +
                                        +
                                        + + + + + + +
                                        +
                                        + Menu +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        + +

                                        Class ShopperPayments<ConfigParameters>

                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        +
                                        + +

                                        *Download API specification

                                        + +

                                        API Overview

                                        +
                                        +

                                        Use the Shopper Payments API to:

                                        +
                                          +
                                        • Retrieve payment configuration information for storefronts when Salesforce Payments is enabled.
                                        • +
                                        +

                                        The API returns the available payment methods, merchant account details, and payment gateway configurations for a specific payment zone site assignment.

                                        +

                                        The response includes:

                                        +
                                          +
                                        • Zone ID: The unique identifier for the Payments zone.
                                        • +
                                        • Payment Method Set Accounts: List of configured payment processor accounts with API keys, vendor information (Stripe, Adyen, PayPal, etc.), and live/test mode indicators.
                                        • +
                                        • Payment Methods: List of available payment methods with their associated accounts, payment method types, and supported payment modes.
                                        • +
                                        + +

                                        Authentication & Authorization

                                        +
                                        +

                                        The client requesting payment configuration must have access to the /payment-configuration resource. The Shopper Payments API requires a shopper access token from the Shopper Login and API Access Service (SLAS).

                                        +

                                        For details on how to request a shopper access token from SLAS, see the guest user flows for public clients and private clients in the SLAS guides.

                                        +

                                        You must include sfcc.shopper-baskets-orders, sfcc.shopper-baskets-orders.rw, or sfcc.shopper-standard in the client ID used to generate the SLAS token. For a full list of permissions, see the Authorization Scopes Catalog.

                                        + +

                                        Use Cases

                                        +
                                        + +

                                        Retrieve Payment Configuration

                                        +
                                        +

                                        Retrieve payment configuration settings for Stripe, PayPal, and Adyen based on the payment methods enabled in the merchant's payment zone site. This includes API keys, vendor details, and live/test mode status. Specify a zone via zoneId or use currency and countryCode for automatic resolution.*

                                        +

                                        Simple example:

                                        +
                                          import { ShopperPayments } from "commerce-sdk-isomorphic";
                                        +
                                        +  const clientConfig = {
                                        +    parameters: {
                                        +      clientId: "XXXXXX",
                                        +      organizationId: "XXXX",
                                        +      shortCode: "XXX",
                                        +      siteId: "XX"
                                        +    }
                                        +  };
                                        +  const shopperPaymentsClient = new ShopperPayments(clientConfig);
                                        + + API Version: 0.0.33
                                        + Last Updated:
                                        +
                                        +
                                        +
                                        +
                                        +

                                        Type parameters

                                        + +
                                        +
                                        +

                                        Hierarchy

                                        +
                                          +
                                        • + ShopperPayments +
                                        • +
                                        +
                                        +
                                        +

                                        Index

                                        +
                                        +
                                        +
                                        +

                                        Constructors

                                        + +
                                        +
                                        +

                                        Properties

                                        + +
                                        +
                                        +

                                        Methods

                                        + +
                                        +
                                        +

                                        Object literals

                                        + +
                                        +
                                        +
                                        +
                                        +
                                        +

                                        Constructors

                                        +
                                        + +

                                        constructor

                                        + +
                                          +
                                        • + +

                                          Parameters

                                          + +

                                          Returns ShopperPayments

                                          +
                                        • +
                                        +
                                        +
                                        +
                                        +

                                        Properties

                                        +
                                        + +

                                        clientConfig

                                        +
                                        clientConfig: ClientConfig<ConfigParameters> & { baseUri: string }
                                        + +
                                        +
                                        + +

                                        Static Readonly defaultBaseUri

                                        +
                                        defaultBaseUri: "https://{shortCode}.api.commercecloud.salesforce.com/checkout/shopper-payments/v1" = currentBaseUri
                                        + +
                                        +
                                        + +

                                        Static Readonly paramKeys

                                        +
                                        paramKeys: { getPaymentConfiguration: ["organizationId", "siteId", "currency", "countryCode", "zoneId", "amount"]; getPaymentConfigurationRequired: ["organizationId", "siteId", "currency"] } = {getPaymentConfiguration: ['organizationId','siteId','currency','countryCode','zoneId','amount',],getPaymentConfigurationRequired: ['organizationId','siteId','currency',],} as const
                                        + +
                                        +

                                        Type declaration

                                        +
                                          +
                                        • +
                                          getPaymentConfiguration: ["organizationId", "siteId", "currency", "countryCode", "zoneId", "amount"]
                                          +
                                        • +
                                        • +
                                          getPaymentConfigurationRequired: ["organizationId", "siteId", "currency"]
                                          +
                                        • +
                                        +
                                        +
                                        +
                                        +
                                        +

                                        Methods

                                        +
                                        + +

                                        getPaymentConfiguration

                                        + +
                                          +
                                        • + +
                                          +
                                          +

                                          Retrieves the payment configuration for the organization.

                                          +
                                          +

                                          Parameters:*

                                          +
                                            +
                                          • siteId: Required. The site identifier for context-specific configuration
                                          • +
                                          • currency: Required. Three-letter currency code (ISO 4217) for payment method configuration
                                          • +
                                          • countryCode: Optional. Two-letter country code (ISO 3166-1 alpha-2) for country-specific payment configuration
                                          • +
                                          • amount: Optional. Transaction amount for payment method configuration
                                          • +
                                          • zoneId: Optional. Payment zone identifier to retrieve zone-specific configuration
                                          • +
                                          +

                                          Response Behavior:*

                                          +
                                            +
                                          • Returns payment configuration data when available
                                          • +
                                          • Returns null values for missing data (e.g., when account not found or payments zone not found)
                                          • +
                                          +

                                          If you would like to get a raw Response object use the other getPaymentConfiguration function.

                                          +
                                          +

                                          Parameters

                                          +
                                            +
                                          • +
                                            Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ amount?: number | null; countryCode?: undefined | string; currency: string; organizationId: string; siteId: string; zoneId?: string | null } & QueryParameters, ConfigParameters> }>
                                            +
                                            +
                                            +

                                            An object containing the options for this method.

                                            +
                                            +
                                            +
                                          • +
                                          +

                                          Returns Promise<PaymentConfiguration>

                                          +

                                          A promise of type PaymentConfiguration.

                                          +
                                        • +
                                        • + +
                                          +
                                          +

                                          Retrieves the payment configuration for the organization.

                                          +
                                          +

                                          Parameters:*

                                          +
                                            +
                                          • siteId: Required. The site identifier for context-specific configuration
                                          • +
                                          • currency: Required. Three-letter currency code (ISO 4217) for payment method configuration
                                          • +
                                          • countryCode: Optional. Two-letter country code (ISO 3166-1 alpha-2) for country-specific payment configuration
                                          • +
                                          • amount: Optional. Transaction amount for payment method configuration
                                          • +
                                          • zoneId: Optional. Payment zone identifier to retrieve zone-specific configuration
                                          • +
                                          +

                                          Response Behavior:*

                                          +
                                            +
                                          • Returns payment configuration data when available
                                          • +
                                          • Returns null values for missing data (e.g., when account not found or payments zone not found)
                                          • +
                                          +
                                          +

                                          Type parameters

                                          +
                                            +
                                          • +

                                            T: boolean

                                            +
                                          • +
                                          +

                                          Parameters

                                          +
                                            +
                                          • +
                                            Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ amount?: number | null; countryCode?: undefined | string; currency: string; organizationId: string; siteId: string; zoneId?: string | null } & QueryParameters, ConfigParameters> }>
                                            +
                                            +
                                            +

                                            An object containing the options for this method.

                                            +
                                            +
                                            +
                                          • +
                                          • +
                                            Optional rawResponse: T
                                            +
                                            +
                                            +

                                            Set to true to return entire Response object instead of DTO.

                                            +
                                            +
                                            +
                                          • +
                                          +

                                          Returns Promise<T extends true ? Response : PaymentConfiguration>

                                          +

                                          A promise of type Response if rawResponse is true, a promise of type PaymentConfiguration otherwise.

                                          +
                                        • +
                                        +
                                        +
                                        +
                                        +

                                        Object literals

                                        +
                                        + +

                                        Static Readonly apiPaths

                                        +
                                        apiPaths: object
                                        + +
                                        + +

                                        getPaymentConfiguration

                                        +
                                        getPaymentConfiguration: string = "/organizations/{organizationId}/payment-configuration"
                                        + +
                                        +
                                        +
                                        +
                                        + +
                                        +
                                        +
                                        +
                                        +

                                        Legend

                                        +
                                        +
                                          +
                                        • Namespace
                                        • +
                                        • Variable
                                        • +
                                        • Function
                                        • +
                                        • Function with type parameter
                                        • +
                                        • Type alias
                                        • +
                                        • Type alias with type parameter
                                        • +
                                        +
                                          +
                                        • Class
                                        • +
                                        • Class with type parameter
                                        • +
                                        • Constructor
                                        • +
                                        • Property
                                        • +
                                        +
                                          +
                                        • Interface
                                        • +
                                        • Interface with type parameter
                                        • +
                                        +
                                          +
                                        • Static property
                                        • +
                                        +
                                        +
                                        +
                                        +
                                        +

                                        Generated using TypeDoc

                                        +
                                        +
                                        + + + \ No newline at end of file diff --git a/docs/classes/shopperproducts.shopperproducts-3.html b/docs/classes/shopperproducts.shopperproducts-3.html index aae08cd3..3e3a38a9 100644 --- a/docs/classes/shopperproducts.shopperproducts-3.html +++ b/docs/classes/shopperproducts.shopperproducts-3.html @@ -86,6 +86,7 @@

                                        API Overview

                                        Authentication & Authorization

                                        The client requesting the product information must have access to the Products resource. The Shopper Products API requires a shopper access token from the Shopper Login and API Access Service (SLAS).

                                        +

                                        You must include the relevant scopes in the client ID used to generate the SLAS token. For a full list of required permissions, see the Authorization Scopes Catalog.

                                        For details on how to request a shopper access token from SLAS, see the guest user flows for public clients and private clients in the SLAS guides.

                                        Use Cases

                                        @@ -131,10 +132,6 @@

                                        JWA Caching

                                        Use Hooks

                                        For details working with hooks, see Extensibility with Hooks.

                                        - -

                                        Test Description Changes

                                        -
                                        -

                                        uoweefhewihpfhweipfiphwefhipwehfiewpifhewifiphehipeipwhfhipewfhiihpefipew

                                        Resources

                                        @@ -146,24 +143,7 @@

                                        Product

                                        Category

                                        Categories and subcategories are the structure by which products are organized and grouped in a catalog and on a storefront. Categories can have relationships to other categories. Further, each category can provide context that is inherited by subcategories. For example, a category can have an assigned attribute. A product assigned to that category or any subcategory inherits the categories’s attribute value. Once the product is removed from the category, the attribute value is no longer inherited by the product. You can also use category linking for site hierarchical navigation. For example, inside the Clothing category you may have Men’s, and inside the Men’s category you may have Pants.

                                        -

                                        Categories are not tags.

                                        - -

                                        Endpoints

                                        -
                                        - -

                                        GET /products

                                        -
                                        -

                                        Returns product details for up to 24 products in one API request. You can use this API for use cases that require populating or hydrating multiple products at a time, such as populating the Product Listing Pages.

                                        -

                                        The response data includes availability, promotions, images, and prices, along with the basic product information for the products requested.

                                        - -

                                        GET /products/{id}

                                        -
                                        -

                                        Returns product details about a single product. Use this API for use cases that require populating or hydrating one product at a time, such as the Product Detail Pages.

                                        -

                                        The response data includes availability, promotions, options, images, prices, variations, bundled_products, set_products, recommendations, and the basic product information for the product requested.

                                        - -

                                        GET /categories

                                        -
                                        -

                                        Returns category details including the parent child relationships for one or more categories. The limit on depth for the parent-child relationship is 2.*

                                        +

                                        Categories are not tags.*

                                        Simple example:

                                          import { ShopperProducts } from "commerce-sdk-isomorphic";
                                         
                                        @@ -246,7 +226,7 @@ 

                                        constructor

                                      • Parameters

                                        @@ -268,7 +248,7 @@

                                        clientConfig

                                        clientConfig: ClientConfig<ConfigParameters> & { baseUri: string }
                                        @@ -278,7 +258,7 @@

                                        Static defaultBaseUri: "https://{shortCode}.api.commercecloud.salesforce.com/product/shopper-products/v1" = currentBaseUri

                                      @@ -288,7 +268,7 @@

                                      Static paramKeys: { getCategories: ["organizationId", "ids", "siteId", "levels", "locale"]; getCategoriesRequired: ["organizationId", "ids", "siteId"]; getCategory: ["id", "organizationId", "siteId", "levels", "locale"]; getCategoryRequired: ["id", "organizationId", "siteId"]; getProduct: ["organizationId", "id", "siteId", "inventoryIds", "expand", "allImages", "perPricebook", "select", "currency", "locale"]; getProductRequired: ["organizationId", "id", "siteId"]; getProducts: ["organizationId", "ids", "siteId", "inventoryIds", "expand", "allImages", "perPricebook", "select", "locale", "currency"]; getProductsRequired: ["organizationId", "ids", "siteId"] } = {getCategories: ['organizationId','ids','siteId','levels','locale',],getCategoriesRequired: ['organizationId','ids','siteId',],getCategory: ['id','organizationId','siteId','levels','locale',],getCategoryRequired: ['id','organizationId','siteId',],getProduct: ['organizationId','id','siteId','inventoryIds','expand','allImages','perPricebook','select','currency','locale',],getProductRequired: ['organizationId','id','siteId',],getProducts: ['organizationId','ids','siteId','inventoryIds','expand','allImages','perPricebook','select','locale','currency',],getProductsRequired: ['organizationId','ids','siteId',],} as const

                                    • @@ -335,7 +315,7 @@

                                      getCategories

                                    • @@ -361,7 +341,7 @@

                                      Returns Promise
                                      @@ -410,7 +390,7 @@

                                      getCategory

                                    • @@ -441,7 +421,7 @@

                                      Returns Promise
                                      @@ -488,26 +468,26 @@

                                      Returns Promise

                                      getProduct

                                      • -

                                        Allows access to product details for a single product ID. Only products that are online and assigned to a site catalog are returned. In addition to product details, the availability, images, price, bundled_products, set_products, recommedations, product options, variations, and promotions for the products are included, as applicable.

                                        +

                                        Allows access to product details for a single product ID. Only products that are online and assigned to a site catalog are returned. In addition to product details, the availability, images, price, bundled_products, set_products, recommendations, product options, variations, shipping_methods, and promotions for the products are included, as applicable.

                                        If you would like to get a raw Response object use the other getProduct function.

                                        Parameters

                                        • -
                                          Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ allImages?: undefined | false | true; currency?: CurrencyCode; expand?: Array<GetProductExpandEnum>; id: string; inventoryIds?: Array<string>; locale?: LocaleCode; organizationId: string; perPricebook?: undefined | false | true; select?: undefined | string; siteId: string } & QueryParameters, ConfigParameters> }>
                                          +
                                          Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ allImages?: undefined | false | true; currency?: undefined | string; expand?: Array<GetProductExpandEnum>; id: string; inventoryIds?: Array<string>; locale?: LocaleCode; organizationId: string; perPricebook?: undefined | false | true; select?: undefined | string; siteId: string } & QueryParameters, ConfigParameters> }>

                                          An object containing the options for this method.

                                          @@ -521,12 +501,12 @@

                                          Returns Promise
                                          -

                                          Allows access to product details for a single product ID. Only products that are online and assigned to a site catalog are returned. In addition to product details, the availability, images, price, bundled_products, set_products, recommedations, product options, variations, and promotions for the products are included, as applicable.

                                          +

                                          Allows access to product details for a single product ID. Only products that are online and assigned to a site catalog are returned. In addition to product details, the availability, images, price, bundled_products, set_products, recommendations, product options, variations, shipping_methods, and promotions for the products are included, as applicable.

                                          Type parameters

                                          @@ -538,7 +518,7 @@

                                          T: Parameters

                                          • -
                                            Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ allImages?: undefined | false | true; currency?: CurrencyCode; expand?: Array<GetProductExpandEnum>; id: string; inventoryIds?: Array<string>; locale?: LocaleCode; organizationId: string; perPricebook?: undefined | false | true; select?: undefined | string; siteId: string } & QueryParameters, ConfigParameters> }>
                                            +
                                            Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ allImages?: undefined | false | true; currency?: undefined | string; expand?: Array<GetProductExpandEnum>; id: string; inventoryIds?: Array<string>; locale?: LocaleCode; organizationId: string; perPricebook?: undefined | false | true; select?: undefined | string; siteId: string } & QueryParameters, ConfigParameters> }>

                                            An object containing the options for this method.

                                            @@ -563,26 +543,26 @@

                                            Returns Promise

                                            getProducts

                                            • -

                                              Allows access to multiple product details with a single request. Only products that are online and assigned to a site catalog are returned. The maximum number of product IDs that you can request is 24. In addition to product details, the availability, product options, images, price, promotions, and variations for the valid products are included, as applicable.

                                              +

                                              Allows access to multiple product details with a single request. Only products that are online and assigned to a site catalog are returned. The maximum number of product IDs that you can request is 24. In addition to product details, the availability, images, price, bundled_products, set_products, recommendations, product options, variations, shipping_methods, and promotions for the products are included, as applicable.

                                              If you would like to get a raw Response object use the other getProducts function.

                                              Parameters

                                              • -
                                                Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ allImages?: undefined | false | true; currency?: CurrencyCode; expand?: Array<GetProductsExpandEnum>; ids: Array<string>; inventoryIds?: Array<string>; locale?: LocaleCode; organizationId: string; perPricebook?: undefined | false | true; select?: undefined | string; siteId: string } & QueryParameters, ConfigParameters> }>
                                                +
                                                Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ allImages?: undefined | false | true; currency?: undefined | string; expand?: Array<GetProductsExpandEnum>; ids: Array<string>; inventoryIds?: Array<string>; locale?: LocaleCode; organizationId: string; perPricebook?: undefined | false | true; select?: undefined | string; siteId: string } & QueryParameters, ConfigParameters> }>

                                                An object containing the options for this method.

                                                @@ -596,12 +576,12 @@

                                                Returns Promise
                                                -

                                                Allows access to multiple product details with a single request. Only products that are online and assigned to a site catalog are returned. The maximum number of product IDs that you can request is 24. In addition to product details, the availability, product options, images, price, promotions, and variations for the valid products are included, as applicable.

                                                +

                                                Allows access to multiple product details with a single request. Only products that are online and assigned to a site catalog are returned. The maximum number of product IDs that you can request is 24. In addition to product details, the availability, images, price, bundled_products, set_products, recommendations, product options, variations, shipping_methods, and promotions for the products are included, as applicable.

                                                Type parameters

                                                @@ -613,7 +593,7 @@

                                                T: Parameters

                                                • -
                                                  Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ allImages?: undefined | false | true; currency?: CurrencyCode; expand?: Array<GetProductsExpandEnum>; ids: Array<string>; inventoryIds?: Array<string>; locale?: LocaleCode; organizationId: string; perPricebook?: undefined | false | true; select?: undefined | string; siteId: string } & QueryParameters, ConfigParameters> }>
                                                  +
                                                  Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ allImages?: undefined | false | true; currency?: undefined | string; expand?: Array<GetProductsExpandEnum>; ids: Array<string>; inventoryIds?: Array<string>; locale?: LocaleCode; organizationId: string; perPricebook?: undefined | false | true; select?: undefined | string; siteId: string } & QueryParameters, ConfigParameters> }>

                                                  An object containing the options for this method.

                                                  @@ -643,7 +623,7 @@

                                                  Static apiPaths: object

                                                  @@ -652,7 +632,7 @@

                                                  getCategories

                                                  getCategories: string = "/organizations/{organizationId}/categories"
                                                  @@ -662,7 +642,7 @@

                                                  getCategory

                                                  getCategory: string = "/organizations/{organizationId}/categories/{id}"
                                                  @@ -672,7 +652,7 @@

                                                  getProduct

                                                  getProduct: string = "/organizations/{organizationId}/products/{id}"
                                                  @@ -682,7 +662,7 @@

                                                  getProducts

                                                  getProducts: string = "/organizations/{organizationId}/products"
                                                  @@ -737,6 +717,9 @@

                                                  getProducts

                                                • shopperOrders
                                                • +
                                                • + shopperPayments +
                                                • shopperProducts
                                                    diff --git a/docs/classes/shopperpromotions.shopperpromotions-3.html b/docs/classes/shopperpromotions.shopperpromotions-3.html index 0ef71dbf..1a5da7cb 100644 --- a/docs/classes/shopperpromotions.shopperpromotions-3.html +++ b/docs/classes/shopperpromotions.shopperpromotions-3.html @@ -76,8 +76,10 @@

                                                    Class ShopperPromotions<ConfigParameters>

                                                    Shopper Promotions

                                                -

                                                *# API Overview - Download API specification

                                                +

                                                *Download API specification

                                                + +

                                                API Overview

                                                +

                                                Retrieve information about active promotions within the context of a shopper and a site. You can use this API to retrieve promotions that you configured in the commerce platform by searching for specific promotion IDs or by searching for promotions associated with a campaign.

                                                Caching is provided for the Shopper Promotions API. For details, see Server-Side Web-Tier Caching.

                                                @@ -182,7 +184,7 @@

                                                constructor

                                              • Parameters

                                                @@ -204,7 +206,7 @@

                                                clientConfig

                                                clientConfig: ClientConfig<ConfigParameters> & { baseUri: string }
                                                @@ -214,7 +216,7 @@

                                                Static defaultBaseUri: "https://{shortCode}.api.commercecloud.salesforce.com/pricing/shopper-promotions/v1" = currentBaseUri

                                            @@ -224,7 +226,7 @@

                                            Static paramKeys: { getPromotions: ["organizationId", "siteId", "ids", "locale"]; getPromotionsForCampaign: ["campaignId", "organizationId", "siteId", "startDate", "endDate", "currency"]; getPromotionsForCampaignRequired: ["campaignId", "organizationId", "siteId"]; getPromotionsRequired: ["organizationId", "siteId", "ids"] } = {getPromotions: ['organizationId','siteId','ids','locale',],getPromotionsRequired: ['organizationId','siteId','ids',],getPromotionsForCampaign: ['campaignId','organizationId','siteId','startDate','endDate','currency',],getPromotionsForCampaignRequired: ['campaignId','organizationId','siteId',],} as const

                                            @@ -259,7 +261,7 @@

                                            getPromotions

                                          • @@ -286,7 +288,7 @@

                                            Returns Promise
                                            @@ -336,7 +338,7 @@

                                            getPromotionsForCampaign

                                          • @@ -365,7 +367,7 @@

                                            Returns Promise
                                            @@ -415,7 +417,7 @@

                                            Static apiPaths: object

                                            @@ -424,7 +426,7 @@

                                            getPromotions

                                            getPromotions: string = "/organizations/{organizationId}/promotions"
                                            @@ -434,7 +436,7 @@

                                            getPromotionsForCampaign

                                            getPromotionsForCampaign: string = "/organizations/{organizationId}/promotions/campaigns/{campaignId}"
                                            @@ -489,6 +491,9 @@

                                            getPromotionsForCampaign

                                          • shopperOrders
                                          • +
                                          • + shopperPayments +
                                          • shopperProducts
                                          • diff --git a/docs/classes/shoppersearch.shoppersearch-3.html b/docs/classes/shoppersearch.shoppersearch-3.html index a1b074c1..1f726632 100644 --- a/docs/classes/shoppersearch.shoppersearch-3.html +++ b/docs/classes/shoppersearch.shoppersearch-3.html @@ -87,7 +87,7 @@

                                            Authentication & Authorization

                                            The client requesting the API must have access to the product search and search suggestion resources.

                                            The Shopper Search API requires a JWT acquired via the Shopper Customers endpoint:

                                            -
                                            https://{shortCode}.api.commercecloud.salesforce.com/customer/shopper-customers/v1/organizations/{organizationId}/customers/actions/login
                                            +
                                            https://{shortCode}.api.commercecloud.salesforce.com/customer/shopper-customers/v1/organizations/{organizationId}/customers/actions/login

                                            You must include the relevant scopes in the client ID used to generate the SLAS token. For a full list of permissions, see the Authorization Scopes Catalog.

                                            Use Cases

                                            @@ -126,28 +126,28 @@

                                            Filter Products by Promotion Role

                                            You can filter products by their role in a promotion using the pmid (promotion ID) and pmpt (promotion product type) refinement parameters together. This allows you to find specific types of products within a promotion:

                                              -
                                            • pmid: Specifies the promotion ID to filter by
                                            • -
                                            • pmpt: Specifies the type of products to return within that promotion:
                                            • +
                                            • pmid: Specifies the promotion ID to filter by
                                            • +
                                            • pmpt: Specifies the type of products to return within that promotion:
                                            • all: Returns all products related to the promotion (default behavior)
                                            • qualifying: Returns only products that qualify for the promotion but don't receive the discount/bonus
                                            • discounted: Returns only products that receive a discount in the promotion
                                            • bonus: Returns only products that are given as bonuses in the promotion
                                            -

                                            Example Usage:*

                                            +

                                            Example Usage:

                                            GET /organizations/{organizationId}/product-search?refine=pmid=summer-sale&refine=pmpt=discounted

                                            This would return only the products that receive discounts in the "summer-sale" promotion.

                                            Note:* The pmpt parameter only has an effect when used with pmid. If pmpt is specified without pmid, it will be ignored and all products will be returned.

                                            -

                                            Shopper Personalization

                                            +

                                            Shopper Personalization

                                            The SCAPI response can be personalized using the Shopper Context API or hooks. By setting specific values in the Shopper Context API, you can modify the response of the 'getProduct' or 'getProducts' endpoint based on the shopper's context. For instance, you can offer a 5% discount or free shipping to shoppers using mobile devices.

                                            -

                                            JWA Caching

                                            +

                                            JWA Caching

                                            The response is cached in JWA, which means promotion data contained in the response is also cached based on the TTL (Time to Live) specified in the Business Manager Feature Switches configuration. When the shopper context value is updated, a check is conducted to see if the updated shopper context affects the retrieval of product-promotion data. If it does, then the response is fetched from the source and cached in the JWA.

                                            For details, see Server-Side Web-Tier Caching.

                                            -

                                            Use Hooks

                                            +

                                            Use Hooks

                                            For details working with hooks, see Extensibility with Hooks.

                                            @@ -243,7 +243,7 @@

                                            constructor

                                          • Parameters

                                            @@ -265,7 +265,7 @@

                                            clientConfig

                                            clientConfig: ClientConfig<ConfigParameters> & { baseUri: string }
                                            @@ -275,7 +275,7 @@

                                            Static defaultBaseUri: "https://{shortCode}.api.commercecloud.salesforce.com/search/shopper-search/v1" = currentBaseUri

                                          • @@ -285,7 +285,7 @@

                                            Static paramKeys: { getSearchSuggestions: ["organizationId", "siteId", "q", "limit", "currency", "locale", "expand", "includedCustomProductProperties", "includeEinsteinSuggestedPhrases"]; getSearchSuggestionsRequired: ["organizationId", "siteId", "q"]; productSearch: ["organizationId", "siteId", "select", "q", "refine", "sort", "currency", "locale", "expand", "allImages", "perPricebook", "allVariationProperties", "includedCustomVariationProperties", "limit", "offset"]; productSearchRequired: ["organizationId", "siteId"] } = {getSearchSuggestions: ['organizationId','siteId','q','limit','currency','locale','expand','includedCustomProductProperties','includeEinsteinSuggestedPhrases',],getSearchSuggestionsRequired: ['organizationId','siteId','q',],productSearch: ['organizationId','siteId','select','q','refine','sort','currency','locale','expand','allImages','perPricebook','allVariationProperties','includedCustomVariationProperties','limit','offset',],productSearchRequired: ['organizationId','siteId',],} as const

                                          • @@ -313,14 +313,14 @@

                                            Methods

                                            getSearchSuggestions

                                            • @@ -333,7 +333,7 @@

                                              getSearchSuggestions

                                              Parameters

                                              • -
                                                Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ currency?: CurrencyCode; expand?: Array<GetSearchSuggestionsExpandEnum>; includeEinsteinSuggestedPhrases?: undefined | false | true; includedCustomProductProperties?: Array<string>; limit?: undefined | number; locale?: LocaleCode; organizationId: string; q: string; siteId: string } & QueryParameters, ConfigParameters> }>
                                                +
                                                Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ currency?: undefined | string; expand?: Array<GetSearchSuggestionsExpandEnum>; includeEinsteinSuggestedPhrases?: undefined | false | true; includedCustomProductProperties?: Array<string>; limit?: undefined | number; locale?: LocaleCode; organizationId: string; q: string; siteId: string } & QueryParameters, ConfigParameters> }>

                                                An object containing the options for this method.

                                                @@ -347,7 +347,7 @@

                                                Returns Promise
                                                @@ -365,7 +365,7 @@

                                                T: Parameters

                                                • -
                                                  Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ currency?: CurrencyCode; expand?: Array<GetSearchSuggestionsExpandEnum>; includeEinsteinSuggestedPhrases?: undefined | false | true; includedCustomProductProperties?: Array<string>; limit?: undefined | number; locale?: LocaleCode; organizationId: string; q: string; siteId: string } & QueryParameters, ConfigParameters> }>
                                                  +
                                                  Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ currency?: undefined | string; expand?: Array<GetSearchSuggestionsExpandEnum>; includeEinsteinSuggestedPhrases?: undefined | false | true; includedCustomProductProperties?: Array<string>; limit?: undefined | number; locale?: LocaleCode; organizationId: string; q: string; siteId: string } & QueryParameters, ConfigParameters> }>

                                                  An object containing the options for this method.

                                                  @@ -390,14 +390,14 @@

                                                  Returns Promise

                                                  productSearch

                                                    -
                                                  • productSearch(options?: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ allImages?: undefined | false | true; allVariationProperties?: undefined | false | true; currency?: CurrencyCode; expand?: Array<ProductSearchExpandEnum>; includedCustomVariationProperties?: Array<string>; limit?: undefined | number; locale?: LocaleCode; offset?: undefined | number; organizationId: string; perPricebook?: undefined | false | true; q?: undefined | string; refine?: undefined | string; select?: undefined | string; siteId: string; sort?: undefined | string } & QueryParameters, ConfigParameters> }>): Promise<ProductSearchResult>
                                                  • -
                                                  • productSearch<T>(options?: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ allImages?: undefined | false | true; allVariationProperties?: undefined | false | true; currency?: CurrencyCode; expand?: Array<ProductSearchExpandEnum>; includedCustomVariationProperties?: Array<string>; limit?: undefined | number; locale?: LocaleCode; offset?: undefined | number; organizationId: string; perPricebook?: undefined | false | true; q?: undefined | string; refine?: undefined | string; select?: undefined | string; siteId: string; sort?: undefined | string } & QueryParameters, ConfigParameters> }>, rawResponse?: T): Promise<T extends true ? Response : ProductSearchResult>
                                                  • +
                                                  • productSearch(options?: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ allImages?: undefined | false | true; allVariationProperties?: undefined | false | true; currency?: undefined | string; expand?: Array<ProductSearchExpandEnum>; includedCustomVariationProperties?: Array<string>; limit?: undefined | number; locale?: LocaleCode; offset?: undefined | number; organizationId: string; perPricebook?: undefined | false | true; q?: undefined | string; refine?: undefined | string; select?: undefined | string; siteId: string; sort?: undefined | string } & QueryParameters, ConfigParameters> }>): Promise<ProductSearchResult>
                                                  • +
                                                  • productSearch<T>(options?: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ allImages?: undefined | false | true; allVariationProperties?: undefined | false | true; currency?: undefined | string; expand?: Array<ProductSearchExpandEnum>; includedCustomVariationProperties?: Array<string>; limit?: undefined | number; locale?: LocaleCode; offset?: undefined | number; organizationId: string; perPricebook?: undefined | false | true; q?: undefined | string; refine?: undefined | string; select?: undefined | string; siteId: string; sort?: undefined | string } & QueryParameters, ConfigParameters> }>, rawResponse?: T): Promise<T extends true ? Response : ProductSearchResult>
                                                  • @@ -411,7 +411,7 @@

                                                    productSearch

                                                    Parameters

                                                    • -
                                                      Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ allImages?: undefined | false | true; allVariationProperties?: undefined | false | true; currency?: CurrencyCode; expand?: Array<ProductSearchExpandEnum>; includedCustomVariationProperties?: Array<string>; limit?: undefined | number; locale?: LocaleCode; offset?: undefined | number; organizationId: string; perPricebook?: undefined | false | true; q?: undefined | string; refine?: undefined | string; select?: undefined | string; siteId: string; sort?: undefined | string } & QueryParameters, ConfigParameters> }>
                                                      +
                                                      Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ allImages?: undefined | false | true; allVariationProperties?: undefined | false | true; currency?: undefined | string; expand?: Array<ProductSearchExpandEnum>; includedCustomVariationProperties?: Array<string>; limit?: undefined | number; locale?: LocaleCode; offset?: undefined | number; organizationId: string; perPricebook?: undefined | false | true; q?: undefined | string; refine?: undefined | string; select?: undefined | string; siteId: string; sort?: undefined | string } & QueryParameters, ConfigParameters> }>

                                                      An object containing the options for this method.

                                                      @@ -425,7 +425,7 @@

                                                      Returns Promise
                                                      @@ -444,7 +444,7 @@

                                                      T: Parameters

                                                      • -
                                                        Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ allImages?: undefined | false | true; allVariationProperties?: undefined | false | true; currency?: CurrencyCode; expand?: Array<ProductSearchExpandEnum>; includedCustomVariationProperties?: Array<string>; limit?: undefined | number; locale?: LocaleCode; offset?: undefined | number; organizationId: string; perPricebook?: undefined | false | true; q?: undefined | string; refine?: undefined | string; select?: undefined | string; siteId: string; sort?: undefined | string } & QueryParameters, ConfigParameters> }>
                                                        +
                                                        Optional options: RequireParametersUnlessAllAreOptional<{ headers?: undefined | {}; parameters?: CompositeParameters<{ allImages?: undefined | false | true; allVariationProperties?: undefined | false | true; currency?: undefined | string; expand?: Array<ProductSearchExpandEnum>; includedCustomVariationProperties?: Array<string>; limit?: undefined | number; locale?: LocaleCode; offset?: undefined | number; organizationId: string; perPricebook?: undefined | false | true; q?: undefined | string; refine?: undefined | string; select?: undefined | string; siteId: string; sort?: undefined | string } & QueryParameters, ConfigParameters> }>

                                                        An object containing the options for this method.

                                                        @@ -474,7 +474,7 @@

                                                        Static apiPaths: object

                                                        @@ -483,7 +483,7 @@

                                                        getSearchSuggestions

                                                        getSearchSuggestions: string = "/organizations/{organizationId}/search-suggestions"
                                                        @@ -493,7 +493,7 @@

                                                        productSearch

                                                        productSearch: string = "/organizations/{organizationId}/product-search"
                                                        @@ -548,6 +548,9 @@

                                                        productSearch

                                                      • shopperOrders
                                                      • +
                                                      • + shopperPayments +
                                                      • shopperProducts
                                                      • diff --git a/docs/classes/shopperseo.shopperseo-3.html b/docs/classes/shopperseo.shopperseo-3.html index 83014129..1e8ef556 100644 --- a/docs/classes/shopperseo.shopperseo-3.html +++ b/docs/classes/shopperseo.shopperseo-3.html @@ -85,7 +85,8 @@

                                                        API Overview

                                                        Authentication & Authorization

                                                        The Shopper SEO API requires a shopper access token from the Shopper Login and API Access Service (SLAS).

                                                        -

                                                        You must include the relevant scope(s) in the client ID used to generate the SLAS token. For details, see Authorization Scopes Catalog.

                                                        +

                                                        You must include the relevant scope(s) in the client ID used to generate the SLAS token. For a full list of required permissions, see the Authorization Scopes Catalog.

                                                        +

                                                        For details on how to request a shopper access token from SLAS, see the guest user flows for public clients and private clients in the SLAS guides.

                                                        Use Cases

                                                        @@ -180,7 +181,7 @@

                                                        constructor

                                                      • Parameters

                                                        @@ -202,7 +203,7 @@

                                                        clientConfig

                                                        clientConfig: ClientConfig<ConfigParameters> & { baseUri: string }
                                                        @@ -212,7 +213,7 @@

                                                        Static defaultBaseUri: "https://{shortCode}.api.commercecloud.salesforce.com/site/shopper-seo/v1" = currentBaseUri

                                                      @@ -222,7 +223,7 @@

                                                      Static paramKeys: { getUrlMapping: ["organizationId", "urlSegment", "siteId", "locale"]; getUrlMappingRequired: ["organizationId", "urlSegment", "siteId"] } = {getUrlMapping: ['organizationId','urlSegment','siteId','locale',],getUrlMappingRequired: ['organizationId','urlSegment','siteId',],} as const

                                                      @@ -251,7 +252,7 @@

                                                      getUrlMapping

                                                    • @@ -279,7 +280,7 @@

                                                      Returns Promise
                                                      @@ -328,7 +329,7 @@

                                                      Static apiPaths: object

                                                      @@ -337,7 +338,7 @@

                                                      getUrlMapping

                                                      getUrlMapping: string = "/organizations/{organizationId}/url-mapping"
                                                      @@ -392,6 +393,9 @@

                                                      getUrlMapping

                                                    • shopperOrders
                                                    • +
                                                    • + shopperPayments +
                                                    • shopperProducts
                                                    • @@ -422,12 +426,6 @@

                                                      getUrlMapping

                                                      @@ -208,7 +234,7 @@

                                                      Static paramKeys: { getStores: ["organizationId", "ids", "siteId", "locale"]; getStoresRequired: ["organizationId", "ids", "siteId"]; searchStores: ["organizationId", "siteId", "countryCode", "distanceUnit", "latitude", "longitude", "maxDistance", "postalCode", "locale", "limit", "offset"]; searchStoresRequired: ["organizationId", "siteId"] } = {getStores: ['organizationId','ids','siteId','locale',],getStoresRequired: ['organizationId','ids','siteId',],searchStores: ['organizationId','siteId','countryCode','distanceUnit','latitude','longitude','maxDistance','postalCode','locale','limit','offset',],searchStoresRequired: ['organizationId','siteId',],} as const

                                                    @@ -243,7 +269,7 @@

                                                    getStores

                                                  • @@ -268,7 +294,7 @@

                                                    Returns Promise
                                                    @@ -314,7 +340,7 @@

                                                    searchStores

                                                  • @@ -349,7 +375,7 @@

                                                    Returns Promise
                                                    @@ -405,7 +431,7 @@

                                                    Static apiPaths: object

                                                    @@ -414,7 +440,7 @@

                                                    getStores

                                                    getStores: string = "/organizations/{organizationId}/stores"
                                                    @@ -424,7 +450,7 @@

                                                    searchStores

                                                    searchStores: string = "/organizations/{organizationId}/store-search"
                                                    @@ -479,6 +505,9 @@

                                                    searchStores

                                                  • shopperOrders
                                                  • +
                                                  • + shopperPayments +
                                                  • shopperProducts
                                                  • diff --git a/docs/classes/templateurl.templateurl-1.html b/docs/classes/templateurl.templateurl-1.html index c2964dcd..a30697c3 100644 --- a/docs/classes/templateurl.templateurl-1.html +++ b/docs/classes/templateurl.templateurl-1.html @@ -620,6 +620,9 @@

                                                    Returns void shopperOrders

                                                  • +
                                                  • + shopperPayments +
                                                  • shopperProducts
                                                  • diff --git a/docs/globals.html b/docs/globals.html index d5e16761..cd7387c9 100644 --- a/docs/globals.html +++ b/docs/globals.html @@ -84,6 +84,7 @@

                                                    Modules

                                                  • shopperGiftCertificates
                                                  • shopperLogin
                                                  • shopperOrders
                                                  • +
                                                  • shopperPayments
                                                  • shopperProducts
                                                  • shopperPromotions
                                                  • shopperSearch
                                                  • @@ -145,6 +146,9 @@

                                                    Modules

                                                  • shopperOrders
                                                  • +
                                                  • + shopperPayments +
                                                  • shopperProducts
                                                  • diff --git a/docs/index.html b/docs/index.html index 8c26026e..74bf063e 100644 --- a/docs/index.html +++ b/docs/index.html @@ -276,6 +276,44 @@

                                                    Custom APIs

                                                    clientConfig, });

                                                    For more documentation about this helper function, please refer to the commerce-sdk-isomorphic docs.

                                                    + +

                                                    Custom Fetch function

                                                    +
                                                    +

                                                    You can provide your own custom fetch function to intercept, log, or modify all SDK requests. This is useful for:

                                                    +
                                                      +
                                                    • Request/Response Logging: Track all API calls for debugging and monitoring
                                                    • +
                                                    • Request Interception: Add custom headers, modify request URLs, or implement custom retry logic
                                                    • +
                                                    • Error Handling: Add custom error processing or transformation before responses reach your application
                                                    • +
                                                    • Performance Monitoring: Measure request/response times and track API performance metrics
                                                    • +
                                                    +

                                                    Example with Logging:

                                                    +
                                                    // Custom fetch function with detailed logging
                                                    +const customFetch = async (url, options) => {
                                                    +  console.log(`[SDK Request] ${options?.method || 'GET'} ${url}`);
                                                    +  console.log('[SDK Request Headers]', options?.headers);
                                                    +  if (options?.body) {
                                                    +    console.log('[SDK Request Body]', options.body);
                                                    +  }
                                                    +
                                                    +  const startTime = Date.now();
                                                    +  const response = await fetch(url, options);
                                                    +  const duration = Date.now() - startTime;
                                                    +
                                                    +  console.log(`[SDK Response] ${response.status} ${response.statusText} (${duration}ms)`);
                                                    +  console.log('[SDK Response Headers]', Object.fromEntries(response.headers.entries()));
                                                    +
                                                    +  return response;
                                                    +};
                                                    +
                                                    +const config = {
                                                    +  parameters: {
                                                    +    clientId: '<your-client-id>',
                                                    +    organizationId: '<your-org-id>',
                                                    +    shortCode: '<your-short-code>',
                                                    +    siteId: '<your-site-id>',
                                                    +  },
                                                    +  fetch: customFetch,
                                                    +};

                                                    Encoding special characters

                                                    @@ -387,6 +425,9 @@

                                                    License Information

                                                  • shopperOrders
                                                  • +
                                                  • + shopperPayments +
                                                  • shopperProducts
                                                  • diff --git a/docs/interfaces/clientconfig.clientconfiginit.html b/docs/interfaces/clientconfig.clientconfiginit.html index 65e899f2..b1b7438c 100644 --- a/docs/interfaces/clientconfig.clientconfiginit.html +++ b/docs/interfaces/clientconfig.clientconfiginit.html @@ -106,6 +106,7 @@

                                                    Index

                                                    Properties

                                                    • baseUri
                                                    • +
                                                    • fetch
                                                    • fetchOptions
                                                    • headers
                                                    • parameters
                                                    • @@ -125,7 +126,17 @@

                                                      Optional baseUri

                                                      baseUri: undefined | string
                                                      + +
                                                      + +

                                                      Optional fetch

                                                      + +
                                                      @@ -135,7 +146,7 @@

                                                      Optional fetchOptions

                                                      fetchOptions: FetchOptions
                                                    @@ -145,7 +156,7 @@

                                                    Optional headers

                                                    headers: undefined | {}
                                                    @@ -155,7 +166,7 @@

                                                    parameters

                                                    parameters: Params
                                                    @@ -165,7 +176,7 @@

                                                    Optional proxy

                                                    proxy: undefined | string
                                                    @@ -175,7 +186,7 @@

                                                    Optional throwOnBadR
                                                    throwOnBadResponse: undefined | false | true
                                                    @@ -185,7 +196,7 @@

                                                    Optional transformRequest
                                                    transformRequest: undefined | ((data: unknown, headers: {}) => Required<FetchOptions>["body"])
                                                    @@ -239,6 +250,9 @@

                                                    Optional transformRequest
                                                  • shopperOrders
                                                  • +
                                                  • + shopperPayments +
                                                  • shopperProducts
                                                  • @@ -275,6 +289,9 @@

                                                    Optional transformRequest
                                                  • baseUri
                                                  • +
                                                  • + fetch +
                                                  • fetchOptions
                                                  • diff --git a/docs/interfaces/helpers.baseuriparameters-1.html b/docs/interfaces/helpers.baseuriparameters-1.html index 02b91dad..6b176b13 100644 --- a/docs/interfaces/helpers.baseuriparameters-1.html +++ b/docs/interfaces/helpers.baseuriparameters-1.html @@ -160,6 +160,9 @@

                                                    shortCode

                                                  • shopperOrders
                                                  • +
                                                  • + shopperPayments +
                                                  • shopperProducts
                                                  • diff --git a/docs/interfaces/helpers.customparams-1.html b/docs/interfaces/helpers.customparams-1.html index 2447a4b4..a97d251e 100644 --- a/docs/interfaces/helpers.customparams-1.html +++ b/docs/interfaces/helpers.customparams-1.html @@ -200,6 +200,9 @@

                                                    shortCode

                                                  • shopperOrders
                                                  • +
                                                  • + shopperPayments +
                                                  • shopperProducts
                                                  • diff --git a/docs/interfaces/helpers.pathparameters-1.html b/docs/interfaces/helpers.pathparameters-1.html index 8ba776f0..51cbd677 100644 --- a/docs/interfaces/helpers.pathparameters-1.html +++ b/docs/interfaces/helpers.pathparameters-1.html @@ -142,6 +142,9 @@

                                                    Indexable

                                                  • shopperOrders
                                                  • +
                                                  • + shopperPayments +
                                                  • shopperProducts
                                                  • diff --git a/docs/interfaces/helpers.queryparameters-1.html b/docs/interfaces/helpers.queryparameters-1.html index f03f6253..56466e7f 100644 --- a/docs/interfaces/helpers.queryparameters-1.html +++ b/docs/interfaces/helpers.queryparameters-1.html @@ -142,6 +142,9 @@

                                                    Indexable

                                                  • shopperOrders
                                                  • +
                                                  • + shopperPayments +
                                                  • shopperProducts
                                                  • diff --git a/docs/modules/clientconfig.html b/docs/modules/clientconfig.html index 7be8d146..6ef45a70 100644 --- a/docs/modules/clientconfig.html +++ b/docs/modules/clientconfig.html @@ -117,9 +117,14 @@

                                                    FetchFunction

                                                    FetchFunction: (input: RequestInfo, init?: FetchOptions | undefined) => Promise<Response>
                                                    +
                                                    +
                                                    +

                                                    A function that can be used to fetch data from an API

                                                    +
                                                    +

                                                    Type declaration

                                                      @@ -211,6 +216,9 @@

                                                      FetchOptions

                                                    • shopperOrders
                                                    • +
                                                    • + shopperPayments +
                                                    • shopperProducts
                                                    • diff --git a/docs/modules/config.html b/docs/modules/config.html index 42b3f198..f29e2af7 100644 --- a/docs/modules/config.html +++ b/docs/modules/config.html @@ -141,6 +141,9 @@

                                                      Const CUSTOM_API_DEFAUL
                                                    • shopperOrders
                                                    • +
                                                    • + shopperPayments +
                                                    • shopperProducts
                                                    • diff --git a/docs/modules/helpers.html b/docs/modules/helpers.html index f3161c34..cdcac3d6 100644 --- a/docs/modules/helpers.html +++ b/docs/modules/helpers.html @@ -649,13 +649,13 @@

                                                      Returns Promise

                                                      authorizePasswordless

                                                        -
                                                      • authorizePasswordless(options: { credentials: { clientSecret: string }; parameters: { callbackURI?: undefined | string; locale?: undefined | string; mode: string; userid: string; usid?: undefined | string }; slasClient: ShopperLogin<{ clientId: string; organizationId: string; shortCode: string; siteId: string }> }): Promise<Response>
                                                      • +
                                                      • authorizePasswordless(options: { credentials: { clientSecret: string }; parameters: { callbackURI?: undefined | string; email?: undefined | string; firstName?: undefined | string; lastName?: undefined | string; locale?: undefined | string; mode: string; phoneNumber?: undefined | string; registerCustomer?: undefined | false | true; userid: string; usid?: undefined | string }; slasClient: ShopperLogin<{ clientId: string; organizationId: string; shortCode: string; siteId: string }> }): Promise<Response>
                                                      • @@ -667,7 +667,7 @@

                                                        authorizePasswordless

                                                        Parameters

                                                        • -
                                                          options: { credentials: { clientSecret: string }; parameters: { callbackURI?: undefined | string; locale?: undefined | string; mode: string; userid: string; usid?: undefined | string }; slasClient: ShopperLogin<{ clientId: string; organizationId: string; shortCode: string; siteId: string }> }
                                                          +
                                                          options: { credentials: { clientSecret: string }; parameters: { callbackURI?: undefined | string; email?: undefined | string; firstName?: undefined | string; lastName?: undefined | string; locale?: undefined | string; mode: string; phoneNumber?: undefined | string; registerCustomer?: undefined | false | true; userid: string; usid?: undefined | string }; slasClient: ShopperLogin<{ clientId: string; organizationId: string; shortCode: string; siteId: string }> }

                                                          an object containing the options for this method

                                                          @@ -684,7 +684,7 @@
                                                          clientSecret: -
                                                          parameters: { callbackURI?: undefined | string; locale?: undefined | string; mode: string; userid: string; usid?: undefined | string }
                                                          +
                                                          parameters: { callbackURI?: undefined | string; email?: undefined | string; firstName?: undefined | string; lastName?: undefined | string; locale?: undefined | string; mode: string; phoneNumber?: undefined | string; registerCustomer?: undefined | false | true; userid: string; usid?: undefined | string }

                                                          parameters to pass in the API calls.

                                                          @@ -692,6 +692,24 @@
                                                          parameters:
                                                          Optional callbackURI?: undefined | string
                                                        • +
                                                        • +
                                                          Optional email?: undefined | string
                                                          +
                                                          +

                                                          User email

                                                          +
                                                          +
                                                        • +
                                                        • +
                                                          Optional firstName?: undefined | string
                                                          +
                                                          +

                                                          User first name

                                                          +
                                                          +
                                                        • +
                                                        • +
                                                          Optional lastName?: undefined | string
                                                          +
                                                          +

                                                          User last name

                                                          +
                                                          +
                                                        • Optional locale?: undefined | string
                                                          @@ -704,6 +722,22 @@
                                                          mode:
                                                        • +
                                                        • +
                                                          Optional registerCustomer?: undefined | false | true
                                                          +
                                                          +

                                                          flag to indicate whether to create B2C new customer profile. + When set to true, creates a new customer profile in B2C Commerce if one doesn't already exist. + Requires last_name and email body parameters unless user_id is an email address. + Optionally accepts first_name and phone_number body parameters. + If the customer profile doesn't exist, it is created when the TOTP is validated via the passwordless/token endpoint.

                                                          +
                                                          +
                                                        • userid: string
                                                          @@ -897,7 +931,7 @@

                                                          Const encodeSCAPISpecialChar
                                                        • @@ -1008,7 +1042,7 @@

                                                          getPasswordLessAccessToken

                                                        • @@ -1357,7 +1391,7 @@

                                                          logout

                                                        • @@ -1440,7 +1474,7 @@

                                                          refreshAccessToken

                                                        • @@ -1541,6 +1575,9 @@

                                                          Returns Promise shopperOrders

                                                        • +
                                                        • + shopperPayments +
                                                        • shopperProducts
                                                        • diff --git a/docs/modules/responseerror.html b/docs/modules/responseerror.html index b76a6d23..e091bfbb 100644 --- a/docs/modules/responseerror.html +++ b/docs/modules/responseerror.html @@ -128,6 +128,9 @@

                                                          Classes

                                                        • shopperOrders
                                                        • +
                                                        • + shopperPayments +
                                                        • shopperProducts
                                                        • diff --git a/docs/modules/shopperbaskets.html b/docs/modules/shopperbaskets.html index a149867e..b921ec63 100644 --- a/docs/modules/shopperbaskets.html +++ b/docs/modules/shopperbaskets.html @@ -89,12 +89,8 @@

                                                          References

                                                        • CouponItemStatusCodeEnum
                                                        • CreateBasketTaxModeEnum
                                                        • CreateBasketTaxModeEnum
                                                        • -
                                                        • CurrencyCode
                                                        • -
                                                        • CurrencyCode
                                                        • CustomerInfo
                                                        • CustomerInfo
                                                        • -
                                                        • DefaultFallback
                                                        • -
                                                        • DefaultFallback
                                                        • Discount
                                                        • Discount
                                                        • DiscountRequest
                                                        • @@ -111,8 +107,6 @@

                                                          References

                                                        • LocaleCode
                                                        • MergeBasketProductItemMergeModeEnum
                                                        • MergeBasketProductItemMergeModeEnum
                                                        • -
                                                        • NoValue
                                                        • -
                                                        • NoValue
                                                        • OptionItem
                                                        • OptionItem
                                                        • OrderAddress
                                                        • @@ -349,9 +343,7 @@

                                                          Type aliases

                                                        • CouponItem
                                                        • CouponItemStatusCodeEnum
                                                        • CreateBasketTaxModeEnum
                                                        • -
                                                        • CurrencyCode
                                                        • CustomerInfo
                                                        • -
                                                        • DefaultFallback
                                                        • Discount
                                                        • DiscountRequest
                                                        • DiscountRequestTypeEnum
                                                        • @@ -360,7 +352,6 @@

                                                          Type aliases

                                                        • GiftCertificateItem
                                                        • LocaleCode
                                                        • MergeBasketProductItemMergeModeEnum
                                                        • -
                                                        • NoValue
                                                        • OptionItem
                                                        • OrderAddress
                                                        • OrderPaymentCardRequest
                                                        • @@ -558,16 +549,6 @@

                                                          CreateBasketTaxModeEnum

                                                          CreateBasketTaxModeEnum

                                                          Re-exports CreateBasketTaxModeEnum -
                                                          - -

                                                          CurrencyCode

                                                          - Re-exports CurrencyCode -
                                                          -
                                                          - -

                                                          CurrencyCode

                                                          - Re-exports CurrencyCode -

                                                          CustomerInfo

                                                          @@ -578,16 +559,6 @@

                                                          CustomerInfo

                                                          CustomerInfo

                                                          Re-exports CustomerInfo
                                                          -
                                                          - -

                                                          DefaultFallback

                                                          - Re-exports DefaultFallback -
                                                          -
                                                          - -

                                                          DefaultFallback

                                                          - Re-exports DefaultFallback -

                                                          Discount

                                                          @@ -668,16 +639,6 @@

                                                          MergeBasketProductItemMergeModeEnum

                                                          MergeBasketProductItemMergeModeEnum

                                                          Re-exports MergeBasketProductItemMergeModeEnum
                                                          -
                                                          - -

                                                          NoValue

                                                          - Re-exports NoValue -
                                                          -
                                                          - -

                                                          NoValue

                                                          - Re-exports NoValue -

                                                          OptionItem

                                                          @@ -1739,7 +1700,7 @@

                                                          Type aliases

                                                          Basket

                                                          -
                                                          Basket: { adjustedMerchandizeTotalTax?: undefined | number; adjustedShippingTotalTax?: undefined | number; agentBasket?: undefined | false | true; basketId?: undefined | string; billingAddress?: OrderAddress; bonusDiscountLineItems?: Array<BonusDiscountLineItem>; channelType?: BasketChannelTypeEnum; couponItems?: Array<CouponItem>; creationDate?: undefined | string; currency?: CurrencyCode; customerInfo?: CustomerInfo; giftCertificateItems?: Array<GiftCertificateItem>; inventoryReservationExpiry?: undefined | string; lastModified?: undefined | string; merchandizeTotalTax?: undefined | number; orderPriceAdjustments?: Array<PriceAdjustment>; orderTotal?: undefined | number; paymentInstruments?: Array<OrderPaymentInstrument>; productItems?: Array<ProductItem>; productSubTotal?: undefined | number; productTotal?: undefined | number; shipments?: Array<Shipment>; shippingItems?: Array<ShippingItem>; shippingTotal?: undefined | number; shippingTotalTax?: undefined | number; sourceCode?: undefined | string; taxTotal?: undefined | number; taxation?: BasketTaxationEnum } & {}
                                                          +
                                                          Basket: { adjustedMerchandizeTotalTax?: undefined | number; adjustedShippingTotalTax?: undefined | number; agentBasket?: undefined | false | true; basketId?: undefined | string; billingAddress?: OrderAddress; bonusDiscountLineItems?: Array<BonusDiscountLineItem>; channelType?: BasketChannelTypeEnum; couponItems?: Array<CouponItem>; creationDate?: undefined | string; currency?: undefined | string; customerInfo?: CustomerInfo; giftCertificateItems?: Array<GiftCertificateItem>; inventoryReservationExpiry?: undefined | string; lastModified?: undefined | string; merchandizeTotalTax?: undefined | number; orderPriceAdjustments?: Array<PriceAdjustment>; orderTotal?: undefined | number; paymentInstruments?: Array<OrderPaymentInstrument>; productItems?: Array<ProductItem>; productSubTotal?: undefined | number; productTotal?: undefined | number; shipments?: Array<Shipment>; shippingItems?: Array<ShippingItem>; shippingTotal?: undefined | number; shippingTotalTax?: undefined | number; sourceCode?: undefined | string; taxTotal?: undefined | number; taxation?: BasketTaxationEnum } & {}
                                                          -
                                                          - -

                                                          CurrencyCode

                                                          -
                                                          CurrencyCode: NoValue | string
                                                          - -
                                                          -
                                                          -

                                                          CustomerInfo

                                                          @@ -2017,21 +1969,6 @@

                                                          CustomerInfo

                                                        -
                                                        - -

                                                        DefaultFallback

                                                        -
                                                        DefaultFallback: "default"
                                                        - -
                                                        -
                                                        -

                                                        A specialized value indicating the system default values for locales.

                                                        -
                                                        -
                                                        -

                                                        Discount

                                                        @@ -2180,10 +2117,10 @@

                                                        GiftCertificateItem

                                                        LocaleCode

                                                        -
                                                        LocaleCode: DefaultFallback | string
                                                        +
                                                        LocaleCode: string
                                                        @@ -2199,21 +2136,6 @@

                                                        MergeBasketProductItemMergeModeEnum

                                                      -
                                                      - -

                                                      NoValue

                                                      -
                                                      NoValue: "N/A"
                                                      - -
                                                      -
                                                      -

                                                      A specialized value indicating the lack of definition of a currency, for example, if the value of the monetary value of the currency is an undefined number.

                                                      -
                                                      -
                                                      -

                                                      OptionItem

                                                      @@ -4966,6 +4888,9 @@

                                                      Const defaultBaseUri shopperOrders +
                                                    • + shopperPayments +
                                                    • shopperProducts
                                                    • @@ -5039,24 +4964,12 @@

                                                      Const defaultBaseUri CreateBasketTaxModeEnum -
                                                    • - CurrencyCode -
                                                    • -
                                                    • - CurrencyCode -
                                                    • CustomerInfo
                                                    • CustomerInfo
                                                    • -
                                                    • - DefaultFallback -
                                                    • -
                                                    • - DefaultFallback -
                                                    • Discount
                                                    • @@ -5105,12 +5018,6 @@

                                                      Const defaultBaseUri MergeBasketProductItemMergeModeEnum -
                                                    • - NoValue -
                                                    • -
                                                    • - NoValue -
                                                    • OptionItem
                                                    • @@ -5771,15 +5678,9 @@

                                                      Const defaultBaseUri CreateBasketTaxModeEnum -
                                                    • - CurrencyCode -
                                                    • CustomerInfo
                                                    • -
                                                    • - DefaultFallback -
                                                    • Discount
                                                    • @@ -5804,9 +5705,6 @@

                                                      Const defaultBaseUri MergeBasketProductItemMergeModeEnum -
                                                    • - NoValue -
                                                    • OptionItem
                                                    • diff --git a/docs/modules/shopperbaskets.shopperbasketstypes.html b/docs/modules/shopperbaskets.shopperbasketstypes.html index c4a1a476..e022a5a0 100644 --- a/docs/modules/shopperbaskets.shopperbasketstypes.html +++ b/docs/modules/shopperbaskets.shopperbasketstypes.html @@ -84,9 +84,7 @@

                                                      Type aliases

                                                    • CouponItem
                                                    • CouponItemStatusCodeEnum
                                                    • CreateBasketTaxModeEnum
                                                    • -
                                                    • CurrencyCode
                                                    • CustomerInfo
                                                    • -
                                                    • DefaultFallback
                                                    • Discount
                                                    • DiscountRequest
                                                    • DiscountRequestTypeEnum
                                                    • @@ -95,7 +93,6 @@

                                                      Type aliases

                                                    • GiftCertificateItem
                                                    • LocaleCode
                                                    • MergeBasketProductItemMergeModeEnum
                                                    • -
                                                    • NoValue
                                                    • OptionItem
                                                    • OrderAddress
                                                    • OrderPaymentCardRequest
                                                    • @@ -286,33 +283,13 @@

                                                      CreateBasketTaxModeEnum

                                                    -
                                                    - -

                                                    CurrencyCode

                                                    -
                                                    CurrencyCode: ShopperBasketsModelTypes.CurrencyCode
                                                    - -

                                                    CustomerInfo

                                                    CustomerInfo: ShopperBasketsModelTypes.CustomerInfo
                                                    -
                                                    -
                                                    - -

                                                    DefaultFallback

                                                    -
                                                    DefaultFallback: ShopperBasketsModelTypes.DefaultFallback
                                                    -
                                                    @@ -322,7 +299,7 @@

                                                    Discount

                                                    Discount: ShopperBasketsModelTypes.Discount
                                                    @@ -332,7 +309,7 @@

                                                    DiscountRequest

                                                    DiscountRequest: ShopperBasketsModelTypes.DiscountRequest
                                                    @@ -342,7 +319,7 @@

                                                    DiscountRequestTypeEnum

                                                    DiscountRequestTypeEnum: ShopperBasketsModelTypes.DiscountRequestTypeEnum
                                                    @@ -352,7 +329,7 @@

                                                    DiscountTypeEnum

                                                    DiscountTypeEnum: ShopperBasketsModelTypes.DiscountTypeEnum
                                                    @@ -362,7 +339,7 @@

                                                    ErrorResponse

                                                    ErrorResponse: ShopperBasketsModelTypes.ErrorResponse
                                                    @@ -372,7 +349,7 @@

                                                    GiftCertificateItem

                                                    GiftCertificateItem: ShopperBasketsModelTypes.GiftCertificateItem
                                                    @@ -382,7 +359,7 @@

                                                    LocaleCode

                                                    LocaleCode: ShopperBasketsModelTypes.LocaleCode
                                                    @@ -396,23 +373,13 @@

                                                    MergeBasketProductItemMergeModeEnum

                                                  -
                                                  - -

                                                  NoValue

                                                  -
                                                  NoValue: ShopperBasketsModelTypes.NoValue
                                                  - -

                                                  OptionItem

                                                  OptionItem: ShopperBasketsModelTypes.OptionItem
                                                  @@ -422,7 +389,7 @@

                                                  OrderAddress

                                                  OrderAddress: ShopperBasketsModelTypes.OrderAddress
                                                  @@ -432,7 +399,7 @@

                                                  OrderPaymentCardRequest

                                                  OrderPaymentCardRequest: ShopperBasketsModelTypes.OrderPaymentCardRequest
                                                  @@ -442,7 +409,7 @@

                                                  OrderPaymentInstrument

                                                  OrderPaymentInstrument: ShopperBasketsModelTypes.OrderPaymentInstrument
                                                  @@ -452,7 +419,7 @@

                                                  PaymentCard

                                                  PaymentCard: ShopperBasketsModelTypes.PaymentCard
                                                  @@ -462,7 +429,7 @@

                                                  PaymentCardSpec

                                                  PaymentCardSpec: ShopperBasketsModelTypes.PaymentCardSpec
                                                  @@ -472,7 +439,7 @@

                                                  PaymentMethod

                                                  PaymentMethod: ShopperBasketsModelTypes.PaymentMethod
                                                  @@ -482,7 +449,7 @@

                                                  PaymentMethodResult

                                                  PaymentMethodResult: ShopperBasketsModelTypes.PaymentMethodResult
                                                  @@ -492,7 +459,7 @@

                                                  PriceAdjustment

                                                  PriceAdjustment: ShopperBasketsModelTypes.PriceAdjustment
                                                  @@ -502,7 +469,7 @@

                                                  PriceAdjustmentRequest

                                                  PriceAdjustmentRequest: ShopperBasketsModelTypes.PriceAdjustmentRequest
                                                  @@ -512,7 +479,7 @@

                                                  PriceAdjustmentRequestLevelEnum

                                                  PriceAdjustmentRequestLevelEnum: ShopperBasketsModelTypes.PriceAdjustmentRequestLevelEnum
                                                  @@ -522,7 +489,7 @@

                                                  ProductDetailsLink

                                                  ProductDetailsLink: ShopperBasketsModelTypes.ProductDetailsLink
                                                  @@ -532,7 +499,7 @@

                                                  ProductItem

                                                  ProductItem: ShopperBasketsModelTypes.ProductItem
                                                  @@ -542,7 +509,7 @@

                                                  ProductListItemReference

                                                  ProductListItemReference: ShopperBasketsModelTypes.ProductListItemReference
                                                  @@ -552,7 +519,7 @@

                                                  ProductListItemReferenceTypeEnum

                                                  ProductListItemReferenceTypeEnum: ShopperBasketsModelTypes.ProductListItemReferenceTypeEnum
                                                  @@ -562,7 +529,7 @@

                                                  ProductListLink

                                                  ProductListLink: ShopperBasketsModelTypes.ProductListLink
                                                  @@ -572,7 +539,7 @@

                                                  ProductListLinkTypeEnum

                                                  ProductListLinkTypeEnum: ShopperBasketsModelTypes.ProductListLinkTypeEnum
                                                  @@ -582,7 +549,7 @@

                                                  Shipment

                                                  Shipment: ShopperBasketsModelTypes.Shipment
                                                  @@ -592,7 +559,7 @@

                                                  ShipmentShippingStatusEnum

                                                  ShipmentShippingStatusEnum: ShopperBasketsModelTypes.ShipmentShippingStatusEnum
                                                  @@ -602,7 +569,7 @@

                                                  ShippingItem

                                                  ShippingItem: ShopperBasketsModelTypes.ShippingItem
                                                  @@ -612,7 +579,7 @@

                                                  ShippingMethod

                                                  ShippingMethod: ShopperBasketsModelTypes.ShippingMethod
                                                  @@ -622,7 +589,7 @@

                                                  ShippingMethodResult

                                                  ShippingMethodResult: ShopperBasketsModelTypes.ShippingMethodResult
                                                  @@ -632,7 +599,7 @@

                                                  ShippingPromotion

                                                  ShippingPromotion: ShopperBasketsModelTypes.ShippingPromotion
                                                  @@ -662,7 +629,7 @@

                                                  Status

                                                  Status: ShopperBasketsModelTypes.Status
                                                  @@ -672,7 +639,7 @@

                                                  TaxItem

                                                  TaxItem: ShopperBasketsModelTypes.TaxItem
                                                  @@ -682,7 +649,7 @@

                                                  TaxItems

                                                  TaxItems: ShopperBasketsModelTypes.TaxItems
                                                  @@ -692,7 +659,7 @@

                                                  Taxes

                                                  Taxes: ShopperBasketsModelTypes.Taxes
                                                  @@ -1491,6 +1458,9 @@

                                                  updateShippingMethodForShipmentQueryParameters
                                                • shopperOrders
                                                • +
                                                • + shopperPayments +
                                                • shopperProducts
                                                • @@ -1540,15 +1510,9 @@

                                                  updateShippingMethodForShipmentQueryParameters
                                                • CreateBasketTaxModeEnum
                                                • -
                                                • - CurrencyCode -
                                                • CustomerInfo
                                                • -
                                                • - DefaultFallback -
                                                • Discount
                                                • @@ -1573,9 +1537,6 @@

                                                  updateShippingMethodForShipmentQueryParameters
                                                • MergeBasketProductItemMergeModeEnum
                                                • -
                                                • - NoValue -
                                                • OptionItem
                                                • diff --git a/docs/modules/shopperbasketsv2.html b/docs/modules/shopperbasketsv2.html index 8a6a76c0..9a221c6a 100644 --- a/docs/modules/shopperbasketsv2.html +++ b/docs/modules/shopperbasketsv2.html @@ -79,6 +79,8 @@

                                                  References

                                                • BasketChannelTypeEnum
                                                • BasketPaymentInstrumentRequest
                                                • BasketPaymentInstrumentRequest
                                                • +
                                                • BasketProductItem
                                                • +
                                                • BasketProductItem
                                                • BasketTaxationEnum
                                                • BasketTaxationEnum
                                                • BonusDiscountLineItem
                                                • @@ -89,12 +91,8 @@

                                                  References

                                                • CouponItemStatusCodeEnum
                                                • CreateBasketTaxModeEnum
                                                • CreateBasketTaxModeEnum
                                                • -
                                                • CurrencyCode
                                                • -
                                                • CurrencyCode
                                                • CustomerInfo
                                                • CustomerInfo
                                                • -
                                                • DefaultFallback
                                                • -
                                                • DefaultFallback
                                                • Discount
                                                • Discount
                                                • DiscountRequest
                                                • @@ -105,6 +103,10 @@

                                                  References

                                                • DiscountTypeEnum
                                                • ErrorResponse
                                                • ErrorResponse
                                                • +
                                                • GiftCardRequest
                                                • +
                                                • GiftCardRequest
                                                • +
                                                • GiftCardResponse
                                                • +
                                                • GiftCardResponse
                                                • GiftCertificateItem
                                                • GiftCertificateItem
                                                • GroupedTaxItem
                                                • @@ -113,8 +115,6 @@

                                                  References

                                                • LocaleCode
                                                • MergeBasketProductItemMergeModeEnum
                                                • MergeBasketProductItemMergeModeEnum
                                                • -
                                                • NoValue
                                                • -
                                                • NoValue
                                                • OptionItem
                                                • OptionItem
                                                • OrderAddress
                                                • @@ -123,6 +123,12 @@

                                                  References

                                                • OrderPaymentCardRequest
                                                • OrderPaymentInstrument
                                                • OrderPaymentInstrument
                                                • +
                                                • OrderPaymentInstrumentPaymentReference
                                                • +
                                                • OrderPaymentInstrumentPaymentReference
                                                • +
                                                • OrderPaymentInstrumentPaymentReferenceGatewayEnum
                                                • +
                                                • OrderPaymentInstrumentPaymentReferenceGatewayEnum
                                                • +
                                                • OrderPaymentInstrumentPaymentReferenceGatewayProperties
                                                • +
                                                • OrderPaymentInstrumentPaymentReferenceGatewayProperties
                                                • PaymentCard
                                                • PaymentCard
                                                • PaymentCardSpec
                                                • @@ -131,6 +137,12 @@

                                                  References

                                                • PaymentMethod
                                                • PaymentMethodResult
                                                • PaymentMethodResult
                                                • +
                                                • PaymentReferenceRequest
                                                • +
                                                • PaymentReferenceRequest
                                                • +
                                                • PaymentReferenceRequestGatewayEnum
                                                • +
                                                • PaymentReferenceRequestGatewayEnum
                                                • +
                                                • PaymentReferenceRequestGatewayProperties
                                                • +
                                                • PaymentReferenceRequestGatewayProperties
                                                • PriceAdjustment
                                                • PriceAdjustment
                                                • PriceAdjustmentRequest
                                                • @@ -169,6 +181,12 @@

                                                  References

                                                • ShopperBasketsQueryParameters
                                                • ShopperBasketsV2
                                                • ShopperBasketsV2
                                                • +
                                                • ShopperBasketsV2Parameters
                                                • +
                                                • ShopperBasketsV2Parameters
                                                • +
                                                • ShopperBasketsV2PathParameters
                                                • +
                                                • ShopperBasketsV2PathParameters
                                                • +
                                                • ShopperBasketsV2QueryParameters
                                                • +
                                                • ShopperBasketsV2QueryParameters
                                                • Status
                                                • Status
                                                • TaxItem
                                                • @@ -346,32 +364,38 @@

                                                  Type aliases

                                                • Basket
                                                • BasketChannelTypeEnum
                                                • BasketPaymentInstrumentRequest
                                                • +
                                                • BasketProductItem
                                                • BasketTaxationEnum
                                                • BonusDiscountLineItem
                                                • CouponItem
                                                • CouponItemStatusCodeEnum
                                                • CreateBasketTaxModeEnum
                                                • -
                                                • CurrencyCode
                                                • CustomerInfo
                                                • -
                                                • DefaultFallback
                                                • Discount
                                                • DiscountRequest
                                                • DiscountRequestTypeEnum
                                                • DiscountTypeEnum
                                                • ErrorResponse
                                                • +
                                                • GiftCardRequest
                                                • +
                                                • GiftCardResponse
                                                • GiftCertificateItem
                                                • GroupedTaxItem
                                                • LocaleCode
                                                • MergeBasketProductItemMergeModeEnum
                                                • -
                                                • NoValue
                                                • OptionItem
                                                • OrderAddress
                                                • OrderPaymentCardRequest
                                                • OrderPaymentInstrument
                                                • +
                                                • OrderPaymentInstrumentPaymentReference
                                                • +
                                                • OrderPaymentInstrumentPaymentReferenceGatewayEnum
                                                • +
                                                • OrderPaymentInstrumentPaymentReferenceGatewayProperties
                                                • PaymentCard
                                                • PaymentCardSpec
                                                • PaymentMethod
                                                • PaymentMethodResult
                                                • +
                                                • PaymentReferenceRequest
                                                • +
                                                • PaymentReferenceRequestGatewayEnum
                                                • +
                                                • PaymentReferenceRequestGatewayProperties
                                                • PriceAdjustment
                                                • PriceAdjustmentRequest
                                                • PriceAdjustmentRequestLevelEnum
                                                • @@ -390,6 +414,9 @@

                                                  Type aliases

                                                • ShopperBasketsParameters
                                                • ShopperBasketsPathParameters
                                                • ShopperBasketsQueryParameters
                                                • +
                                                • ShopperBasketsV2Parameters
                                                • +
                                                • ShopperBasketsV2PathParameters
                                                • +
                                                • ShopperBasketsV2QueryParameters
                                                • Status
                                                • TaxItem
                                                • TaxItems
                                                • @@ -511,6 +538,16 @@

                                                  BasketPaymentInstrumentRequest

                                                  BasketPaymentInstrumentRequest

                                                  Re-exports BasketPaymentInstrumentRequest +
                                                  + +

                                                  BasketProductItem

                                                  + Re-exports BasketProductItem +
                                                  +
                                                  + +

                                                  BasketProductItem

                                                  + Re-exports BasketProductItem +

                                                  BasketTaxationEnum

                                                  @@ -561,16 +598,6 @@

                                                  CreateBasketTaxModeEnum

                                                  CreateBasketTaxModeEnum

                                                  Re-exports CreateBasketTaxModeEnum
                                                  -
                                                  - -

                                                  CurrencyCode

                                                  - Re-exports CurrencyCode -
                                                  -
                                                  - -

                                                  CurrencyCode

                                                  - Re-exports CurrencyCode -

                                                  CustomerInfo

                                                  @@ -581,16 +608,6 @@

                                                  CustomerInfo

                                                  CustomerInfo

                                                  Re-exports CustomerInfo
                                                  -
                                                  - -

                                                  DefaultFallback

                                                  - Re-exports DefaultFallback -
                                                  -
                                                  - -

                                                  DefaultFallback

                                                  - Re-exports DefaultFallback -

                                                  Discount

                                                  @@ -641,6 +658,26 @@

                                                  ErrorResponse

                                                  ErrorResponse

                                                  Re-exports ErrorResponse
                                                  +
                                                  + +

                                                  GiftCardRequest

                                                  + Re-exports GiftCardRequest +
                                                  +
                                                  + +

                                                  GiftCardRequest

                                                  + Re-exports GiftCardRequest +
                                                  +
                                                  + +

                                                  GiftCardResponse

                                                  + Re-exports GiftCardResponse +
                                                  +
                                                  + +

                                                  GiftCardResponse

                                                  + Re-exports GiftCardResponse +

                                                  GiftCertificateItem

                                                  @@ -681,16 +718,6 @@

                                                  MergeBasketProductItemMergeModeEnum

                                                  MergeBasketProductItemMergeModeEnum

                                                  Re-exports MergeBasketProductItemMergeModeEnum
                                                  -
                                                  - -

                                                  NoValue

                                                  - Re-exports NoValue -
                                                  -
                                                  - -

                                                  NoValue

                                                  - Re-exports NoValue -

                                                  OptionItem

                                                  @@ -731,6 +758,36 @@

                                                  OrderPaymentInstrument

                                                  OrderPaymentInstrument

                                                  Re-exports OrderPaymentInstrument
                                                  +
                                                  + +

                                                  OrderPaymentInstrumentPaymentReference

                                                  + Re-exports OrderPaymentInstrumentPaymentReference +
                                                  +
                                                  + +

                                                  OrderPaymentInstrumentPaymentReference

                                                  + Re-exports OrderPaymentInstrumentPaymentReference +
                                                  +
                                                  + +

                                                  OrderPaymentInstrumentPaymentReferenceGatewayEnum

                                                  + Re-exports OrderPaymentInstrumentPaymentReferenceGatewayEnum +
                                                  +
                                                  + +

                                                  OrderPaymentInstrumentPaymentReferenceGatewayEnum

                                                  + Re-exports OrderPaymentInstrumentPaymentReferenceGatewayEnum +
                                                  +
                                                  + +

                                                  OrderPaymentInstrumentPaymentReferenceGatewayProperties

                                                  + Re-exports OrderPaymentInstrumentPaymentReferenceGatewayProperties +
                                                  +
                                                  + +

                                                  OrderPaymentInstrumentPaymentReferenceGatewayProperties

                                                  + Re-exports OrderPaymentInstrumentPaymentReferenceGatewayProperties +

                                                  PaymentCard

                                                  @@ -771,6 +828,36 @@

                                                  PaymentMethodResult

                                                  PaymentMethodResult

                                                  Re-exports PaymentMethodResult
                                                  +
                                                  + +

                                                  PaymentReferenceRequest

                                                  + Re-exports PaymentReferenceRequest +
                                                  +
                                                  + +

                                                  PaymentReferenceRequest

                                                  + Re-exports PaymentReferenceRequest +
                                                  +
                                                  + +

                                                  PaymentReferenceRequestGatewayEnum

                                                  + Re-exports PaymentReferenceRequestGatewayEnum +
                                                  +
                                                  + +

                                                  PaymentReferenceRequestGatewayEnum

                                                  + Re-exports PaymentReferenceRequestGatewayEnum +
                                                  +
                                                  + +

                                                  PaymentReferenceRequestGatewayProperties

                                                  + Re-exports PaymentReferenceRequestGatewayProperties +
                                                  +
                                                  + +

                                                  PaymentReferenceRequestGatewayProperties

                                                  + Re-exports PaymentReferenceRequestGatewayProperties +

                                                  PriceAdjustment

                                                  @@ -961,6 +1048,36 @@

                                                  ShopperBasketsV2

                                                  ShopperBasketsV2

                                                  Re-exports ShopperBasketsV2
                                                  +
                                                  + +

                                                  ShopperBasketsV2Parameters

                                                  + Re-exports ShopperBasketsV2Parameters +
                                                  +
                                                  + +

                                                  ShopperBasketsV2Parameters

                                                  + Re-exports ShopperBasketsV2Parameters +
                                                  +
                                                  + +

                                                  ShopperBasketsV2PathParameters

                                                  + Re-exports ShopperBasketsV2PathParameters +
                                                  +
                                                  + +

                                                  ShopperBasketsV2PathParameters

                                                  + Re-exports ShopperBasketsV2PathParameters +
                                                  +
                                                  + +

                                                  ShopperBasketsV2QueryParameters

                                                  + Re-exports ShopperBasketsV2QueryParameters +
                                                  +
                                                  + +

                                                  ShopperBasketsV2QueryParameters

                                                  + Re-exports ShopperBasketsV2QueryParameters +

                                                  Status

                                                  @@ -1752,7 +1869,7 @@

                                                  Type aliases

                                                  Basket

                                                  -
                                                  Basket: { adjustedMerchandizeTotalTax?: undefined | number; adjustedShippingTotalTax?: undefined | number; agentBasket?: undefined | false | true; basketId?: undefined | string; billingAddress?: OrderAddress; bonusDiscountLineItems?: Array<BonusDiscountLineItem>; channelType?: BasketChannelTypeEnum; couponItems?: Array<CouponItem>; creationDate?: undefined | string; currency?: CurrencyCode; customerInfo?: CustomerInfo; giftCertificateItems?: Array<GiftCertificateItem>; groupedTaxItems?: Array<GroupedTaxItem>; inventoryReservationExpiry?: undefined | string; lastModified?: undefined | string; merchandizeTotalTax?: undefined | number; orderPriceAdjustments?: Array<PriceAdjustment>; orderTotal?: undefined | number; paymentInstruments?: Array<OrderPaymentInstrument>; productItems?: Array<ProductItem>; productSubTotal?: undefined | number; productTotal?: undefined | number; shipments?: Array<Shipment>; shippingItems?: Array<ShippingItem>; shippingTotal?: undefined | number; shippingTotalTax?: undefined | number; sourceCode?: undefined | string; taxRoundedAtGroup?: undefined | false | true; taxTotal?: undefined | number; taxation?: BasketTaxationEnum; temporaryBasket?: undefined | false | true } & {}
                                                  +
                                                  Basket: { adjustedMerchandizeTotalTax?: undefined | number; adjustedShippingTotalTax?: undefined | number; agentBasket?: undefined | false | true; basketId?: undefined | string; billingAddress?: OrderAddress; bonusDiscountLineItems?: Array<BonusDiscountLineItem>; channelType?: BasketChannelTypeEnum; couponItems?: Array<CouponItem>; creationDate?: undefined | string; currency?: undefined | string; customerInfo?: CustomerInfo; giftCertificateItems?: Array<GiftCertificateItem>; groupedTaxItems?: Array<GroupedTaxItem>; inventoryReservationExpiry?: undefined | string; lastModified?: undefined | string; merchandizeTotalTax?: undefined | number; orderPriceAdjustments?: Array<PriceAdjustment>; orderTotal?: undefined | number; paymentInstruments?: Array<OrderPaymentInstrument>; productItems?: Array<BasketProductItem>; productSubTotal?: undefined | number; productTotal?: undefined | number; shipments?: Array<Shipment>; shippingItems?: Array<ShippingItem>; shippingTotal?: undefined | number; shippingTotalTax?: undefined | number; sourceCode?: undefined | string; taxRoundedAtGroup?: undefined | false | true; taxTotal?: undefined | number; taxation?: BasketTaxationEnum; temporaryBasket?: undefined | false | true } & {}
                                                  -
                                                  - -

                                                  CurrencyCode

                                                  -
                                                  CurrencyCode: NoValue | string
                                                  - -
                                                  -
                                                  -

                                                  CustomerInfo

                                                  @@ -2039,21 +2254,6 @@

                                                  CustomerInfo

                                                  -
                                                  - -

                                                  DefaultFallback

                                                  -
                                                  DefaultFallback: "default"
                                                  - -
                                                  -
                                                  -

                                                  A specialized value indicating the system default values for locales.

                                                  -
                                                  -
                                                  -

                                                  Discount

                                                  @@ -2155,6 +2355,76 @@

                                                  ErrorResponse

                                                  +
                                                  + +

                                                  GiftCardRequest

                                                  +
                                                  GiftCardRequest: { brand: string; cardNumber: string; cvc: string; expirationMonth?: undefined | number; expirationYear?: undefined | number } & {}
                                                  + +
                                                  +
                                                  +
                                                  property
                                                  +

                                                  brand: The gift card type or brand (for example, givex, blackhawk).

                                                  +
                                                    +
                                                  • Max Length: 256
                                                  • +
                                                  +
                                                  +
                                                  property
                                                  +

                                                  cardNumber: The gift card number.

                                                  +
                                                    +
                                                  • Max Length: 40
                                                  • +
                                                  +
                                                  +
                                                  property
                                                  +

                                                  cvc: The card verification code (CVC/CVV) for the gift card.

                                                  +
                                                    +
                                                  • Max Length: 4
                                                  • +
                                                  +
                                                  +
                                                  property
                                                  +

                                                  expirationMonth: The month when the gift card expires.

                                                  +
                                                  +
                                                  property
                                                  +

                                                  expirationYear: The year when the gift card expires.

                                                  +
                                                  +
                                                  +
                                                  +
                                                  +
                                                  + +

                                                  GiftCardResponse

                                                  +
                                                  GiftCardResponse: { brand?: undefined | string; expirationMonth?: undefined | number; expirationYear?: undefined | number; maskedCardNumber?: undefined | string } & {}
                                                  + +
                                                  +
                                                  +
                                                  property
                                                  +

                                                  brand: The gift card brand.

                                                  +
                                                    +
                                                  • Max Length: 256
                                                  • +
                                                  +
                                                  +
                                                  property
                                                  +

                                                  maskedCardNumber: The masked gift card number.

                                                  +
                                                    +
                                                  • Max Length: 40
                                                  • +
                                                  +
                                                  +
                                                  property
                                                  +

                                                  expirationMonth: The month when the gift card expires.

                                                  +
                                                  +
                                                  property
                                                  +

                                                  expirationYear: The year when the gift card expires.

                                                  +
                                                  +
                                                  +
                                                  +

                                                  GiftCertificateItem

                                                  @@ -2222,10 +2492,10 @@

                                                  GroupedTaxItem

                                                  LocaleCode

                                                  -
                                                  LocaleCode: DefaultFallback | string
                                                  +
                                                  LocaleCode: string
                                                  @@ -2241,21 +2511,6 @@

                                                  MergeBasketProductItemMergeModeEnum

                                                -
                                                - -

                                                NoValue

                                                -
                                                NoValue: "N/A"
                                                - -
                                                -
                                                -

                                                A specialized value indicating the lack of definition of a currency, for example, if the value of the monetary value of the currency is an undefined number.

                                                -
                                                -
                                                -

                                                OptionItem

                                                @@ -2495,10 +2750,10 @@

                                                OrderPaymentCardRequest

                                                OrderPaymentInstrument

                                                -
                                                OrderPaymentInstrument: { amount?: undefined | number; authorizationStatus?: Status; bankRoutingNumber?: undefined | string; maskedGiftCertificateCode?: undefined | string; paymentCard?: PaymentCard; paymentInstrumentId?: undefined | string; paymentMethodId?: undefined | string } & {}
                                                +
                                                OrderPaymentInstrument: { amount?: undefined | number; authorizationStatus?: Status; bankRoutingNumber?: undefined | string; giftCard?: GiftCardResponse; maskedGiftCertificateCode?: undefined | string; paymentCard?: PaymentCard; paymentInstrumentId?: undefined | string; paymentMethodId?: undefined | string; paymentReference?: OrderPaymentInstrumentPaymentReference } & {}
                                                @@ -2522,6 +2777,9 @@

                                                OrderPaymentInstrument

                                                paymentCard: The payment card.

                                                property
                                                +

                                                giftCard: The gift card.

                                                +
                                                +
                                                property

                                                paymentInstrumentId: The payment instrument ID. It is read only.

                                                property
                                                @@ -2530,6 +2788,68 @@

                                                OrderPaymentInstrument

                                              • Max Length: 256
                                              +
                                              property
                                              +

                                              paymentReference:

                                              +
                                              + +
                                              + +
                                              + +

                                              OrderPaymentInstrumentPaymentReference

                                              +
                                              OrderPaymentInstrumentPaymentReference: { gateway?: OrderPaymentInstrumentPaymentReferenceGatewayEnum; gatewayProperties?: OrderPaymentInstrumentPaymentReferenceGatewayProperties; paymentReferenceId?: undefined | string } & {}
                                              + +
                                              +
                                              +
                                              property
                                              +

                                              paymentReferenceId: Payment reference identifier. Can be payment intent ID for Stripe, PSP reference for Adyen, PayPal order ID for PayPal, or similar identifier for other payment providers.

                                              +
                                                +
                                              • Max Length: 256
                                              • +
                                              +
                                              +
                                              property
                                              +

                                              gateway: The payment gateway used to process the payment.

                                              +
                                              +
                                              property
                                              +

                                              gatewayProperties:

                                              +
                                              +
                                              +
                                              +
                                              +
                                              + +

                                              OrderPaymentInstrumentPaymentReferenceGatewayEnum

                                              +
                                              OrderPaymentInstrumentPaymentReferenceGatewayEnum: "stripe" | "paypal" | "adyen"
                                              + +
                                              +
                                              + +

                                              OrderPaymentInstrumentPaymentReferenceGatewayProperties

                                              +
                                              OrderPaymentInstrumentPaymentReferenceGatewayProperties: { adyen?: undefined | {}; paypal?: undefined | {}; stripe?: undefined | {} } & {}
                                              + +
                                              +
                                              +
                                              property
                                              +

                                              stripe: # Stripe specific properties. - setupFutureUsage: Indicates that you intend to make future payments with this payment method. - on_session: The payment method is intended to be used for a future payment on the same website session. - off_session: The payment method is intended to be used for a future payment on a different website session. - null: The payment method is not intended to be used for a future payment. - clientSecret: Secret for Stripe client-side payment confirmation. Don't store, log, or expose the client secret to anyone other than the customer, and only use it on pages where TLS is enabled. - type: string - maxLength: 256 - example: "pi_1J4K5L2eZvKYlo2CyZ8K5L6M_secret_abc123"

                                              +
                                              +
                                              property
                                              +

                                              paypal: # PayPal specific properties.

                                              +
                                              +
                                              property
                                              +

                                              adyen: # Adyen specific properties. - adyenError: Error information returned by Adyen if the payment fails. Null on success. - adyenPaymentIntent: The Adyen payment intent object containing payment details and required actions. - resultCode: The result of the payment request (for example, "REDIRECT_SHOPPER", "AUTHORISED", "PENDING", "REFUSED"). - accountID: The Adyen merchant account ID. - adyenPaymentIntentAction: The action object for payment methods requiring additional shopper interaction. - url: The URL for completing the payment (redirect or 3DS authentication). - type: The action type (for example, "redirect", "threeDS2", "voucher"). - method: The HTTP method for the action (for example, "GET", "POST"). - successful: A boolean indicating whether the Adyen operation is successful.

                                              +
                                              @@ -2685,6 +3005,73 @@

                                              PaymentMethodResult

                                            +
                                            + +

                                            PaymentReferenceRequest

                                            +
                                            PaymentReferenceRequest: { gateway?: PaymentReferenceRequestGatewayEnum; gatewayProperties?: PaymentReferenceRequestGatewayProperties; paymentMethodType?: undefined | string; zoneId?: undefined | string } & {}
                                            + +
                                            +
                                            +
                                            property
                                            +

                                            paymentMethodType: Payment Method Type

                                            +
                                              +
                                            • Max Length: 64
                                            • +
                                            +
                                            +
                                            property
                                            +

                                            zoneId: The unique identifier for a Payments zone.

                                            +
                                              +
                                            • Pattern: /^[a-zA-Z0-9\-_]{1,100}$/
                                            • +
                                            • Min Length: 1
                                            • +
                                            • Max Length: 100
                                            • +
                                            +
                                            +
                                            property
                                            +

                                            gateway: The payment gateway used to process the payment.

                                            +
                                            +
                                            property
                                            +

                                            gatewayProperties:

                                            +
                                            +
                                            +
                                            +
                                            +
                                            + +

                                            PaymentReferenceRequestGatewayEnum

                                            +
                                            PaymentReferenceRequestGatewayEnum: "stripe" | "paypal" | "adyen"
                                            + +
                                            +
                                            + +

                                            PaymentReferenceRequestGatewayProperties

                                            +
                                            PaymentReferenceRequestGatewayProperties: { adyen?: undefined | {}; paypal?: undefined | {}; stripe?: undefined | {} } & {}
                                            + +
                                            +
                                            +
                                            property
                                            +

                                            stripe: # Stripe specific properties. - setupFutureUsage: Indicates that you intend to make future payments with this payment method. - on_session: The payment method is intended to be used for a future payment on the same website session. - off_session: The payment method is intended to be used for a future payment on a different website session. - null: The payment method is not intended to be used for a future payment.

                                            +
                                            +
                                            property
                                            +

                                            paypal: # PayPal specific properties. - shippingPreference: Shipping preference for PayPal payment processing. Applicable only for basket payment instruments. - GET_FROM_FILE - NO_SHIPPING - SET_PROVIDED_ADDRESS

                                            +
                                            +
                                            property
                                            +

                                            adyen: # Adyen specific properties.

                                            +
                                            +
                                            +
                                            +

                                            PriceAdjustment

                                            @@ -3207,45 +3594,75 @@

                                            ShippingPromotion

                                            ShopperBasketsParameters

                                            - +
                                            ShopperBasketsParameters: ShopperBasketsV2Parameters
                                            + +
                                            +
                                            + +

                                            ShopperBasketsPathParameters

                                            +
                                            ShopperBasketsPathParameters: ShopperBasketsV2PathParameters
                                            +
                                            +
                                            + +

                                            ShopperBasketsQueryParameters

                                            +
                                            ShopperBasketsQueryParameters: ShopperBasketsV2QueryParameters
                                            + +
                                            +
                                            + +

                                            ShopperBasketsV2Parameters

                                            + +
                                            -

                                            All parameters that are used by ShopperBaskets.

                                            +

                                            All parameters that are used by ShopperBasketsV2.

                                            - -

                                            ShopperBasketsPathParameters

                                            -
                                            ShopperBasketsPathParameters: Partial<addCouponToBasketPathParameters & addGiftCertificateItemToBasketPathParameters & addItemToBasketPathParameters & addPaymentInstrumentToBasketPathParameters & addPriceAdjustmentToBasketPathParameters & addPriceBooksToBasketPathParameters & addTaxesForBasketPathParameters & addTaxesForBasketItemPathParameters & createBasketPathParameters & createShipmentForBasketPathParameters & deleteBasketPathParameters & getBasketPathParameters & getPaymentMethodsForBasketPathParameters & getPriceBooksForBasketPathParameters & getShippingMethodsForShipmentPathParameters & getTaxesFromBasketPathParameters & mergeBasketPathParameters & removeCouponFromBasketPathParameters & removeGiftCertificateItemFromBasketPathParameters & removeItemFromBasketPathParameters & removePaymentInstrumentFromBasketPathParameters & removePriceAdjustmentFromBasketPathParameters & removeShipmentFromBasketPathParameters & transferBasketPathParameters & updateAsAgentBasketPathParameters & updateAsStorefrontBasketPathParameters & updateBasketPathParameters & updateBillingAddressForBasketPathParameters & updateCustomerForBasketPathParameters & updateGiftCertificateItemInBasketPathParameters & updateItemInBasketPathParameters & updateItemsInBasketPathParameters & updatePaymentInstrumentInBasketPathParameters & updatePriceAdjustmentInBasketPathParameters & updateShipmentForBasketPathParameters & updateShippingAddressForShipmentPathParameters & updateShippingMethodForShipmentPathParameters & {}>
                                            + +

                                            ShopperBasketsV2PathParameters

                                            +
                                            ShopperBasketsV2PathParameters: Partial<addCouponToBasketPathParameters & addGiftCertificateItemToBasketPathParameters & addItemToBasketPathParameters & addPaymentInstrumentToBasketPathParameters & addPriceAdjustmentToBasketPathParameters & addPriceBooksToBasketPathParameters & addTaxesForBasketPathParameters & addTaxesForBasketItemPathParameters & createBasketPathParameters & createShipmentForBasketPathParameters & deleteBasketPathParameters & getBasketPathParameters & getPaymentMethodsForBasketPathParameters & getPriceBooksForBasketPathParameters & getShippingMethodsForShipmentPathParameters & getTaxesFromBasketPathParameters & mergeBasketPathParameters & removeCouponFromBasketPathParameters & removeGiftCertificateItemFromBasketPathParameters & removeItemFromBasketPathParameters & removePaymentInstrumentFromBasketPathParameters & removePriceAdjustmentFromBasketPathParameters & removeShipmentFromBasketPathParameters & transferBasketPathParameters & updateAsAgentBasketPathParameters & updateAsStorefrontBasketPathParameters & updateBasketPathParameters & updateBillingAddressForBasketPathParameters & updateCustomerForBasketPathParameters & updateGiftCertificateItemInBasketPathParameters & updateItemInBasketPathParameters & updateItemsInBasketPathParameters & updatePaymentInstrumentInBasketPathParameters & updatePriceAdjustmentInBasketPathParameters & updateShipmentForBasketPathParameters & updateShippingAddressForShipmentPathParameters & updateShippingMethodForShipmentPathParameters & {}>
                                            -

                                            All path parameters that are used by at least one ShopperBaskets method.

                                            +

                                            All path parameters that are used by at least one ShopperBasketsV2 method.

                                            - -

                                            ShopperBasketsQueryParameters

                                            -
                                            ShopperBasketsQueryParameters: Partial<addCouponToBasketQueryParameters & addGiftCertificateItemToBasketQueryParameters & addItemToBasketQueryParameters & addPaymentInstrumentToBasketQueryParameters & addPriceAdjustmentToBasketQueryParameters & addPriceBooksToBasketQueryParameters & addTaxesForBasketQueryParameters & addTaxesForBasketItemQueryParameters & createBasketQueryParameters & createShipmentForBasketQueryParameters & deleteBasketQueryParameters & getBasketQueryParameters & getPaymentMethodsForBasketQueryParameters & getPriceBooksForBasketQueryParameters & getShippingMethodsForShipmentQueryParameters & getTaxesFromBasketQueryParameters & mergeBasketQueryParameters & removeCouponFromBasketQueryParameters & removeGiftCertificateItemFromBasketQueryParameters & removeItemFromBasketQueryParameters & removePaymentInstrumentFromBasketQueryParameters & removePriceAdjustmentFromBasketQueryParameters & removeShipmentFromBasketQueryParameters & transferBasketQueryParameters & updateAsAgentBasketQueryParameters & updateAsStorefrontBasketQueryParameters & updateBasketQueryParameters & updateBillingAddressForBasketQueryParameters & updateCustomerForBasketQueryParameters & updateGiftCertificateItemInBasketQueryParameters & updateItemInBasketQueryParameters & updateItemsInBasketQueryParameters & updatePaymentInstrumentInBasketQueryParameters & updatePriceAdjustmentInBasketQueryParameters & updateShipmentForBasketQueryParameters & updateShippingAddressForShipmentQueryParameters & updateShippingMethodForShipmentQueryParameters & {}>
                                            + +

                                            ShopperBasketsV2QueryParameters

                                            +
                                            ShopperBasketsV2QueryParameters: Partial<addCouponToBasketQueryParameters & addGiftCertificateItemToBasketQueryParameters & addItemToBasketQueryParameters & addPaymentInstrumentToBasketQueryParameters & addPriceAdjustmentToBasketQueryParameters & addPriceBooksToBasketQueryParameters & addTaxesForBasketQueryParameters & addTaxesForBasketItemQueryParameters & createBasketQueryParameters & createShipmentForBasketQueryParameters & deleteBasketQueryParameters & getBasketQueryParameters & getPaymentMethodsForBasketQueryParameters & getPriceBooksForBasketQueryParameters & getShippingMethodsForShipmentQueryParameters & getTaxesFromBasketQueryParameters & mergeBasketQueryParameters & removeCouponFromBasketQueryParameters & removeGiftCertificateItemFromBasketQueryParameters & removeItemFromBasketQueryParameters & removePaymentInstrumentFromBasketQueryParameters & removePriceAdjustmentFromBasketQueryParameters & removeShipmentFromBasketQueryParameters & transferBasketQueryParameters & updateAsAgentBasketQueryParameters & updateAsStorefrontBasketQueryParameters & updateBasketQueryParameters & updateBillingAddressForBasketQueryParameters & updateCustomerForBasketQueryParameters & updateGiftCertificateItemInBasketQueryParameters & updateItemInBasketQueryParameters & updateItemsInBasketQueryParameters & updatePaymentInstrumentInBasketQueryParameters & updatePriceAdjustmentInBasketQueryParameters & updateShipmentForBasketQueryParameters & updateShippingAddressForShipmentQueryParameters & updateShippingMethodForShipmentQueryParameters & {}>
                                            -

                                            All query parameters that are used by at least one ShopperBaskets method.

                                            +

                                            All query parameters that are used by at least one ShopperBasketsV2 method.

                                            @@ -3665,7 +4082,7 @@

                                            createBasketPathParameters

                                            createBasketPathParameters: { organizationId: string }
                                            @@ -3680,7 +4097,7 @@
                                            organizationId:

                                            createBasketQueryParameters

                                            -
                                            createBasketQueryParameters: { locale?: LocaleCode; siteId: string; taxMode?: "internal" | "external"; temporary?: undefined | false | true }
                                            +
                                            createBasketQueryParameters: { locale?: LocaleCode; populateCustomerDetails?: undefined | false | true; siteId: string; taxMode?: "internal" | "external"; temporary?: undefined | false | true }
                                            +
                                            + +

                                            BasketProductItem

                                            +
                                            BasketProductItem: ShopperBasketsV2ModelTypes.BasketProductItem
                                            + +

                                            BasketTaxationEnum

                                            @@ -253,7 +269,7 @@

                                            BonusDiscountLineItem

                                            BonusDiscountLineItem: ShopperBasketsV2ModelTypes.BonusDiscountLineItem
                                            @@ -263,7 +279,7 @@

                                            CouponItem

                                            CouponItem: ShopperBasketsV2ModelTypes.CouponItem
                                            @@ -273,7 +289,7 @@

                                            CouponItemStatusCodeEnum

                                            CouponItemStatusCodeEnum: ShopperBasketsV2ModelTypes.CouponItemStatusCodeEnum
                                            @@ -287,16 +303,6 @@

                                            CreateBasketTaxModeEnum

                                          -
                                          - -

                                          CurrencyCode

                                          -
                                          CurrencyCode: ShopperBasketsV2ModelTypes.CurrencyCode
                                          - -

                                          CustomerInfo

                                          @@ -307,23 +313,13 @@

                                          CustomerInfo

                                        -
                                        - -

                                        DefaultFallback

                                        -
                                        DefaultFallback: ShopperBasketsV2ModelTypes.DefaultFallback
                                        - -

                                        Discount

                                        Discount: ShopperBasketsV2ModelTypes.Discount
                                        @@ -333,7 +329,7 @@

                                        DiscountRequest

                                        DiscountRequest: ShopperBasketsV2ModelTypes.DiscountRequest
                                        @@ -343,7 +339,7 @@

                                        DiscountRequestTypeEnum

                                        DiscountRequestTypeEnum: ShopperBasketsV2ModelTypes.DiscountRequestTypeEnum
                                        @@ -353,7 +349,7 @@

                                        DiscountTypeEnum

                                        DiscountTypeEnum: ShopperBasketsV2ModelTypes.DiscountTypeEnum
                                        @@ -361,19 +357,39 @@

                                        DiscountTypeEnum

                                        ErrorResponse

                                        ErrorResponse: ShopperBasketsV2ModelTypes.ErrorResponse
                                        + + +
                                        + +

                                        GiftCardRequest

                                        +
                                        GiftCardRequest: ShopperBasketsV2ModelTypes.GiftCardRequest
                                        +
                                        + +

                                        GiftCardResponse

                                        +
                                        GiftCardResponse: ShopperBasketsV2ModelTypes.GiftCardResponse
                                        + +

                                        GiftCertificateItem

                                        GiftCertificateItem: ShopperBasketsV2ModelTypes.GiftCertificateItem
                                        @@ -383,7 +399,7 @@

                                        GroupedTaxItem

                                        GroupedTaxItem: ShopperBasketsV2ModelTypes.GroupedTaxItem
                                        @@ -393,7 +409,7 @@

                                        LocaleCode

                                        LocaleCode: ShopperBasketsV2ModelTypes.LocaleCode
                                        @@ -407,16 +423,6 @@

                                        MergeBasketProductItemMergeModeEnum

                                      -
                                      - -

                                      NoValue

                                      -
                                      NoValue: ShopperBasketsV2ModelTypes.NoValue
                                      - -

                                      OptionItem

                                      @@ -457,13 +463,43 @@

                                      OrderPaymentInstrument

                                    +
                                    + +

                                    OrderPaymentInstrumentPaymentReference

                                    +
                                    OrderPaymentInstrumentPaymentReference: ShopperBasketsV2ModelTypes.OrderPaymentInstrumentPaymentReference
                                    + +
                                    +
                                    + +

                                    OrderPaymentInstrumentPaymentReferenceGatewayEnum

                                    +
                                    OrderPaymentInstrumentPaymentReferenceGatewayEnum: ShopperBasketsV2ModelTypes.OrderPaymentInstrumentPaymentReferenceGatewayEnum
                                    + +
                                    +
                                    + +

                                    OrderPaymentInstrumentPaymentReferenceGatewayProperties

                                    +
                                    OrderPaymentInstrumentPaymentReferenceGatewayProperties: ShopperBasketsV2ModelTypes.OrderPaymentInstrumentPaymentReferenceGatewayProperties
                                    + +

                                    PaymentCard

                                    PaymentCard: ShopperBasketsV2ModelTypes.PaymentCard
                                    @@ -473,7 +509,7 @@

                                    PaymentCardSpec

                                    PaymentCardSpec: ShopperBasketsV2ModelTypes.PaymentCardSpec
                                    @@ -483,7 +519,7 @@

                                    PaymentMethod

                                    PaymentMethod: ShopperBasketsV2ModelTypes.PaymentMethod
                                    @@ -493,7 +529,37 @@

                                    PaymentMethodResult

                                    PaymentMethodResult: ShopperBasketsV2ModelTypes.PaymentMethodResult
                                    + +
                                    + +

                                    PaymentReferenceRequest

                                    +
                                    PaymentReferenceRequest: ShopperBasketsV2ModelTypes.PaymentReferenceRequest
                                    + +
                                    +
                                    + +

                                    PaymentReferenceRequestGatewayEnum

                                    +
                                    PaymentReferenceRequestGatewayEnum: ShopperBasketsV2ModelTypes.PaymentReferenceRequestGatewayEnum
                                    + +
                                    +
                                    + +

                                    PaymentReferenceRequestGatewayProperties

                                    +
                                    PaymentReferenceRequestGatewayProperties: ShopperBasketsV2ModelTypes.PaymentReferenceRequestGatewayProperties
                                    +
                                    @@ -503,7 +569,7 @@

                                    PriceAdjustment

                                    PriceAdjustment: ShopperBasketsV2ModelTypes.PriceAdjustment
                                    @@ -513,7 +579,7 @@

                                    PriceAdjustmentRequest

                                    PriceAdjustmentRequest: ShopperBasketsV2ModelTypes.PriceAdjustmentRequest
                                    @@ -523,7 +589,7 @@

                                    PriceAdjustmentRequestLevelEnum

                                    PriceAdjustmentRequestLevelEnum: ShopperBasketsV2ModelTypes.PriceAdjustmentRequestLevelEnum
                                    @@ -533,7 +599,7 @@

                                    ProductDetailsLink

                                    ProductDetailsLink: ShopperBasketsV2ModelTypes.ProductDetailsLink
                                    @@ -543,7 +609,7 @@

                                    ProductItem

                                    ProductItem: ShopperBasketsV2ModelTypes.ProductItem
                                    @@ -553,7 +619,7 @@

                                    ProductListItemReference

                                    ProductListItemReference: ShopperBasketsV2ModelTypes.ProductListItemReference
                                    @@ -563,7 +629,7 @@

                                    ProductListItemReferenceTypeEnum

                                    ProductListItemReferenceTypeEnum: ShopperBasketsV2ModelTypes.ProductListItemReferenceTypeEnum
                                    @@ -573,7 +639,7 @@

                                    ProductListLink

                                    ProductListLink: ShopperBasketsV2ModelTypes.ProductListLink
                                    @@ -583,7 +649,7 @@

                                    ProductListLinkTypeEnum

                                    ProductListLinkTypeEnum: ShopperBasketsV2ModelTypes.ProductListLinkTypeEnum
                                    @@ -593,7 +659,7 @@

                                    Shipment

                                    Shipment: ShopperBasketsV2ModelTypes.Shipment
                                    @@ -603,7 +669,7 @@

                                    ShipmentShippingStatusEnum

                                    ShipmentShippingStatusEnum: ShopperBasketsV2ModelTypes.ShipmentShippingStatusEnum
                                    @@ -613,7 +679,7 @@

                                    ShippingItem

                                    ShippingItem: ShopperBasketsV2ModelTypes.ShippingItem
                                    @@ -623,7 +689,7 @@

                                    ShippingMethod

                                    ShippingMethod: ShopperBasketsV2ModelTypes.ShippingMethod
                                    @@ -633,7 +699,7 @@

                                    ShippingMethodResult

                                    ShippingMethodResult: ShopperBasketsV2ModelTypes.ShippingMethodResult
                                    @@ -643,14 +709,14 @@

                                    ShippingPromotion

                                    ShippingPromotion: ShopperBasketsV2ModelTypes.ShippingPromotion
                                    - -

                                    ShopperBasketsPathParameters

                                    -
                                    ShopperBasketsPathParameters: ShopperBasketsV2ApiTypes.ShopperBasketsPathParameters
                                    + +

                                    ShopperBasketsV2PathParameters

                                    +
                                    ShopperBasketsV2PathParameters: ShopperBasketsV2ApiTypes.ShopperBasketsV2PathParameters
                                    - -

                                    ShopperBasketsQueryParameters

                                    -
                                    ShopperBasketsQueryParameters: ShopperBasketsV2ApiTypes.ShopperBasketsQueryParameters
                                    + +

                                    ShopperBasketsV2QueryParameters

                                    +
                                    ShopperBasketsV2QueryParameters: ShopperBasketsV2ApiTypes.ShopperBasketsV2QueryParameters
                                    @@ -683,7 +749,7 @@

                                    TaxItem

                                    TaxItem: ShopperBasketsV2ModelTypes.TaxItem
                                    @@ -693,7 +759,7 @@

                                    TaxItems

                                    TaxItems: ShopperBasketsV2ModelTypes.TaxItems
                                    @@ -703,7 +769,7 @@

                                    Taxes

                                    Taxes: ShopperBasketsV2ModelTypes.Taxes
                                    @@ -1502,6 +1568,9 @@

                                    updateShippingMethodForShipmentQueryParameters
                                  • shopperOrders
                                  • +
                                  • + shopperPayments +
                                  • shopperProducts
                                  • @@ -1536,6 +1605,9 @@

                                    updateShippingMethodForShipmentQueryParameters
                                  • BasketPaymentInstrumentRequest
                                  • +
                                  • + BasketProductItem +
                                  • BasketTaxationEnum
                                  • @@ -1551,15 +1623,9 @@

                                    updateShippingMethodForShipmentQueryParameters
                                  • CreateBasketTaxModeEnum
                                  • -
                                  • - CurrencyCode -
                                  • CustomerInfo
                                  • -
                                  • - DefaultFallback -
                                  • Discount
                                  • @@ -1575,6 +1641,12 @@

                                    updateShippingMethodForShipmentQueryParameters
                                  • ErrorResponse
                                  • +
                                  • + GiftCardRequest +
                                  • +
                                  • + GiftCardResponse +
                                  • GiftCertificateItem
                                  • @@ -1587,9 +1659,6 @@

                                    updateShippingMethodForShipmentQueryParameters
                                  • MergeBasketProductItemMergeModeEnum
                                  • -
                                  • - NoValue -
                                  • OptionItem
                                  • @@ -1602,6 +1671,15 @@

                                    updateShippingMethodForShipmentQueryParameters
                                  • OrderPaymentInstrument
                                  • +
                                  • + OrderPaymentInstrumentPaymentReference +
                                  • +
                                  • + OrderPaymentInstrumentPaymentReferenceGatewayEnum +
                                  • +
                                  • + OrderPaymentInstrumentPaymentReferenceGatewayProperties +
                                  • PaymentCard
                                  • @@ -1614,6 +1692,15 @@

                                    updateShippingMethodForShipmentQueryParameters
                                  • PaymentMethodResult
                                  • +
                                  • + PaymentReferenceRequest +
                                  • +
                                  • + PaymentReferenceRequestGatewayEnum +
                                  • +
                                  • + PaymentReferenceRequestGatewayProperties +
                                  • PriceAdjustment
                                  • @@ -1660,10 +1747,10 @@

                                    updateShippingMethodForShipmentQueryParameters ShippingPromotion

                                  • - ShopperBasketsPathParameters + ShopperBasketsV2PathParameters
                                  • - ShopperBasketsQueryParameters + ShopperBasketsV2QueryParameters
                                  • Status diff --git a/docs/modules/shopperconfigurations.html b/docs/modules/shopperconfigurations.html index 1e929a6b..9bd37bc9 100644 --- a/docs/modules/shopperconfigurations.html +++ b/docs/modules/shopperconfigurations.html @@ -461,6 +461,9 @@

                                    Const defaultBaseUri shopperOrders

                                  • +
                                  • + shopperPayments +
                                  • shopperProducts
                                  • diff --git a/docs/modules/shopperconfigurations.shopperconfigurationstypes.html b/docs/modules/shopperconfigurations.shopperconfigurationstypes.html index 32730fd4..811991b5 100644 --- a/docs/modules/shopperconfigurations.shopperconfigurationstypes.html +++ b/docs/modules/shopperconfigurations.shopperconfigurationstypes.html @@ -215,6 +215,9 @@

                                    getConfigurationsQueryParameters

                                  • shopperOrders
                                  • +
                                  • + shopperPayments +
                                  • shopperProducts
                                  • diff --git a/docs/modules/shopperconsents.html b/docs/modules/shopperconsents.html index e0bd4260..2bbc6333 100644 --- a/docs/modules/shopperconsents.html +++ b/docs/modules/shopperconsents.html @@ -73,18 +73,34 @@

                                    Index

                                    References

                                    @@ -123,21 +143,31 @@

                                    Classes

                                    Type aliases

                                    @@ -151,6 +181,16 @@

                                    Variables

                                    References

                                    +
                                    + +

                                    ChannelType

                                    + Re-exports ChannelType +
                                    +
                                    + +

                                    ChannelType

                                    + Re-exports ChannelType +

                                    ConsentStatus

                                    @@ -171,6 +211,56 @@

                                    ConsentSubscription

                                    ConsentSubscription

                                    Re-exports ConsentSubscription
                                    +
                                    + +

                                    ConsentSubscriptionBulkRequest

                                    + Re-exports ConsentSubscriptionBulkRequest +
                                    +
                                    + +

                                    ConsentSubscriptionBulkRequest

                                    + Re-exports ConsentSubscriptionBulkRequest +
                                    +
                                    + +

                                    ConsentSubscriptionBulkResponse

                                    + Re-exports ConsentSubscriptionBulkResponse +
                                    +
                                    + +

                                    ConsentSubscriptionBulkResponse

                                    + Re-exports ConsentSubscriptionBulkResponse +
                                    +
                                    + +

                                    ConsentSubscriptionConsentTypeEnum

                                    + Re-exports ConsentSubscriptionConsentTypeEnum +
                                    +
                                    + +

                                    ConsentSubscriptionConsentTypeEnum

                                    + Re-exports ConsentSubscriptionConsentTypeEnum +
                                    +
                                    + +

                                    ConsentSubscriptionDefaultStatusEnum

                                    + Re-exports ConsentSubscriptionDefaultStatusEnum +
                                    +
                                    + +

                                    ConsentSubscriptionDefaultStatusEnum

                                    + Re-exports ConsentSubscriptionDefaultStatusEnum +
                                    +
                                    + +

                                    ConsentSubscriptionError

                                    + Re-exports ConsentSubscriptionError +
                                    +
                                    + +

                                    ConsentSubscriptionError

                                    + Re-exports ConsentSubscriptionError +

                                    ConsentSubscriptionRequest

                                    @@ -192,14 +282,24 @@

                                    ConsentSubscriptionResponse

                                    Re-exports ConsentSubscriptionResponse
                                    - -

                                    DefaultFallback

                                    - Re-exports DefaultFallback + +

                                    ConsentSubscriptionResult

                                    + Re-exports ConsentSubscriptionResult +
                                    +
                                    + +

                                    ConsentSubscriptionResult

                                    + Re-exports ConsentSubscriptionResult +
                                    +
                                    + +

                                    ConsentSubscriptionUpdateResponse

                                    + Re-exports ConsentSubscriptionUpdateResponse
                                    - -

                                    DefaultFallback

                                    - Re-exports DefaultFallback + +

                                    ConsentSubscriptionUpdateResponse

                                    + Re-exports ConsentSubscriptionUpdateResponse
                                    @@ -211,6 +311,16 @@

                                    ErrorResponse

                                    ErrorResponse

                                    Re-exports ErrorResponse
                                    +
                                    + +

                                    GetSubscriptionsExpandEnum

                                    + Re-exports GetSubscriptionsExpandEnum +
                                    +
                                    + +

                                    GetSubscriptionsExpandEnum

                                    + Re-exports GetSubscriptionsExpandEnum +

                                    LocaleCode

                                    @@ -262,14 +372,14 @@

                                    ShopperConsentsQueryParameters

                                    Re-exports ShopperConsentsQueryParameters
                                    - -

                                    SubscriptionChannel

                                    - Re-exports SubscriptionChannel + +

                                    SubscriptionStatusEntry

                                    + Re-exports SubscriptionStatusEntry
                                    - -

                                    SubscriptionChannel

                                    - Re-exports SubscriptionChannel + +

                                    SubscriptionStatusEntry

                                    + Re-exports SubscriptionStatusEntry
                                    @@ -316,9 +426,39 @@

                                    updateSubscriptionQueryParameters

                                    updateSubscriptionQueryParameters

                                    Re-exports updateSubscriptionQueryParameters
                                    +
                                    + +

                                    updateSubscriptionsPathParameters

                                    + Re-exports updateSubscriptionsPathParameters +
                                    +
                                    + +

                                    updateSubscriptionsPathParameters

                                    + Re-exports updateSubscriptionsPathParameters +
                                    +
                                    + +

                                    updateSubscriptionsQueryParameters

                                    + Re-exports updateSubscriptionsQueryParameters +
                                    +
                                    + +

                                    updateSubscriptionsQueryParameters

                                    + Re-exports updateSubscriptionsQueryParameters +

                                    Type aliases

                                    +
                                    + +

                                    ChannelType

                                    +
                                    ChannelType: "email" | "sms" | "whatsapp"
                                    + +

                                    ConsentStatus

                                    @@ -337,10 +477,10 @@

                                    ConsentStatus

                                    ConsentSubscription

                                    -
                                    ConsentSubscription: { channel: SubscriptionChannel; consentId?: undefined | string; contactPointValue?: undefined | string; status?: ConsentStatus; subscriptionId: string; subtitle?: undefined | string; tags?: Array<string>; title?: undefined | string } & {}
                                    +
                                    ConsentSubscription: { channels: Array<ChannelType>; consentRequired?: undefined | false | true; consentStatus?: Array<SubscriptionStatusEntry>; consentType?: ConsentSubscriptionConsentTypeEnum; defaultStatus?: ConsentSubscriptionDefaultStatusEnum; subscriptionId: string; subtitle?: undefined | string; tags?: Array<string>; title?: undefined | string } & {}
                                    @@ -354,41 +494,119 @@

                                    ConsentSubscription

                                  property
                                  -

                                  consentId: Identifier for the shopper communication subscription consent -- formatted as <contactPointValue>#<communicationSubscriptionChannelId>

                                  +

                                  channels:

                                  +
                                  +
                                  property
                                  +

                                  consentStatus: Array of subscription status entries for different channels

                                  +
                                  +
                                  property
                                  +

                                  title: The localized title of the subscription for shopper displays

                                    -
                                  • Min Length: 19
                                  • -
                                  • Max Length: 339
                                  • +
                                  • Min Length: 1
                                  • +
                                  • Max Length: 255
                                  property
                                  -

                                  contactPointValue: The customer's contact point value, polymorphic based on the channel type as below: - sms - Subject's phone number in E.164 format, ex: +1 424 535 3546 - email - Subject's email address in RFC 5321 & RFC 5322 format, ex: jack.sparrow@salesforce.com

                                  +

                                  subtitle: The localized subtitle of the subscription for shopper displays, may contain HTML markup

                                    -
                                  • Min Length: 3
                                  • -
                                  • Max Length: 320
                                  • +
                                  • Min Length: 1
                                  • +
                                  • Max Length: 2000
                                  property
                                  -

                                  channel:

                                  +

                                  tags:

                                  property
                                  -

                                  status:

                                  +

                                  consentType: Type of consent subscription

                                  +
                                  +
                                  property
                                  +

                                  consentRequired: Whether this subscription is mandatory for the user

                                  +
                                  +
                                  property
                                  +

                                  defaultStatus: Default consent status for this subscription

                                  +
                                  + +
                                  + +
                                  + +

                                  ConsentSubscriptionBulkRequest

                                  +
                                  ConsentSubscriptionBulkRequest: { subscriptions: Array<ConsentSubscriptionRequest> } & {}
                                  + +
                                  +
                                  +
                                  property
                                  +

                                  subscriptions: Array of subscription consent updates to process

                                  +
                                  +
                                  +
                                  +
                                  + +

                                  ConsentSubscriptionBulkResponse

                                  +
                                  ConsentSubscriptionBulkResponse: { results: Array<ConsentSubscriptionResult> } & {}
                                  + +
                                  +
                                  property
                                  -

                                  title:

                                  +

                                  results: Results for each subscription update request

                                  +
                                  +
                                  +
                                  +
                                  +
                                  + +

                                  ConsentSubscriptionConsentTypeEnum

                                  +
                                  ConsentSubscriptionConsentTypeEnum: "marketing" | "legal"
                                  + +
                                  +
                                  + +

                                  ConsentSubscriptionDefaultStatusEnum

                                  +
                                  ConsentSubscriptionDefaultStatusEnum: "opt_in" | "opt_out"
                                  + +
                                  +
                                  + +

                                  ConsentSubscriptionError

                                  +
                                  ConsentSubscriptionError: { code: string; details?: undefined | object; message: string } & {}
                                  + +
                                  +
                                  +
                                  property
                                  +

                                  code: Error code indicating the type of failure

                                    -
                                  • Min Length: 1
                                  • -
                                  • Max Length: 255
                                  • +
                                  • Max Length: 100
                                  property
                                  -

                                  subtitle:

                                  +

                                  message: Human-readable error message

                                    -
                                  • Min Length: 1
                                  • -
                                  • Max Length: 255
                                  • +
                                  • Max Length: 500
                                  property
                                  -

                                  tags:

                                  +

                                  details: Additional error details

                                  @@ -396,7 +614,7 @@

                                  ConsentSubscription

                                  ConsentSubscriptionRequest

                                  -
                                  ConsentSubscriptionRequest: { channel: SubscriptionChannel; contactPointValue: string; status: ConsentStatus; subscriptionId: string } & {}
                                  +
                                  ConsentSubscriptionRequest: { channel: ChannelType; contactPointValue: string; status: ConsentStatus; subscriptionId: string } & {}

                                - -

                                DefaultFallback

                                -
                                DefaultFallback: "default"
                                + +

                                ConsentSubscriptionResult

                                +
                                ConsentSubscriptionResult: { channel: ChannelType; contactPointValue: string; error?: ConsentSubscriptionError; status: ConsentStatus; subscriptionId: string; success: boolean } & {}
                                -
                                -

                                A specialized value indicating the system default values for locales.

                                -
                                +
                                +
                                property
                                +

                                subscriptionId: Identifier for the communication subscription

                                +
                                  +
                                • Pattern: /^[a-z0-9]+(?:-[a-z0-9]+)*$/
                                • +
                                • Min Length: 1
                                • +
                                • Max Length: 255
                                • +
                                +
                                +
                                property
                                +

                                channel:

                                +
                                +
                                property
                                +

                                contactPointValue: The customer's contact point value, polymorphic based on the channel type as below: - sms - Subject's phone number in E.164 format, ex: +1 424 535 3546 - email - Subject's email address in RFC 5321 & RFC 5322 format, ex: jack.sparrow@salesforce.com

                                +
                                  +
                                • Min Length: 3
                                • +
                                • Max Length: 320
                                • +
                                +
                                +
                                property
                                +

                                status:

                                +
                                +
                                property
                                +

                                success: Whether the subscription update was successful

                                +
                                +
                                property
                                +

                                error:

                                +
                                +
                                +
                                +
                                +
                                + +

                                ConsentSubscriptionUpdateResponse

                                +
                                ConsentSubscriptionUpdateResponse: { channel: ChannelType; contactPointValue: string; status: ConsentStatus; subscriptionId: string } & {}
                                + +
                                +
                                +
                                property
                                +

                                subscriptionId: Identifier for the communication subscription

                                +
                                  +
                                • Pattern: /^[a-z0-9]+(?:-[a-z0-9]+)*$/
                                • +
                                • Min Length: 1
                                • +
                                • Max Length: 255
                                • +
                                +
                                +
                                property
                                +

                                channel:

                                +
                                +
                                property
                                +

                                contactPointValue: The customer's contact point value, polymorphic based on the channel type as below: - sms - Subject's phone number in E.164 format, ex: +1 424 535 3546 - email - Subject's email address in RFC 5321 & RFC 5322 format, ex: jack.sparrow@salesforce.com

                                +
                                  +
                                • Min Length: 3
                                • +
                                • Max Length: 320
                                • +
                                +
                                +
                                property
                                +

                                status:

                                +
                                +
                                @@ -495,13 +774,23 @@

                                ErrorResponse

                                +
                                + +

                                GetSubscriptionsExpandEnum

                                +
                                GetSubscriptionsExpandEnum: "consentStatus"
                                + +

                                LocaleCode

                                -
                                LocaleCode: DefaultFallback | string
                                +
                                LocaleCode: string
                                @@ -513,7 +802,7 @@

                                ShopperConsentsParameters

                                @@ -525,10 +814,10 @@

                                ShopperConsentsParameters

                                ShopperConsentsPathParameters

                                -
                                ShopperConsentsPathParameters: Partial<getSubscriptionsPathParameters & updateSubscriptionPathParameters & {}>
                                +
                                @@ -540,10 +829,10 @@

                                ShopperConsentsPathParameters

                                ShopperConsentsQueryParameters

                                -
                                ShopperConsentsQueryParameters: Partial<getSubscriptionsQueryParameters & updateSubscriptionQueryParameters & {}>
                                +
                                @@ -553,14 +842,31 @@

                                ShopperConsentsQueryParameters

                                - -

                                SubscriptionChannel

                                -
                                SubscriptionChannel: "email" | "sms" | "push_notification" | "in_app" | "postal_mail" | "whatsapp"
                                + +

                                SubscriptionStatusEntry

                                +
                                SubscriptionStatusEntry: { channel: ChannelType; contactPointValue: string; status: ConsentStatus } & {}
                                +
                                +
                                +
                                property
                                +

                                channel:

                                +
                                +
                                property
                                +

                                contactPointValue: The customer's contact point value, polymorphic based on the channel type as below: - sms - Subject's phone number in E.164 format, ex: +1 424 535 3546 - email - Subject's email address in RFC 5321 & RFC 5322 format, ex: jack.sparrow@salesforce.com

                                +
                                  +
                                • Min Length: 3
                                • +
                                • Max Length: 320
                                • +
                                +
                                +
                                property
                                +

                                status:

                                +
                                +
                                +
                                @@ -568,7 +874,7 @@

                                getSubscriptionsPathParameters

                                getSubscriptionsPathParameters: { organizationId: string }
                                @@ -583,15 +889,18 @@
                                organizationId:

                                getSubscriptionsQueryParameters

                                -
                                getSubscriptionsQueryParameters: { locale?: LocaleCode; siteId: string; tags?: Array<string> }
                                +
                                getSubscriptionsQueryParameters: { expand?: Array<GetSubscriptionsExpandEnum>; locale?: LocaleCode; siteId: string; tags?: Array<string> }

                                Type declaration

                                  +
                                • +
                                  Optional expand?: Array<GetSubscriptionsExpandEnum>
                                  +
                                • Optional locale?: LocaleCode
                                • @@ -610,7 +919,7 @@

                                  updateSubscriptionPathParameters

                                  updateSubscriptionPathParameters: { organizationId: string }
                                  @@ -628,7 +937,46 @@

                                  updateSubscriptionQueryParameters

                                  updateSubscriptionQueryParameters: { locale?: LocaleCode; siteId: string }
                                  +
                                  +

                                  Type declaration

                                  +
                                    +
                                  • +
                                    Optional locale?: LocaleCode
                                    +
                                  • +
                                  • +
                                    siteId: string
                                    +
                                  • +
                                  +
                                  +
                                +
                                + +

                                updateSubscriptionsPathParameters

                                +
                                updateSubscriptionsPathParameters: { organizationId: string }
                                + +
                                +

                                Type declaration

                                +
                                  +
                                • +
                                  organizationId: string
                                  +
                                • +
                                +
                                +
                                +
                                + +

                                updateSubscriptionsQueryParameters

                                +
                                updateSubscriptionsQueryParameters: { locale?: LocaleCode; siteId: string }
                                +
                                @@ -711,6 +1059,9 @@

                                Const defaultBaseUri shopperOrders

                              • +
                              • + shopperPayments +
                              • shopperProducts
                              • @@ -736,6 +1087,12 @@

                                Const defaultBaseUri

                                @@ -97,13 +107,23 @@

                                Type aliases

                                Type aliases

                                +
                                + +

                                ChannelType

                                +
                                ChannelType: ShopperConsentsModelTypes.ChannelType
                                + +

                                ConsentStatus

                                ConsentStatus: ShopperConsentsModelTypes.ConsentStatus
                                @@ -113,7 +133,57 @@

                                ConsentSubscription

                                ConsentSubscription: ShopperConsentsModelTypes.ConsentSubscription
                                +
                                +
                                + +

                                ConsentSubscriptionBulkRequest

                                +
                                ConsentSubscriptionBulkRequest: ShopperConsentsModelTypes.ConsentSubscriptionBulkRequest
                                + +
                                +
                                + +

                                ConsentSubscriptionBulkResponse

                                +
                                ConsentSubscriptionBulkResponse: ShopperConsentsModelTypes.ConsentSubscriptionBulkResponse
                                + +
                                +
                                + +

                                ConsentSubscriptionConsentTypeEnum

                                +
                                ConsentSubscriptionConsentTypeEnum: ShopperConsentsModelTypes.ConsentSubscriptionConsentTypeEnum
                                + +
                                +
                                + +

                                ConsentSubscriptionDefaultStatusEnum

                                +
                                ConsentSubscriptionDefaultStatusEnum: ShopperConsentsModelTypes.ConsentSubscriptionDefaultStatusEnum
                                + +
                                +
                                + +

                                ConsentSubscriptionError

                                +
                                ConsentSubscriptionError: ShopperConsentsModelTypes.ConsentSubscriptionError
                                +
                                @@ -123,7 +193,7 @@

                                ConsentSubscriptionRequest

                                ConsentSubscriptionRequest: ShopperConsentsModelTypes.ConsentSubscriptionRequest
                                @@ -133,17 +203,27 @@

                                ConsentSubscriptionResponse

                                ConsentSubscriptionResponse: ShopperConsentsModelTypes.ConsentSubscriptionResponse
                                - -

                                DefaultFallback

                                -
                                DefaultFallback: ShopperConsentsModelTypes.DefaultFallback
                                + +

                                ConsentSubscriptionResult

                                +
                                ConsentSubscriptionResult: ShopperConsentsModelTypes.ConsentSubscriptionResult
                                +
                                +
                                + +

                                ConsentSubscriptionUpdateResponse

                                +
                                ConsentSubscriptionUpdateResponse: ShopperConsentsModelTypes.ConsentSubscriptionUpdateResponse
                                +
                                @@ -153,7 +233,17 @@

                                ErrorResponse

                                ErrorResponse: ShopperConsentsModelTypes.ErrorResponse
                                + +
                                + +

                                GetSubscriptionsExpandEnum

                                +
                                GetSubscriptionsExpandEnum: ShopperConsentsApiTypes.GetSubscriptionsExpandEnum
                                +
                                @@ -163,7 +253,7 @@

                                LocaleCode

                                LocaleCode: ShopperConsentsModelTypes.LocaleCode
                                @@ -188,12 +278,12 @@

                                ShopperConsentsQueryParameters

                                - -

                                SubscriptionChannel

                                -
                                SubscriptionChannel: ShopperConsentsModelTypes.SubscriptionChannel
                                + +

                                SubscriptionStatusEntry

                                +
                                SubscriptionStatusEntry: ShopperConsentsModelTypes.SubscriptionStatusEntry
                                @@ -203,7 +293,7 @@

                                getSubscriptionsPathParameters

                                getSubscriptionsPathParameters: ShopperConsentsApiTypes.getSubscriptionsPathParameters
                                @@ -213,7 +303,7 @@

                                getSubscriptionsQueryParameters

                                getSubscriptionsQueryParameters: ShopperConsentsApiTypes.getSubscriptionsQueryParameters
                                @@ -223,7 +313,7 @@

                                updateSubscriptionPathParameters

                                updateSubscriptionPathParameters: ShopperConsentsApiTypes.updateSubscriptionPathParameters
                                @@ -233,7 +323,27 @@

                                updateSubscriptionQueryParameters

                                updateSubscriptionQueryParameters: ShopperConsentsApiTypes.updateSubscriptionQueryParameters
                                + +
                                + +

                                updateSubscriptionsPathParameters

                                +
                                updateSubscriptionsPathParameters: ShopperConsentsApiTypes.updateSubscriptionsPathParameters
                                + +
                                +
                                + +

                                updateSubscriptionsQueryParameters

                                +
                                updateSubscriptionsQueryParameters: ShopperConsentsApiTypes.updateSubscriptionsQueryParameters
                                +
                                @@ -292,6 +402,9 @@

                                updateSubscriptionQueryParameters

                              • shopperOrders
                              • +
                              • + shopperPayments +
                              • shopperProducts
                              • @@ -317,12 +430,30 @@

                                updateSubscriptionQueryParameters

                                diff --git a/docs/modules/shoppercontext.html b/docs/modules/shoppercontext.html index 09864919..b0026c7c 100644 --- a/docs/modules/shoppercontext.html +++ b/docs/modules/shoppercontext.html @@ -87,6 +87,12 @@

                                References

                              • ShopperContextQueryParameters
                              • ShopperContexts
                              • ShopperContexts
                              • +
                              • ShopperContextsParameters
                              • +
                              • ShopperContextsParameters
                              • +
                              • ShopperContextsPathParameters
                              • +
                              • ShopperContextsPathParameters
                              • +
                              • ShopperContextsQueryParameters
                              • +
                              • ShopperContextsQueryParameters
                              • createShopperContextPathParameters
                              • createShopperContextPathParameters
                              • createShopperContextQueryParameters
                              • @@ -127,6 +133,9 @@

                                Type aliases

                              • ShopperContextParameters
                              • ShopperContextPathParameters
                              • ShopperContextQueryParameters
                              • +
                              • ShopperContextsParameters
                              • +
                              • ShopperContextsPathParameters
                              • +
                              • ShopperContextsQueryParameters
                              • createShopperContextPathParameters
                              • createShopperContextQueryParameters
                              • deleteShopperContextPathParameters
                              • @@ -218,6 +227,36 @@

                                ShopperContexts

                                ShopperContexts

                                Re-exports ShopperContexts +
                                + +

                                ShopperContextsParameters

                                + Re-exports ShopperContextsParameters +
                                +
                                + +

                                ShopperContextsParameters

                                + Re-exports ShopperContextsParameters +
                                +
                                + +

                                ShopperContextsPathParameters

                                + Re-exports ShopperContextsPathParameters +
                                +
                                + +

                                ShopperContextsPathParameters

                                + Re-exports ShopperContextsPathParameters +
                                +
                                + +

                                ShopperContextsQueryParameters

                                + Re-exports ShopperContextsQueryParameters +
                                +
                                + +

                                ShopperContextsQueryParameters

                                + Re-exports ShopperContextsQueryParameters +

                                createShopperContextPathParameters

                                @@ -423,7 +462,37 @@

                                ShopperContextGeoLocation

                                ShopperContextParameters

                                - +
                                ShopperContextParameters: ShopperContextsParameters
                                + +
                                +
                                + +

                                ShopperContextPathParameters

                                +
                                ShopperContextPathParameters: ShopperContextsPathParameters
                                + +
                                +
                                + +

                                ShopperContextQueryParameters

                                +
                                ShopperContextQueryParameters: ShopperContextsQueryParameters
                                + +
                                +
                                + +

                                ShopperContextsParameters

                                +
                                -

                                All parameters that are used by ShopperContext.

                                +

                                All parameters that are used by ShopperContexts.

                                - -

                                ShopperContextPathParameters

                                - + +

                                ShopperContextsPathParameters

                                +
                                -

                                All path parameters that are used by at least one ShopperContext method.

                                +

                                All path parameters that are used by at least one ShopperContexts method.

                                - -

                                ShopperContextQueryParameters

                                - + +

                                ShopperContextsQueryParameters

                                +
                                -

                                All query parameters that are used by at least one ShopperContext method.

                                +

                                All query parameters that are used by at least one ShopperContexts method.

                                @@ -695,6 +764,9 @@

                                Const defaultBaseUri shopperOrders +
                              • + shopperPayments +
                              • shopperProducts
                              • @@ -762,6 +834,24 @@

                                Const defaultBaseUri ShopperContexts +
                              • + ShopperContextsParameters +
                              • +
                              • + ShopperContextsParameters +
                              • +
                              • + ShopperContextsPathParameters +
                              • +
                              • + ShopperContextsPathParameters +
                              • +
                              • + ShopperContextsQueryParameters +
                              • +
                              • + ShopperContextsQueryParameters +
                              • createShopperContextPathParameters
                              • @@ -834,6 +924,15 @@

                                Const defaultBaseUri ShopperContextQueryParameters +
                              • + ShopperContextsParameters +
                              • +
                              • + ShopperContextsPathParameters +
                              • +
                              • + ShopperContextsQueryParameters +
                              • createShopperContextPathParameters
                              • diff --git a/docs/modules/shoppercontext.shoppercontextstypes.html b/docs/modules/shoppercontext.shoppercontextstypes.html index e694cd34..080321cf 100644 --- a/docs/modules/shoppercontext.shoppercontextstypes.html +++ b/docs/modules/shoppercontext.shoppercontextstypes.html @@ -79,8 +79,8 @@

                                Type aliases

                              • ErrorResponse
                              • ShopperContext
                              • ShopperContextGeoLocation
                              • -
                              • ShopperContextPathParameters
                              • -
                              • ShopperContextQueryParameters
                              • +
                              • ShopperContextsPathParameters
                              • +
                              • ShopperContextsQueryParameters
                              • createShopperContextPathParameters
                              • createShopperContextQueryParameters
                              • deleteShopperContextPathParameters
                              • @@ -127,9 +127,9 @@

                                ShopperContextGeoLocation

                                - -

                                ShopperContextPathParameters

                                -
                                ShopperContextPathParameters: ShopperContextsApiTypes.ShopperContextPathParameters
                                + +

                                ShopperContextsPathParameters

                                +
                                ShopperContextsPathParameters: ShopperContextsApiTypes.ShopperContextsPathParameters
                                - -

                                ShopperContextQueryParameters

                                -
                                ShopperContextQueryParameters: ShopperContextsApiTypes.ShopperContextQueryParameters
                                + +

                                ShopperContextsQueryParameters

                                +
                                ShopperContextsQueryParameters: ShopperContextsApiTypes.ShopperContextsQueryParameters
                                +
                                + +

                                BasketProductItem

                                + Re-exports BasketProductItem +
                                +
                                + +

                                BasketProductItem

                                + Re-exports BasketProductItem +

                                BasketTaxationEnum

                                @@ -654,16 +733,6 @@

                                CouponItemStatusCodeEnum

                                CouponItemStatusCodeEnum

                                Re-exports CouponItemStatusCodeEnum
                                -
                                - -

                                CurrencyCode

                                - Re-exports CurrencyCode -
                                -
                                - -

                                CurrencyCode

                                - Re-exports CurrencyCode -

                                Customer

                                @@ -774,6 +843,46 @@

                                CustomerPaymentInstrumentRequest

                                CustomerPaymentInstrumentRequest

                                Re-exports CustomerPaymentInstrumentRequest
                                +
                                + +

                                CustomerPaymentInstrumentUpdateRequest

                                + Re-exports CustomerPaymentInstrumentUpdateRequest +
                                +
                                + +

                                CustomerPaymentInstrumentUpdateRequest

                                + Re-exports CustomerPaymentInstrumentUpdateRequest +
                                +
                                + +

                                CustomerPaymentInstrumentUpdateRequestPaymentCard

                                + Re-exports CustomerPaymentInstrumentUpdateRequestPaymentCard +
                                +
                                + +

                                CustomerPaymentInstrumentUpdateRequestPaymentCard

                                + Re-exports CustomerPaymentInstrumentUpdateRequestPaymentCard +
                                +
                                + +

                                CustomerPaymentMethodReference

                                + Re-exports CustomerPaymentMethodReference +
                                +
                                + +

                                CustomerPaymentMethodReference

                                + Re-exports CustomerPaymentMethodReference +
                                +
                                + +

                                CustomerPaymentMethodReferenceTypeEnum

                                + Re-exports CustomerPaymentMethodReferenceTypeEnum +
                                +
                                + +

                                CustomerPaymentMethodReferenceTypeEnum

                                + Re-exports CustomerPaymentMethodReferenceTypeEnum +

                                CustomerProductList

                                @@ -874,6 +983,46 @@

                                ErrorResponse

                                ErrorResponse

                                Re-exports ErrorResponse
                                +
                                + +

                                GetCustomerExpandEnum

                                + Re-exports GetCustomerExpandEnum +
                                +
                                + +

                                GetCustomerExpandEnum

                                + Re-exports GetCustomerExpandEnum +
                                +
                                + +

                                GetCustomerOrdersExpandEnum

                                + Re-exports GetCustomerOrdersExpandEnum +
                                +
                                + +

                                GetCustomerOrdersExpandEnum

                                + Re-exports GetCustomerOrdersExpandEnum +
                                +
                                + +

                                GetPublicProductListItemsExpandEnum

                                + Re-exports GetPublicProductListItemsExpandEnum +
                                +
                                + +

                                GetPublicProductListItemsExpandEnum

                                + Re-exports GetPublicProductListItemsExpandEnum +
                                +
                                + +

                                GiftCardResponse

                                + Re-exports GiftCardResponse +
                                +
                                + +

                                GiftCardResponse

                                + Re-exports GiftCardResponse +

                                GiftCertificateItem

                                @@ -935,14 +1084,54 @@

                                Master

                                Re-exports Master
                                - -

                                NoValue

                                - Re-exports NoValue + +

                                OmsData

                                + Re-exports OmsData +
                                +
                                + +

                                OmsData

                                + Re-exports OmsData +
                                +
                                + +

                                OmsProductData

                                + Re-exports OmsProductData +
                                +
                                + +

                                OmsProductData

                                + Re-exports OmsProductData +
                                +
                                + +

                                OmsProductDataStatusEnum

                                + Re-exports OmsProductDataStatusEnum
                                - -

                                NoValue

                                - Re-exports NoValue + +

                                OmsProductDataStatusEnum

                                + Re-exports OmsProductDataStatusEnum +
                                +
                                + +

                                OmsShipment

                                + Re-exports OmsShipment +
                                +
                                + +

                                OmsShipment

                                + Re-exports OmsShipment +
                                +
                                + +

                                OmsShipmentItem

                                + Re-exports OmsShipmentItem +
                                +
                                + +

                                OmsShipmentItem

                                + Re-exports OmsShipmentItem
                                @@ -1034,6 +1223,36 @@

                                OrderPaymentInstrument

                                OrderPaymentInstrument

                                Re-exports OrderPaymentInstrument
                                +
                                + +

                                OrderPaymentInstrumentPaymentReference

                                + Re-exports OrderPaymentInstrumentPaymentReference +
                                +
                                + +

                                OrderPaymentInstrumentPaymentReference

                                + Re-exports OrderPaymentInstrumentPaymentReference +
                                +
                                + +

                                OrderPaymentInstrumentPaymentReferenceGatewayEnum

                                + Re-exports OrderPaymentInstrumentPaymentReferenceGatewayEnum +
                                +
                                + +

                                OrderPaymentInstrumentPaymentReferenceGatewayEnum

                                + Re-exports OrderPaymentInstrumentPaymentReferenceGatewayEnum +
                                +
                                + +

                                OrderPaymentInstrumentPaymentReferenceGatewayProperties

                                + Re-exports OrderPaymentInstrumentPaymentReferenceGatewayProperties +
                                +
                                + +

                                OrderPaymentInstrumentPaymentReferenceGatewayProperties

                                + Re-exports OrderPaymentInstrumentPaymentReferenceGatewayProperties +

                                OrderPaymentStatusEnum

                                @@ -1044,6 +1263,16 @@

                                OrderPaymentStatusEnum

                                OrderPaymentStatusEnum

                                Re-exports OrderPaymentStatusEnum
                                +
                                + +

                                OrderProductItem

                                + Re-exports OrderProductItem +
                                +
                                + +

                                OrderProductItem

                                + Re-exports OrderProductItem +

                                OrderShippingStatusEnum

                                @@ -1334,6 +1563,16 @@

                                PublicProductListItem

                                PublicProductListItem

                                Re-exports PublicProductListItem
                                +
                                + +

                                PublicProductListItemResult

                                + Re-exports PublicProductListItemResult +
                                +
                                + +

                                PublicProductListItemResult

                                + Re-exports PublicProductListItemResult +

                                PublicProductListItemTypeEnum

                                @@ -1669,6 +1908,26 @@

                                deleteCustomerPaymentInstrumentQueryParameters

                                deleteCustomerPaymentInstrumentQueryParameters

                                Re-exports deleteCustomerPaymentInstrumentQueryParameters
                                +
                                + +

                                deleteCustomerPaymentMethodReferencePathParameters

                                + Re-exports deleteCustomerPaymentMethodReferencePathParameters +
                                +
                                + +

                                deleteCustomerPaymentMethodReferencePathParameters

                                + Re-exports deleteCustomerPaymentMethodReferencePathParameters +
                                +
                                + +

                                deleteCustomerPaymentMethodReferenceQueryParameters

                                + Re-exports deleteCustomerPaymentMethodReferenceQueryParameters +
                                +
                                + +

                                deleteCustomerPaymentMethodReferenceQueryParameters

                                + Re-exports deleteCustomerPaymentMethodReferenceQueryParameters +

                                deleteCustomerProductListItemPathParameters

                                @@ -1909,6 +2168,26 @@

                                getProductListItemQueryParameters

                                getProductListItemQueryParameters

                                Re-exports getProductListItemQueryParameters
                                +
                                + +

                                getPublicProductListItemsPathParameters

                                + Re-exports getPublicProductListItemsPathParameters +
                                +
                                + +

                                getPublicProductListItemsPathParameters

                                + Re-exports getPublicProductListItemsPathParameters +
                                +
                                + +

                                getPublicProductListItemsQueryParameters

                                + Re-exports getPublicProductListItemsQueryParameters +
                                +
                                + +

                                getPublicProductListItemsQueryParameters

                                + Re-exports getPublicProductListItemsQueryParameters +

                                getPublicProductListPathParameters

                                @@ -2099,6 +2378,26 @@

                                updateCustomerPathParameters

                                updateCustomerPathParameters

                                Re-exports updateCustomerPathParameters
                                +
                                + +

                                updateCustomerPaymentInstrumentPathParameters

                                + Re-exports updateCustomerPaymentInstrumentPathParameters +
                                +
                                + +

                                updateCustomerPaymentInstrumentPathParameters

                                + Re-exports updateCustomerPaymentInstrumentPathParameters +
                                +
                                + +

                                updateCustomerPaymentInstrumentQueryParameters

                                + Re-exports updateCustomerPaymentInstrumentQueryParameters +
                                +
                                + +

                                updateCustomerPaymentInstrumentQueryParameters

                                + Re-exports updateCustomerPaymentInstrumentQueryParameters +

                                updateCustomerProductListItemPathParameters

                                @@ -2155,7 +2454,7 @@

                                Type aliases

                                Basket

                                -
                                Basket: { adjustedMerchandizeTotalTax?: undefined | number; adjustedShippingTotalTax?: undefined | number; agentBasket?: undefined | false | true; basketId?: undefined | string; billingAddress?: OrderAddress; bonusDiscountLineItems?: Array<BonusDiscountLineItem>; channelType?: BasketChannelTypeEnum; couponItems?: Array<CouponItem>; creationDate?: undefined | string; currency?: CurrencyCode; customerInfo?: CustomerInfo; giftCertificateItems?: Array<GiftCertificateItem>; groupedTaxItems?: Array<GroupedTaxItem>; inventoryReservationExpiry?: undefined | string; lastModified?: undefined | string; merchandizeTotalTax?: undefined | number; orderPriceAdjustments?: Array<PriceAdjustment>; orderTotal?: undefined | number; paymentInstruments?: Array<OrderPaymentInstrument>; productItems?: Array<ProductItem>; productSubTotal?: undefined | number; productTotal?: undefined | number; shipments?: Array<Shipment>; shippingItems?: Array<ShippingItem>; shippingTotal?: undefined | number; shippingTotalTax?: undefined | number; sourceCode?: undefined | string; taxRoundedAtGroup?: undefined | false | true; taxTotal?: undefined | number; taxation?: BasketTaxationEnum; temporaryBasket?: undefined | false | true } & {}
                                +
                                Basket: { adjustedMerchandizeTotalTax?: undefined | number; adjustedShippingTotalTax?: undefined | number; agentBasket?: undefined | false | true; basketId?: undefined | string; billingAddress?: OrderAddress; bonusDiscountLineItems?: Array<BonusDiscountLineItem>; channelType?: BasketChannelTypeEnum; couponItems?: Array<CouponItem>; creationDate?: undefined | string; currency?: undefined | string; customerInfo?: CustomerInfo; giftCertificateItems?: Array<GiftCertificateItem>; groupedTaxItems?: Array<GroupedTaxItem>; inventoryReservationExpiry?: undefined | string; lastModified?: undefined | string; merchandizeTotalTax?: undefined | number; orderPriceAdjustments?: Array<PriceAdjustment>; orderTotal?: undefined | number; paymentInstruments?: Array<OrderPaymentInstrument>; productItems?: Array<BasketProductItem>; productSubTotal?: undefined | number; productTotal?: undefined | number; shipments?: Array<Shipment>; shippingItems?: Array<ShippingItem>; shippingTotal?: undefined | number; shippingTotalTax?: undefined | number; sourceCode?: undefined | string; taxRoundedAtGroup?: undefined | false | true; taxTotal?: undefined | number; taxation?: BasketTaxationEnum; temporaryBasket?: undefined | false | true } & {}
                                +
                                + +

                                BasketProductItem

                                +
                                BasketProductItem: { adjustedTax?: undefined | number; basePrice?: undefined | number; bonusDiscountLineItemId?: undefined | string; bonusProductLineItem?: undefined | false | true; bundledProductItems?: Array<ProductItem>; gift?: undefined | false | true; giftMessage?: undefined | string; inventoryId?: undefined | string; itemId?: undefined | string; itemText?: undefined | string; optionItems?: Array<OptionItem>; price?: undefined | number; priceAdjustments?: Array<PriceAdjustment>; priceAfterItemDiscount?: undefined | number; priceAfterOrderDiscount?: undefined | number; productId?: undefined | string; productListItem?: ProductListItemReference; productName?: undefined | string; qualifyingProductItemId?: undefined | string; quantity?: undefined | number; shipmentId?: undefined | string; shippingItemId?: undefined | string; tax?: undefined | number; taxBasis?: undefined | number; taxClassId?: undefined | string; taxRate?: undefined | number } & {}
                                + +
                                +
                                +
                                property
                                +

                                adjustedTax: The tax on the line item, including any adjustments. It is read only.

                                +
                                +
                                property
                                +

                                basePrice: The base price of the line item, which is the unit price not including adjustments. If the taxation policy is net, it doesn't include tax. If the taxation policy is gross, it includes tax. It is read only.

                                +
                                +
                                property
                                +

                                bonusDiscountLineItemId: The ID of the bonus discount line item this bonus product relates to. It is read only.

                                +
                                +
                                property
                                +

                                bonusProductLineItem: A flag indicating whether the product item is a bonus.

                                +
                                +
                                property
                                +

                                bundledProductItems: The bundled product items.

                                +
                                +
                                property
                                +

                                gift: Returns true if the item is a gift. It is read only.

                                +
                                +
                                property
                                +

                                giftMessage: The gift message.

                                +
                                +
                                property
                                +

                                inventoryId: The inventory list ID associated with this item.

                                +
                                  +
                                • Max Length: 256
                                • +
                                +
                                +
                                property
                                +

                                itemId: The product item ID. Use it to identify this item when updating its quantity or creating a custom price adjustment for it. It is read only.

                                +
                                +
                                property
                                +

                                itemText: The text describing the item.

                                +
                                +
                                property
                                +

                                optionItems: The option items.

                                +
                                +
                                property
                                +

                                price: The price of the line item before applying any adjustments. If the line item is based on net pricing then the net price is returned. If the line item is based on gross pricing then the gross price is returned. It is read only.

                                +
                                +
                                property
                                +

                                priceAdjustments: The price adjustments.

                                +
                                +
                                property
                                +

                                priceAfterItemDiscount: The price of the product line item including item-level adjustments, but not including order-level adjustments or shipping charges. If the taxation policy is net, it doesn't include tax. If the taxation policy is gross, it includes tax. It is read only.

                                +
                                +
                                property
                                +

                                priceAfterOrderDiscount: The price of the product line item including item-level adjustments and prorated order-level adjustments, but not including shipping charges. If the taxation policy is net, it doesn't include tax. If the taxation policy is gross, it includes tax. It is read only.

                                +
                                +
                                property
                                +

                                productId: The ID of the product.

                                +
                                  +
                                • Max Length: 100
                                • +
                                +
                                +
                                property
                                +

                                productListItem: If this product line item was added from a product list, this value is a reference to the corresponding product list item.

                                +
                                +
                                property
                                +

                                productName: The name of the product.

                                +
                                +
                                property
                                +

                                qualifyingProductItemId: Returns the id of the ProductLineItem that qualified the basket for this bonus product. This method is only applicable if the product line item is a bonus product line item, and if the promotion is a product promotion with number of qualifying products granting a bonus-product discount. If these conditions aren't met, the method returns null. If there are multiple product line items that triggered this bonus product, this method returns the last one by position within the order.

                                +
                                  +
                                • Max Length: 28
                                • +
                                +
                                +
                                property
                                +

                                quantity: The quantity of the products represented by this item.

                                +
                                +
                                property
                                +

                                shipmentId: The ID of the shipment this item belongs to.

                                +
                                +
                                property
                                +

                                shippingItemId: If the product line item has a related shipping item, this value is its ID. A related shipping item represents a surcharge applied to individual products using a particular shipping method. It is read only.

                                +
                                +
                                property
                                +

                                tax: The tax for the product item, not including price adjustments. It is read only.

                                +
                                +
                                property
                                +

                                taxBasis: The price used to calculate the tax for this product item. It is read only.

                                +
                                +
                                property
                                +

                                taxClassId: The tax class ID for the product item, or null if no tax class ID is associated with the product item. It is read only.

                                +
                                +
                                property
                                +

                                taxRate: The tax rate, which is the decimal tax rate to be applied to the product represented by this item. It is read only.

                                +
                                +
                                +
                                +

                                BasketTaxationEnum

                                @@ -2393,25 +2796,13 @@

                                CouponItemStatusCodeEnum

                              -
                              - -

                              CurrencyCode

                              -
                              CurrencyCode: NoValue | string
                              - -
                              -
                              -

                              Customer

                              -
                              Customer: { addresses?: Array<CustomerAddress>; authType?: CustomerAuthTypeEnum; birthday?: undefined | string; companyName?: undefined | string; creationDate?: undefined | string; currentPassword?: undefined | string; customerId?: undefined | string; customerNo?: undefined | string; email?: undefined | string; enabled?: undefined | false | true; fax?: undefined | string; firstName?: undefined | string; gender?: undefined | number; hashedLogin?: undefined | string; jobTitle?: undefined | string; lastLoginTime?: undefined | string; lastModified?: undefined | string; lastName?: undefined | string; lastVisitTime?: undefined | string; login?: undefined | string; note?: undefined | string; paymentInstruments?: Array<CustomerPaymentInstrument>; phoneBusiness?: undefined | string; phoneHome?: undefined | string; phoneMobile?: undefined | string; preferredLocale?: undefined | string; previousLoginTime?: undefined | string; previousVisitTime?: undefined | string; salutation?: undefined | string; secondName?: undefined | string; suffix?: undefined | string; title?: undefined | string } & {}
                              +
                              Customer: { addresses?: Array<CustomerAddress>; authType?: CustomerAuthTypeEnum; birthday?: undefined | string; companyName?: undefined | string; creationDate?: undefined | string; currentPassword?: undefined | string; customerId?: undefined | string; customerNo?: undefined | string; email?: undefined | string; enabled?: undefined | false | true; fax?: undefined | string; firstName?: undefined | string; gender?: undefined | number; hashedLogin?: undefined | string; jobTitle?: undefined | string; lastLoginTime?: undefined | string; lastModified?: undefined | string; lastName?: undefined | string; lastVisitTime?: undefined | string; login?: undefined | string; note?: undefined | string; paymentInstruments?: Array<CustomerPaymentInstrument>; paymentMethodReferences?: Array<CustomerPaymentMethodReference>; phoneBusiness?: undefined | string; phoneHome?: undefined | string; phoneMobile?: undefined | string; preferredLocale?: undefined | string; previousLoginTime?: undefined | string; previousVisitTime?: undefined | string; salutation?: undefined | string; secondName?: undefined | string; suffix?: undefined | string; title?: undefined | string } & {}
                              @@ -2510,6 +2901,9 @@

                              Customer

                              paymentInstruments: The customer's payment instruments.

                              property
                              +

                              paymentMethodReferences: Payment method reference information for Salesforce Payments.

                              +
                              +
                              property

                              phoneBusiness: The customer's business phone number.

                              • Max Length: 32
                              • @@ -2730,7 +3124,7 @@

                                CustomerAuthTypeEnum

                                CustomerAuthTypeEnum: "guest" | "registered"
                              @@ -2878,7 +3272,7 @@

                              CustomerOrderResult

                              offset: The zero-based index of the first hit/data to include in the result.

                              property
                              -

                              limit: Maximum records to retrieve per request, not to exceed the maximum defined. A limit must be at least 1 so at least one record is returned (if any match the criteria).

                              +

                              limit: Maximum records to retrieve per request. The limit with its constraints (minimum, maximum, default) is defined by the request parameter limit of the endpoint returning this schema.

                              property

                              total: The total number of hits that match the search's criteria. This can be greater than the number of results returned as search results are pagenated.

                              @@ -3025,47 +3419,133 @@

                              CustomerPaymentInstrumentRequest

                              - -

                              CustomerProductList

                              -
                              CustomerProductList: { coRegistrant?: CustomerProductListRegistrant; creationDate?: undefined | string; currentShippingAddressInfo?: CustomerAddressInfo; customerProductListItems?: Array<CustomerProductListItem>; description?: undefined | string; event?: ProductListEvent; id?: undefined | string; lastModified?: undefined | string; name?: undefined | string; postEventShippingAddressInfo?: CustomerAddressInfo; productListShippingAddress?: ProductListShippingAddress; public?: undefined | false | true; registrant?: CustomerProductListRegistrant; shippingAddressInfo?: CustomerAddressInfo; type?: CustomerProductListTypeEnum } & {}
                              + +

                              CustomerPaymentInstrumentUpdateRequest

                              +
                              CustomerPaymentInstrumentUpdateRequest: { default?: undefined | false | true; paymentCard?: CustomerPaymentInstrumentUpdateRequestPaymentCard } & {}
                              property
                              -

                              coRegistrant: The coregistrant of this product list.

                              -
                              -
                              property
                              -

                              creationDate: Returns the value of attribute 'creationDate'.

                              +

                              default: The default payment instrument.

                              property
                              -

                              currentShippingAddressInfo: The resource link to the current shipping address of this customer product list.

                              +

                              paymentCard:

                              +
                              +
                              +
                              +
                              + +

                              CustomerPaymentInstrumentUpdateRequestPaymentCard

                              +
                              CustomerPaymentInstrumentUpdateRequestPaymentCard: { expirationMonth?: undefined | number; expirationYear?: undefined | number } & {}
                              + +
                              +
                              property
                              -

                              customerProductListItems: The list of customer product list items.

                              +

                              expirationMonth: The month when the payment card expires.

                              property
                              -

                              description: The description of this product list.

                              +

                              expirationYear: The year when the payment card expires.

                              +
                              +
                              +
                              +
                              + +

                              CustomerPaymentMethodReference

                              +
                              CustomerPaymentMethodReference: { accountId?: undefined | string; id?: undefined | string; last4?: undefined | string; type?: CustomerPaymentMethodReferenceTypeEnum } & {}
                              + +
                              +
                              property
                              -

                              event: The event of this product list.

                              +

                              type: The payment method type. It is read only.

                              property
                              -

                              id: The ID of this product list.

                              +

                              id: The gateway ID for the payment method. It is read only.

                                -
                              • Min Length: 1
                              • +
                              • Max Length: 256
                              property
                              -

                              lastModified: Returns the value of attribute 'lastModified'.

                              +

                              last4: The last four digits of the payment method number. It is read only.

                              +
                                +
                              • Max Length: 4
                              • +
                              property
                              -

                              name: The name of this product list.

                              +

                              accountId: Account identifier

                              +
                                +
                              • Min Length: 1
                              • +
                              • Max Length: 100
                              • +
                              -
                              property
                              +
                              +
                              +
                              +
                              + +

                              CustomerPaymentMethodReferenceTypeEnum

                              +
                              CustomerPaymentMethodReferenceTypeEnum: "card" | "sepa_debit"
                              + +
                              +
                              + +

                              CustomerProductList

                              +
                              CustomerProductList: { coRegistrant?: CustomerProductListRegistrant; creationDate?: undefined | string; currentShippingAddressInfo?: CustomerAddressInfo; customerProductListItems?: Array<CustomerProductListItem>; description?: undefined | string; event?: ProductListEvent; id?: undefined | string; lastModified?: undefined | string; name?: undefined | string; postEventShippingAddressInfo?: CustomerAddressInfo; productListShippingAddress?: ProductListShippingAddress; public?: undefined | false | true; registrant?: CustomerProductListRegistrant; shippingAddressInfo?: CustomerAddressInfo; type?: CustomerProductListTypeEnum } & {}
                              + +
                              +
                              +
                              property
                              +

                              coRegistrant: The coregistrant of this product list.

                              +
                              +
                              property
                              +

                              creationDate: Returns the value of attribute 'creationDate'.

                              +
                              +
                              property
                              +

                              currentShippingAddressInfo: The resource link to the current shipping address of this customer product list.

                              +
                              +
                              property
                              +

                              customerProductListItems: The list of customer product list items.

                              +
                              +
                              property
                              +

                              description: The description of this product list.

                              +
                              +
                              property
                              +

                              event: The event of this product list.

                              +
                              +
                              property
                              +

                              id: The ID of this product list.

                              +
                                +
                              • Min Length: 1
                              • +
                              +
                              +
                              property
                              +

                              lastModified: Returns the value of attribute 'lastModified'.

                              +
                              +
                              property
                              +

                              name: The name of this product list.

                              +
                              +
                              property

                              postEventShippingAddressInfo: The resource link to the post event shipping address of this customer product list.

                              property
                              @@ -3179,7 +3659,7 @@

                              CustomerProductListResult

                              data: The customer product lists.

                              property
                              -

                              limit: Maximum records to retrieve per request, not to exceed the maximum defined. A limit must be at least 1 so at least one record is returned (if any match the criteria).

                              +

                              limit: Maximum records to retrieve per request. The limit with its constraints (minimum, maximum, default) is defined by the request parameter limit of the endpoint returning this schema.

                              property

                              total: The total number of hits that match the search's criteria. This can be greater than the number of results returned as search results are pagenated.

                              @@ -3288,6 +3768,68 @@

                              ErrorResponse

                              +
                              + +

                              GetCustomerExpandEnum

                              +
                              GetCustomerExpandEnum: "none" | "addresses" | "paymentinstruments" | "paymentmethodreferences"
                              + +
                              +
                              + +

                              GetCustomerOrdersExpandEnum

                              +
                              GetCustomerOrdersExpandEnum: "oms"
                              + +
                              +
                              + +

                              GetPublicProductListItemsExpandEnum

                              +
                              GetPublicProductListItemsExpandEnum: "product" | "images" | "availability"
                              + +
                              +
                              + +

                              GiftCardResponse

                              +
                              GiftCardResponse: { brand?: undefined | string; expirationMonth?: undefined | number; expirationYear?: undefined | number; maskedCardNumber?: undefined | string } & {}
                              + +
                              +
                              +
                              property
                              +

                              brand: The gift card brand.

                              +
                                +
                              • Max Length: 256
                              • +
                              +
                              +
                              property
                              +

                              maskedCardNumber: The masked gift card number.

                              +
                                +
                              • Max Length: 40
                              • +
                              +
                              +
                              property
                              +

                              expirationMonth: The month when the gift card expires.

                              +
                              +
                              property
                              +

                              expirationYear: The year when the gift card expires.

                              +
                              +
                              +
                              +

                              GiftCertificateItem

                              @@ -3477,18 +4019,114 @@

                              Master

                              - -

                              NoValue

                              -
                              NoValue: "N/A"
                              + +

                              OmsData

                              +
                              OmsData: { shipments?: Array<OmsShipment>; status?: undefined | string } & {}
                              -
                              -

                              A specialized value indicating the lack of definition of a currency, for example, if the value of the monetary value of the currency is an undefined number.

                              -
                              +
                              +
                              property
                              +

                              status: Current status of the order

                              +
                              +
                              property
                              +

                              shipments: List of shipments associated with the order

                              +
                              +
                              +
                              +
                              +
                              + +

                              OmsProductData

                              +
                              OmsProductData: { quantityAvailableToCancel?: undefined | number; status?: OmsProductDataStatusEnum } & {}
                              + +
                              +
                              +
                              property
                              +

                              status: Order Management (OMS) status

                              +
                              +
                              property
                              +

                              quantityAvailableToCancel: The quantity that can be cancelled.

                              +
                              +
                              +
                              +
                              +
                              + +

                              OmsProductDataStatusEnum

                              +
                              OmsProductDataStatusEnum: "ordered" | "returned" | "canceled" | "paid" | "reshipped" | "fulfilled" | "partially_fulfilled" | "allocated" | "partially_allocated" | "return_initiated"
                              + +
                              +
                              + +

                              OmsShipment

                              +
                              OmsShipment: { actualDeliveryDate?: undefined | string; expectedDeliveryDate?: undefined | string; id?: undefined | string; provider?: undefined | string; shipmentItems?: Array<OmsShipmentItem>; status?: undefined | string; trackingNumber?: undefined | string; trackingUrl?: undefined | string } & {}
                              + +
                              +
                              +
                              property
                              +

                              id: Unique identifier for the shipment

                              +
                              +
                              property
                              +

                              status: Current status of the shipment

                              +
                              +
                              property
                              +

                              provider: Shipping provider name

                              +
                              +
                              property
                              +

                              trackingNumber: Tracking number for the shipment

                              +
                              +
                              property
                              +

                              trackingUrl: URL to track the shipment

                              +
                              +
                              property
                              +

                              expectedDeliveryDate: Expected delivery date and time

                              +
                              +
                              property
                              +

                              actualDeliveryDate: Actual delivery date and time (null if not yet delivered)

                              +
                              +
                              property
                              +

                              shipmentItems: Items included in this shipment

                              +
                              +
                              +
                              +
                              +
                              + +

                              OmsShipmentItem

                              +
                              OmsShipmentItem: { id?: undefined | string; productItemId?: undefined | string; quantity?: undefined | number } & {}
                              + +
                              +
                              +
                              property
                              +

                              id: Unique identifier for the shipment item

                              +
                              +
                              property
                              +

                              productItemId: Reference to the product item in the order

                              +
                              +
                              property
                              +

                              quantity: Quantity of product items with the referenced productItemId in this shipment

                              +
                              +
                              @@ -3665,10 +4303,10 @@

                              OptionValue

                              Order

                              -
                              Order: { adjustedMerchandizeTotalTax?: undefined | number; adjustedShippingTotalTax?: undefined | number; billingAddress?: OrderAddress; bonusDiscountLineItems?: Array<BonusDiscountLineItem>; channelType?: OrderChannelTypeEnum; confirmationStatus?: OrderConfirmationStatusEnum; couponItems?: Array<CouponItem>; createdBy?: undefined | string; creationDate?: undefined | string; currency?: CurrencyCode; customerInfo?: CustomerInfo; customerName?: undefined | string; exportStatus?: OrderExportStatusEnum; externalOrderStatus?: undefined | string; giftCertificateItems?: Array<GiftCertificateItem>; globalPartyId?: undefined | string; groupedTaxItems?: Array<GroupedTaxItem>; guest?: undefined | false | true; lastModified?: undefined | string; merchandizeTotalTax?: undefined | number; orderNo?: undefined | string; orderPriceAdjustments?: Array<PriceAdjustment>; orderToken?: undefined | string; orderTotal?: undefined | number; orderViewCode?: undefined | string; paymentInstruments?: Array<OrderPaymentInstrument>; paymentStatus?: OrderPaymentStatusEnum; productItems?: Array<ProductItem>; productSubTotal?: undefined | number; productTotal?: undefined | number; shipments?: Array<Shipment>; shippingItems?: Array<ShippingItem>; shippingStatus?: OrderShippingStatusEnum; shippingTotal?: undefined | number; shippingTotalTax?: undefined | number; siteId?: undefined | string; sourceCode?: undefined | string; status?: OrderStatusEnum; taxRoundedAtGroup?: undefined | false | true; taxTotal?: undefined | number; taxation?: OrderTaxationEnum } & {}
                              +
                              Order: { adjustedMerchandizeTotalTax?: undefined | number; adjustedShippingTotalTax?: undefined | number; billingAddress?: OrderAddress; bonusDiscountLineItems?: Array<BonusDiscountLineItem>; channelType?: OrderChannelTypeEnum; confirmationStatus?: OrderConfirmationStatusEnum; couponItems?: Array<CouponItem>; createdBy?: undefined | string; creationDate?: undefined | string; currency?: undefined | string; customerInfo?: CustomerInfo; customerName?: undefined | string; exportStatus?: OrderExportStatusEnum; externalOrderStatus?: undefined | string; giftCertificateItems?: Array<GiftCertificateItem>; globalPartyId?: undefined | string; groupedTaxItems?: Array<GroupedTaxItem>; guest?: undefined | false | true; lastModified?: undefined | string; merchandizeTotalTax?: undefined | number; omsData?: OmsData; orderNo?: undefined | string; orderPriceAdjustments?: Array<PriceAdjustment>; orderToken?: undefined | string; orderTotal?: undefined | number; orderViewCode?: undefined | string; paymentInstruments?: Array<OrderPaymentInstrument>; paymentStatus?: OrderPaymentStatusEnum; productItems?: Array<OrderProductItem>; productSubTotal?: undefined | number; productTotal?: undefined | number; shipments?: Array<Shipment>; shippingItems?: Array<ShippingItem>; shippingStatus?: OrderShippingStatusEnum; shippingTotal?: undefined | number; shippingTotalTax?: undefined | number; siteId?: undefined | string; sourceCode?: undefined | string; status?: OrderStatusEnum; taxRoundedAtGroup?: undefined | false | true; taxTotal?: undefined | number; taxation?: OrderTaxationEnum } & {}
                              @@ -3702,6 +4340,9 @@

                              Order

                              property

                              currency: The ISO 4217 mnemonic code of the currency. It is read only.

                              +
                                +
                              • Pattern: /^([A-Z][A-Z][A-Z]|N/A)$/
                              • +
                              property

                              customerInfo: The customer information for guest or logged-in customers. It is read only.

                              @@ -3787,6 +4428,9 @@

                              Order

                            property
                            +

                            omsData: Information retrieved from Order Management (OMS) for the order.

                            +
                            +
                            property

                            sourceCode: The source code assigned to the basket from which this order was created. It is read only.

                            property
                            @@ -3887,7 +4531,7 @@

                            OrderChannelTypeEnum

                            OrderChannelTypeEnum: "storefront" | "callcenter" | "marketplace" | "dss" | "store" | "pinterest" | "twitter" | "facebookads" | "subscriptions" | "onlinereservation" | "customerservicecenter" | "instagramcommerce" | "tiktok" | "snapchat" | "google" | "whatsapp" | "youtube"
                            @@ -3897,7 +4541,7 @@

                            OrderConfirmationStatusEnum

                            OrderConfirmationStatusEnum: "not_confirmed" | "confirmed"
                            @@ -3907,17 +4551,17 @@

                            OrderExportStatusEnum

                            OrderExportStatusEnum: "not_exported" | "exported" | "ready" | "failed"

                            OrderPaymentInstrument

                            -
                            OrderPaymentInstrument: { amount?: undefined | number; authorizationStatus?: Status; bankRoutingNumber?: undefined | string; maskedGiftCertificateCode?: undefined | string; paymentCard?: PaymentCard; paymentInstrumentId?: undefined | string; paymentMethodId?: undefined | string } & {}
                            +
                            OrderPaymentInstrument: { amount?: undefined | number; authorizationStatus?: Status; bankRoutingNumber?: undefined | string; giftCard?: GiftCardResponse; maskedGiftCertificateCode?: undefined | string; paymentCard?: PaymentCard; paymentInstrumentId?: undefined | string; paymentMethodId?: undefined | string; paymentReference?: OrderPaymentInstrumentPaymentReference } & {}
                            @@ -3941,6 +4585,9 @@

                            OrderPaymentInstrument

                            paymentCard: The payment card.

                            property
                            +

                            giftCard: The gift card.

                            +
                            +
                            property

                            paymentInstrumentId: The payment instrument ID. It is read only.

                            property
                            @@ -3949,6 +4596,68 @@

                            OrderPaymentInstrument

                          • Max Length: 256
                          +
                          property
                          +

                          paymentReference:

                          +
                          + +

                          + +
                          + +

                          OrderPaymentInstrumentPaymentReference

                          +
                          OrderPaymentInstrumentPaymentReference: { gateway?: OrderPaymentInstrumentPaymentReferenceGatewayEnum; gatewayProperties?: OrderPaymentInstrumentPaymentReferenceGatewayProperties; paymentReferenceId?: undefined | string } & {}
                          + +
                          +
                          +
                          property
                          +

                          paymentReferenceId: Payment reference identifier. Can be payment intent ID for Stripe, PSP reference for Adyen, PayPal order ID for PayPal, or similar identifier for other payment providers.

                          +
                            +
                          • Max Length: 256
                          • +
                          +
                          +
                          property
                          +

                          gateway: The payment gateway used to process the payment.

                          +
                          +
                          property
                          +

                          gatewayProperties:

                          +
                          +
                          +
                          +
                          +
                          + +

                          OrderPaymentInstrumentPaymentReferenceGatewayEnum

                          +
                          OrderPaymentInstrumentPaymentReferenceGatewayEnum: "stripe" | "paypal" | "adyen"
                          + +
                          +
                          + +

                          OrderPaymentInstrumentPaymentReferenceGatewayProperties

                          +
                          OrderPaymentInstrumentPaymentReferenceGatewayProperties: { adyen?: undefined | {}; paypal?: undefined | {}; stripe?: undefined | {} } & {}
                          + +
                          +
                          +
                          property
                          +

                          stripe: # Stripe specific properties. - setupFutureUsage: Indicates that you intend to make future payments with this payment method. - on_session: The payment method is intended to be used for a future payment on the same website session. - off_session: The payment method is intended to be used for a future payment on a different website session. - null: The payment method is not intended to be used for a future payment. - clientSecret: Secret for Stripe client-side payment confirmation. Don't store, log, or expose the client secret to anyone other than the customer, and only use it on pages where TLS is enabled. - type: string - maxLength: 256 - example: "pi_1J4K5L2eZvKYlo2CyZ8K5L6M_secret_abc123"

                          +
                          +
                          property
                          +

                          paypal: # PayPal specific properties.

                          +
                          +
                          property
                          +

                          adyen: # Adyen specific properties. - adyenError: Error information returned by Adyen if the payment fails. Null on success. - adyenPaymentIntent: The Adyen payment intent object containing payment details and required actions. - resultCode: The result of the payment request (for example, "REDIRECT_SHOPPER", "AUTHORISED", "PENDING", "REFUSED"). - accountID: The Adyen merchant account ID. - adyenPaymentIntentAction: The action object for payment methods requiring additional shopper interaction. - url: The URL for completing the payment (redirect or 3DS authentication). - type: The action type (for example, "redirect", "threeDS2", "voucher"). - method: The HTTP method for the action (for example, "GET", "POST"). - successful: A boolean indicating whether the Adyen operation is successful.

                          +
                          @@ -3958,9 +4667,113 @@

                          OrderPaymentStatusEnum

                          OrderPaymentStatusEnum: "not_paid" | "part_paid" | "paid"
                          + +
                          + +

                          OrderProductItem

                          +
                          OrderProductItem: { adjustedTax?: undefined | number; basePrice?: undefined | number; bonusDiscountLineItemId?: undefined | string; bonusProductLineItem?: undefined | false | true; bundledProductItems?: Array<ProductItem>; gift?: undefined | false | true; giftMessage?: undefined | string; inventoryId?: undefined | string; itemId?: undefined | string; itemText?: undefined | string; omsData?: OmsProductData; optionItems?: Array<OptionItem>; price?: undefined | number; priceAdjustments?: Array<PriceAdjustment>; priceAfterItemDiscount?: undefined | number; priceAfterOrderDiscount?: undefined | number; productId?: undefined | string; productListItem?: ProductListItemReference; productName?: undefined | string; qualifyingProductItemId?: undefined | string; quantity?: undefined | number; shipmentId?: undefined | string; shippingItemId?: undefined | string; tax?: undefined | number; taxBasis?: undefined | number; taxClassId?: undefined | string; taxRate?: undefined | number } & {}
                          + +
                          +
                          +
                          property
                          +

                          omsData: Product information retrieved from Order Management (OMS). Only available in the context of an order.

                          +
                          +
                          property
                          +

                          adjustedTax: The tax on the line item, including any adjustments. It is read only.

                          +
                          +
                          property
                          +

                          basePrice: The base price of the line item, which is the unit price not including adjustments. If the taxation policy is net, it doesn't include tax. If the taxation policy is gross, it includes tax. It is read only.

                          +
                          +
                          property
                          +

                          bonusDiscountLineItemId: The ID of the bonus discount line item this bonus product relates to. It is read only.

                          +
                          +
                          property
                          +

                          bonusProductLineItem: A flag indicating whether the product item is a bonus.

                          +
                          +
                          property
                          +

                          bundledProductItems: The bundled product items.

                          +
                          +
                          property
                          +

                          gift: Returns true if the item is a gift. It is read only.

                          +
                          +
                          property
                          +

                          giftMessage: The gift message.

                          +
                          +
                          property
                          +

                          inventoryId: The inventory list ID associated with this item.

                          +
                            +
                          • Max Length: 256
                          • +
                          +
                          +
                          property
                          +

                          itemId: The product item ID. Use it to identify this item when updating its quantity or creating a custom price adjustment for it. It is read only.

                          +
                          +
                          property
                          +

                          itemText: The text describing the item.

                          +
                          +
                          property
                          +

                          optionItems: The option items.

                          +
                          +
                          property
                          +

                          price: The price of the line item before applying any adjustments. If the line item is based on net pricing then the net price is returned. If the line item is based on gross pricing then the gross price is returned. It is read only.

                          +
                          +
                          property
                          +

                          priceAdjustments: The price adjustments.

                          +
                          +
                          property
                          +

                          priceAfterItemDiscount: The price of the product line item including item-level adjustments, but not including order-level adjustments or shipping charges. If the taxation policy is net, it doesn't include tax. If the taxation policy is gross, it includes tax. It is read only.

                          +
                          +
                          property
                          +

                          priceAfterOrderDiscount: The price of the product line item including item-level adjustments and prorated order-level adjustments, but not including shipping charges. If the taxation policy is net, it doesn't include tax. If the taxation policy is gross, it includes tax. It is read only.

                          +
                          +
                          property
                          +

                          productId: The ID of the product.

                          +
                            +
                          • Max Length: 100
                          • +
                          +
                          +
                          property
                          +

                          productListItem: If this product line item was added from a product list, this value is a reference to the corresponding product list item.

                          +
                          +
                          property
                          +

                          productName: The name of the product.

                          +
                          +
                          property
                          +

                          qualifyingProductItemId: Returns the id of the ProductLineItem that qualified the basket for this bonus product. This method is only applicable if the product line item is a bonus product line item, and if the promotion is a product promotion with number of qualifying products granting a bonus-product discount. If these conditions aren't met, the method returns null. If there are multiple product line items that triggered this bonus product, this method returns the last one by position within the order.

                          +
                            +
                          • Max Length: 28
                          • +
                          +
                          +
                          property
                          +

                          quantity: The quantity of the products represented by this item.

                          +
                          +
                          property
                          +

                          shipmentId: The ID of the shipment this item belongs to.

                          +
                          +
                          property
                          +

                          shippingItemId: If the product line item has a related shipping item, this value is its ID. A related shipping item represents a surcharge applied to individual products using a particular shipping method. It is read only.

                          +
                          +
                          property
                          +

                          tax: The tax for the product item, not including price adjustments. It is read only.

                          +
                          +
                          property
                          +

                          taxBasis: The price used to calculate the tax for this product item. It is read only.

                          +
                          +
                          property
                          +

                          taxClassId: The tax class ID for the product item, or null if no tax class ID is associated with the product item. It is read only.

                          +
                          +
                          property
                          +

                          taxRate: The tax rate, which is the decimal tax rate to be applied to the product represented by this item. It is read only.

                          +
                          +
                          +
                          @@ -3968,7 +4781,7 @@

                          OrderShippingStatusEnum

                          OrderShippingStatusEnum: "not_shipped" | "part_shipped" | "shipped"
                          @@ -3978,7 +4791,7 @@

                          OrderStatusEnum

                          OrderStatusEnum: "created" | "new" | "completed" | "cancelled" | "replaced" | "failed"
                          @@ -3988,7 +4801,7 @@

                          OrderTaxationEnum

                          OrderTaxationEnum: "gross" | "net"
                          @@ -4027,7 +4840,7 @@

                          PaginatedResultBase

                          offset: The zero-based index of the first hit/data to include in the result.

                          property
                          -

                          limit: Maximum records to retrieve per request, not to exceed the maximum defined. A limit must be at least 1 so at least one record is returned (if any match the criteria).

                          +

                          limit: Maximum records to retrieve per request. The limit with its constraints (minimum, maximum, default) is defined by the request parameter limit of the endpoint returning this schema.

                          property

                          total: The total number of hits that match the search's criteria. This can be greater than the number of results returned as search results are pagenated.

                          @@ -4237,10 +5050,10 @@

                          PriceRange

                          Product

                          -
                          Product: { brand?: undefined | string; bundledProducts?: Array<BundledProduct>; currency?: CurrencyCode; ean?: undefined | string; fetchDate?: undefined | number; id: string; imageGroups?: Array<ImageGroup>; inventories?: Array<Inventory>; inventory?: Inventory; longDescription?: undefined | string; manufacturerName?: undefined | string; manufacturerSku?: undefined | string; master?: Master; minOrderQuantity?: undefined | number; name?: undefined | string; options?: Array<Option>; pageDescription?: undefined | string; pageKeywords?: undefined | string; pageMetaTags?: Array<PageMetaTag>; pageTitle?: undefined | string; price?: undefined | number; priceMax?: undefined | number; pricePerUnit?: undefined | number; pricePerUnitMax?: undefined | number; priceRanges?: Array<PriceRange>; prices?: undefined | {}; primaryCategoryId?: undefined | string; productLinks?: Array<ProductLink>; productPromotions?: Array<ProductPromotion>; recommendations?: Array<Recommendation>; setProducts?: Array<Product>; shortDescription?: undefined | string; slugUrl?: undefined | string; stepQuantity?: undefined | number; tieredPrices?: Array<ProductPriceTable>; type?: ProductType; unit?: undefined | string; upc?: undefined | string; validFrom?: undefined | string; validTo?: undefined | string; variants?: Array<Variant>; variationAttributes?: Array<VariationAttribute>; variationGroups?: Array<VariationGroup>; variationValues?: undefined | {} } & {}
                          +
                          Product: { brand?: undefined | string; bundledProducts?: Array<BundledProduct>; currency?: undefined | string; ean?: undefined | string; fetchDate?: undefined | number; id: string; imageGroups?: Array<ImageGroup>; inventories?: Array<Inventory>; inventory?: Inventory; longDescription?: undefined | string; manufacturerName?: undefined | string; manufacturerSku?: undefined | string; master?: Master; minOrderQuantity?: undefined | number; name?: undefined | string; options?: Array<Option>; pageDescription?: undefined | string; pageKeywords?: undefined | string; pageMetaTags?: Array<PageMetaTag>; pageTitle?: undefined | string; price?: undefined | number; priceMax?: undefined | number; pricePerUnit?: undefined | number; pricePerUnitMax?: undefined | number; priceRanges?: Array<PriceRange>; prices?: undefined | {}; primaryCategoryId?: undefined | string; productLinks?: Array<ProductLink>; productPromotions?: Array<ProductPromotion>; recommendations?: Array<Recommendation>; setProducts?: Array<Product>; shippingMethods?: Array<ShippingMethod>; shortDescription?: undefined | string; slugUrl?: undefined | string; stepQuantity?: undefined | number; tieredPrices?: Array<ProductPriceTable>; type?: ProductType; unit?: undefined | string; upc?: undefined | string; validFrom?: undefined | string; validTo?: undefined | string; variants?: Array<Variant>; variationAttributes?: Array<VariationAttribute>; variationGroups?: Array<VariationGroup>; variationValues?: undefined | {} } & {}
                          @@ -4252,7 +5065,10 @@

                          Product

                          bundledProducts: The array of all bundled products of this product.

                          property
                          -

                          currency:

                          +

                          currency: A three letter uppercase currency code conforming to the ISO 4217 standard, or the string N/A indicating that a currency is not applicable.

                          +
                            +
                          • Pattern: /^([A-Z][A-Z][A-Z]|N/A)$/
                          • +
                          property

                          ean: The European Article Number of the product.

                          @@ -4381,6 +5197,9 @@

                          Product

                          property

                          variationValues: The actual variation attribute ID - value pairs. Only for variant and variation group types.

                          +
                          property
                          +

                          shippingMethods: The array of applicable shipping methods for this product. This array can be empty. This property is only returned in context of the 'shipping_methods' expansion.

                          +
                          @@ -4929,6 +5748,29 @@

                          PublicProductListItem

                          +
                          + +

                          PublicProductListItemResult

                          +
                          PublicProductListItemResult: { data?: Array<PublicProductListItem>; limit: number; total: number } & {}
                          + +
                          +
                          +
                          property
                          +

                          limit: Maximum records to retrieve per request. The limit with its constraints (minimum, maximum, default) is defined by the request parameter limit of the endpoint returning this schema.

                          +
                          +
                          property
                          +

                          total: The total number of hits that match the search's criteria. This can be greater than the number of results returned as search results are pagenated.

                          +
                          +
                          property
                          +

                          data: The array of public product list items.

                          +
                          +
                          +
                          +

                          PublicProductListItemTypeEnum

                          @@ -4954,7 +5796,7 @@

                          PublicProductListResult

                          data: The array of product list link documents.

                          property
                          -

                          limit: Maximum records to retrieve per request, not to exceed the maximum defined. A limit must be at least 1 so at least one record is returned (if any match the criteria).

                          +

                          limit: Maximum records to retrieve per request. The limit with its constraints (minimum, maximum, default) is defined by the request parameter limit of the endpoint returning this schema.

                          property

                          total: The total number of hits that match the search's criteria. This can be greater than the number of results returned as search results are pagenated.

                          @@ -5126,7 +5968,7 @@

                          ResultBase

                          property
                          -

                          limit: Maximum records to retrieve per request, not to exceed the maximum defined. A limit must be at least 1 so at least one record is returned (if any match the criteria).

                          +

                          limit: Maximum records to retrieve per request. The limit with its constraints (minimum, maximum, default) is defined by the request parameter limit of the endpoint returning this schema.

                          property

                          total: The total number of hits that match the search's criteria. This can be greater than the number of results returned as search results are pagenated.

                          @@ -5329,7 +6171,7 @@

                          ShopperCustomersParameters

                          @@ -5341,10 +6183,10 @@

                          ShopperCustomersParameters

                          ShopperCustomersPathParameters

                          - +
                          @@ -5356,10 +6198,10 @@

                          ShopperCustomersPathParameters

                          ShopperCustomersQueryParameters

                          - +
                          @@ -5521,7 +6363,7 @@

                          createCustomerAddressPathParameters

                          createCustomerAddressPathParameters: { customerId: string; organizationId: string }
                          @@ -5542,7 +6384,7 @@

                          createCustomerAddressQueryParameters

                          createCustomerAddressQueryParameters: { siteId: string }
                          @@ -5560,7 +6402,7 @@

                          createCustomerPaymentInstrumentPathParameters

                          createCustomerPaymentInstrumentPathParameters: { customerId: string; organizationId: string }
                          @@ -5581,7 +6423,7 @@

                          createCustomerPaymentInstrumentQueryParameters

                          createCustomerPaymentInstrumentQueryParameters: { siteId: string }
                          @@ -5599,7 +6441,7 @@

                          createCustomerProductListItemPathParameterscreateCustomerProductListItemPathParameters: { customerId: string; listId: string; organizationId: string }

                          @@ -5623,7 +6465,7 @@

                          createCustomerProductListItemQueryParameterscreateCustomerProductListItemQueryParameters: { siteId: string }

                          @@ -5641,7 +6483,46 @@

                          createCustomerProductListPathParameters

                          createCustomerProductListPathParameters: { customerId: string; organizationId: string }
                          +
                          +

                          Type declaration

                          +
                            +
                          • +
                            customerId: string
                            +
                          • +
                          • +
                            organizationId: string
                            +
                          • +
                          +
                          +
                          +
                          + +

                          createCustomerProductListQueryParameters

                          +
                          createCustomerProductListQueryParameters: { siteId: string }
                          + +
                          +

                          Type declaration

                          +
                            +
                          • +
                            siteId: string
                            +
                          • +
                          +
                          +
                          +
                          + +

                          deleteCustomerPaymentInstrumentPathParameters

                          +
                          deleteCustomerPaymentInstrumentPathParameters: { customerId: string; organizationId: string; paymentInstrumentId: string }
                          +
                          @@ -5653,16 +6534,19 @@
                          customerId:
                          organizationId: string
                        • +
                        • +
                          paymentInstrumentId: string
                          +
                        - -

                        createCustomerProductListQueryParameters

                        -
                        createCustomerProductListQueryParameters: { siteId: string }
                        + +

                        deleteCustomerPaymentInstrumentQueryParameters

                        +
                        deleteCustomerPaymentInstrumentQueryParameters: { siteId: string }
                        @@ -5675,12 +6559,12 @@
                        siteId: - -

                        deleteCustomerPaymentInstrumentPathParameters

                        -
                        deleteCustomerPaymentInstrumentPathParameters: { customerId: string; organizationId: string; paymentInstrumentId: string }
                        + +

                        deleteCustomerPaymentMethodReferencePathParameters

                        +
                        deleteCustomerPaymentMethodReferencePathParameters: { customerId: string; organizationId: string; paymentMethodReferenceId: string }
                        @@ -5693,23 +6577,26 @@
                        customerId: : string

                      • -
                        paymentInstrumentId: string
                        +
                        paymentMethodReferenceId: string
                      - -

                      deleteCustomerPaymentInstrumentQueryParameters

                      -
                      deleteCustomerPaymentInstrumentQueryParameters: { siteId: string }
                      + +

                      deleteCustomerPaymentMethodReferenceQueryParameters

                      +
                      deleteCustomerPaymentMethodReferenceQueryParameters: { accountId: string; siteId: string }

                      Type declaration

                        +
                      • +
                        accountId: string
                        +
                      • siteId: string
                      • @@ -5722,7 +6609,7 @@

                        deleteCustomerProductListItemPathParametersdeleteCustomerProductListItemPathParameters: { customerId: string; itemId: string; listId: string; organizationId: string }

                      @@ -5749,7 +6636,7 @@

                      deleteCustomerProductListItemQueryParametersdeleteCustomerProductListItemQueryParameters: { siteId: string }

                      @@ -5767,7 +6654,7 @@

                      deleteCustomerProductListPathParameters

                      deleteCustomerProductListPathParameters: { customerId: string; listId: string; organizationId: string }
                      @@ -5791,7 +6678,7 @@

                      deleteCustomerProductListQueryParameters

                      deleteCustomerProductListQueryParameters: { siteId: string }
                      @@ -5809,7 +6696,7 @@

                      getCustomerAddressPathParameters

                      getCustomerAddressPathParameters: { addressName: string; customerId: string; organizationId: string }
                      @@ -5833,7 +6720,7 @@

                      getCustomerAddressQueryParameters

                      getCustomerAddressQueryParameters: { siteId: string }
                      @@ -5851,7 +6738,7 @@

                      getCustomerBasketsPathParameters

                      getCustomerBasketsPathParameters: { customerId: string; organizationId: string }
                      @@ -5872,7 +6759,7 @@

                      getCustomerBasketsQueryParameters

                      getCustomerBasketsQueryParameters: { siteId: string }
                      @@ -5890,7 +6777,7 @@

                      getCustomerOrdersPathParameters

                      getCustomerOrdersPathParameters: { customerId: string; organizationId: string }
                      @@ -5908,10 +6795,10 @@
                      organizationId:

                      getCustomerOrdersQueryParameters

                      -
                      getCustomerOrdersQueryParameters: { crossSites?: undefined | false | true; from?: undefined | string; limit?: undefined | number; offset?: undefined | number; siteId: string; status?: undefined | string; until?: undefined | string }
                      +
                      getCustomerOrdersQueryParameters: { crossSites?: undefined | false | true; expand?: undefined | "oms"; from?: undefined | string; limit?: undefined | number; offset?: undefined | number; siteId: string; status?: undefined | string; until?: undefined | string }
                      @@ -5920,6 +6807,9 @@

                      Type declaration

                    • Optional crossSites?: undefined | false | true
                    • +
                    • +
                      Optional expand?: undefined | "oms"
                      +
                    • Optional from?: undefined | string
                    • @@ -5947,7 +6837,7 @@

                      getCustomerPathParameters

                      getCustomerPathParameters: { customerId: string; organizationId: string }
                      @@ -5968,7 +6858,7 @@

                      getCustomerPaymentInstrumentPathParameters

                      getCustomerPaymentInstrumentPathParameters: { customerId: string; organizationId: string; paymentInstrumentId: string }
                      @@ -5992,7 +6882,7 @@

                      getCustomerPaymentInstrumentQueryParameters

                      getCustomerPaymentInstrumentQueryParameters: { siteId: string }
                      @@ -6010,7 +6900,7 @@

                      getCustomerProductListItemPathParameters

                      getCustomerProductListItemPathParameters: { customerId: string; itemId: string; listId: string; organizationId: string }
                      @@ -6037,7 +6927,7 @@

                      getCustomerProductListItemQueryParameters

                      getCustomerProductListItemQueryParameters: { siteId: string }
                      @@ -6055,7 +6945,7 @@

                      getCustomerProductListPathParameters

                      getCustomerProductListPathParameters: { customerId: string; listId: string; organizationId: string }
                      @@ -6079,7 +6969,7 @@

                      getCustomerProductListQueryParameters

                      getCustomerProductListQueryParameters: { siteId: string }
                      @@ -6097,7 +6987,7 @@

                      getCustomerProductListsPathParameters

                      getCustomerProductListsPathParameters: { customerId: string; organizationId: string }
                      @@ -6118,7 +7008,7 @@

                      getCustomerProductListsQueryParameters

                      getCustomerProductListsQueryParameters: { siteId: string }
                      @@ -6133,15 +7023,18 @@
                      siteId:

                      getCustomerQueryParameters

                      -
                      getCustomerQueryParameters: { siteId: string }
                      +
                      getCustomerQueryParameters: { expand?: Array<"none" | "addresses" | "paymentinstruments" | "paymentmethodreferences">; siteId: string }

                      Type declaration

                        +
                      • +
                        Optional expand?: Array<"none" | "addresses" | "paymentinstruments" | "paymentmethodreferences">
                        +
                      • siteId: string
                      • @@ -6154,7 +7047,7 @@

                        getExternalProfilePathParameters

                        getExternalProfilePathParameters: { organizationId: string }
                        @@ -6172,7 +7065,7 @@

                        getExternalProfileQueryParameters

                        getExternalProfileQueryParameters: { authenticationProviderId: string; externalId: string; siteId: string }
                        @@ -6196,7 +7089,7 @@

                        getProductListItemPathParameters

                        getProductListItemPathParameters: { itemId: string; listId: string; organizationId: string }
                        @@ -6220,12 +7113,54 @@

                        getProductListItemQueryParameters

                        getProductListItemQueryParameters: { siteId: string }
                        +
                        +

                        Type declaration

                        +
                          +
                        • +
                          siteId: string
                          +
                        • +
                        +
                        +
                      +
                      + +

                      getPublicProductListItemsPathParameters

                      +
                      getPublicProductListItemsPathParameters: { listId: string; organizationId: string }
                      + +
                      +

                      Type declaration

                      +
                        +
                      • +
                        listId: string
                        +
                      • +
                      • +
                        organizationId: string
                        +
                      • +
                      +
                      +
                      +
                      + +

                      getPublicProductListItemsQueryParameters

                      +
                      getPublicProductListItemsQueryParameters: { expand?: Array<"product" | "images" | "availability">; siteId: string }
                      +

                      Type declaration

                        +
                      • +
                        Optional expand?: Array<"product" | "images" | "availability">
                        +
                      • siteId: string
                      • @@ -6238,7 +7173,7 @@

                        getPublicProductListPathParameters

                        getPublicProductListPathParameters: { listId: string; organizationId: string }
                        @@ -6259,7 +7194,7 @@

                        getPublicProductListQueryParameters

                        getPublicProductListQueryParameters: { siteId: string }
                        @@ -6277,7 +7212,7 @@

                        getPublicProductListsBySearchTermPathPara
                        getPublicProductListsBySearchTermPathParameters: { organizationId: string }
                        @@ -6295,7 +7230,7 @@

                        getPublicProductListsBySearchTermQueryPar
                        getPublicProductListsBySearchTermQueryParameters: { email?: undefined | string; firstName?: undefined | string; lastName?: undefined | string; siteId: string }
                        @@ -6322,7 +7257,7 @@

                        getResetPasswordTokenPathParameters

                        getResetPasswordTokenPathParameters: { organizationId: string }
                        @@ -6340,7 +7275,7 @@

                        getResetPasswordTokenQueryParameters

                        getResetPasswordTokenQueryParameters: { siteId: string }
                        @@ -6358,7 +7293,7 @@

                        registerCustomerPathParameters

                        registerCustomerPathParameters: { organizationId: string }
                        @@ -6376,7 +7311,7 @@

                        registerCustomerQueryParameters

                        registerCustomerQueryParameters: { siteId: string }
                        @@ -6394,7 +7329,7 @@

                        registerExternalProfilePathParameters

                        registerExternalProfilePathParameters: { organizationId: string }
                        @@ -6412,7 +7347,7 @@

                        registerExternalProfileQueryParameters

                        registerExternalProfileQueryParameters: { siteId: string }
                        @@ -6430,7 +7365,7 @@

                        removeCustomerAddressPathParameters

                        removeCustomerAddressPathParameters: { addressName: string; customerId: string; organizationId: string }
                        @@ -6454,7 +7389,7 @@

                        removeCustomerAddressQueryParameters

                        removeCustomerAddressQueryParameters: { siteId: string }
                        @@ -6472,7 +7407,7 @@

                        resetPasswordPathParameters

                        resetPasswordPathParameters: { organizationId: string }
                        @@ -6490,7 +7425,7 @@

                        resetPasswordQueryParameters

                        resetPasswordQueryParameters: { siteId: string }
                        @@ -6508,7 +7443,7 @@

                        updateCustomerAddressPathParameters

                        updateCustomerAddressPathParameters: { addressName: string; customerId: string; organizationId: string }
                        @@ -6532,7 +7467,7 @@

                        updateCustomerAddressQueryParameters

                        updateCustomerAddressQueryParameters: { siteId: string }
                        @@ -6550,7 +7485,7 @@

                        updateCustomerPasswordPathParameters

                        updateCustomerPasswordPathParameters: { customerId: string; organizationId: string }
                        @@ -6571,7 +7506,7 @@

                        updateCustomerPasswordQueryParameters

                        updateCustomerPasswordQueryParameters: { siteId: string }
                        @@ -6589,7 +7524,28 @@

                        updateCustomerPathParameters

                        updateCustomerPathParameters: { customerId: string; organizationId: string }
                        +
                        +

                        Type declaration

                        +
                          +
                        • +
                          customerId: string
                          +
                        • +
                        • +
                          organizationId: string
                          +
                        • +
                        +
                        +

                      +
                      + +

                      updateCustomerPaymentInstrumentPathParameters

                      +
                      updateCustomerPaymentInstrumentPathParameters: { customerId: string; organizationId: string; paymentInstrumentId: string }
                      +
                      @@ -6601,6 +7557,27 @@
                      customerId:
                      organizationId: string
                    • +
                    • +
                      paymentInstrumentId: string
                      +
                    • +
                    +

                    + +
                    + +

                    updateCustomerPaymentInstrumentQueryParameters

                    +
                    updateCustomerPaymentInstrumentQueryParameters: { siteId: string }
                    + +
                    +

                    Type declaration

                    +
                      +
                    • +
                      siteId: string
                      +
                    @@ -6610,7 +7587,7 @@

                    updateCustomerProductListItemPathParametersupdateCustomerProductListItemPathParameters: { customerId: string; itemId: string; listId: string; organizationId: string }

                    @@ -6637,7 +7614,7 @@

                    updateCustomerProductListItemQueryParametersupdateCustomerProductListItemQueryParameters: { siteId: string }

                    @@ -6655,7 +7632,7 @@

                    updateCustomerProductListPathParameters

                    updateCustomerProductListPathParameters: { customerId: string; listId: string; organizationId: string }
                    @@ -6679,7 +7656,7 @@

                    updateCustomerProductListQueryParameters

                    updateCustomerProductListQueryParameters: { siteId: string }
                    @@ -6697,7 +7674,7 @@

                    updateCustomerQueryParameters

                    updateCustomerQueryParameters: { siteId: string }
                    @@ -6777,6 +7754,9 @@

                    Const defaultBaseUri shopperOrders

                  • +
                  • + shopperPayments +
                  • shopperProducts
                  • @@ -6814,6 +7794,12 @@

                    Const defaultBaseUri BasketChannelTypeEnum

                  • +
                  • + BasketProductItem +
                  • +
                  • + BasketProductItem +
                  • BasketTaxationEnum
                  • @@ -6850,12 +7836,6 @@

                    Const defaultBaseUri CouponItemStatusCodeEnum

                  • -
                  • - CurrencyCode -
                  • -
                  • - CurrencyCode -
                  • Customer
                  • @@ -6922,6 +7902,30 @@

                    Const defaultBaseUri CustomerPaymentInstrumentRequest

                  • +
                  • + CustomerPaymentInstrumentUpdateRequest +
                  • +
                  • + CustomerPaymentInstrumentUpdateRequest +
                  • +
                  • + CustomerPaymentInstrumentUpdateRequestPaymentCard +
                  • +
                  • + CustomerPaymentInstrumentUpdateRequestPaymentCard +
                  • +
                  • + CustomerPaymentMethodReference +
                  • +
                  • + CustomerPaymentMethodReference +
                  • +
                  • + CustomerPaymentMethodReferenceTypeEnum +
                  • +
                  • + CustomerPaymentMethodReferenceTypeEnum +
                  • CustomerProductList
                  • @@ -6982,6 +7986,30 @@

                    Const defaultBaseUri ErrorResponse

                  • +
                  • + GetCustomerExpandEnum +
                  • +
                  • + GetCustomerExpandEnum +
                  • +
                  • + GetCustomerOrdersExpandEnum +
                  • +
                  • + GetCustomerOrdersExpandEnum +
                  • +
                  • + GetPublicProductListItemsExpandEnum +
                  • +
                  • + GetPublicProductListItemsExpandEnum +
                  • +
                  • + GiftCardResponse +
                  • +
                  • + GiftCardResponse +
                  • GiftCertificateItem
                  • @@ -7019,10 +8047,34 @@

                    Const defaultBaseUriMaster

                  • - NoValue + OmsData +
                  • +
                  • + OmsData +
                  • +
                  • + OmsProductData +
                  • +
                  • + OmsProductData +
                  • +
                  • + OmsProductDataStatusEnum +
                  • +
                  • + OmsProductDataStatusEnum +
                  • +
                  • + OmsShipment +
                  • +
                  • + OmsShipment
                  • - NoValue + OmsShipmentItem +
                  • +
                  • + OmsShipmentItem
                  • Option @@ -7078,12 +8130,36 @@

                    Const defaultBaseUri OrderPaymentInstrument

                  • +
                  • + OrderPaymentInstrumentPaymentReference +
                  • +
                  • + OrderPaymentInstrumentPaymentReference +
                  • +
                  • + OrderPaymentInstrumentPaymentReferenceGatewayEnum +
                  • +
                  • + OrderPaymentInstrumentPaymentReferenceGatewayEnum +
                  • +
                  • + OrderPaymentInstrumentPaymentReferenceGatewayProperties +
                  • +
                  • + OrderPaymentInstrumentPaymentReferenceGatewayProperties +
                  • OrderPaymentStatusEnum
                  • OrderPaymentStatusEnum
                  • +
                  • + OrderProductItem +
                  • +
                  • + OrderProductItem +
                  • OrderShippingStatusEnum
                  • @@ -7258,6 +8334,12 @@

                    Const defaultBaseUri PublicProductListItem

                  • +
                  • + PublicProductListItemResult +
                  • +
                  • + PublicProductListItemResult +
                  • PublicProductListItemTypeEnum
                  • @@ -7459,6 +8541,18 @@

                    Const defaultBaseUri deleteCustomerPaymentInstrumentQueryParameters

                  • +
                  • + deleteCustomerPaymentMethodReferencePathParameters +
                  • +
                  • + deleteCustomerPaymentMethodReferencePathParameters +
                  • +
                  • + deleteCustomerPaymentMethodReferenceQueryParameters +
                  • +
                  • + deleteCustomerPaymentMethodReferenceQueryParameters +
                  • deleteCustomerProductListItemPathParameters
                  • @@ -7603,6 +8697,18 @@

                    Const defaultBaseUri getProductListItemQueryParameters

                  • +
                  • + getPublicProductListItemsPathParameters +
                  • +
                  • + getPublicProductListItemsPathParameters +
                  • +
                  • + getPublicProductListItemsQueryParameters +
                  • +
                  • + getPublicProductListItemsQueryParameters +
                  • getPublicProductListPathParameters
                  • @@ -7717,6 +8823,18 @@

                    Const defaultBaseUri updateCustomerPathParameters

                  • +
                  • + updateCustomerPaymentInstrumentPathParameters +
                  • +
                  • + updateCustomerPaymentInstrumentPathParameters +
                  • +
                  • + updateCustomerPaymentInstrumentQueryParameters +
                  • +
                  • + updateCustomerPaymentInstrumentQueryParameters +
                  • updateCustomerProductListItemPathParameters
                  • @@ -7756,6 +8874,9 @@

                    Const defaultBaseUri BasketChannelTypeEnum

                  • +
                  • + BasketProductItem +
                  • BasketTaxationEnum
                  • @@ -7774,9 +8895,6 @@

                    Const defaultBaseUri CouponItemStatusCodeEnum

                  • -
                  • - CurrencyCode -
                  • Customer
                  • @@ -7810,6 +8928,18 @@

                    Const defaultBaseUri CustomerPaymentInstrumentRequest

                  • +
                  • + CustomerPaymentInstrumentUpdateRequest +
                  • +
                  • + CustomerPaymentInstrumentUpdateRequestPaymentCard +
                  • +
                  • + CustomerPaymentMethodReference +
                  • +
                  • + CustomerPaymentMethodReferenceTypeEnum +
                  • CustomerProductList
                  • @@ -7840,6 +8970,18 @@

                    Const defaultBaseUri ErrorResponse

                  • +
                  • + GetCustomerExpandEnum +
                  • +
                  • + GetCustomerOrdersExpandEnum +
                  • +
                  • + GetPublicProductListItemsExpandEnum +
                  • +
                  • + GiftCardResponse +
                  • GiftCertificateItem
                  • @@ -7859,7 +9001,19 @@

                    Const defaultBaseUriMaster

                  • - NoValue + OmsData +
                  • +
                  • + OmsProductData +
                  • +
                  • + OmsProductDataStatusEnum +
                  • +
                  • + OmsShipment +
                  • +
                  • + OmsShipmentItem
                  • Option @@ -7888,9 +9042,21 @@

                    Const defaultBaseUri OrderPaymentInstrument

                  • +
                  • + OrderPaymentInstrumentPaymentReference +
                  • +
                  • + OrderPaymentInstrumentPaymentReferenceGatewayEnum +
                  • +
                  • + OrderPaymentInstrumentPaymentReferenceGatewayProperties +
                  • OrderPaymentStatusEnum
                  • +
                  • + OrderProductItem +
                  • OrderShippingStatusEnum
                  • @@ -7978,6 +9144,9 @@

                    Const defaultBaseUri PublicProductListItem

                  • +
                  • + PublicProductListItemResult +
                  • PublicProductListItemTypeEnum
                  • @@ -8074,6 +9243,12 @@

                    Const defaultBaseUri deleteCustomerPaymentInstrumentQueryParameters

                  • +
                  • + deleteCustomerPaymentMethodReferencePathParameters +
                  • +
                  • + deleteCustomerPaymentMethodReferenceQueryParameters +
                  • deleteCustomerProductListItemPathParameters
                  • @@ -8146,6 +9321,12 @@

                    Const defaultBaseUri getProductListItemQueryParameters

                  • +
                  • + getPublicProductListItemsPathParameters +
                  • +
                  • + getPublicProductListItemsQueryParameters +
                  • getPublicProductListPathParameters
                  • @@ -8203,6 +9384,12 @@

                    Const defaultBaseUri updateCustomerPathParameters

                  • +
                  • + updateCustomerPaymentInstrumentPathParameters +
                  • +
                  • + updateCustomerPaymentInstrumentQueryParameters +
                  • updateCustomerProductListItemPathParameters
                  • diff --git a/docs/modules/shoppercustomers.shoppercustomerstypes.html b/docs/modules/shoppercustomers.shoppercustomerstypes.html index 99ac7960..917fb75c 100644 --- a/docs/modules/shoppercustomers.shoppercustomerstypes.html +++ b/docs/modules/shoppercustomers.shoppercustomerstypes.html @@ -78,13 +78,13 @@

                    Type aliases

                    • Basket
                    • BasketChannelTypeEnum
                    • +
                    • BasketProductItem
                    • BasketTaxationEnum
                    • BasketsResult
                    • BonusDiscountLineItem
                    • BundledProduct
                    • CouponItem
                    • CouponItemStatusCodeEnum
                    • -
                    • CurrencyCode
                    • Customer
                    • CustomerAddress
                    • CustomerAddressInfo
                    • @@ -96,6 +96,10 @@

                      Type aliases

                    • CustomerPaymentCardRequest
                    • CustomerPaymentInstrument
                    • CustomerPaymentInstrumentRequest
                    • +
                    • CustomerPaymentInstrumentUpdateRequest
                    • +
                    • CustomerPaymentInstrumentUpdateRequestPaymentCard
                    • +
                    • CustomerPaymentMethodReference
                    • +
                    • CustomerPaymentMethodReferenceTypeEnum
                    • CustomerProductList
                    • CustomerProductListItem
                    • CustomerProductListItemTypeEnum
                    • @@ -106,13 +110,21 @@

                      Type aliases

                    • Discount
                    • DiscountTypeEnum
                    • ErrorResponse
                    • +
                    • GetCustomerExpandEnum
                    • +
                    • GetCustomerOrdersExpandEnum
                    • +
                    • GetPublicProductListItemsExpandEnum
                    • +
                    • GiftCardResponse
                    • GiftCertificateItem
                    • GroupedTaxItem
                    • Image
                    • ImageGroup
                    • Inventory
                    • Master
                    • -
                    • NoValue
                    • +
                    • OmsData
                    • +
                    • OmsProductData
                    • +
                    • OmsProductDataStatusEnum
                    • +
                    • OmsShipment
                    • +
                    • OmsShipmentItem
                    • Option
                    • OptionItem
                    • OptionValue
                    • @@ -122,7 +134,11 @@

                      Type aliases

                    • OrderConfirmationStatusEnum
                    • OrderExportStatusEnum
                    • OrderPaymentInstrument
                    • +
                    • OrderPaymentInstrumentPaymentReference
                    • +
                    • OrderPaymentInstrumentPaymentReferenceGatewayEnum
                    • +
                    • OrderPaymentInstrumentPaymentReferenceGatewayProperties
                    • OrderPaymentStatusEnum
                    • +
                    • OrderProductItem
                    • OrderShippingStatusEnum
                    • OrderStatusEnum
                    • OrderTaxationEnum
                    • @@ -152,6 +168,7 @@

                      Type aliases

                    • PublicProductListInfo
                    • PublicProductListInfoTypeEnum
                    • PublicProductListItem
                    • +
                    • PublicProductListItemResult
                    • PublicProductListItemTypeEnum
                    • PublicProductListResult
                    • PublicProductListTypeEnum
                    • @@ -183,6 +200,8 @@

                      Type aliases

                    • createCustomerProductListQueryParameters
                    • deleteCustomerPaymentInstrumentPathParameters
                    • deleteCustomerPaymentInstrumentQueryParameters
                    • +
                    • deleteCustomerPaymentMethodReferencePathParameters
                    • +
                    • deleteCustomerPaymentMethodReferenceQueryParameters
                    • deleteCustomerProductListItemPathParameters
                    • deleteCustomerProductListItemQueryParameters
                    • deleteCustomerProductListPathParameters
                    • @@ -207,6 +226,8 @@

                      Type aliases

                    • getExternalProfileQueryParameters
                    • getProductListItemPathParameters
                    • getProductListItemQueryParameters
                    • +
                    • getPublicProductListItemsPathParameters
                    • +
                    • getPublicProductListItemsQueryParameters
                    • getPublicProductListPathParameters
                    • getPublicProductListQueryParameters
                    • getPublicProductListsBySearchTermPathParameters
                    • @@ -226,6 +247,8 @@

                      Type aliases

                    • updateCustomerPasswordPathParameters
                    • updateCustomerPasswordQueryParameters
                    • updateCustomerPathParameters
                    • +
                    • updateCustomerPaymentInstrumentPathParameters
                    • +
                    • updateCustomerPaymentInstrumentQueryParameters
                    • updateCustomerProductListItemPathParameters
                    • updateCustomerProductListItemQueryParameters
                    • updateCustomerProductListPathParameters
                    • @@ -244,7 +267,7 @@

                      Basket

                      Basket: ShopperCustomersModelTypes.Basket
                      @@ -254,7 +277,17 @@

                      BasketChannelTypeEnum

                      BasketChannelTypeEnum: ShopperCustomersModelTypes.BasketChannelTypeEnum
                      + +
                      + +

                      BasketProductItem

                      +
                      BasketProductItem: ShopperCustomersModelTypes.BasketProductItem
                      +
                      @@ -264,7 +297,7 @@

                      BasketTaxationEnum

                      BasketTaxationEnum: ShopperCustomersModelTypes.BasketTaxationEnum
                      @@ -274,7 +307,7 @@

                      BasketsResult

                      BasketsResult: ShopperCustomersModelTypes.BasketsResult
                      @@ -284,7 +317,7 @@

                      BonusDiscountLineItem

                      BonusDiscountLineItem: ShopperCustomersModelTypes.BonusDiscountLineItem
                      @@ -294,7 +327,7 @@

                      BundledProduct

                      BundledProduct: ShopperCustomersModelTypes.BundledProduct
                      @@ -304,7 +337,7 @@

                      CouponItem

                      CouponItem: ShopperCustomersModelTypes.CouponItem
                      @@ -314,17 +347,7 @@

                      CouponItemStatusCodeEnum

                      CouponItemStatusCodeEnum: ShopperCustomersModelTypes.CouponItemStatusCodeEnum
                      - -
                      - -

                      CurrencyCode

                      -
                      CurrencyCode: ShopperCustomersModelTypes.CurrencyCode
                      -
                      @@ -334,7 +357,7 @@

                      Customer

                      Customer: ShopperCustomersModelTypes.Customer
                      @@ -344,7 +367,7 @@

                      CustomerAddress

                      CustomerAddress: ShopperCustomersModelTypes.CustomerAddress
                      @@ -354,7 +377,7 @@

                      CustomerAddressInfo

                      CustomerAddressInfo: ShopperCustomersModelTypes.CustomerAddressInfo
                      @@ -364,7 +387,7 @@

                      CustomerAuthTypeEnum

                      CustomerAuthTypeEnum: ShopperCustomersModelTypes.CustomerAuthTypeEnum
                      @@ -374,7 +397,7 @@

                      CustomerExtProfileRequest

                      CustomerExtProfileRequest: ShopperCustomersModelTypes.CustomerExtProfileRequest
                      @@ -384,7 +407,7 @@

                      CustomerExternalProfile

                      CustomerExternalProfile: ShopperCustomersModelTypes.CustomerExternalProfile
                      @@ -394,7 +417,7 @@

                      CustomerInfo

                      CustomerInfo: ShopperCustomersModelTypes.CustomerInfo
                      @@ -404,7 +427,7 @@

                      CustomerOrderResult

                      CustomerOrderResult: ShopperCustomersModelTypes.CustomerOrderResult
                      @@ -414,7 +437,7 @@

                      CustomerPaymentCardRequest

                      CustomerPaymentCardRequest: ShopperCustomersModelTypes.CustomerPaymentCardRequest
                      @@ -424,7 +447,7 @@

                      CustomerPaymentInstrument

                      CustomerPaymentInstrument: ShopperCustomersModelTypes.CustomerPaymentInstrument
                      @@ -434,7 +457,47 @@

                      CustomerPaymentInstrumentRequest

                      CustomerPaymentInstrumentRequest: ShopperCustomersModelTypes.CustomerPaymentInstrumentRequest
                      + +
                      + +

                      CustomerPaymentInstrumentUpdateRequest

                      +
                      CustomerPaymentInstrumentUpdateRequest: ShopperCustomersModelTypes.CustomerPaymentInstrumentUpdateRequest
                      + +
                      +
                      + +

                      CustomerPaymentInstrumentUpdateRequestPaymentCard

                      +
                      CustomerPaymentInstrumentUpdateRequestPaymentCard: ShopperCustomersModelTypes.CustomerPaymentInstrumentUpdateRequestPaymentCard
                      + +
                      +
                      + +

                      CustomerPaymentMethodReference

                      +
                      CustomerPaymentMethodReference: ShopperCustomersModelTypes.CustomerPaymentMethodReference
                      + +
                      +
                      + +

                      CustomerPaymentMethodReferenceTypeEnum

                      +
                      CustomerPaymentMethodReferenceTypeEnum: ShopperCustomersModelTypes.CustomerPaymentMethodReferenceTypeEnum
                      +
                      @@ -444,7 +507,7 @@

                      CustomerProductList

                      CustomerProductList: ShopperCustomersModelTypes.CustomerProductList
                      @@ -454,7 +517,7 @@

                      CustomerProductListItem

                      CustomerProductListItem: ShopperCustomersModelTypes.CustomerProductListItem
                      @@ -464,7 +527,7 @@

                      CustomerProductListItemTypeEnum

                      CustomerProductListItemTypeEnum: ShopperCustomersModelTypes.CustomerProductListItemTypeEnum
                      @@ -474,7 +537,7 @@

                      CustomerProductListRegistrant

                      CustomerProductListRegistrant: ShopperCustomersModelTypes.CustomerProductListRegistrant
                      @@ -484,7 +547,7 @@

                      CustomerProductListResult

                      CustomerProductListResult: ShopperCustomersModelTypes.CustomerProductListResult
                      @@ -494,7 +557,7 @@

                      CustomerProductListTypeEnum

                      CustomerProductListTypeEnum: ShopperCustomersModelTypes.CustomerProductListTypeEnum
                      @@ -504,7 +567,7 @@

                      CustomerRegistration

                      CustomerRegistration: ShopperCustomersModelTypes.CustomerRegistration
                      @@ -514,7 +577,7 @@

                      Discount

                      Discount: ShopperCustomersModelTypes.Discount
                      @@ -524,7 +587,7 @@

                      DiscountTypeEnum

                      DiscountTypeEnum: ShopperCustomersModelTypes.DiscountTypeEnum
                      @@ -534,7 +597,47 @@

                      ErrorResponse

                      ErrorResponse: ShopperCustomersModelTypes.ErrorResponse
                      + +
                      + +

                      GetCustomerExpandEnum

                      +
                      GetCustomerExpandEnum: ShopperCustomersApiTypes.GetCustomerExpandEnum
                      + +
                      +
                      + +

                      GetCustomerOrdersExpandEnum

                      +
                      GetCustomerOrdersExpandEnum: ShopperCustomersApiTypes.GetCustomerOrdersExpandEnum
                      + +
                      +
                      + +

                      GetPublicProductListItemsExpandEnum

                      +
                      GetPublicProductListItemsExpandEnum: ShopperCustomersApiTypes.GetPublicProductListItemsExpandEnum
                      + +
                      +
                      + +

                      GiftCardResponse

                      +
                      GiftCardResponse: ShopperCustomersModelTypes.GiftCardResponse
                      +
                      @@ -544,7 +647,7 @@

                      GiftCertificateItem

                      GiftCertificateItem: ShopperCustomersModelTypes.GiftCertificateItem
                      @@ -554,7 +657,7 @@

                      GroupedTaxItem

                      GroupedTaxItem: ShopperCustomersModelTypes.GroupedTaxItem
                      @@ -564,7 +667,7 @@

                      Image

                      Image: ShopperCustomersModelTypes.Image
                      @@ -574,7 +677,7 @@

                      ImageGroup

                      ImageGroup: ShopperCustomersModelTypes.ImageGroup
                      @@ -584,7 +687,7 @@

                      Inventory

                      Inventory: ShopperCustomersModelTypes.Inventory
                      @@ -594,17 +697,57 @@

                      Master

                      Master: ShopperCustomersModelTypes.Master
                      - -

                      NoValue

                      -
                      NoValue: ShopperCustomersModelTypes.NoValue
                      + +

                      OmsData

                      +
                      OmsData: ShopperCustomersModelTypes.OmsData
                      +
                      +
                      + +

                      OmsProductData

                      +
                      OmsProductData: ShopperCustomersModelTypes.OmsProductData
                      + +
                      +
                      + +

                      OmsProductDataStatusEnum

                      +
                      OmsProductDataStatusEnum: ShopperCustomersModelTypes.OmsProductDataStatusEnum
                      + +
                      +
                      + +

                      OmsShipment

                      +
                      OmsShipment: ShopperCustomersModelTypes.OmsShipment
                      + +
                      +
                      + +

                      OmsShipmentItem

                      +
                      OmsShipmentItem: ShopperCustomersModelTypes.OmsShipmentItem
                      +
                      @@ -614,7 +757,7 @@

                      Option

                      Option: ShopperCustomersModelTypes.Option
                      @@ -624,7 +767,7 @@

                      OptionItem

                      OptionItem: ShopperCustomersModelTypes.OptionItem
                      @@ -634,7 +777,7 @@

                      OptionValue

                      OptionValue: ShopperCustomersModelTypes.OptionValue
                      @@ -644,7 +787,7 @@

                      Order

                      Order: ShopperCustomersModelTypes.Order
                      @@ -654,7 +797,7 @@

                      OrderAddress

                      OrderAddress: ShopperCustomersModelTypes.OrderAddress
                      @@ -664,7 +807,7 @@

                      OrderChannelTypeEnum

                      OrderChannelTypeEnum: ShopperCustomersModelTypes.OrderChannelTypeEnum
                      @@ -674,7 +817,7 @@

                      OrderConfirmationStatusEnum

                      OrderConfirmationStatusEnum: ShopperCustomersModelTypes.OrderConfirmationStatusEnum
                      @@ -684,7 +827,7 @@

                      OrderExportStatusEnum

                      OrderExportStatusEnum: ShopperCustomersModelTypes.OrderExportStatusEnum
                      @@ -694,7 +837,37 @@

                      OrderPaymentInstrument

                      OrderPaymentInstrument: ShopperCustomersModelTypes.OrderPaymentInstrument
                      + +
                      + +

                      OrderPaymentInstrumentPaymentReference

                      +
                      OrderPaymentInstrumentPaymentReference: ShopperCustomersModelTypes.OrderPaymentInstrumentPaymentReference
                      + +
                      +
                      + +

                      OrderPaymentInstrumentPaymentReferenceGatewayEnum

                      +
                      OrderPaymentInstrumentPaymentReferenceGatewayEnum: ShopperCustomersModelTypes.OrderPaymentInstrumentPaymentReferenceGatewayEnum
                      + +
                      +
                      + +

                      OrderPaymentInstrumentPaymentReferenceGatewayProperties

                      +
                      OrderPaymentInstrumentPaymentReferenceGatewayProperties: ShopperCustomersModelTypes.OrderPaymentInstrumentPaymentReferenceGatewayProperties
                      +
                      @@ -704,7 +877,17 @@

                      OrderPaymentStatusEnum

                      OrderPaymentStatusEnum: ShopperCustomersModelTypes.OrderPaymentStatusEnum
                      + +
                      + +

                      OrderProductItem

                      +
                      OrderProductItem: ShopperCustomersModelTypes.OrderProductItem
                      +
                      @@ -714,7 +897,7 @@

                      OrderShippingStatusEnum

                      OrderShippingStatusEnum: ShopperCustomersModelTypes.OrderShippingStatusEnum
                      @@ -724,7 +907,7 @@

                      OrderStatusEnum

                      OrderStatusEnum: ShopperCustomersModelTypes.OrderStatusEnum
                      @@ -734,7 +917,7 @@

                      OrderTaxationEnum

                      OrderTaxationEnum: ShopperCustomersModelTypes.OrderTaxationEnum
                      @@ -744,7 +927,7 @@

                      PageMetaTag

                      PageMetaTag: ShopperCustomersModelTypes.PageMetaTag
                      @@ -754,7 +937,7 @@

                      PaginatedResultBase

                      PaginatedResultBase: ShopperCustomersModelTypes.PaginatedResultBase
                      @@ -764,7 +947,7 @@

                      PasswordChangeRequest

                      PasswordChangeRequest: ShopperCustomersModelTypes.PasswordChangeRequest
                      @@ -774,7 +957,7 @@

                      PaymentBankAccountRequest

                      PaymentBankAccountRequest: ShopperCustomersModelTypes.PaymentBankAccountRequest
                      @@ -784,7 +967,7 @@

                      PaymentCard

                      PaymentCard: ShopperCustomersModelTypes.PaymentCard
                      @@ -794,7 +977,7 @@

                      PriceAdjustment

                      PriceAdjustment: ShopperCustomersModelTypes.PriceAdjustment
                      @@ -804,7 +987,7 @@

                      PriceRange

                      PriceRange: ShopperCustomersModelTypes.PriceRange
                      @@ -814,7 +997,7 @@

                      Product

                      Product: ShopperCustomersModelTypes.Product
                      @@ -824,7 +1007,7 @@

                      ProductDetailsLink

                      ProductDetailsLink: ShopperCustomersModelTypes.ProductDetailsLink
                      @@ -834,7 +1017,7 @@

                      ProductItem

                      ProductItem: ShopperCustomersModelTypes.ProductItem
                      @@ -844,7 +1027,7 @@

                      ProductLink

                      ProductLink: ShopperCustomersModelTypes.ProductLink
                      @@ -854,7 +1037,7 @@

                      ProductLinkTypeEnum

                      ProductLinkTypeEnum: ShopperCustomersModelTypes.ProductLinkTypeEnum
                      @@ -864,7 +1047,7 @@

                      ProductListEvent

                      ProductListEvent: ShopperCustomersModelTypes.ProductListEvent
                      @@ -874,7 +1057,7 @@

                      ProductListItemReference

                      ProductListItemReference: ShopperCustomersModelTypes.ProductListItemReference
                      @@ -884,7 +1067,7 @@

                      ProductListItemReferenceTypeEnum

                      ProductListItemReferenceTypeEnum: ShopperCustomersModelTypes.ProductListItemReferenceTypeEnum
                      @@ -894,7 +1077,7 @@

                      ProductListLink

                      ProductListLink: ShopperCustomersModelTypes.ProductListLink
                      @@ -904,7 +1087,7 @@

                      ProductListLinkTypeEnum

                      ProductListLinkTypeEnum: ShopperCustomersModelTypes.ProductListLinkTypeEnum
                      @@ -914,7 +1097,7 @@

                      ProductListRegistrant

                      ProductListRegistrant: ShopperCustomersModelTypes.ProductListRegistrant
                      @@ -924,7 +1107,7 @@

                      ProductListShippingAddress

                      ProductListShippingAddress: ShopperCustomersModelTypes.ProductListShippingAddress
                      @@ -934,7 +1117,7 @@

                      ProductPriceTable

                      ProductPriceTable: ShopperCustomersModelTypes.ProductPriceTable
                      @@ -944,7 +1127,7 @@

                      ProductPromotion

                      ProductPromotion: ShopperCustomersModelTypes.ProductPromotion
                      @@ -954,7 +1137,7 @@

                      ProductType

                      ProductType: ShopperCustomersModelTypes.ProductType
                      @@ -964,7 +1147,7 @@

                      PublicProductList

                      PublicProductList: ShopperCustomersModelTypes.PublicProductList
                      @@ -974,7 +1157,7 @@

                      PublicProductListInfo

                      PublicProductListInfo: ShopperCustomersModelTypes.PublicProductListInfo
                      @@ -984,7 +1167,7 @@

                      PublicProductListInfoTypeEnum

                      PublicProductListInfoTypeEnum: ShopperCustomersModelTypes.PublicProductListInfoTypeEnum
                      @@ -994,7 +1177,17 @@

                      PublicProductListItem

                      PublicProductListItem: ShopperCustomersModelTypes.PublicProductListItem
                      + +
                      + +

                      PublicProductListItemResult

                      +
                      PublicProductListItemResult: ShopperCustomersModelTypes.PublicProductListItemResult
                      +
                      @@ -1004,7 +1197,7 @@

                      PublicProductListItemTypeEnum

                      PublicProductListItemTypeEnum: ShopperCustomersModelTypes.PublicProductListItemTypeEnum
                      @@ -1014,7 +1207,7 @@

                      PublicProductListResult

                      PublicProductListResult: ShopperCustomersModelTypes.PublicProductListResult
                      @@ -1024,7 +1217,7 @@

                      PublicProductListTypeEnum

                      PublicProductListTypeEnum: ShopperCustomersModelTypes.PublicProductListTypeEnum
                      @@ -1034,7 +1227,7 @@

                      Recommendation

                      Recommendation: ShopperCustomersModelTypes.Recommendation
                      @@ -1044,7 +1237,7 @@

                      RecommendationType

                      RecommendationType: ShopperCustomersModelTypes.RecommendationType
                      @@ -1054,7 +1247,7 @@

                      ResetPasswordRequest

                      ResetPasswordRequest: ShopperCustomersModelTypes.ResetPasswordRequest
                      @@ -1064,7 +1257,7 @@

                      ResetPasswordToken

                      ResetPasswordToken: ShopperCustomersModelTypes.ResetPasswordToken
                      @@ -1074,7 +1267,7 @@

                      ResetPasswordTokenRequest

                      ResetPasswordTokenRequest: ShopperCustomersModelTypes.ResetPasswordTokenRequest
                      @@ -1084,7 +1277,7 @@

                      ResultBase

                      ResultBase: ShopperCustomersModelTypes.ResultBase
                      @@ -1094,7 +1287,7 @@

                      Shipment

                      Shipment: ShopperCustomersModelTypes.Shipment
                      @@ -1104,7 +1297,7 @@

                      ShipmentShippingStatusEnum

                      ShipmentShippingStatusEnum: ShopperCustomersModelTypes.ShipmentShippingStatusEnum
                      @@ -1114,7 +1307,7 @@

                      ShippingItem

                      ShippingItem: ShopperCustomersModelTypes.ShippingItem
                      @@ -1124,7 +1317,7 @@

                      ShippingMethod

                      ShippingMethod: ShopperCustomersModelTypes.ShippingMethod
                      @@ -1134,7 +1327,7 @@

                      ShippingPromotion

                      ShippingPromotion: ShopperCustomersModelTypes.ShippingPromotion
                      @@ -1164,7 +1357,7 @@

                      Status

                      Status: ShopperCustomersModelTypes.Status
                      @@ -1174,7 +1367,7 @@

                      Variant

                      Variant: ShopperCustomersModelTypes.Variant
                      @@ -1184,7 +1377,7 @@

                      VariationAttribute

                      VariationAttribute: ShopperCustomersModelTypes.VariationAttribute
                      @@ -1194,7 +1387,7 @@

                      VariationAttributeValue

                      VariationAttributeValue: ShopperCustomersModelTypes.VariationAttributeValue
                      @@ -1204,7 +1397,7 @@

                      VariationGroup

                      VariationGroup: ShopperCustomersModelTypes.VariationGroup
                      @@ -1308,13 +1501,33 @@

                      deleteCustomerPaymentInstrumentQueryParameters

                    +
                    + +

                    deleteCustomerPaymentMethodReferencePathParameters

                    +
                    deleteCustomerPaymentMethodReferencePathParameters: ShopperCustomersApiTypes.deleteCustomerPaymentMethodReferencePathParameters
                    + +
                    +
                    + +

                    deleteCustomerPaymentMethodReferenceQueryParameters

                    +
                    deleteCustomerPaymentMethodReferenceQueryParameters: ShopperCustomersApiTypes.deleteCustomerPaymentMethodReferenceQueryParameters
                    + +

                    deleteCustomerProductListItemPathParameters

                    deleteCustomerProductListItemPathParameters: ShopperCustomersApiTypes.deleteCustomerProductListItemPathParameters
                    @@ -1324,7 +1537,7 @@

                    deleteCustomerProductListItemQueryParametersdeleteCustomerProductListItemQueryParameters: ShopperCustomersApiTypes.deleteCustomerProductListItemQueryParameters

                    @@ -1334,7 +1547,7 @@

                    deleteCustomerProductListPathParameters

                    deleteCustomerProductListPathParameters: ShopperCustomersApiTypes.deleteCustomerProductListPathParameters
                    @@ -1344,7 +1557,7 @@

                    deleteCustomerProductListQueryParameters

                    deleteCustomerProductListQueryParameters: ShopperCustomersApiTypes.deleteCustomerProductListQueryParameters
                    @@ -1354,7 +1567,7 @@

                    getCustomerAddressPathParameters

                    getCustomerAddressPathParameters: ShopperCustomersApiTypes.getCustomerAddressPathParameters
                    @@ -1364,7 +1577,7 @@

                    getCustomerAddressQueryParameters

                    getCustomerAddressQueryParameters: ShopperCustomersApiTypes.getCustomerAddressQueryParameters
                    @@ -1374,7 +1587,7 @@

                    getCustomerBasketsPathParameters

                    getCustomerBasketsPathParameters: ShopperCustomersApiTypes.getCustomerBasketsPathParameters
                    @@ -1384,7 +1597,7 @@

                    getCustomerBasketsQueryParameters

                    getCustomerBasketsQueryParameters: ShopperCustomersApiTypes.getCustomerBasketsQueryParameters
                    @@ -1394,7 +1607,7 @@

                    getCustomerOrdersPathParameters

                    getCustomerOrdersPathParameters: ShopperCustomersApiTypes.getCustomerOrdersPathParameters
                    @@ -1404,7 +1617,7 @@

                    getCustomerOrdersQueryParameters

                    getCustomerOrdersQueryParameters: ShopperCustomersApiTypes.getCustomerOrdersQueryParameters
                    @@ -1414,7 +1627,7 @@

                    getCustomerPathParameters

                    getCustomerPathParameters: ShopperCustomersApiTypes.getCustomerPathParameters
                    @@ -1424,7 +1637,7 @@

                    getCustomerPaymentInstrumentPathParameters

                    getCustomerPaymentInstrumentPathParameters: ShopperCustomersApiTypes.getCustomerPaymentInstrumentPathParameters
                    @@ -1434,7 +1647,7 @@

                    getCustomerPaymentInstrumentQueryParameters

                    getCustomerPaymentInstrumentQueryParameters: ShopperCustomersApiTypes.getCustomerPaymentInstrumentQueryParameters
                    @@ -1444,7 +1657,7 @@

                    getCustomerProductListItemPathParameters

                    getCustomerProductListItemPathParameters: ShopperCustomersApiTypes.getCustomerProductListItemPathParameters
                    @@ -1454,7 +1667,7 @@

                    getCustomerProductListItemQueryParameters

                    getCustomerProductListItemQueryParameters: ShopperCustomersApiTypes.getCustomerProductListItemQueryParameters
                    @@ -1464,7 +1677,7 @@

                    getCustomerProductListPathParameters

                    getCustomerProductListPathParameters: ShopperCustomersApiTypes.getCustomerProductListPathParameters
                    @@ -1474,7 +1687,7 @@

                    getCustomerProductListQueryParameters

                    getCustomerProductListQueryParameters: ShopperCustomersApiTypes.getCustomerProductListQueryParameters
                    @@ -1484,7 +1697,7 @@

                    getCustomerProductListsPathParameters

                    getCustomerProductListsPathParameters: ShopperCustomersApiTypes.getCustomerProductListsPathParameters
                    @@ -1494,7 +1707,7 @@

                    getCustomerProductListsQueryParameters

                    getCustomerProductListsQueryParameters: ShopperCustomersApiTypes.getCustomerProductListsQueryParameters
                    @@ -1504,7 +1717,7 @@

                    getCustomerQueryParameters

                    getCustomerQueryParameters: ShopperCustomersApiTypes.getCustomerQueryParameters
                    @@ -1514,7 +1727,7 @@

                    getExternalProfilePathParameters

                    getExternalProfilePathParameters: ShopperCustomersApiTypes.getExternalProfilePathParameters
                    @@ -1524,7 +1737,7 @@

                    getExternalProfileQueryParameters

                    getExternalProfileQueryParameters: ShopperCustomersApiTypes.getExternalProfileQueryParameters
                    @@ -1534,7 +1747,7 @@

                    getProductListItemPathParameters

                    getProductListItemPathParameters: ShopperCustomersApiTypes.getProductListItemPathParameters
                    @@ -1544,7 +1757,27 @@

                    getProductListItemQueryParameters

                    getProductListItemQueryParameters: ShopperCustomersApiTypes.getProductListItemQueryParameters
                    + +
                    + +

                    getPublicProductListItemsPathParameters

                    +
                    getPublicProductListItemsPathParameters: ShopperCustomersApiTypes.getPublicProductListItemsPathParameters
                    + +
                    +
                    + +

                    getPublicProductListItemsQueryParameters

                    +
                    getPublicProductListItemsQueryParameters: ShopperCustomersApiTypes.getPublicProductListItemsQueryParameters
                    +
                    @@ -1554,7 +1787,7 @@

                    getPublicProductListPathParameters

                    getPublicProductListPathParameters: ShopperCustomersApiTypes.getPublicProductListPathParameters
                    @@ -1564,7 +1797,7 @@

                    getPublicProductListQueryParameters

                    getPublicProductListQueryParameters: ShopperCustomersApiTypes.getPublicProductListQueryParameters
                    @@ -1574,7 +1807,7 @@

                    getPublicProductListsBySearchTermPathPara
                    getPublicProductListsBySearchTermPathParameters: ShopperCustomersApiTypes.getPublicProductListsBySearchTermPathParameters
                    @@ -1584,7 +1817,7 @@

                    getPublicProductListsBySearchTermQueryPar
                    getPublicProductListsBySearchTermQueryParameters: ShopperCustomersApiTypes.getPublicProductListsBySearchTermQueryParameters
                    @@ -1594,7 +1827,7 @@

                    getResetPasswordTokenPathParameters

                    getResetPasswordTokenPathParameters: ShopperCustomersApiTypes.getResetPasswordTokenPathParameters
                    @@ -1604,7 +1837,7 @@

                    getResetPasswordTokenQueryParameters

                    getResetPasswordTokenQueryParameters: ShopperCustomersApiTypes.getResetPasswordTokenQueryParameters
                    @@ -1614,7 +1847,7 @@

                    registerCustomerPathParameters

                    registerCustomerPathParameters: ShopperCustomersApiTypes.registerCustomerPathParameters
                    @@ -1624,7 +1857,7 @@

                    registerCustomerQueryParameters

                    registerCustomerQueryParameters: ShopperCustomersApiTypes.registerCustomerQueryParameters
                    @@ -1634,7 +1867,7 @@

                    registerExternalProfilePathParameters

                    registerExternalProfilePathParameters: ShopperCustomersApiTypes.registerExternalProfilePathParameters
                    @@ -1644,7 +1877,7 @@

                    registerExternalProfileQueryParameters

                    registerExternalProfileQueryParameters: ShopperCustomersApiTypes.registerExternalProfileQueryParameters
                    @@ -1654,7 +1887,7 @@

                    removeCustomerAddressPathParameters

                    removeCustomerAddressPathParameters: ShopperCustomersApiTypes.removeCustomerAddressPathParameters
                    @@ -1664,7 +1897,7 @@

                    removeCustomerAddressQueryParameters

                    removeCustomerAddressQueryParameters: ShopperCustomersApiTypes.removeCustomerAddressQueryParameters
                    @@ -1674,7 +1907,7 @@

                    resetPasswordPathParameters

                    resetPasswordPathParameters: ShopperCustomersApiTypes.resetPasswordPathParameters
                    @@ -1684,7 +1917,7 @@

                    resetPasswordQueryParameters

                    resetPasswordQueryParameters: ShopperCustomersApiTypes.resetPasswordQueryParameters
                    @@ -1694,7 +1927,7 @@

                    updateCustomerAddressPathParameters

                    updateCustomerAddressPathParameters: ShopperCustomersApiTypes.updateCustomerAddressPathParameters
                    @@ -1704,7 +1937,7 @@

                    updateCustomerAddressQueryParameters

                    updateCustomerAddressQueryParameters: ShopperCustomersApiTypes.updateCustomerAddressQueryParameters
                    @@ -1714,7 +1947,7 @@

                    updateCustomerPasswordPathParameters

                    updateCustomerPasswordPathParameters: ShopperCustomersApiTypes.updateCustomerPasswordPathParameters
                    @@ -1724,7 +1957,7 @@

                    updateCustomerPasswordQueryParameters

                    updateCustomerPasswordQueryParameters: ShopperCustomersApiTypes.updateCustomerPasswordQueryParameters
                    @@ -1734,7 +1967,27 @@

                    updateCustomerPathParameters

                    updateCustomerPathParameters: ShopperCustomersApiTypes.updateCustomerPathParameters
                    + +
                    + +

                    updateCustomerPaymentInstrumentPathParameters

                    +
                    updateCustomerPaymentInstrumentPathParameters: ShopperCustomersApiTypes.updateCustomerPaymentInstrumentPathParameters
                    + +
                    +
                    + +

                    updateCustomerPaymentInstrumentQueryParameters

                    +
                    updateCustomerPaymentInstrumentQueryParameters: ShopperCustomersApiTypes.updateCustomerPaymentInstrumentQueryParameters
                    +
                    @@ -1744,7 +1997,7 @@

                    updateCustomerProductListItemPathParametersupdateCustomerProductListItemPathParameters: ShopperCustomersApiTypes.updateCustomerProductListItemPathParameters

                    @@ -1754,7 +2007,7 @@

                    updateCustomerProductListItemQueryParametersupdateCustomerProductListItemQueryParameters: ShopperCustomersApiTypes.updateCustomerProductListItemQueryParameters

                  • @@ -1764,7 +2017,7 @@

                    updateCustomerProductListPathParameters

                    updateCustomerProductListPathParameters: ShopperCustomersApiTypes.updateCustomerProductListPathParameters
                    @@ -1774,7 +2027,7 @@

                    updateCustomerProductListQueryParameters

                    updateCustomerProductListQueryParameters: ShopperCustomersApiTypes.updateCustomerProductListQueryParameters
                    @@ -1784,7 +2037,7 @@

                    updateCustomerQueryParameters

                    updateCustomerQueryParameters: ShopperCustomersApiTypes.updateCustomerQueryParameters
                    @@ -1843,6 +2096,9 @@

                    updateCustomerQueryParameters

                  • shopperOrders
                  • +
                  • + shopperPayments +
                  • shopperProducts
                  • @@ -1874,6 +2130,9 @@

                    updateCustomerQueryParameters

                  • BasketChannelTypeEnum
                  • +
                  • + BasketProductItem +
                  • BasketTaxationEnum
                  • @@ -1892,9 +2151,6 @@

                    updateCustomerQueryParameters

                  • CouponItemStatusCodeEnum
                  • -
                  • - CurrencyCode -
                  • Customer
                  • @@ -1928,6 +2184,18 @@

                    updateCustomerQueryParameters

                  • CustomerPaymentInstrumentRequest
                  • +
                  • + CustomerPaymentInstrumentUpdateRequest +
                  • +
                  • + CustomerPaymentInstrumentUpdateRequestPaymentCard +
                  • +
                  • + CustomerPaymentMethodReference +
                  • +
                  • + CustomerPaymentMethodReferenceTypeEnum +
                  • CustomerProductList
                  • @@ -1958,6 +2226,18 @@

                    updateCustomerQueryParameters

                  • ErrorResponse
                  • +
                  • + GetCustomerExpandEnum +
                  • +
                  • + GetCustomerOrdersExpandEnum +
                  • +
                  • + GetPublicProductListItemsExpandEnum +
                  • +
                  • + GiftCardResponse +
                  • GiftCertificateItem
                  • @@ -1977,7 +2257,19 @@

                    updateCustomerQueryParameters

                    Master

                  • - NoValue + OmsData +
                  • +
                  • + OmsProductData +
                  • +
                  • + OmsProductDataStatusEnum +
                  • +
                  • + OmsShipment +
                  • +
                  • + OmsShipmentItem
                  • Option @@ -2006,9 +2298,21 @@

                    updateCustomerQueryParameters

                  • OrderPaymentInstrument
                  • +
                  • + OrderPaymentInstrumentPaymentReference +
                  • +
                  • + OrderPaymentInstrumentPaymentReferenceGatewayEnum +
                  • +
                  • + OrderPaymentInstrumentPaymentReferenceGatewayProperties +
                  • OrderPaymentStatusEnum
                  • +
                  • + OrderProductItem +
                  • OrderShippingStatusEnum
                  • @@ -2096,6 +2400,9 @@

                    updateCustomerQueryParameters

                  • PublicProductListItem
                  • +
                  • + PublicProductListItemResult +
                  • PublicProductListItemTypeEnum
                  • @@ -2189,6 +2496,12 @@

                    updateCustomerQueryParameters

                  • deleteCustomerPaymentInstrumentQueryParameters
                  • +
                  • + deleteCustomerPaymentMethodReferencePathParameters +
                  • +
                  • + deleteCustomerPaymentMethodReferenceQueryParameters +
                  • deleteCustomerProductListItemPathParameters
                  • @@ -2261,6 +2574,12 @@

                    updateCustomerQueryParameters

                  • getProductListItemQueryParameters
                  • +
                  • + getPublicProductListItemsPathParameters +
                  • +
                  • + getPublicProductListItemsQueryParameters +
                  • getPublicProductListPathParameters
                  • @@ -2318,6 +2637,12 @@

                    updateCustomerQueryParameters

                  • updateCustomerPathParameters
                  • +
                  • + updateCustomerPaymentInstrumentPathParameters +
                  • +
                  • + updateCustomerPaymentInstrumentQueryParameters +
                  • updateCustomerProductListItemPathParameters
                  • diff --git a/docs/modules/shopperexperience.html b/docs/modules/shopperexperience.html index 91890706..76b4d50b 100644 --- a/docs/modules/shopperexperience.html +++ b/docs/modules/shopperexperience.html @@ -75,8 +75,20 @@

                    References

                    @@ -122,19 +158,37 @@

                    Classes

                    Type aliases

                    @@ -159,14 +213,74 @@

                    Component

                    Re-exports Component
                    - -

                    DefaultFallback

                    - Re-exports DefaultFallback + +

                    Content

                    + Re-exports Content
                    - -

                    DefaultFallback

                    - Re-exports DefaultFallback + +

                    Content

                    + Re-exports Content +
                    +
                    + +

                    ContentFolder

                    + Re-exports ContentFolder +
                    +
                    + +

                    ContentFolder

                    + Re-exports ContentFolder +
                    +
                    + +

                    ContentFolderResult

                    + Re-exports ContentFolderResult +
                    +
                    + +

                    ContentFolderResult

                    + Re-exports ContentFolderResult +
                    +
                    + +

                    ContentResult

                    + Re-exports ContentResult +
                    +
                    + +

                    ContentResult

                    + Re-exports ContentResult +
                    +
                    + +

                    ContentSearchRefinement

                    + Re-exports ContentSearchRefinement +
                    +
                    + +

                    ContentSearchRefinement

                    + Re-exports ContentSearchRefinement +
                    +
                    + +

                    ContentSearchRefinementValue

                    + Re-exports ContentSearchRefinementValue +
                    +
                    + +

                    ContentSearchRefinementValue

                    + Re-exports ContentSearchRefinementValue +
                    +
                    + +

                    ContentSearchResult

                    + Re-exports ContentSearchResult +
                    +
                    + +

                    ContentSearchResult

                    + Re-exports ContentSearchResult
                    @@ -208,6 +322,16 @@

                    PageResult

                    PageResult

                    Re-exports PageResult
                    +
                    + +

                    PaginatedResultBase

                    + Re-exports PaginatedResultBase +
                    +
                    + +

                    PaginatedResultBase

                    + Re-exports PaginatedResultBase +

                    Region

                    @@ -218,6 +342,16 @@

                    Region

                    Region

                    Re-exports Region
                    +
                    + +

                    ResultBase

                    + Re-exports ResultBase +
                    +
                    + +

                    ResultBase

                    + Re-exports ResultBase +

                    ShopperExperience

                    @@ -263,6 +397,86 @@

                    ShopperExperienceQueryParameters

                    defaultBaseUri

                    Re-exports defaultBaseUri
                    +
                    + +

                    getContentFolderPathParameters

                    + Re-exports getContentFolderPathParameters +
                    +
                    + +

                    getContentFolderPathParameters

                    + Re-exports getContentFolderPathParameters +
                    +
                    + +

                    getContentFolderQueryParameters

                    + Re-exports getContentFolderQueryParameters +
                    +
                    + +

                    getContentFolderQueryParameters

                    + Re-exports getContentFolderQueryParameters +
                    +
                    + +

                    getContentFoldersPathParameters

                    + Re-exports getContentFoldersPathParameters +
                    +
                    + +

                    getContentFoldersPathParameters

                    + Re-exports getContentFoldersPathParameters +
                    +
                    + +

                    getContentFoldersQueryParameters

                    + Re-exports getContentFoldersQueryParameters +
                    +
                    + +

                    getContentFoldersQueryParameters

                    + Re-exports getContentFoldersQueryParameters +
                    +
                    + +

                    getContentPathParameters

                    + Re-exports getContentPathParameters +
                    +
                    + +

                    getContentPathParameters

                    + Re-exports getContentPathParameters +
                    +
                    + +

                    getContentQueryParameters

                    + Re-exports getContentQueryParameters +
                    +
                    + +

                    getContentQueryParameters

                    + Re-exports getContentQueryParameters +
                    +
                    + +

                    getMultipleContentPathParameters

                    + Re-exports getMultipleContentPathParameters +
                    +
                    + +

                    getMultipleContentPathParameters

                    + Re-exports getMultipleContentPathParameters +
                    +
                    + +

                    getMultipleContentQueryParameters

                    + Re-exports getMultipleContentQueryParameters +
                    +
                    + +

                    getMultipleContentQueryParameters

                    + Re-exports getMultipleContentQueryParameters +

                    getPagePathParameters

                    @@ -303,6 +517,26 @@

                    getPagesQueryParameters

                    getPagesQueryParameters

                    Re-exports getPagesQueryParameters
                    +
                    + +

                    searchContentPathParameters

                    + Re-exports searchContentPathParameters +
                    +
                    + +

                    searchContentPathParameters

                    + Re-exports searchContentPathParameters +
                    +
                    + +

                    searchContentQueryParameters

                    + Re-exports searchContentQueryParameters +
                    +
                    + +

                    searchContentQueryParameters

                    + Re-exports searchContentQueryParameters +

                    Type aliases

                    @@ -342,18 +576,255 @@

                    Component

                    - -

                    DefaultFallback

                    -
                    DefaultFallback: "default"
                    + +

                    Content

                    +
                    Content: { description?: undefined | string; id: string; name?: undefined | string; pageDescription?: undefined | string; pageKeywords?: undefined | string; pageTitle?: undefined | string } & {}
                    -
                    -

                    A specialized value indicating the system default values for locales.

                    -
                    +
                    +
                    property
                    +

                    id: The id of the content asset.

                    +
                      +
                    • Min Length: 1
                    • +
                    • Max Length: 256
                    • +
                    +
                    +
                    property
                    +

                    name: The localized content asset name.

                    +
                      +
                    • Max Length: 4000
                    • +
                    +
                    +
                    property
                    +

                    description: The localized content asset description.

                    +
                      +
                    • Max Length: 4000
                    • +
                    +
                    +
                    property
                    +

                    pageDescription: The localized content asset page description for SEO.

                    +
                      +
                    • Max Length: 4000
                    • +
                    +
                    +
                    property
                    +

                    pageKeywords: The localized content asset page keywords for SEO.

                    +
                      +
                    • Max Length: 4000
                    • +
                    +
                    +
                    property
                    +

                    pageTitle: The localized content asset page title for SEO

                    +
                      +
                    • Max Length: 4000
                    • +
                    +
                    +
                    +
                    +
                    +
                    + +

                    ContentFolder

                    +
                    ContentFolder: { description?: undefined | string; folders?: Array<ContentFolder>; id: string; name?: undefined | string; pageDescription?: undefined | string; pageKeywords?: undefined | string; pageTitle?: undefined | string; parentFolderId?: undefined | string } & {}
                    + +
                    +
                    +
                    property
                    +

                    id: The id of the content folder.

                    +
                      +
                    • Max Length: 256
                    • +
                    +
                    +
                    property
                    +

                    parentFolderId: The id of the parent content folder.

                    +
                      +
                    • Max Length: 256
                    • +
                    +
                    +
                    property
                    +

                    name: The localized content folder name.

                    +
                      +
                    • Max Length: 4000
                    • +
                    +
                    +
                    property
                    +

                    description: The localized content folder description.

                    +
                      +
                    • Max Length: 4000
                    • +
                    +
                    +
                    property
                    +

                    pageDescription: The localized content folder page description.

                    +
                      +
                    • Max Length: 4000
                    • +
                    +
                    +
                    property
                    +

                    pageKeywords: The localized content folder page keywords.

                    +
                      +
                    • Max Length: 4000
                    • +
                    +
                    +
                    property
                    +

                    pageTitle: The localized content folder page title.

                    +
                      +
                    • Max Length: 4000
                    • +
                    +
                    +
                    property
                    +

                    folders: The array of content subfolders. This array can be empty.

                    +
                    +
                    +
                    +
                    +
                    + +

                    ContentFolderResult

                    +
                    ContentFolderResult: { data: Array<ContentFolder>; limit: number; total: number } & {}
                    + +
                    +
                    +
                    property
                    +

                    data: List of content folders.

                    +
                    +
                    property
                    +

                    limit: Maximum records to retrieve per request. The limit with its constraints (minimum, maximum, default) is defined by the request parameter limit of the endpoint returning this schema.

                    +
                    +
                    property
                    +

                    total: The total number of hits that match the search's criteria. This can be greater than the number of results returned as search results are pagenated.

                    +
                    +
                    +
                    +
                    +
                    + +

                    ContentResult

                    +
                    ContentResult: { data: Array<Content>; limit: number; total: number } & {}
                    + +
                    +
                    +
                    property
                    +

                    data: List of content assets.

                    +
                    +
                    property
                    +

                    limit: Maximum records to retrieve per request. The limit with its constraints (minimum, maximum, default) is defined by the request parameter limit of the endpoint returning this schema.

                    +
                    +
                    property
                    +

                    total: The total number of hits that match the search's criteria. This can be greater than the number of results returned as search results are pagenated.

                    +
                    +
                    +
                    +
                    +
                    + +

                    ContentSearchRefinement

                    +
                    ContentSearchRefinement: { attributeId: string; label?: undefined | string; values?: Array<ContentSearchRefinementValue> } & {}
                    + +
                    +
                    +
                    property
                    +

                    attributeId: The ID of the refinement attribute.

                    +
                      +
                    • Max Length: 256
                    • +
                    +
                    +
                    property
                    +

                    label: The localized label of the refinement attribute.

                    +
                      +
                    • Max Length: 4000
                    • +
                    +
                    +
                    property
                    +

                    values: The array of refinement values.

                    +
                    +
                    +
                    +
                    +
                    + +

                    ContentSearchRefinementValue

                    +
                    ContentSearchRefinementValue: { hitCount?: undefined | number; label?: undefined | string; value: string } & {}
                    + +
                    +
                    +
                    property
                    +

                    label: The localized label of the refinement value.

                    +
                      +
                    • Max Length: 4000
                    • +
                    +
                    +
                    property
                    +

                    value: The refinement value.

                    +
                      +
                    • Max Length: 256
                    • +
                    +
                    +
                    property
                    +

                    hitCount: The number of search hits when this refinement value is applied.

                    +
                    +
                    +
                    +
                    +
                    + +

                    ContentSearchResult

                    +
                    ContentSearchResult: { hits: Array<Content>; limit: number; offset: number; query?: undefined | string; refinements?: Array<ContentSearchRefinement>; selectedRefinements?: undefined | {}; total: number } & {}
                    + +
                    +
                    +
                    property
                    +

                    query: The query String that was searched for.

                    +
                      +
                    • Max Length: 256
                    • +
                    +
                    +
                    property
                    +

                    hits: The sorted array of search hits. Can be empty.

                    +
                    +
                    property
                    +

                    selectedRefinements: Map of selected refinement attribute id/value(s) pairs. The sorting order is the same like in request URL.

                    +
                    +
                    property
                    +

                    refinements: The sorted array of search refinements. Can be empty.

                    +
                    +
                    property
                    +

                    offset: The zero-based index of the first hit/data to include in the result.

                    +
                    +
                    property
                    +

                    limit: Maximum records to retrieve per request. The limit with its constraints (minimum, maximum, default) is defined by the request parameter limit of the endpoint returning this schema.

                    +
                    +
                    property
                    +

                    total: The total number of hits that match the search's criteria. This can be greater than the number of results returned as search results are pagenated.

                    +
                    +
                    @@ -394,10 +865,10 @@

                    ErrorResponse

                    LocaleCode

                    -
                    LocaleCode: DefaultFallback | string
                    +
                    LocaleCode: string
                    @@ -475,88 +946,305 @@

                    Page

                    - -

                    PageResult

                    -
                    PageResult: { data: Array<Page> } & {}
                    + +

                    PageResult

                    +
                    PageResult: { data: Array<Page> } & {}
                    + +
                    +
                    +
                    property
                    +

                    data: List of pages.

                    +
                    +
                    +
                    +
                    +
                    + +

                    PaginatedResultBase

                    +
                    PaginatedResultBase: { limit: number; offset: number; total: number } & {}
                    + +
                    +
                    +
                    property
                    +

                    offset: The zero-based index of the first hit/data to include in the result.

                    +
                    +
                    property
                    +

                    limit: Maximum records to retrieve per request. The limit with its constraints (minimum, maximum, default) is defined by the request parameter limit of the endpoint returning this schema.

                    +
                    +
                    property
                    +

                    total: The total number of hits that match the search's criteria. This can be greater than the number of results returned as search results are pagenated.

                    +
                    +
                    +
                    +
                    +
                    + +

                    Region

                    +
                    Region: { components?: Array<Component>; id: string } & {}
                    + +
                    +
                    +
                    property
                    +

                    id: Region identifier.

                    +
                      +
                    • Max Length: 256
                    • +
                    +
                    +
                    property
                    +

                    components: The components in the region.

                    +
                    +
                    +
                    +
                    +
                    + +

                    ResultBase

                    +
                    ResultBase: { limit: number; total: number } & {}
                    + +
                    +
                    +
                    property
                    +

                    limit: Maximum records to retrieve per request. The limit with its constraints (minimum, maximum, default) is defined by the request parameter limit of the endpoint returning this schema.

                    +
                    +
                    property
                    +

                    total: The total number of hits that match the search's criteria. This can be greater than the number of results returned as search results are pagenated.

                    +
                    +
                    +
                    +
                    +
                    + +

                    ShopperExperienceParameters

                    + + +
                    +
                    +

                    All parameters that are used by ShopperExperience.

                    +
                    +
                    +
                    +
                    + +

                    ShopperExperiencePathParameters

                    + + +
                    +
                    +

                    All path parameters that are used by at least one ShopperExperience method.

                    +
                    +
                    +
                    +
                    + +

                    ShopperExperienceQueryParameters

                    + + +
                    +
                    +

                    All query parameters that are used by at least one ShopperExperience method.

                    +
                    +
                    +
                    +
                    + +

                    getContentFolderPathParameters

                    +
                    getContentFolderPathParameters: { id: string; organizationId: string }
                    + +
                    +

                    Type declaration

                    +
                      +
                    • +
                      id: string
                      +
                    • +
                    • +
                      organizationId: string
                      +
                    • +
                    +
                    +
                    +
                    + +

                    getContentFolderQueryParameters

                    +
                    getContentFolderQueryParameters: { levels?: undefined | number; locale?: LocaleCode; siteId: string }
                    + +
                    +

                    Type declaration

                    +
                      +
                    • +
                      Optional levels?: undefined | number
                      +
                    • +
                    • +
                      Optional locale?: LocaleCode
                      +
                    • +
                    • +
                      siteId: string
                      +
                    • +
                    +
                    +
                    +
                    + +

                    getContentFoldersPathParameters

                    +
                    getContentFoldersPathParameters: { organizationId: string }
                    + +
                    +

                    Type declaration

                    +
                      +
                    • +
                      organizationId: string
                      +
                    • +
                    +
                    +
                    +
                    + +

                    getContentFoldersQueryParameters

                    +
                    getContentFoldersQueryParameters: { ids: Array<string>; levels?: undefined | number; locale?: LocaleCode; siteId: string }
                    -
                    -
                    -
                    property
                    -

                    data: List of pages.

                    -
                    -
                    +
                    +

                    Type declaration

                    +
                      +
                    • +
                      ids: Array<string>
                      +
                    • +
                    • +
                      Optional levels?: undefined | number
                      +
                    • +
                    • +
                      Optional locale?: LocaleCode
                      +
                    • +
                    • +
                      siteId: string
                      +
                    • +
                    - -

                    Region

                    -
                    Region: { components?: Array<Component>; id: string } & {}
                    + +

                    getContentPathParameters

                    +
                    getContentPathParameters: { id: string; organizationId: string }
                    -
                    -
                    -
                    property
                    -

                    id: Region identifier.

                    -
                      -
                    • Max Length: 256
                    • -
                    -
                    -
                    property
                    -

                    components: The components in the region.

                    -
                    -
                    +
                    +

                    Type declaration

                    +
                      +
                    • +
                      id: string
                      +
                    • +
                    • +
                      organizationId: string
                      +
                    • +
                    - -

                    ShopperExperienceParameters

                    - + +

                    getContentQueryParameters

                    +
                    getContentQueryParameters: { locale?: LocaleCode; siteId: string }
                    -
                    -
                    -

                    All parameters that are used by ShopperExperience.

                    -
                    +
                    +

                    Type declaration

                    +
                      +
                    • +
                      Optional locale?: LocaleCode
                      +
                    • +
                    • +
                      siteId: string
                      +
                    • +
                    - -

                    ShopperExperiencePathParameters

                    -
                    ShopperExperiencePathParameters: Partial<getPagePathParameters & getPagesPathParameters & {}>
                    + +

                    getMultipleContentPathParameters

                    +
                    getMultipleContentPathParameters: { organizationId: string }
                    -
                    -
                    -

                    All path parameters that are used by at least one ShopperExperience method.

                    -
                    +
                    +

                    Type declaration

                    +
                      +
                    • +
                      organizationId: string
                      +
                    • +
                    - -

                    ShopperExperienceQueryParameters

                    -
                    ShopperExperienceQueryParameters: Partial<getPageQueryParameters & getPagesQueryParameters & {}>
                    + +

                    getMultipleContentQueryParameters

                    +
                    getMultipleContentQueryParameters: { ids: Array<string>; locale?: LocaleCode; siteId: string }
                    -
                    -
                    -

                    All query parameters that are used by at least one ShopperExperience method.

                    -
                    +
                    +

                    Type declaration

                    +
                      +
                    • +
                      ids: Array<string>
                      +
                    • +
                    • +
                      Optional locale?: LocaleCode
                      +
                    • +
                    • +
                      siteId: string
                      +
                    • +
                    @@ -565,7 +1253,7 @@

                    getPagePathParameters

                    getPagePathParameters: { organizationId: string; pageId: string }
                    @@ -586,7 +1274,7 @@

                    getPageQueryParameters

                    getPageQueryParameters: { aspectAttributes?: undefined | string; locale?: LocaleCode; parameters?: undefined | string; siteId: string }
                    @@ -613,7 +1301,7 @@

                    getPagesPathParameters

                    getPagesPathParameters: { organizationId: string }
                    @@ -631,7 +1319,7 @@

                    getPagesQueryParameters

                    getPagesQueryParameters: { aspectAttributes?: undefined | string; aspectTypeId: string; categoryId?: undefined | string; locale?: LocaleCode; parameters?: undefined | string; productId?: undefined | string; siteId: string }
                    @@ -661,6 +1349,60 @@
                    siteId: + +

                    searchContentPathParameters

                    +
                    searchContentPathParameters: { organizationId: string }
                    + +
                    +

                    Type declaration

                    +
                      +
                    • +
                      organizationId: string
                      +
                    • +
                    +
                    +
                    +
                    + +

                    searchContentQueryParameters

                    +
                    searchContentQueryParameters: { limit?: undefined | number; locale?: LocaleCode; offset?: undefined | number; q?: undefined | string; refine?: undefined | string; siteId: string; sort?: undefined | string }
                    + +
                    +

                    Type declaration

                    +
                      +
                    • +
                      Optional limit?: undefined | number
                      +
                    • +
                    • +
                      Optional locale?: LocaleCode
                      +
                    • +
                    • +
                      Optional offset?: undefined | number
                      +
                    • +
                    • +
                      Optional q?: undefined | string
                      +
                    • +
                    • +
                      Optional refine?: undefined | string
                      +
                    • +
                    • +
                      siteId: string
                      +
                    • +
                    • +
                      Optional sort?: undefined | string
                      +
                    • +
                    +
                    +

                    Variables

                    @@ -729,6 +1471,9 @@

                    Const defaultBaseUri shopperOrders

                  • +
                  • + shopperPayments +
                  • shopperProducts
                  • @@ -761,10 +1506,46 @@

                    Const defaultBaseUriComponent
                  • - DefaultFallback + Content +
                  • +
                  • + Content +
                  • +
                  • + ContentFolder +
                  • +
                  • + ContentFolder +
                  • +
                  • + ContentFolderResult +
                  • +
                  • + ContentFolderResult +
                  • +
                  • + ContentResult
                  • - DefaultFallback + ContentResult +
                  • +
                  • + ContentSearchRefinement +
                  • +
                  • + ContentSearchRefinement +
                  • +
                  • + ContentSearchRefinementValue +
                  • +
                  • + ContentSearchRefinementValue +
                  • +
                  • + ContentSearchResult +
                  • +
                  • + ContentSearchResult
                  • ErrorResponse @@ -790,12 +1571,24 @@

                    Const defaultBaseUri PageResult

                  • +
                  • + PaginatedResultBase +
                  • +
                  • + PaginatedResultBase +
                  • Region
                  • Region
                  • +
                  • + ResultBase +
                  • +
                  • + ResultBase +
                  • ShopperExperience
                  • @@ -823,6 +1616,54 @@

                    Const defaultBaseUri defaultBaseUri +
                  • + getContentFolderPathParameters +
                  • +
                  • + getContentFolderPathParameters +
                  • +
                  • + getContentFolderQueryParameters +
                  • +
                  • + getContentFolderQueryParameters +
                  • +
                  • + getContentFoldersPathParameters +
                  • +
                  • + getContentFoldersPathParameters +
                  • +
                  • + getContentFoldersQueryParameters +
                  • +
                  • + getContentFoldersQueryParameters +
                  • +
                  • + getContentPathParameters +
                  • +
                  • + getContentPathParameters +
                  • +
                  • + getContentQueryParameters +
                  • +
                  • + getContentQueryParameters +
                  • +
                  • + getMultipleContentPathParameters +
                  • +
                  • + getMultipleContentPathParameters +
                  • +
                  • + getMultipleContentQueryParameters +
                  • +
                  • + getMultipleContentQueryParameters +
                  • getPagePathParameters
                  • @@ -847,6 +1688,18 @@

                    Const defaultBaseUri getPagesQueryParameters +
                  • + searchContentPathParameters +
                  • +
                  • + searchContentPathParameters +
                  • +
                  • + searchContentQueryParameters +
                  • +
                  • + searchContentQueryParameters +
                  • ShopperExperience
                  • @@ -854,7 +1707,25 @@

                    Const defaultBaseUriComponent
                  • - DefaultFallback + Content +
                  • +
                  • + ContentFolder +
                  • +
                  • + ContentFolderResult +
                  • +
                  • + ContentResult +
                  • +
                  • + ContentSearchRefinement +
                  • +
                  • + ContentSearchRefinementValue +
                  • +
                  • + ContentSearchResult
                  • ErrorResponse @@ -868,9 +1739,15 @@

                    Const defaultBaseUri PageResult

                  • +
                  • + PaginatedResultBase +
                  • Region
                  • +
                  • + ResultBase +
                  • ShopperExperienceParameters
                  • @@ -880,6 +1757,30 @@

                    Const defaultBaseUri ShopperExperienceQueryParameters +
                  • + getContentFolderPathParameters +
                  • +
                  • + getContentFolderQueryParameters +
                  • +
                  • + getContentFoldersPathParameters +
                  • +
                  • + getContentFoldersQueryParameters +
                  • +
                  • + getContentPathParameters +
                  • +
                  • + getContentQueryParameters +
                  • +
                  • + getMultipleContentPathParameters +
                  • +
                  • + getMultipleContentQueryParameters +
                  • getPagePathParameters
                  • @@ -892,6 +1793,12 @@

                    Const defaultBaseUri getPagesQueryParameters +
                  • + searchContentPathParameters +
                  • +
                  • + searchContentQueryParameters +
                  • defaultBaseUri
                  • diff --git a/docs/modules/shopperexperience.shopperexperiencetypes.html b/docs/modules/shopperexperience.shopperexperiencetypes.html index 2cc69b3e..86ab16ea 100644 --- a/docs/modules/shopperexperience.shopperexperiencetypes.html +++ b/docs/modules/shopperexperience.shopperexperiencetypes.html @@ -77,18 +77,36 @@

                    Index

                    Type aliases

                • @@ -102,17 +120,77 @@

                  Component

                  Component: ShopperExperienceModelTypes.Component
                  - -

                  DefaultFallback

                  -
                  DefaultFallback: ShopperExperienceModelTypes.DefaultFallback
                  + +

                  Content

                  +
                  Content: ShopperExperienceModelTypes.Content
                  +
                  +
                  + +

                  ContentFolder

                  +
                  ContentFolder: ShopperExperienceModelTypes.ContentFolder
                  + +
                  +
                  + +

                  ContentFolderResult

                  +
                  ContentFolderResult: ShopperExperienceModelTypes.ContentFolderResult
                  + +
                  +
                  + +

                  ContentResult

                  +
                  ContentResult: ShopperExperienceModelTypes.ContentResult
                  + +
                  +
                  + +

                  ContentSearchRefinement

                  +
                  ContentSearchRefinement: ShopperExperienceModelTypes.ContentSearchRefinement
                  + +
                  +
                  + +

                  ContentSearchRefinementValue

                  +
                  ContentSearchRefinementValue: ShopperExperienceModelTypes.ContentSearchRefinementValue
                  + +
                  +
                  + +

                  ContentSearchResult

                  +
                  ContentSearchResult: ShopperExperienceModelTypes.ContentSearchResult
                  +
                  @@ -122,7 +200,7 @@

                  ErrorResponse

                  ErrorResponse: ShopperExperienceModelTypes.ErrorResponse
                  @@ -132,7 +210,7 @@

                  LocaleCode

                  LocaleCode: ShopperExperienceModelTypes.LocaleCode
                  @@ -142,7 +220,7 @@

                  Page

                  Page: ShopperExperienceModelTypes.Page
                  @@ -152,7 +230,17 @@

                  PageResult

                  PageResult: ShopperExperienceModelTypes.PageResult
                  + +
                  + +

                  PaginatedResultBase

                  +
                  PaginatedResultBase: ShopperExperienceModelTypes.PaginatedResultBase
                  +
                  @@ -162,7 +250,17 @@

                  Region

                  Region: ShopperExperienceModelTypes.Region
                  + +
                  + +

                  ResultBase

                  +
                  ResultBase: ShopperExperienceModelTypes.ResultBase
                  +
                  @@ -186,13 +284,93 @@

                  ShopperExperienceQueryParameters

                +
                + +

                getContentFolderPathParameters

                +
                getContentFolderPathParameters: ShopperExperienceApiTypes.getContentFolderPathParameters
                + +
                +
                + +

                getContentFolderQueryParameters

                +
                getContentFolderQueryParameters: ShopperExperienceApiTypes.getContentFolderQueryParameters
                + +
                +
                + +

                getContentFoldersPathParameters

                +
                getContentFoldersPathParameters: ShopperExperienceApiTypes.getContentFoldersPathParameters
                + +
                +
                + +

                getContentFoldersQueryParameters

                +
                getContentFoldersQueryParameters: ShopperExperienceApiTypes.getContentFoldersQueryParameters
                + +
                +
                + +

                getContentPathParameters

                +
                getContentPathParameters: ShopperExperienceApiTypes.getContentPathParameters
                + +
                +
                + +

                getContentQueryParameters

                +
                getContentQueryParameters: ShopperExperienceApiTypes.getContentQueryParameters
                + +
                +
                + +

                getMultipleContentPathParameters

                +
                getMultipleContentPathParameters: ShopperExperienceApiTypes.getMultipleContentPathParameters
                + +
                +
                + +

                getMultipleContentQueryParameters

                +
                getMultipleContentQueryParameters: ShopperExperienceApiTypes.getMultipleContentQueryParameters
                + +

                getPagePathParameters

                getPagePathParameters: ShopperExperienceApiTypes.getPagePathParameters
                @@ -202,7 +380,7 @@

                getPageQueryParameters

                getPageQueryParameters: ShopperExperienceApiTypes.getPageQueryParameters
                @@ -212,7 +390,7 @@

                getPagesPathParameters

                getPagesPathParameters: ShopperExperienceApiTypes.getPagesPathParameters
                @@ -222,7 +400,27 @@

                getPagesQueryParameters

                getPagesQueryParameters: ShopperExperienceApiTypes.getPagesQueryParameters
                + +
                + +

                searchContentPathParameters

                +
                searchContentPathParameters: ShopperExperienceApiTypes.searchContentPathParameters
                + +
                +
                + +

                searchContentQueryParameters

                +
                searchContentQueryParameters: ShopperExperienceApiTypes.searchContentQueryParameters
                +
                @@ -281,6 +479,9 @@

                getPagesQueryParameters

              • shopperOrders
              • +
              • + shopperPayments +
              • shopperProducts
              • @@ -310,7 +511,25 @@

                getPagesQueryParameters

                Component

              • - DefaultFallback + Content +
              • +
              • + ContentFolder +
              • +
              • + ContentFolderResult +
              • +
              • + ContentResult +
              • +
              • + ContentSearchRefinement +
              • +
              • + ContentSearchRefinementValue +
              • +
              • + ContentSearchResult
              • ErrorResponse @@ -324,15 +543,45 @@

                getPagesQueryParameters

              • PageResult
              • +
              • + PaginatedResultBase +
              • Region
              • +
              • + ResultBase +
              • ShopperExperiencePathParameters
              • ShopperExperienceQueryParameters
              • +
              • + getContentFolderPathParameters +
              • +
              • + getContentFolderQueryParameters +
              • +
              • + getContentFoldersPathParameters +
              • +
              • + getContentFoldersQueryParameters +
              • +
              • + getContentPathParameters +
              • +
              • + getContentQueryParameters +
              • +
              • + getMultipleContentPathParameters +
              • +
              • + getMultipleContentQueryParameters +
              • getPagePathParameters
              • @@ -345,6 +594,12 @@

                getPagesQueryParameters

              • getPagesQueryParameters
              • +
              • + searchContentPathParameters +
              • +
              • + searchContentQueryParameters +
              diff --git a/docs/modules/shoppergiftcertificates.html b/docs/modules/shoppergiftcertificates.html index b94a7f28..78f21f0b 100644 --- a/docs/modules/shoppergiftcertificates.html +++ b/docs/modules/shoppergiftcertificates.html @@ -499,6 +499,9 @@

              Const defaultBaseUri shopperOrders

            • +
            • + shopperPayments +
            • shopperProducts
            • diff --git a/docs/modules/shoppergiftcertificates.shoppergiftcertificatestypes.html b/docs/modules/shoppergiftcertificates.shoppergiftcertificatestypes.html index 15cc39b7..93ba3b3b 100644 --- a/docs/modules/shoppergiftcertificates.shoppergiftcertificatestypes.html +++ b/docs/modules/shoppergiftcertificates.shoppergiftcertificatestypes.html @@ -226,6 +226,9 @@

              getGiftCertificateQueryParameters

            • shopperOrders
            • +
            • + shopperPayments +
            • shopperProducts
            • diff --git a/docs/modules/shopperlogin.html b/docs/modules/shopperlogin.html index cf88eb45..6319e4ef 100644 --- a/docs/modules/shopperlogin.html +++ b/docs/modules/shopperlogin.html @@ -73,12 +73,40 @@

              Index

              References

              @@ -231,9 +319,23 @@

              Classes

              Type aliases

              @@ -313,6 +445,136 @@

              Variables

              References

              +
              + +

              AuthParameters

              + Re-exports AuthParameters +
              +
              + +

              AuthParameters

              + Re-exports AuthParameters +
              +
              + +

              AuthPathParameters

              + Re-exports AuthPathParameters +
              +
              + +

              AuthPathParameters

              + Re-exports AuthPathParameters +
              +
              + +

              AuthQueryParameters

              + Re-exports AuthQueryParameters +
              +
              + +

              AuthQueryParameters

              + Re-exports AuthQueryParameters +
              +
              + +

              AuthenticateFinishRequest

              + Re-exports AuthenticateFinishRequest +
              +
              + +

              AuthenticateFinishRequest

              + Re-exports AuthenticateFinishRequest +
              +
              + +

              AuthenticateResult

              + Re-exports AuthenticateResult +
              +
              + +

              AuthenticateResult

              + Re-exports AuthenticateResult +
              +
              + +

              AuthenticatorAssertionResponseJson

              + Re-exports AuthenticatorAssertionResponseJson +
              +
              + +

              AuthenticatorAssertionResponseJson

              + Re-exports AuthenticatorAssertionResponseJson +
              +
              + +

              AuthenticatorAssertionResponseJsonAuthenticatorDataInner

              + Re-exports AuthenticatorAssertionResponseJsonAuthenticatorDataInner +
              +
              + +

              AuthenticatorAssertionResponseJsonAuthenticatorDataInner

              + Re-exports AuthenticatorAssertionResponseJsonAuthenticatorDataInner +
              +
              + +

              AuthenticatorAssertionResponseJsonClientDataJSONInner

              + Re-exports AuthenticatorAssertionResponseJsonClientDataJSONInner +
              +
              + +

              AuthenticatorAssertionResponseJsonClientDataJSONInner

              + Re-exports AuthenticatorAssertionResponseJsonClientDataJSONInner +
              +
              + +

              AuthenticatorAssertionResponseJsonSignatureInner

              + Re-exports AuthenticatorAssertionResponseJsonSignatureInner +
              +
              + +

              AuthenticatorAssertionResponseJsonSignatureInner

              + Re-exports AuthenticatorAssertionResponseJsonSignatureInner +
              +
              + +

              AuthenticatorAssertionResponseJsonUserHandleInner

              + Re-exports AuthenticatorAssertionResponseJsonUserHandleInner +
              +
              + +

              AuthenticatorAssertionResponseJsonUserHandleInner

              + Re-exports AuthenticatorAssertionResponseJsonUserHandleInner +
              +
              + +

              AuthenticatorAttestationResponseJson

              + Re-exports AuthenticatorAttestationResponseJson +
              +
              + +

              AuthenticatorAttestationResponseJson

              + Re-exports AuthenticatorAttestationResponseJson +
              +
              + +

              AuthenticatorAttestationResponseJsonAttestationObjectInner

              + Re-exports AuthenticatorAttestationResponseJsonAttestationObjectInner +
              +
              + +

              AuthenticatorAttestationResponseJsonAttestationObjectInner

              + Re-exports AuthenticatorAttestationResponseJsonAttestationObjectInner +
              +
              + +

              AuthenticatorAttestationResponseJsonClientDataJSONInner

              + Re-exports AuthenticatorAttestationResponseJsonClientDataJSONInner +
              +
              + +

              AuthenticatorAttestationResponseJsonClientDataJSONInner

              + Re-exports AuthenticatorAttestationResponseJsonClientDataJSONInner +

              AuthorizeCustomerResponseTypeEnum

              @@ -343,6 +605,16 @@

              AuthorizePasswordlessCustomerModeEnum

              AuthorizePasswordlessCustomerModeEnum

              Re-exports AuthorizePasswordlessCustomerModeEnum
              +
              + +

              AuthorizeWebauthnRegistrationModeEnum

              + Re-exports AuthorizeWebauthnRegistrationModeEnum +
              +
              + +

              AuthorizeWebauthnRegistrationModeEnum

              + Re-exports AuthorizeWebauthnRegistrationModeEnum +

              GetPasswordLessAccessTokenGrantTypeEnum

              @@ -463,6 +735,116 @@

              Oauth2ErrorResponse

              Oauth2ErrorResponse

              Re-exports Oauth2ErrorResponse
              +
              + +

              PasskeyCredential

              + Re-exports PasskeyCredential +
              +
              + +

              PasskeyCredential

              + Re-exports PasskeyCredential +
              +
              + +

              PasskeyUser

              + Re-exports PasskeyUser +
              +
              + +

              PasskeyUser

              + Re-exports PasskeyUser +
              +
              + +

              PublicKeyCredentialDescriptor

              + Re-exports PublicKeyCredentialDescriptor +
              +
              + +

              PublicKeyCredentialDescriptor

              + Re-exports PublicKeyCredentialDescriptor +
              +
              + +

              PublicKeyCredentialDescriptorTransportsEnum

              + Re-exports PublicKeyCredentialDescriptorTransportsEnum +
              +
              + +

              PublicKeyCredentialDescriptorTransportsEnum

              + Re-exports PublicKeyCredentialDescriptorTransportsEnum +
              +
              + +

              PublicKeyCredentialDescriptorTypeEnum

              + Re-exports PublicKeyCredentialDescriptorTypeEnum +
              +
              + +

              PublicKeyCredentialDescriptorTypeEnum

              + Re-exports PublicKeyCredentialDescriptorTypeEnum +
              +
              + +

              PublicKeyCredentialJson

              + Re-exports PublicKeyCredentialJson +
              +
              + +

              PublicKeyCredentialJson

              + Re-exports PublicKeyCredentialJson +
              +
              + +

              PublicKeyCredentialJsonResponse

              + Re-exports PublicKeyCredentialJsonResponse +
              +
              + +

              PublicKeyCredentialJsonResponse

              + Re-exports PublicKeyCredentialJsonResponse +
              +
              + +

              PublicKeyCredentialJsonTypeEnum

              + Re-exports PublicKeyCredentialJsonTypeEnum +
              +
              + +

              PublicKeyCredentialJsonTypeEnum

              + Re-exports PublicKeyCredentialJsonTypeEnum +
              +
              + +

              PublicKeyCredentialRequestOptions

              + Re-exports PublicKeyCredentialRequestOptions +
              +
              + +

              PublicKeyCredentialRequestOptions

              + Re-exports PublicKeyCredentialRequestOptions +
              +
              + +

              PublicKeyCredentialRequestOptionsUserVerificationEnum

              + Re-exports PublicKeyCredentialRequestOptionsUserVerificationEnum +
              +
              + +

              PublicKeyCredentialRequestOptionsUserVerificationEnum

              + Re-exports PublicKeyCredentialRequestOptionsUserVerificationEnum +
              +
              + +

              RegistrationFinishRequest

              + Re-exports RegistrationFinishRequest +
              +
              + +

              RegistrationFinishRequest

              + Re-exports RegistrationFinishRequest +

              ResponseType

              @@ -643,11 +1025,121 @@

              authorizePasswordlessCustomerQueryParameters

              authorizePasswordlessCustomerQueryParameters

              Re-exports authorizePasswordlessCustomerQueryParameters
              +
              + +

              authorizeWebauthnRegistrationBodyType

              + Re-exports authorizeWebauthnRegistrationBodyType +
              +
              + +

              authorizeWebauthnRegistrationBodyType

              + Re-exports authorizeWebauthnRegistrationBodyType +
              +
              + +

              authorizeWebauthnRegistrationPathParameters

              + Re-exports authorizeWebauthnRegistrationPathParameters +
              +
              + +

              authorizeWebauthnRegistrationPathParameters

              + Re-exports authorizeWebauthnRegistrationPathParameters +
              +
              + +

              authorizeWebauthnRegistrationQueryParameters

              + Re-exports authorizeWebauthnRegistrationQueryParameters +
              +
              + +

              authorizeWebauthnRegistrationQueryParameters

              + Re-exports authorizeWebauthnRegistrationQueryParameters +

              defaultBaseUri

              Re-exports defaultBaseUri
              +
              + +

              deletePasskeyCredentialPathParameters

              + Re-exports deletePasskeyCredentialPathParameters +
              +
              + +

              deletePasskeyCredentialPathParameters

              + Re-exports deletePasskeyCredentialPathParameters +
              +
              + +

              deletePasskeyCredentialQueryParameters

              + Re-exports deletePasskeyCredentialQueryParameters +
              +
              + +

              deletePasskeyCredentialQueryParameters

              + Re-exports deletePasskeyCredentialQueryParameters +
              +
              + +

              deletePasskeyUserPathParameters

              + Re-exports deletePasskeyUserPathParameters +
              +
              + +

              deletePasskeyUserPathParameters

              + Re-exports deletePasskeyUserPathParameters +
              +
              + +

              deletePasskeyUserQueryParameters

              + Re-exports deletePasskeyUserQueryParameters +
              +
              + +

              deletePasskeyUserQueryParameters

              + Re-exports deletePasskeyUserQueryParameters +
              +
              + +

              finishWebauthnAuthenticationPathParameters

              + Re-exports finishWebauthnAuthenticationPathParameters +
              +
              + +

              finishWebauthnAuthenticationPathParameters

              + Re-exports finishWebauthnAuthenticationPathParameters +
              +
              + +

              finishWebauthnAuthenticationQueryParameters

              + Re-exports finishWebauthnAuthenticationQueryParameters +
              +
              + +

              finishWebauthnAuthenticationQueryParameters

              + Re-exports finishWebauthnAuthenticationQueryParameters +
              +
              + +

              finishWebauthnUserRegistrationPathParameters

              + Re-exports finishWebauthnUserRegistrationPathParameters +
              +
              + +

              finishWebauthnUserRegistrationPathParameters

              + Re-exports finishWebauthnUserRegistrationPathParameters +
              +
              + +

              finishWebauthnUserRegistrationQueryParameters

              + Re-exports finishWebauthnUserRegistrationQueryParameters +
              +
              + +

              finishWebauthnUserRegistrationQueryParameters

              + Re-exports finishWebauthnUserRegistrationQueryParameters +

              getAccessTokenBodyType

              @@ -698,6 +1190,26 @@

              getJwksUriQueryParameters

              getJwksUriQueryParameters

              Re-exports getJwksUriQueryParameters
              +
              + +

              getPasskeyUserByLoginIdPathParameters

              + Re-exports getPasskeyUserByLoginIdPathParameters +
              +
              + +

              getPasskeyUserByLoginIdPathParameters

              + Re-exports getPasskeyUserByLoginIdPathParameters +
              +
              + +

              getPasskeyUserByLoginIdQueryParameters

              + Re-exports getPasskeyUserByLoginIdQueryParameters +
              +
              + +

              getPasskeyUserByLoginIdQueryParameters

              + Re-exports getPasskeyUserByLoginIdQueryParameters +

              getPasswordLessAccessTokenBodyType

              @@ -1018,76 +1530,410 @@

              revokeTokenQueryParameters

              revokeTokenQueryParameters

              Re-exports revokeTokenQueryParameters
              +
              + +

              startWebauthnAuthenticationBodyType

              + Re-exports startWebauthnAuthenticationBodyType +
              +
              + +

              startWebauthnAuthenticationBodyType

              + Re-exports startWebauthnAuthenticationBodyType +
              +
              + +

              startWebauthnAuthenticationPathParameters

              + Re-exports startWebauthnAuthenticationPathParameters +
              +
              + +

              startWebauthnAuthenticationPathParameters

              + Re-exports startWebauthnAuthenticationPathParameters +
              +
              + +

              startWebauthnAuthenticationQueryParameters

              + Re-exports startWebauthnAuthenticationQueryParameters +
              +
              + +

              startWebauthnAuthenticationQueryParameters

              + Re-exports startWebauthnAuthenticationQueryParameters +
              +
              + +

              startWebauthnUserRegistrationBodyType

              + Re-exports startWebauthnUserRegistrationBodyType +
              +
              + +

              startWebauthnUserRegistrationBodyType

              + Re-exports startWebauthnUserRegistrationBodyType +
              +
              + +

              startWebauthnUserRegistrationPathParameters

              + Re-exports startWebauthnUserRegistrationPathParameters +
              +
              + +

              startWebauthnUserRegistrationPathParameters

              + Re-exports startWebauthnUserRegistrationPathParameters +
              +
              + +

              startWebauthnUserRegistrationQueryParameters

              + Re-exports startWebauthnUserRegistrationQueryParameters +
              +
              + +

              startWebauthnUserRegistrationQueryParameters

              + Re-exports startWebauthnUserRegistrationQueryParameters +

              Type aliases

              - -

              AuthorizeCustomerResponseTypeEnum

              -
              AuthorizeCustomerResponseTypeEnum: "code"
              + +

              AuthParameters

              +
              AuthParameters: ShopperLoginParameters
              - -

              AuthorizeCustomerScopeEnum

              -
              AuthorizeCustomerScopeEnum: "openid" | "offline_access" | "email"
              + +

              AuthPathParameters

              +
              AuthPathParameters: ShopperLoginPathParameters
              - -

              AuthorizePasswordlessCustomerModeEnum

              -
              AuthorizePasswordlessCustomerModeEnum: "callback" | "sms"
              + +

              AuthQueryParameters

              +
              AuthQueryParameters: ShopperLoginQueryParameters
              - -

              GetPasswordLessAccessTokenGrantTypeEnum

              -
              GetPasswordLessAccessTokenGrantTypeEnum: "authorization_code" | "refresh_token" | "client_credentials" | "authorization_code_pkce" | "session_bridge"
              + +

              AuthenticateFinishRequest

              +
              AuthenticateFinishRequest: { channel_id: string; client_id: string; credential: PublicKeyCredentialJson; email?: undefined | string; tenant_id?: undefined | string; user_id?: undefined | string; usid?: undefined | string } & {}
              +
              +
              +
              property
              +

              user_id: The ID of the user.

              +
                +
              • Max Length: 128
              • +
              +
              +
              property
              +

              channel_id: The ID of the channel.

              +
                +
              • Max Length: 100
              • +
              +
              +
              property
              +

              client_id: The ID of the OAuth client.

              +
                +
              • Min Length: 36
              • +
              • Max Length: 36
              • +
              +
              +
              property
              +

              email: User's email address.

              +
                +
              • Max Length: 128
              • +
              +
              +
              property
              +

              tenant_id: The ID of the tenant.

              +
                +
              • Max Length: 8
              • +
              +
              +
              property
              +

              usid: The unique session ID.

              +
                +
              • Max Length: 128
              • +
              +
              +
              property
              +

              credential:

              +
              +
              +
              - -

              GetPasswordResetTokenModeEnum

              -
              GetPasswordResetTokenModeEnum: "callback" | "sms"
              + +

              AuthenticateResult

              +
              AuthenticateResult: { credentialId?: undefined | string; success?: undefined | false | true; tokenResponse?: TokenResponse; username?: undefined | string } & {}
              +
              +
              +
              property
              +

              credentialId: The credential ID that was used for authentication.

              +
                +
              • Max Length: 1024
              • +
              +
              +
              property
              +

              username: The authenticated username.

              +
                +
              • Max Length: 128
              • +
              +
              +
              property
              +

              success: Specifies whether authentication was successful (true) or not (false).

              +
              +
              property
              +

              tokenResponse:

              +
              +
              +
              - -

              GetSessionBridgeAccessTokenGrantTypeEnum

              -
              GetSessionBridgeAccessTokenGrantTypeEnum: "authorization_code" | "refresh_token" | "client_credentials" | "authorization_code_pkce" | "session_bridge"
              + +

              AuthenticatorAssertionResponseJson

              +
              AuthenticatorAssertionResponseJson: { authenticatorData: Array<AuthenticatorAssertionResponseJsonAuthenticatorDataInner>; clientDataJSON: Array<AuthenticatorAssertionResponseJsonClientDataJSONInner>; signature: Array<AuthenticatorAssertionResponseJsonSignatureInner>; userHandle?: Array<AuthenticatorAssertionResponseJsonUserHandleInner> | null } & {}
              +
              +
              +
              property
              +

              authenticatorData: Base64url-encoded authenticator data

              +
              +
              property
              +

              clientDataJSON: Base64url-encoded client data JSON.

              +
              +
              property
              +

              signature: Base64url-encoded signature.

              +
              +
              property
              +

              userHandle: Base64url-encoded user handle.

              +
              +
              +
              - -

              GetTrustedAgentAccessTokenGrantTypeEnum

              + +

              AuthenticatorAssertionResponseJsonAuthenticatorDataInner

              +
              AuthenticatorAssertionResponseJsonAuthenticatorDataInner: { id?: undefined | string } & {}
              + +
              +
              +
              property
              +

              id:

              +
              +
              +
              +
              +
              + +

              AuthenticatorAssertionResponseJsonClientDataJSONInner

              +
              AuthenticatorAssertionResponseJsonClientDataJSONInner: { id?: undefined | string } & {}
              + +
              +
              +
              property
              +

              id:

              +
              +
              +
              +
              +
              + +

              AuthenticatorAssertionResponseJsonSignatureInner

              +
              AuthenticatorAssertionResponseJsonSignatureInner: { id?: undefined | string } & {}
              + +
              +
              +
              property
              +

              id:

              +
              +
              +
              +
              +
              + +

              AuthenticatorAssertionResponseJsonUserHandleInner

              +
              AuthenticatorAssertionResponseJsonUserHandleInner: { id?: undefined | string } & {}
              + +
              +
              +
              property
              +

              id:

              +
              +
              +
              +
              +
              + +

              AuthenticatorAttestationResponseJson

              +
              AuthenticatorAttestationResponseJson: { attestationObject: Array<AuthenticatorAttestationResponseJsonAttestationObjectInner>; clientDataJSON: Array<AuthenticatorAttestationResponseJsonClientDataJSONInner> } & {}
              + +
              +
              +
              property
              +

              clientDataJSON: Base64url-encoded client data JSON.

              +
              +
              property
              +

              attestationObject: Base64url-encoded attestation object.

              +
              +
              +
              +
              +
              + +

              AuthenticatorAttestationResponseJsonAttestationObjectInner

              +
              AuthenticatorAttestationResponseJsonAttestationObjectInner: { id?: undefined | string } & {}
              + +
              +
              +
              property
              +

              id:

              +
              +
              +
              +
              +
              + +

              AuthenticatorAttestationResponseJsonClientDataJSONInner

              +
              AuthenticatorAttestationResponseJsonClientDataJSONInner: { id?: undefined | string } & {}
              + +
              +
              +
              property
              +

              id:

              +
              +
              +
              +
              +
              + +

              AuthorizeCustomerResponseTypeEnum

              +
              AuthorizeCustomerResponseTypeEnum: "code"
              + +
              +
              + +

              AuthorizeCustomerScopeEnum

              +
              AuthorizeCustomerScopeEnum: "openid" | "offline_access" | "email"
              + +
              +
              + +

              AuthorizePasswordlessCustomerModeEnum

              +
              AuthorizePasswordlessCustomerModeEnum: "callback" | "sms" | "email"
              + +
              +
              + +

              AuthorizeWebauthnRegistrationModeEnum

              +
              AuthorizeWebauthnRegistrationModeEnum: "callback" | "sms" | "email"
              + +
              +
              + +

              GetPasswordLessAccessTokenGrantTypeEnum

              +
              GetPasswordLessAccessTokenGrantTypeEnum: "authorization_code" | "refresh_token" | "client_credentials" | "authorization_code_pkce" | "session_bridge"
              + +
              +
              + +

              GetPasswordResetTokenModeEnum

              +
              GetPasswordResetTokenModeEnum: "callback" | "sms" | "email"
              + +
              +
              + +

              GetSessionBridgeAccessTokenGrantTypeEnum

              +
              GetSessionBridgeAccessTokenGrantTypeEnum: "authorization_code" | "refresh_token" | "client_credentials" | "authorization_code_pkce" | "session_bridge"
              + +
              +
              + +

              GetTrustedAgentAccessTokenGrantTypeEnum

              GetTrustedAgentAccessTokenGrantTypeEnum: "authorization_code" | "refresh_token" | "client_credentials" | "authorization_code_pkce" | "session_bridge"
              @@ -1097,7 +1943,7 @@

              GetTrustedAgentAuthorizationTokenResponseType<
              GetTrustedAgentAuthorizationTokenResponseTypeEnum: "code"

              @@ -1107,7 +1953,7 @@

              GetTrustedSystemAccessTokenGrantTypeEnum<
              GetTrustedSystemAccessTokenGrantTypeEnum: "authorization_code" | "refresh_token" | "client_credentials" | "authorization_code_pkce" | "session_bridge"

              @@ -1117,7 +1963,7 @@

              GetTrustedSystemAccessTokenHintEnum

              GetTrustedSystemAccessTokenHintEnum: "ts_ext_on_behalf_of"
              @@ -1127,7 +1973,7 @@

              GetTrustedSystemAccessTokenIdpOriginEnum<
              GetTrustedSystemAccessTokenIdpOriginEnum: "apple" | "auth0" | "azure" | "azure_adb2c" | "cognito" | "default" | "ecom" | "facebook" | "forgerock" | "gigya" | "gigya_socialize" | "google" | "okta" | "ping" | "salesforce"
              @@ -1147,44 +1993,334 @@

              GrantType

            - -

            IntrospectTokenTokenTypeHintEnum

            -
            IntrospectTokenTokenTypeHintEnum: "access_token" | "refresh_token"
            - -
            -
            - -

            LogoutCustomerHintEnum

            -
            LogoutCustomerHintEnum: "all-sessions"
            + +

            IntrospectTokenTokenTypeHintEnum

            +
            IntrospectTokenTokenTypeHintEnum: "access_token" | "refresh_token"
            + +
            +
            + +

            LogoutCustomerHintEnum

            +
            LogoutCustomerHintEnum: "all-sessions"
            + +
            +
            + +

            Oauth2ErrorResponse

            +
            Oauth2ErrorResponse: { error: string; error_description?: undefined | string; error_uri?: undefined | string } & {}
            + +
            +
            +
            property
            +

            error:

            +
            +
            property
            +

            error_uri:

            +
            +
            property
            +

            error_description:

            +
            +
            +
            +
            +
            + +

            PasskeyCredential

            +
            PasskeyCredential: { credentialId?: undefined | string; id?: undefined | number; nickName?: undefined | string; publicKey?: undefined | string; signatureCount?: undefined | string; userHandle?: undefined | string; userId?: undefined | number } & {}
            + +
            +
            +
            property
            +

            id: Unique identifier for the credential

            +
            +
            property
            +

            userId: The ID of the user who owns this credential

            +
            +
            property
            +

            credentialId: The WebAuthn credential ID

            +
              +
            • Max Length: 1024
            • +
            +
            +
            property
            +

            nickName: User-friendly name for the credential

            +
              +
            • Max Length: 32
            • +
            +
            +
            property
            +

            publicKey: The public key associated with this credential

            +
              +
            • Max Length: 1024
            • +
            +
            +
            property
            +

            userHandle: The user handle associated with this credential

            +
              +
            • Max Length: 128
            • +
            +
            +
            property
            +

            signatureCount: The signature counter for replay attack prevention

            +
              +
            • Max Length: 8
            • +
            +
            +
            +
            +
            +
            + +

            PasskeyUser

            +
            PasskeyUser: { credentials?: Array<PasskeyCredential>; displayName?: undefined | string; id?: undefined | number; slasUserId?: undefined | number; userHandle?: undefined | string; userName?: undefined | string } & {}
            + +
            +
            +
            property
            +

            id: Unique identifier for the passkey user

            +
            +
            property
            +

            userName: The username of the passkey user

            +
              +
            • Max Length: 128
            • +
            +
            +
            property
            +

            displayName: The display name of the passkey user

            +
              +
            • Max Length: 256
            • +
            +
            +
            property
            +

            userHandle: The user handle (WebAuthn user ID)

            +
              +
            • Max Length: 128
            • +
            +
            +
            property
            +

            slasUserId: The associated SLAS user ID

            +
            +
            property
            +

            credentials: Set of passkey credentials associated with this user

            +
            +
            +
            +
            +
            + +

            PublicKeyCredentialDescriptor

            +
            PublicKeyCredentialDescriptor: { id: string; transports?: Array<PublicKeyCredentialDescriptorTransportsEnum>; type: PublicKeyCredentialDescriptorTypeEnum } & {}
            + +
            +
            +
            property
            +

            type: Credential type.

            +
              +
            • Max Length: 256
            • +
            +
            +
            property
            +

            id: The base64url-encoded ID of the credential.

            +
              +
            • Max Length: 64
            • +
            +
            +
            property
            +

            transports: Authenticator transports.

            +
            +
            +
            +
            +
            + +

            PublicKeyCredentialDescriptorTransportsEnum

            +
            PublicKeyCredentialDescriptorTransportsEnum: "usb" | "nfc" | "ble" | "internal"
            + +
            +
            + +

            PublicKeyCredentialDescriptorTypeEnum

            +
            PublicKeyCredentialDescriptorTypeEnum: "public-key"
            + +
            +
            + +

            PublicKeyCredentialJson

            +
            PublicKeyCredentialJson: { clientExtensionResults?: string | null; id: string; rawId: string; response: PublicKeyCredentialJsonResponse; type: PublicKeyCredentialJsonTypeEnum } & {}
            + +
            +
            +
            property
            +

            id: Base64url-encoded credential ID

            +
              +
            • Max Length: 256
            • +
            +
            +
            property
            +

            rawId: Base64url-encoded raw credential ID.

            +
              +
            • Max Length: 256
            • +
            +
            +
            property
            +

            type: The type of credential.

            +
            +
            property
            +

            clientExtensionResults: WebAuthn client extension results (typically empty).

            +
              +
            • Max Length: 100
            • +
            +
            +
            property
            +

            response:

            +
            +
            +
            +
            +
            + +

            PublicKeyCredentialJsonResponse

            + + +
            +
            +
            +
            + +

            PublicKeyCredentialJsonTypeEnum

            +
            PublicKeyCredentialJsonTypeEnum: "public-key"
            + +
            +
            + +

            PublicKeyCredentialRequestOptions

            +
            PublicKeyCredentialRequestOptions: { allowCredentials?: Array<PublicKeyCredentialDescriptor>; challenge?: undefined | string; extensions?: undefined | {}; rpId?: undefined | string; timeout?: undefined | number; userVerification?: PublicKeyCredentialRequestOptionsUserVerificationEnum } & {}
            + +
            +
            +
            property
            +

            challenge: Base64url-encoded challenge.

            +
              +
            • Max Length: 512
            • +
            +
            +
            property
            +

            timeout: Timeout value in milliseconds.

            +
            +
            property
            +

            rpId: The ID of the relying party.

            +
              +
            • Max Length: 256
            • +
            +
            +
            property
            +

            allowCredentials: Allowed credentials for authentication.

            +
            +
            property
            +

            userVerification: The level of requirement for user verification.

            +
            +
            property
            +

            extensions: WebAuthn extensions.

            +
            +
            +
            +
            +
            + +

            PublicKeyCredentialRequestOptionsUserVerificationEnum

            +
            PublicKeyCredentialRequestOptionsUserVerificationEnum: "required" | "preferred" | "discouraged"
            - -

            Oauth2ErrorResponse

            -
            Oauth2ErrorResponse: { error: string; error_description?: undefined | string; error_uri?: undefined | string } & {}
            + +

            RegistrationFinishRequest

            +
            RegistrationFinishRequest: { channel_id: string; client_id: string; credential: PublicKeyCredentialJson; pwd_action_token: string; username: string } & {}
            property
            -

            error:

            +

            client_id: The ID of the OAuth client.

            +
              +
            • Max Length: 36
            • +
            property
            -

            error_uri:

            +

            username: Username for the credential.

            +
              +
            • Max Length: 128
            • +
            property
            -

            error_description:

            +

            credential:

            +
            +
            property
            +

            channel_id: The ID of the channel.

            +
              +
            • Max Length: 128
            • +
            +
            +
            property
            +

            pwd_action_token: Password action token.

            +
              +
            • Pattern: /^[0-9]{8}$/
            • +
            • Max Length: 8
            • +
            @@ -1210,7 +2346,7 @@

            RevokeTokenTokenTypeHintEnum

            RevokeTokenTokenTypeHintEnum: "access_token" | "refresh_token"
            @@ -1220,7 +2356,7 @@

            ShopperLoginParameters

            @@ -1232,10 +2368,10 @@

            ShopperLoginParameters

            ShopperLoginPathParameters

            - +
            @@ -1247,10 +2383,10 @@

            ShopperLoginPathParameters

            ShopperLoginQueryParameters

            - +
            @@ -1369,7 +2505,7 @@

            authenticateCustomerBodyType

            authenticateCustomerBodyType: { channel_id: string; client_id?: undefined | string; code_challenge?: undefined | string; redirect_uri: string; response_type?: ResponseType; scope?: undefined | string; state?: undefined | string; usid?: undefined | string }
            @@ -1408,7 +2544,7 @@

            authenticateCustomerPathParameters

            authenticateCustomerPathParameters: { organizationId: string }
            @@ -1426,7 +2562,7 @@

            authenticateCustomerQueryParameters

            authenticateCustomerQueryParameters: {}
            @@ -1441,7 +2577,7 @@

            authorizeCustomerPathParameters

            authorizeCustomerPathParameters: { organizationId: string }
            @@ -1459,7 +2595,7 @@

            authorizeCustomerQueryParameters

            authorizeCustomerQueryParameters: { channel_id?: undefined | string; client_id: string; code_challenge?: undefined | string; hint?: undefined | string; redirect_uri: string; response_type: "code"; scope?: "openid" | "offline_access" | "email"; state?: undefined | string; ui_locales?: undefined | string; usid?: undefined | string }
            @@ -1493,51 +2629,291 @@
            Optional stateOptional ui_locales?: undefined | string

          • -
            Optional usid?: undefined | string
            +
            Optional usid?: undefined | string
            +
          • +

          +
          + +
          + +

          authorizePasswordlessCustomerBodyType

          +
          authorizePasswordlessCustomerBodyType: { callback_uri?: undefined | string; channel_id: string; customer_no?: undefined | string; email?: undefined | string; first_name?: undefined | string; last_name?: undefined | string; locale?: undefined | string; mode: string; phone_number?: undefined | string; user_id: string; usid?: undefined | string }
          + +
          +

          Type declaration

          +
            +
          • +
            Optional callback_uri?: undefined | string
            +
          • +
          • +
            channel_id: string
            +
          • +
          • +
            Optional customer_no?: undefined | string
            +
          • +
          • +
            Optional email?: undefined | string
            +
          • +
          • +
            Optional first_name?: undefined | string
            +
          • +
          • +
            Optional last_name?: undefined | string
            +
          • +
          • +
            Optional locale?: undefined | string
            +
          • +
          • +
            mode: string
            +
          • +
          • +
            Optional phone_number?: undefined | string
            +
          • +
          • +
            user_id: string
            +
          • +
          • +
            Optional usid?: undefined | string
            +
          • +
          +
          +
          +
          + +

          authorizePasswordlessCustomerPathParameters

          +
          authorizePasswordlessCustomerPathParameters: { organizationId: string }
          + +
          +

          Type declaration

          +
            +
          • +
            organizationId: string
            +
          • +
          +
          +
          +
          + +

          authorizePasswordlessCustomerQueryParameters

          +
          authorizePasswordlessCustomerQueryParameters: { register_customer?: undefined | string }
          + +
          +

          Type declaration

          +
            +
          • +
            Optional register_customer?: undefined | string
            +
          • +
          +
          +
          +
          + +

          authorizeWebauthnRegistrationBodyType

          +
          authorizeWebauthnRegistrationBodyType: { callback_uri?: undefined | string; channel_id: string; client_id?: undefined | string; code_challenge?: undefined | string; hint?: undefined | string; idp_name?: undefined | string; locale?: undefined | string; mode: string; user_id: string }
          + +
          +

          Type declaration

          +
            +
          • +
            Optional callback_uri?: undefined | string
            +
          • +
          • +
            channel_id: string
            +
          • +
          • +
            Optional client_id?: undefined | string
            +
          • +
          • +
            Optional code_challenge?: undefined | string
            +
          • +
          • +
            Optional hint?: undefined | string
            +
          • +
          • +
            Optional idp_name?: undefined | string
            +
          • +
          • +
            Optional locale?: undefined | string
            +
          • +
          • +
            mode: string
            +
          • +
          • +
            user_id: string
            +
          • +
          +
          +
          +
          + +

          authorizeWebauthnRegistrationPathParameters

          +
          authorizeWebauthnRegistrationPathParameters: { organizationId: string }
          + +
          +

          Type declaration

          +
            +
          • +
            organizationId: string
            +
          • +
          +
          +
          +
          + +

          authorizeWebauthnRegistrationQueryParameters

          +
          authorizeWebauthnRegistrationQueryParameters: {}
          + +
          +

          Type declaration

          +
            +
          +
          +
          +
          + +

          deletePasskeyCredentialPathParameters

          +
          deletePasskeyCredentialPathParameters: { credentialId: string; loginId: string; organizationId: string }
          + +
          +

          Type declaration

          +
            +
          • +
            credentialId: string
            +
          • +
          • +
            loginId: string
            +
          • +
          • +
            organizationId: string
            +
          • +
          +
          +
          +
          + +

          deletePasskeyCredentialQueryParameters

          +
          deletePasskeyCredentialQueryParameters: { channel_id: string }
          + +
          +

          Type declaration

          +
            +
          • +
            channel_id: string
            +
          • +
          +
          +
          +
          + +

          deletePasskeyUserPathParameters

          +
          deletePasskeyUserPathParameters: { loginId: string; organizationId: string }
          + +
          +

          Type declaration

          +
            +
          • +
            loginId: string
            +
          • +
          • +
            organizationId: string
            +
          • +
          +
          +
          +
          + +

          deletePasskeyUserQueryParameters

          +
          deletePasskeyUserQueryParameters: { channel_id: string }
          + +
          +

          Type declaration

          +
            +
          • +
            channel_id: string
            +
          • +
          +
          +
          +
          + +

          finishWebauthnAuthenticationPathParameters

          +
          finishWebauthnAuthenticationPathParameters: { organizationId: string }
          + +
          +

          Type declaration

          +
            +
          • +
            organizationId: string
          - -

          authorizePasswordlessCustomerBodyType

          -
          authorizePasswordlessCustomerBodyType: { callback_uri?: undefined | string; channel_id: string; locale?: undefined | string; mode: string; user_id: string; usid?: undefined | string }
          + +

          finishWebauthnAuthenticationQueryParameters

          +
          finishWebauthnAuthenticationQueryParameters: {}

          Type declaration

            -
          • -
            Optional callback_uri?: undefined | string
            -
          • -
          • -
            channel_id: string
            -
          • -
          • -
            Optional locale?: undefined | string
            -
          • -
          • -
            mode: string
            -
          • -
          • -
            user_id: string
            -
          • -
          • -
            Optional usid?: undefined | string
            -
          - -

          authorizePasswordlessCustomerPathParameters

          -
          authorizePasswordlessCustomerPathParameters: { organizationId: string }
          + +

          finishWebauthnUserRegistrationPathParameters

          +
          finishWebauthnUserRegistrationPathParameters: { organizationId: string }
          @@ -1550,12 +2926,12 @@
          organizationId: - -

          authorizePasswordlessCustomerQueryParameters

          -
          authorizePasswordlessCustomerQueryParameters: {}
          + +

          finishWebauthnUserRegistrationQueryParameters

          +
          finishWebauthnUserRegistrationQueryParameters: {}
          @@ -1570,7 +2946,7 @@

          getAccessTokenBodyType

          getAccessTokenBodyType: { channel_id?: undefined | string; client_id?: undefined | string; code?: undefined | string; code_verifier?: undefined | string; dnt?: undefined | string; grant_type: GrantType; redirect_uri?: undefined | string; refresh_token?: undefined | string; usid?: undefined | string }
          @@ -1612,7 +2988,7 @@

          getAccessTokenPathParameters

          getAccessTokenPathParameters: { organizationId: string }
          @@ -1630,7 +3006,7 @@

          getAccessTokenQueryParameters

          getAccessTokenQueryParameters: {}
          @@ -1645,7 +3021,7 @@

          getJwksUriPathParameters

          getJwksUriPathParameters: { organizationId: string }
          @@ -1663,12 +3039,51 @@

          getJwksUriQueryParameters

          getJwksUriQueryParameters: {}
          +
          +

          Type declaration

          +
            +
          +
          +
          +
          + +

          getPasskeyUserByLoginIdPathParameters

          +
          getPasskeyUserByLoginIdPathParameters: { loginId: string; organizationId: string }
          + +
          +

          Type declaration

          +
            +
          • +
            loginId: string
            +
          • +
          • +
            organizationId: string
            +
          • +
          +
          +
          +
          + +

          getPasskeyUserByLoginIdQueryParameters

          +
          getPasskeyUserByLoginIdQueryParameters: { channel_id: string }
          +

          Type declaration

            +
          • +
            channel_id: string
            +
          @@ -1678,7 +3093,7 @@

          getPasswordLessAccessTokenBodyType

          getPasswordLessAccessTokenBodyType: { client_id?: undefined | string; code_verifier?: undefined | string; grant_type: string; hint: string; login_id?: undefined | string; pwdless_login_token: string }
          @@ -1711,7 +3126,7 @@

          getPasswordLessAccessTokenPathParameters

          getPasswordLessAccessTokenPathParameters: { organizationId: string }
          @@ -1729,7 +3144,7 @@

          getPasswordLessAccessTokenQueryParameters

          getPasswordLessAccessTokenQueryParameters: {}
          @@ -1744,7 +3159,7 @@

          getPasswordResetTokenBodyType

          getPasswordResetTokenBodyType: { callback_uri?: undefined | string; channel_id: string; client_id?: undefined | string; code_challenge?: undefined | string; hint?: undefined | string; idp_name?: undefined | string; locale?: undefined | string; mode: string; user_id: string }
          @@ -1786,7 +3201,7 @@

          getPasswordResetTokenPathParameters

          getPasswordResetTokenPathParameters: { organizationId: string }
          @@ -1804,7 +3219,7 @@

          getPasswordResetTokenQueryParameters

          getPasswordResetTokenQueryParameters: {}
          @@ -1819,7 +3234,7 @@

          getSessionBridgeAccessTokenBodyType

          getSessionBridgeAccessTokenBodyType: { channel_id: string; client_id: string; code: string; code_verifier: string; dnt?: undefined | string; dwsgst?: undefined | string; dwsid: string; dwsrst?: undefined | string; grant_type: string; login_id: string; usid?: undefined | string }
          @@ -1867,7 +3282,7 @@

          getSessionBridgeAccessTokenPathParameters

          getSessionBridgeAccessTokenPathParameters: { organizationId: string }
          @@ -1885,7 +3300,7 @@

          getSessionBridgeAccessTokenQueryParameters

          getSessionBridgeAccessTokenQueryParameters: {}
          @@ -1900,7 +3315,7 @@

          getTrustedAgentAccessTokenBodyType

          getTrustedAgentAccessTokenBodyType: { agent_id?: undefined | string; channel_id: string; client_id: string; code_verifier: string; dnt?: undefined | string; grant_type: string; idp_origin: string; login_id: string; state?: undefined | string; usid?: undefined | string }
          @@ -1945,7 +3360,7 @@

          getTrustedAgentAccessTokenPathParameters

          getTrustedAgentAccessTokenPathParameters: { organizationId: string }
          @@ -1963,7 +3378,7 @@

          getTrustedAgentAccessTokenQueryParameters

          getTrustedAgentAccessTokenQueryParameters: {}
          @@ -1978,7 +3393,7 @@

          getTrustedAgentAuthorizationTokenPathParameter
          getTrustedAgentAuthorizationTokenPathParameters: { organizationId: string }
          @@ -1996,7 +3411,7 @@

          getTrustedAgentAuthorizationTokenQueryParamete
          getTrustedAgentAuthorizationTokenQueryParameters: { channel_id: string; client_id: string; code_challenge?: undefined | string; idp_origin: string; login_id: string; redirect_uri: string; response_type: "code" }
          @@ -2032,7 +3447,7 @@

          getTrustedSystemAccessTokenBodyType

          getTrustedSystemAccessTokenBodyType: { channel_id: string; client_id: string; dnt?: undefined | string; email_id?: undefined | string; grant_type: string; hint: string; idp_origin: string; login_id: string; usid?: undefined | string }
          @@ -2074,7 +3489,7 @@

          getTrustedSystemAccessTokenPathParameters

          getTrustedSystemAccessTokenPathParameters: { organizationId: string }
          @@ -2092,7 +3507,7 @@

          getTrustedSystemAccessTokenQueryParameters

          getTrustedSystemAccessTokenQueryParameters: {}
          @@ -2107,7 +3522,7 @@

          getUserInfoPathParameters

          getUserInfoPathParameters: { organizationId: string }
          @@ -2125,7 +3540,7 @@

          getUserInfoQueryParameters

          getUserInfoQueryParameters: { channel_id?: undefined | string }
          @@ -2143,7 +3558,7 @@

          getWellknownOpenidConfigurationPathParameters

          getWellknownOpenidConfigurationPathParameters: { organizationId: string }
          @@ -2161,7 +3576,7 @@

          getWellknownOpenidConfigurationQueryParameters

          getWellknownOpenidConfigurationQueryParameters: {}
          @@ -2176,7 +3591,7 @@

          introspectTokenBodyType

          introspectTokenBodyType: { token: string; token_type_hint?: undefined | string }
          @@ -2197,7 +3612,7 @@

          introspectTokenPathParameters

          introspectTokenPathParameters: { organizationId: string }
          @@ -2215,7 +3630,7 @@

          introspectTokenQueryParameters

          introspectTokenQueryParameters: {}
          @@ -2230,7 +3645,7 @@

          logoutCustomerPathParameters

          logoutCustomerPathParameters: { organizationId: string }
          @@ -2248,7 +3663,7 @@

          logoutCustomerQueryParameters

          logoutCustomerQueryParameters: { channel_id?: undefined | string; client_id: string; hint?: undefined | "all-sessions"; refresh_token: string }
          @@ -2272,10 +3687,10 @@
          refresh_token:

          resetPasswordBodyType

          -
          resetPasswordBodyType: { channel_id: string; client_id: string; code_verifier: string; hint?: undefined | string; new_password?: undefined | string; pwd_action_token: string }
          +
          resetPasswordBodyType: { channel_id: string; client_id: string; code_verifier?: undefined | string; hint?: undefined | string; new_password?: undefined | string; pwd_action_token: string; user_id?: undefined | string }
          @@ -2288,7 +3703,7 @@
          channel_id: : string

        • -
          code_verifier: string
          +
          Optional code_verifier?: undefined | string
        • Optional hint?: undefined | string
          @@ -2299,6 +3714,9 @@
          Optional new_password
          pwd_action_token: string
        • +
        • +
          Optional user_id?: undefined | string
          +
        @@ -2308,7 +3726,7 @@

        resetPasswordPathParameters

        resetPasswordPathParameters: { organizationId: string }
        @@ -2326,7 +3744,7 @@

        resetPasswordQueryParameters

        resetPasswordQueryParameters: {}
        @@ -2341,7 +3759,7 @@

        revokeTokenBodyType

        revokeTokenBodyType: { token: string; token_type_hint?: undefined | string }
        @@ -2362,7 +3780,7 @@

        revokeTokenPathParameters

        revokeTokenPathParameters: { organizationId: string }
        @@ -2380,7 +3798,133 @@

        revokeTokenQueryParameters

        revokeTokenQueryParameters: {}
        +
        +

        Type declaration

        +
          +
        +
        + +
        + +

        startWebauthnAuthenticationBodyType

        +
        startWebauthnAuthenticationBodyType: { channel_id: string; client_id: string; tenant_id?: undefined | string; user_id?: undefined | string }
        + +
        +

        Type declaration

        +
          +
        • +
          channel_id: string
          +
        • +
        • +
          client_id: string
          +
        • +
        • +
          Optional tenant_id?: undefined | string
          +
        • +
        • +
          Optional user_id?: undefined | string
          +
        • +
        +
        +
        +
        + +

        startWebauthnAuthenticationPathParameters

        +
        startWebauthnAuthenticationPathParameters: { organizationId: string }
        + +
        +

        Type declaration

        +
          +
        • +
          organizationId: string
          +
        • +
        +
        +
        +
        + +

        startWebauthnAuthenticationQueryParameters

        +
        startWebauthnAuthenticationQueryParameters: {}
        + +
        +

        Type declaration

        +
          +
        +
        +
        +
        + +

        startWebauthnUserRegistrationBodyType

        +
        startWebauthnUserRegistrationBodyType: { channel_id: string; client_id?: undefined | string; display_name?: undefined | string; nick_name?: undefined | string; pwd_action_token: string; user_id: string }
        + +
        +

        Type declaration

        +
          +
        • +
          channel_id: string
          +
        • +
        • +
          Optional client_id?: undefined | string
          +
        • +
        • +
          Optional display_name?: undefined | string
          +
        • +
        • +
          Optional nick_name?: undefined | string
          +
        • +
        • +
          pwd_action_token: string
          +
        • +
        • +
          user_id: string
          +
        • +
        +
        +
        +
        + +

        startWebauthnUserRegistrationPathParameters

        +
        startWebauthnUserRegistrationPathParameters: { organizationId: string }
        + +
        +

        Type declaration

        +
          +
        • +
          organizationId: string
          +
        • +
        +
        +
        +
        + +

        startWebauthnUserRegistrationQueryParameters

        +
        startWebauthnUserRegistrationQueryParameters: {}
        +
        @@ -2440,48 +3984,129 @@

        Const defaultBaseUri shopperCustomers

      • -
      • - shopperExperience +
      • + shopperExperience +
      • +
      • + shopperGiftCertificates +
      • +
      • + shopperLogin + +
      • +
      • + shopperOrders +
      • +
      • + shopperPayments +
      • +
      • + shopperProducts +
      • +
      • + shopperPromotions +
      • +
      • + shopperSearch +
      • +
      • + shopperSeo +
      • +
      • + shopperStores +
      • +
      • + templateUrl +
      • +
      • + version +
      • +
      + + -

      @@ -151,6 +192,106 @@

      Type aliases

      Type aliases

      +
      + +

      AuthenticateFinishRequest

      +
      AuthenticateFinishRequest: ShopperLoginModelTypes.AuthenticateFinishRequest
      + +
      +
      + +

      AuthenticateResult

      +
      AuthenticateResult: ShopperLoginModelTypes.AuthenticateResult
      + +
      +
      + +

      AuthenticatorAssertionResponseJson

      +
      AuthenticatorAssertionResponseJson: ShopperLoginModelTypes.AuthenticatorAssertionResponseJson
      + +
      +
      + +

      AuthenticatorAssertionResponseJsonAuthenticatorDataInner

      +
      AuthenticatorAssertionResponseJsonAuthenticatorDataInner: ShopperLoginModelTypes.AuthenticatorAssertionResponseJsonAuthenticatorDataInner
      + +
      +
      + +

      AuthenticatorAssertionResponseJsonClientDataJSONInner

      +
      AuthenticatorAssertionResponseJsonClientDataJSONInner: ShopperLoginModelTypes.AuthenticatorAssertionResponseJsonClientDataJSONInner
      + +
      +
      + +

      AuthenticatorAssertionResponseJsonSignatureInner

      +
      AuthenticatorAssertionResponseJsonSignatureInner: ShopperLoginModelTypes.AuthenticatorAssertionResponseJsonSignatureInner
      + +
      +
      + +

      AuthenticatorAssertionResponseJsonUserHandleInner

      +
      AuthenticatorAssertionResponseJsonUserHandleInner: ShopperLoginModelTypes.AuthenticatorAssertionResponseJsonUserHandleInner
      + +
      +
      + +

      AuthenticatorAttestationResponseJson

      +
      AuthenticatorAttestationResponseJson: ShopperLoginModelTypes.AuthenticatorAttestationResponseJson
      + +
      +
      + +

      AuthenticatorAttestationResponseJsonAttestationObjectInner

      +
      AuthenticatorAttestationResponseJsonAttestationObjectInner: ShopperLoginModelTypes.AuthenticatorAttestationResponseJsonAttestationObjectInner
      + +
      +
      + +

      AuthenticatorAttestationResponseJsonClientDataJSONInner

      +
      AuthenticatorAttestationResponseJsonClientDataJSONInner: ShopperLoginModelTypes.AuthenticatorAttestationResponseJsonClientDataJSONInner
      + +

      AuthorizeCustomerResponseTypeEnum

      @@ -181,13 +322,23 @@

      AuthorizePasswordlessCustomerModeEnum

    +
    + +

    AuthorizeWebauthnRegistrationModeEnum

    +
    AuthorizeWebauthnRegistrationModeEnum: ShopperLoginApiTypes.AuthorizeWebauthnRegistrationModeEnum
    + +

    GetPasswordLessAccessTokenGrantTypeEnum

    GetPasswordLessAccessTokenGrantTypeEnum: ShopperLoginApiTypes.GetPasswordLessAccessTokenGrantTypeEnum
    @@ -197,7 +348,7 @@

    GetPasswordResetTokenModeEnum

    GetPasswordResetTokenModeEnum: ShopperLoginApiTypes.GetPasswordResetTokenModeEnum
    @@ -207,7 +358,7 @@

    GetSessionBridgeAccessTokenGrantTypeEnum<
    GetSessionBridgeAccessTokenGrantTypeEnum: ShopperLoginApiTypes.GetSessionBridgeAccessTokenGrantTypeEnum
    @@ -217,7 +368,7 @@

    GetTrustedAgentAccessTokenGrantTypeEnumGetTrustedAgentAccessTokenGrantTypeEnum: ShopperLoginApiTypes.GetTrustedAgentAccessTokenGrantTypeEnum @@ -227,7 +378,7 @@

    GetTrustedAgentAuthorizationTokenResponseType<
    GetTrustedAgentAuthorizationTokenResponseTypeEnum: ShopperLoginApiTypes.GetTrustedAgentAuthorizationTokenResponseTypeEnum
    @@ -237,7 +388,7 @@

    GetTrustedSystemAccessTokenGrantTypeEnum<
    GetTrustedSystemAccessTokenGrantTypeEnum: ShopperLoginApiTypes.GetTrustedSystemAccessTokenGrantTypeEnum
    @@ -247,7 +398,7 @@

    GetTrustedSystemAccessTokenHintEnum

    GetTrustedSystemAccessTokenHintEnum: ShopperLoginApiTypes.GetTrustedSystemAccessTokenHintEnum
    @@ -257,7 +408,7 @@

    GetTrustedSystemAccessTokenIdpOriginEnum<
    GetTrustedSystemAccessTokenIdpOriginEnum: ShopperLoginApiTypes.GetTrustedSystemAccessTokenIdpOriginEnum
    @@ -267,7 +418,7 @@

    GrantType

    GrantType: ShopperLoginModelTypes.GrantType
    @@ -277,7 +428,7 @@

    IntrospectTokenTokenTypeHintEnum

    IntrospectTokenTokenTypeHintEnum: ShopperLoginApiTypes.IntrospectTokenTokenTypeHintEnum
    @@ -287,7 +438,7 @@

    LogoutCustomerHintEnum

    LogoutCustomerHintEnum: ShopperLoginApiTypes.LogoutCustomerHintEnum
    @@ -297,7 +448,117 @@

    Oauth2ErrorResponse

    Oauth2ErrorResponse: ShopperLoginModelTypes.Oauth2ErrorResponse
    + +
    + +

    PasskeyCredential

    +
    PasskeyCredential: ShopperLoginModelTypes.PasskeyCredential
    + +
    +
    + +

    PasskeyUser

    +
    PasskeyUser: ShopperLoginModelTypes.PasskeyUser
    + +
    +
    + +

    PublicKeyCredentialDescriptor

    +
    PublicKeyCredentialDescriptor: ShopperLoginModelTypes.PublicKeyCredentialDescriptor
    + +
    +
    + +

    PublicKeyCredentialDescriptorTransportsEnum

    +
    PublicKeyCredentialDescriptorTransportsEnum: ShopperLoginModelTypes.PublicKeyCredentialDescriptorTransportsEnum
    + +
    +
    + +

    PublicKeyCredentialDescriptorTypeEnum

    +
    PublicKeyCredentialDescriptorTypeEnum: ShopperLoginModelTypes.PublicKeyCredentialDescriptorTypeEnum
    + +
    +
    + +

    PublicKeyCredentialJson

    +
    PublicKeyCredentialJson: ShopperLoginModelTypes.PublicKeyCredentialJson
    + +
    +
    + +

    PublicKeyCredentialJsonResponse

    +
    PublicKeyCredentialJsonResponse: ShopperLoginModelTypes.PublicKeyCredentialJsonResponse
    + +
    +
    + +

    PublicKeyCredentialJsonTypeEnum

    +
    PublicKeyCredentialJsonTypeEnum: ShopperLoginModelTypes.PublicKeyCredentialJsonTypeEnum
    + +
    +
    + +

    PublicKeyCredentialRequestOptions

    +
    PublicKeyCredentialRequestOptions: ShopperLoginModelTypes.PublicKeyCredentialRequestOptions
    + +
    +
    + +

    PublicKeyCredentialRequestOptionsUserVerificationEnum

    +
    PublicKeyCredentialRequestOptionsUserVerificationEnum: ShopperLoginModelTypes.PublicKeyCredentialRequestOptionsUserVerificationEnum
    + +
    +
    + +

    RegistrationFinishRequest

    +
    RegistrationFinishRequest: ShopperLoginModelTypes.RegistrationFinishRequest
    +
    @@ -307,7 +568,7 @@

    ResponseType

    ResponseType: ShopperLoginModelTypes.ResponseType
    @@ -317,7 +578,7 @@

    RevokeTokenTokenTypeHintEnum

    RevokeTokenTokenTypeHintEnum: ShopperLoginApiTypes.RevokeTokenTokenTypeHintEnum
    @@ -347,7 +608,7 @@

    TokenActionRequest

    TokenActionRequest: ShopperLoginModelTypes.TokenActionRequest
    @@ -357,7 +618,7 @@

    TokenActionRequestTokenTypeHintEnum

    TokenActionRequestTokenTypeHintEnum: ShopperLoginModelTypes.TokenActionRequestTokenTypeHintEnum
    @@ -367,7 +628,7 @@

    TokenResponse

    TokenResponse: ShopperLoginModelTypes.TokenResponse
    @@ -377,7 +638,7 @@

    TokenType

    TokenType: ShopperLoginModelTypes.TokenType
    @@ -461,13 +722,123 @@

    authorizePasswordlessCustomerQueryParameters

+
+ +

authorizeWebauthnRegistrationBodyType

+
authorizeWebauthnRegistrationBodyType: ShopperLoginApiTypes.authorizeWebauthnRegistrationBodyType
+ +
+
+ +

authorizeWebauthnRegistrationPathParameters

+
authorizeWebauthnRegistrationPathParameters: ShopperLoginApiTypes.authorizeWebauthnRegistrationPathParameters
+ +
+
+ +

authorizeWebauthnRegistrationQueryParameters

+
authorizeWebauthnRegistrationQueryParameters: ShopperLoginApiTypes.authorizeWebauthnRegistrationQueryParameters
+ +
+
+ +

deletePasskeyCredentialPathParameters

+
deletePasskeyCredentialPathParameters: ShopperLoginApiTypes.deletePasskeyCredentialPathParameters
+ +
+
+ +

deletePasskeyCredentialQueryParameters

+
deletePasskeyCredentialQueryParameters: ShopperLoginApiTypes.deletePasskeyCredentialQueryParameters
+ +
+
+ +

deletePasskeyUserPathParameters

+
deletePasskeyUserPathParameters: ShopperLoginApiTypes.deletePasskeyUserPathParameters
+ +
+
+ +

deletePasskeyUserQueryParameters

+
deletePasskeyUserQueryParameters: ShopperLoginApiTypes.deletePasskeyUserQueryParameters
+ +
+
+ +

finishWebauthnAuthenticationPathParameters

+
finishWebauthnAuthenticationPathParameters: ShopperLoginApiTypes.finishWebauthnAuthenticationPathParameters
+ +
+
+ +

finishWebauthnAuthenticationQueryParameters

+
finishWebauthnAuthenticationQueryParameters: ShopperLoginApiTypes.finishWebauthnAuthenticationQueryParameters
+ +
+
+ +

finishWebauthnUserRegistrationPathParameters

+
finishWebauthnUserRegistrationPathParameters: ShopperLoginApiTypes.finishWebauthnUserRegistrationPathParameters
+ +
+
+ +

finishWebauthnUserRegistrationQueryParameters

+
finishWebauthnUserRegistrationQueryParameters: ShopperLoginApiTypes.finishWebauthnUserRegistrationQueryParameters
+ +

getAccessTokenBodyType

getAccessTokenBodyType: ShopperLoginApiTypes.getAccessTokenBodyType
@@ -477,7 +848,7 @@

getAccessTokenPathParameters

getAccessTokenPathParameters: ShopperLoginApiTypes.getAccessTokenPathParameters
@@ -487,7 +858,7 @@

getAccessTokenQueryParameters

getAccessTokenQueryParameters: ShopperLoginApiTypes.getAccessTokenQueryParameters
@@ -497,7 +868,7 @@

getJwksUriPathParameters

getJwksUriPathParameters: ShopperLoginApiTypes.getJwksUriPathParameters
@@ -507,7 +878,27 @@

getJwksUriQueryParameters

getJwksUriQueryParameters: ShopperLoginApiTypes.getJwksUriQueryParameters
+ +
+ +

getPasskeyUserByLoginIdPathParameters

+
getPasskeyUserByLoginIdPathParameters: ShopperLoginApiTypes.getPasskeyUserByLoginIdPathParameters
+ +
+
+ +

getPasskeyUserByLoginIdQueryParameters

+
getPasskeyUserByLoginIdQueryParameters: ShopperLoginApiTypes.getPasskeyUserByLoginIdQueryParameters
+
@@ -517,7 +908,7 @@

getPasswordLessAccessTokenBodyType

getPasswordLessAccessTokenBodyType: ShopperLoginApiTypes.getPasswordLessAccessTokenBodyType
@@ -527,7 +918,7 @@

getPasswordLessAccessTokenPathParameters

getPasswordLessAccessTokenPathParameters: ShopperLoginApiTypes.getPasswordLessAccessTokenPathParameters
@@ -537,7 +928,7 @@

getPasswordLessAccessTokenQueryParameters

getPasswordLessAccessTokenQueryParameters: ShopperLoginApiTypes.getPasswordLessAccessTokenQueryParameters
@@ -547,7 +938,7 @@

getPasswordResetTokenBodyType

getPasswordResetTokenBodyType: ShopperLoginApiTypes.getPasswordResetTokenBodyType
@@ -557,7 +948,7 @@

getPasswordResetTokenPathParameters

getPasswordResetTokenPathParameters: ShopperLoginApiTypes.getPasswordResetTokenPathParameters
@@ -567,7 +958,7 @@

getPasswordResetTokenQueryParameters

getPasswordResetTokenQueryParameters: ShopperLoginApiTypes.getPasswordResetTokenQueryParameters
@@ -577,7 +968,7 @@

getSessionBridgeAccessTokenBodyType

getSessionBridgeAccessTokenBodyType: ShopperLoginApiTypes.getSessionBridgeAccessTokenBodyType
@@ -587,7 +978,7 @@

getSessionBridgeAccessTokenPathParameters

getSessionBridgeAccessTokenPathParameters: ShopperLoginApiTypes.getSessionBridgeAccessTokenPathParameters
@@ -597,7 +988,7 @@

getSessionBridgeAccessTokenQueryParameters

getSessionBridgeAccessTokenQueryParameters: ShopperLoginApiTypes.getSessionBridgeAccessTokenQueryParameters @@ -607,7 +998,7 @@

getTrustedAgentAccessTokenBodyType

getTrustedAgentAccessTokenBodyType: ShopperLoginApiTypes.getTrustedAgentAccessTokenBodyType
@@ -617,7 +1008,7 @@

getTrustedAgentAccessTokenPathParameters

getTrustedAgentAccessTokenPathParameters: ShopperLoginApiTypes.getTrustedAgentAccessTokenPathParameters
@@ -627,7 +1018,7 @@

getTrustedAgentAccessTokenQueryParameters

getTrustedAgentAccessTokenQueryParameters: ShopperLoginApiTypes.getTrustedAgentAccessTokenQueryParameters
@@ -637,7 +1028,7 @@

getTrustedAgentAuthorizationTokenPathParameter
getTrustedAgentAuthorizationTokenPathParameters: ShopperLoginApiTypes.getTrustedAgentAuthorizationTokenPathParameters
@@ -647,7 +1038,7 @@

getTrustedAgentAuthorizationTokenQueryParamete
getTrustedAgentAuthorizationTokenQueryParameters: ShopperLoginApiTypes.getTrustedAgentAuthorizationTokenQueryParameters
@@ -657,7 +1048,7 @@

getTrustedSystemAccessTokenBodyType

getTrustedSystemAccessTokenBodyType: ShopperLoginApiTypes.getTrustedSystemAccessTokenBodyType
@@ -667,7 +1058,7 @@

getTrustedSystemAccessTokenPathParameters

getTrustedSystemAccessTokenPathParameters: ShopperLoginApiTypes.getTrustedSystemAccessTokenPathParameters
@@ -677,7 +1068,7 @@

getTrustedSystemAccessTokenQueryParameters

getTrustedSystemAccessTokenQueryParameters: ShopperLoginApiTypes.getTrustedSystemAccessTokenQueryParameters @@ -687,7 +1078,7 @@

getUserInfoPathParameters

getUserInfoPathParameters: ShopperLoginApiTypes.getUserInfoPathParameters
@@ -697,7 +1088,7 @@

getUserInfoQueryParameters

getUserInfoQueryParameters: ShopperLoginApiTypes.getUserInfoQueryParameters
@@ -707,7 +1098,7 @@

getWellknownOpenidConfigurationPathParameters

getWellknownOpenidConfigurationPathParameters: ShopperLoginApiTypes.getWellknownOpenidConfigurationPathParameters
@@ -717,7 +1108,7 @@

getWellknownOpenidConfigurationQueryParameters

getWellknownOpenidConfigurationQueryParameters: ShopperLoginApiTypes.getWellknownOpenidConfigurationQueryParameters
@@ -727,7 +1118,7 @@

introspectTokenBodyType

introspectTokenBodyType: ShopperLoginApiTypes.introspectTokenBodyType
@@ -737,7 +1128,7 @@

introspectTokenPathParameters

introspectTokenPathParameters: ShopperLoginApiTypes.introspectTokenPathParameters
@@ -747,7 +1138,7 @@

introspectTokenQueryParameters

introspectTokenQueryParameters: ShopperLoginApiTypes.introspectTokenQueryParameters
@@ -757,7 +1148,7 @@

logoutCustomerPathParameters

logoutCustomerPathParameters: ShopperLoginApiTypes.logoutCustomerPathParameters
@@ -767,7 +1158,7 @@

logoutCustomerQueryParameters

logoutCustomerQueryParameters: ShopperLoginApiTypes.logoutCustomerQueryParameters
@@ -777,7 +1168,7 @@

resetPasswordBodyType

resetPasswordBodyType: ShopperLoginApiTypes.resetPasswordBodyType
@@ -787,7 +1178,7 @@

resetPasswordPathParameters

resetPasswordPathParameters: ShopperLoginApiTypes.resetPasswordPathParameters
@@ -797,7 +1188,7 @@

resetPasswordQueryParameters

resetPasswordQueryParameters: ShopperLoginApiTypes.resetPasswordQueryParameters
@@ -807,7 +1198,7 @@

revokeTokenBodyType

revokeTokenBodyType: ShopperLoginApiTypes.revokeTokenBodyType
@@ -817,7 +1208,7 @@

revokeTokenPathParameters

revokeTokenPathParameters: ShopperLoginApiTypes.revokeTokenPathParameters
@@ -827,7 +1218,67 @@

revokeTokenQueryParameters

revokeTokenQueryParameters: ShopperLoginApiTypes.revokeTokenQueryParameters
+ +
+ +

startWebauthnAuthenticationBodyType

+
startWebauthnAuthenticationBodyType: ShopperLoginApiTypes.startWebauthnAuthenticationBodyType
+ +
+
+ +

startWebauthnAuthenticationPathParameters

+
startWebauthnAuthenticationPathParameters: ShopperLoginApiTypes.startWebauthnAuthenticationPathParameters
+ +
+
+ +

startWebauthnAuthenticationQueryParameters

+
startWebauthnAuthenticationQueryParameters: ShopperLoginApiTypes.startWebauthnAuthenticationQueryParameters
+ +
+
+ +

startWebauthnUserRegistrationBodyType

+
startWebauthnUserRegistrationBodyType: ShopperLoginApiTypes.startWebauthnUserRegistrationBodyType
+ +
+
+ +

startWebauthnUserRegistrationPathParameters

+
startWebauthnUserRegistrationPathParameters: ShopperLoginApiTypes.startWebauthnUserRegistrationPathParameters
+ +
+
+ +

startWebauthnUserRegistrationQueryParameters

+
startWebauthnUserRegistrationQueryParameters: ShopperLoginApiTypes.startWebauthnUserRegistrationQueryParameters
+
@@ -886,6 +1337,9 @@

revokeTokenQueryParameters

  • shopperOrders
  • +
  • + shopperPayments +
  • shopperProducts
  • @@ -911,6 +1365,36 @@

    revokeTokenQueryParameters

    diff --git a/docs/modules/shopperorders.html b/docs/modules/shopperorders.html index 4495d366..d807f945 100644 --- a/docs/modules/shopperorders.html +++ b/docs/modules/shopperorders.html @@ -77,6 +77,8 @@

    References

  • Basket
  • BasketChannelTypeEnum
  • BasketChannelTypeEnum
  • +
  • BasketProductItem
  • +
  • BasketProductItem
  • BasketTaxationEnum
  • BasketTaxationEnum
  • BonusDiscountLineItem
  • @@ -85,26 +87,40 @@

    References

  • CouponItem
  • CouponItemStatusCodeEnum
  • CouponItemStatusCodeEnum
  • -
  • CurrencyCode
  • -
  • CurrencyCode
  • CustomerInfo
  • CustomerInfo
  • -
  • DefaultFallback
  • -
  • DefaultFallback
  • Discount
  • Discount
  • DiscountTypeEnum
  • DiscountTypeEnum
  • ErrorResponse
  • ErrorResponse
  • +
  • FailOrderRequest
  • +
  • FailOrderRequest
  • +
  • FailOrderRequestReasonCodeEnum
  • +
  • FailOrderRequestReasonCodeEnum
  • +
  • GetOrderExpandEnum
  • +
  • GetOrderExpandEnum
  • +
  • GiftCardRequest
  • +
  • GiftCardRequest
  • +
  • GiftCardResponse
  • +
  • GiftCardResponse
  • GiftCertificateItem
  • GiftCertificateItem
  • GroupedTaxItem
  • GroupedTaxItem
  • LocaleCode
  • LocaleCode
  • -
  • NoValue
  • -
  • NoValue
  • +
  • OmsData
  • +
  • OmsData
  • +
  • OmsProductData
  • +
  • OmsProductData
  • +
  • OmsProductDataStatusEnum
  • +
  • OmsProductDataStatusEnum
  • +
  • OmsShipment
  • +
  • OmsShipment
  • +
  • OmsShipmentItem
  • +
  • OmsShipmentItem
  • OptionItem
  • OptionItem
  • Order
  • @@ -123,10 +139,18 @@

    References

  • OrderPaymentCardRequest
  • OrderPaymentInstrument
  • OrderPaymentInstrument
  • +
  • OrderPaymentInstrumentPaymentReference
  • +
  • OrderPaymentInstrumentPaymentReference
  • +
  • OrderPaymentInstrumentPaymentReferenceGatewayEnum
  • +
  • OrderPaymentInstrumentPaymentReferenceGatewayEnum
  • +
  • OrderPaymentInstrumentPaymentReferenceGatewayProperties
  • +
  • OrderPaymentInstrumentPaymentReferenceGatewayProperties
  • OrderPaymentInstrumentRequest
  • OrderPaymentInstrumentRequest
  • OrderPaymentStatusEnum
  • OrderPaymentStatusEnum
  • +
  • OrderProductItem
  • +
  • OrderProductItem
  • OrderShippingStatusEnum
  • OrderShippingStatusEnum
  • OrderStatusEnum
  • @@ -141,6 +165,12 @@

    References

  • PaymentMethod
  • PaymentMethodResult
  • PaymentMethodResult
  • +
  • PaymentReferenceRequest
  • +
  • PaymentReferenceRequest
  • +
  • PaymentReferenceRequestGatewayEnum
  • +
  • PaymentReferenceRequestGatewayEnum
  • +
  • PaymentReferenceRequestGatewayProperties
  • +
  • PaymentReferenceRequestGatewayProperties
  • PriceAdjustment
  • PriceAdjustment
  • ProductDetailsLink
  • @@ -190,6 +220,10 @@

    References

  • createPaymentInstrumentForOrderQueryParameters
  • createPaymentInstrumentForOrderQueryParameters
  • defaultBaseUri
  • +
  • failOrderPathParameters
  • +
  • failOrderPathParameters
  • +
  • failOrderQueryParameters
  • +
  • failOrderQueryParameters
  • getOrderPathParameters
  • getOrderPathParameters
  • getOrderQueryParameters
  • @@ -233,20 +267,28 @@

    Type aliases

    -
    - -

    CurrencyCode

    -
    CurrencyCode: NoValue | string
    - -
    -
    -

    CustomerInfo

    @@ -1263,21 +1576,6 @@

    CustomerInfo

    -
    - -

    DefaultFallback

    -
    DefaultFallback: "default"
    - -
    -
    -

    A specialized value indicating the system default values for locales.

    -
    -
    -

    Discount

    @@ -1349,6 +1647,113 @@

    ErrorResponse

    +
    + +

    FailOrderRequest

    +
    FailOrderRequest: { reasonCode?: FailOrderRequestReasonCodeEnum } & {}
    + +
    +
    +
    property
    +

    reasonCode: The reason code for failing the order.

    +
    +
    +
    +
    +
    + +

    FailOrderRequestReasonCodeEnum

    +
    FailOrderRequestReasonCodeEnum: "payment_confirm_failure" | "payment_capture_failure" | "payment_auth_failure"
    + +
    +
    + +

    GetOrderExpandEnum

    +
    GetOrderExpandEnum: "oms" | "oms_shipments"
    + +
    +
    + +

    GiftCardRequest

    +
    GiftCardRequest: { brand: string; cardNumber: string; cvc: string; expirationMonth?: undefined | number; expirationYear?: undefined | number } & {}
    + +
    +
    +
    property
    +

    brand: The gift card type or brand (for example, givex, blackhawk).

    +
      +
    • Max Length: 256
    • +
    +
    +
    property
    +

    cardNumber: The gift card number.

    +
      +
    • Max Length: 40
    • +
    +
    +
    property
    +

    cvc: The card verification code (CVC/CVV) for the gift card.

    +
      +
    • Max Length: 4
    • +
    +
    +
    property
    +

    expirationMonth: The month when the gift card expires.

    +
    +
    property
    +

    expirationYear: The year when the gift card expires.

    +
    +
    +
    +
    +
    + +

    GiftCardResponse

    +
    GiftCardResponse: { brand?: undefined | string; expirationMonth?: undefined | number; expirationYear?: undefined | number; maskedCardNumber?: undefined | string } & {}
    + +
    +
    +
    property
    +

    brand: The gift card brand.

    +
      +
    • Max Length: 256
    • +
    +
    +
    property
    +

    maskedCardNumber: The masked gift card number.

    +
      +
    • Max Length: 40
    • +
    +
    +
    property
    +

    expirationMonth: The month when the gift card expires.

    +
    +
    property
    +

    expirationYear: The year when the gift card expires.

    +
    +
    +
    +

    GiftCertificateItem

    @@ -1416,28 +1821,124 @@

    GroupedTaxItem

    LocaleCode

    -
    LocaleCode: DefaultFallback | string
    +
    LocaleCode: string
    - -

    NoValue

    -
    NoValue: "N/A"
    + +

    OmsData

    +
    OmsData: { shipments?: Array<OmsShipment>; status?: undefined | string } & {}
    -
    -

    A specialized value indicating the lack of definition of a currency, for example, if the value of the monetary value of the currency is an undefined number.

    -
    +
    +
    property
    +

    status: Current status of the order

    +
    +
    property
    +

    shipments: List of shipments associated with the order

    +
    +
    +
    +
    +
    + +

    OmsProductData

    +
    OmsProductData: { quantityAvailableToCancel?: undefined | number; status?: OmsProductDataStatusEnum } & {}
    + +
    +
    +
    property
    +

    status: Order Management (OMS) status

    +
    +
    property
    +

    quantityAvailableToCancel: The quantity that can be cancelled.

    +
    +
    +
    +
    +
    + +

    OmsProductDataStatusEnum

    +
    OmsProductDataStatusEnum: "ordered" | "returned" | "canceled" | "paid" | "reshipped" | "fulfilled" | "partially_fulfilled" | "allocated" | "partially_allocated" | "return_initiated"
    + +
    +
    + +

    OmsShipment

    +
    OmsShipment: { actualDeliveryDate?: undefined | string; expectedDeliveryDate?: undefined | string; id?: undefined | string; provider?: undefined | string; shipmentItems?: Array<OmsShipmentItem>; status?: undefined | string; trackingNumber?: undefined | string; trackingUrl?: undefined | string } & {}
    + +
    +
    +
    property
    +

    id: Unique identifier for the shipment

    +
    +
    property
    +

    status: Current status of the shipment

    +
    +
    property
    +

    provider: Shipping provider name

    +
    +
    property
    +

    trackingNumber: Tracking number for the shipment

    +
    +
    property
    +

    trackingUrl: URL to track the shipment

    +
    +
    property
    +

    expectedDeliveryDate: Expected delivery date and time

    +
    +
    property
    +

    actualDeliveryDate: Actual delivery date and time (null if not yet delivered)

    +
    +
    property
    +

    shipmentItems: Items included in this shipment

    +
    +
    +
    +
    +
    + +

    OmsShipmentItem

    +
    OmsShipmentItem: { id?: undefined | string; productItemId?: undefined | string; quantity?: undefined | number } & {}
    + +
    +
    +
    property
    +

    id: Unique identifier for the shipment item

    +
    +
    property
    +

    productItemId: Reference to the product item in the order

    +
    +
    property
    +

    quantity: Quantity of product items with the referenced productItemId in this shipment

    +
    +
    @@ -1551,10 +2052,10 @@

    OptionItem

    Order

    -
    Order: { adjustedMerchandizeTotalTax?: undefined | number; adjustedShippingTotalTax?: undefined | number; billingAddress?: OrderAddress; bonusDiscountLineItems?: Array<BonusDiscountLineItem>; channelType?: OrderChannelTypeEnum; confirmationStatus?: OrderConfirmationStatusEnum; couponItems?: Array<CouponItem>; createdBy?: undefined | string; creationDate?: undefined | string; currency?: CurrencyCode; customerInfo?: CustomerInfo; customerName?: undefined | string; exportStatus?: OrderExportStatusEnum; externalOrderStatus?: undefined | string; giftCertificateItems?: Array<GiftCertificateItem>; globalPartyId?: undefined | string; groupedTaxItems?: Array<GroupedTaxItem>; guest?: undefined | false | true; lastModified?: undefined | string; merchandizeTotalTax?: undefined | number; orderNo?: undefined | string; orderPriceAdjustments?: Array<PriceAdjustment>; orderToken?: undefined | string; orderTotal?: undefined | number; orderViewCode?: undefined | string; paymentInstruments?: Array<OrderPaymentInstrument>; paymentStatus?: OrderPaymentStatusEnum; productItems?: Array<ProductItem>; productSubTotal?: undefined | number; productTotal?: undefined | number; shipments?: Array<Shipment>; shippingItems?: Array<ShippingItem>; shippingStatus?: OrderShippingStatusEnum; shippingTotal?: undefined | number; shippingTotalTax?: undefined | number; siteId?: undefined | string; sourceCode?: undefined | string; status?: OrderStatusEnum; taxRoundedAtGroup?: undefined | false | true; taxTotal?: undefined | number; taxation?: OrderTaxationEnum } & {}
    +
    Order: { adjustedMerchandizeTotalTax?: undefined | number; adjustedShippingTotalTax?: undefined | number; billingAddress?: OrderAddress; bonusDiscountLineItems?: Array<BonusDiscountLineItem>; channelType?: OrderChannelTypeEnum; confirmationStatus?: OrderConfirmationStatusEnum; couponItems?: Array<CouponItem>; createdBy?: undefined | string; creationDate?: undefined | string; currency?: undefined | string; customerInfo?: CustomerInfo; customerName?: undefined | string; exportStatus?: OrderExportStatusEnum; externalOrderStatus?: undefined | string; giftCertificateItems?: Array<GiftCertificateItem>; globalPartyId?: undefined | string; groupedTaxItems?: Array<GroupedTaxItem>; guest?: undefined | false | true; lastModified?: undefined | string; merchandizeTotalTax?: undefined | number; omsData?: OmsData; orderNo?: undefined | string; orderPriceAdjustments?: Array<PriceAdjustment>; orderToken?: undefined | string; orderTotal?: undefined | number; orderViewCode?: undefined | string; paymentInstruments?: Array<OrderPaymentInstrument>; paymentStatus?: OrderPaymentStatusEnum; productItems?: Array<OrderProductItem>; productSubTotal?: undefined | number; productTotal?: undefined | number; shipments?: Array<Shipment>; shippingItems?: Array<ShippingItem>; shippingStatus?: OrderShippingStatusEnum; shippingTotal?: undefined | number; shippingTotalTax?: undefined | number; siteId?: undefined | string; sourceCode?: undefined | string; status?: OrderStatusEnum; taxRoundedAtGroup?: undefined | false | true; taxTotal?: undefined | number; taxation?: OrderTaxationEnum } & {}
    @@ -1588,6 +2089,9 @@

    Order

    property

    currency: The ISO 4217 mnemonic code of the currency. It is read only.

    +
      +
    • Pattern: /^([A-Z][A-Z][A-Z]|N/A)$/
    • +
    property

    customerInfo: The customer information for guest or logged-in customers. It is read only.

    @@ -1673,6 +2177,9 @@

    Order

    property
    +

    omsData: Information retrieved from Order Management (OMS) for the order.

    +
    +
    property

    sourceCode: The source code assigned to the basket from which this order was created. It is read only.

    property
    @@ -1773,7 +2280,7 @@

    OrderChannelTypeEnum

    OrderChannelTypeEnum: "storefront" | "callcenter" | "marketplace" | "dss" | "store" | "pinterest" | "twitter" | "facebookads" | "subscriptions" | "onlinereservation" | "customerservicecenter" | "instagramcommerce" | "tiktok" | "snapchat" | "google" | "whatsapp" | "youtube"
    @@ -1783,7 +2290,7 @@

    OrderConfirmationStatusEnum

    OrderConfirmationStatusEnum: "not_confirmed" | "confirmed"
    @@ -1793,7 +2300,7 @@

    OrderExportStatusEnum

    OrderExportStatusEnum: "not_exported" | "exported" | "ready" | "failed"
    @@ -1874,10 +2381,10 @@

    OrderPaymentCardRequest

    OrderPaymentInstrument

    -
    OrderPaymentInstrument: { amount?: undefined | number; authorizationStatus?: Status; bankRoutingNumber?: undefined | string; maskedGiftCertificateCode?: undefined | string; paymentCard?: PaymentCard; paymentInstrumentId?: undefined | string; paymentMethodId?: undefined | string } & {}
    +
    OrderPaymentInstrument: { amount?: undefined | number; authorizationStatus?: Status; bankRoutingNumber?: undefined | string; giftCard?: GiftCardResponse; maskedGiftCertificateCode?: undefined | string; paymentCard?: PaymentCard; paymentInstrumentId?: undefined | string; paymentMethodId?: undefined | string; paymentReference?: OrderPaymentInstrumentPaymentReference } & {}
    @@ -1901,6 +2408,9 @@

    OrderPaymentInstrument

    paymentCard: The payment card.

    property
    +

    giftCard: The gift card.

    +
    +
    property

    paymentInstrumentId: The payment instrument ID. It is read only.

    property
    @@ -1909,64 +2419,236 @@

    OrderPaymentInstrument

  • Max Length: 256
  • +
    property
    +

    paymentReference:

    +
    + +
    +
    +
    + +

    OrderPaymentInstrumentPaymentReference

    +
    OrderPaymentInstrumentPaymentReference: { gateway?: OrderPaymentInstrumentPaymentReferenceGatewayEnum; gatewayProperties?: OrderPaymentInstrumentPaymentReferenceGatewayProperties; paymentReferenceId?: undefined | string } & {}
    + +
    +
    +
    property
    +

    paymentReferenceId: Payment reference identifier. Can be payment intent ID for Stripe, PSP reference for Adyen, PayPal order ID for PayPal, or similar identifier for other payment providers.

    +
      +
    • Max Length: 256
    • +
    +
    +
    property
    +

    gateway: The payment gateway used to process the payment.

    +
    +
    property
    +

    gatewayProperties:

    +
    +
    +
    +
    +
    + +

    OrderPaymentInstrumentPaymentReferenceGatewayEnum

    +
    OrderPaymentInstrumentPaymentReferenceGatewayEnum: "stripe" | "paypal" | "adyen"
    + +
    +
    + +

    OrderPaymentInstrumentPaymentReferenceGatewayProperties

    +
    OrderPaymentInstrumentPaymentReferenceGatewayProperties: { adyen?: undefined | {}; paypal?: undefined | {}; stripe?: undefined | {} } & {}
    + +
    +
    +
    property
    +

    stripe: # Stripe specific properties. - setupFutureUsage: Indicates that you intend to make future payments with this payment method. - on_session: The payment method is intended to be used for a future payment on the same website session. - off_session: The payment method is intended to be used for a future payment on a different website session. - null: The payment method is not intended to be used for a future payment. - clientSecret: Secret for Stripe client-side payment confirmation. Don't store, log, or expose the client secret to anyone other than the customer, and only use it on pages where TLS is enabled. - type: string - maxLength: 256 - example: "pi_1J4K5L2eZvKYlo2CyZ8K5L6M_secret_abc123"

    +
    +
    property
    +

    paypal: # PayPal specific properties.

    +
    +
    property
    +

    adyen: # Adyen specific properties. - adyenError: Error information returned by Adyen if the payment fails. Null on success. - adyenPaymentIntent: The Adyen payment intent object containing payment details and required actions. - resultCode: The result of the payment request (for example, "REDIRECT_SHOPPER", "AUTHORISED", "PENDING", "REFUSED"). - accountID: The Adyen merchant account ID. - adyenPaymentIntentAction: The action object for payment methods requiring additional shopper interaction. - url: The URL for completing the payment (redirect or 3DS authentication). - type: The action type (for example, "redirect", "threeDS2", "voucher"). - method: The HTTP method for the action (for example, "GET", "POST"). - successful: A boolean indicating whether the Adyen operation is successful.

    +

    OrderPaymentInstrumentRequest

    -
    OrderPaymentInstrumentRequest: { amount?: undefined | number; bankRoutingNumber?: undefined | string; giftCertificateCode?: undefined | string; paymentCard?: OrderPaymentCardRequest; paymentMethodId?: undefined | string } & {}
    +
    OrderPaymentInstrumentRequest: { amount?: undefined | number; bankRoutingNumber?: undefined | string; giftCardRequest?: GiftCardRequest; giftCertificateCode?: undefined | string; paymentCard?: OrderPaymentCardRequest; paymentMethodId?: undefined | string; paymentReferenceRequest?: PaymentReferenceRequest } & {}
    + +
    +
    +
    property
    +

    amount: The payment transaction amount.

    +
    +
    property
    +

    bankRoutingNumber: The bank routing number.

    +
      +
    • Max Length: 256
    • +
    +
    +
    property
    +

    giftCertificateCode: The gift certificate code.

    +
      +
    • Max Length: 256
    • +
    +
    +
    property
    +

    paymentCard: The payment card.

    +
    +
    property
    +

    giftCardRequest: The gift card request.

    +
    +
    property
    +

    paymentMethodId: The payment method ID.

    +
      +
    • Max Length: 256
    • +
    +
    +
    property
    +

    paymentReferenceRequest: Payment reference information for various payment service providers, only when Salesforce Payments is enabled.

    +
    +
    +
    +
    +
    + +

    OrderPaymentStatusEnum

    +
    OrderPaymentStatusEnum: "not_paid" | "part_paid" | "paid"
    + +
    +
    + +

    OrderProductItem

    +
    OrderProductItem: { adjustedTax?: undefined | number; basePrice?: undefined | number; bonusDiscountLineItemId?: undefined | string; bonusProductLineItem?: undefined | false | true; bundledProductItems?: Array<ProductItem>; gift?: undefined | false | true; giftMessage?: undefined | string; inventoryId?: undefined | string; itemId?: undefined | string; itemText?: undefined | string; omsData?: OmsProductData; optionItems?: Array<OptionItem>; price?: undefined | number; priceAdjustments?: Array<PriceAdjustment>; priceAfterItemDiscount?: undefined | number; priceAfterOrderDiscount?: undefined | number; productId?: undefined | string; productListItem?: ProductListItemReference; productName?: undefined | string; qualifyingProductItemId?: undefined | string; quantity?: undefined | number; shipmentId?: undefined | string; shippingItemId?: undefined | string; tax?: undefined | number; taxBasis?: undefined | number; taxClassId?: undefined | string; taxRate?: undefined | number } & {}
    property
    -

    amount: The payment transaction amount.

    +

    omsData: Product information retrieved from Order Management (OMS). Only available in the context of an order.

    +
    +
    property
    +

    adjustedTax: The tax on the line item, including any adjustments. It is read only.

    +
    +
    property
    +

    basePrice: The base price of the line item, which is the unit price not including adjustments. If the taxation policy is net, it doesn't include tax. If the taxation policy is gross, it includes tax. It is read only.

    +
    +
    property
    +

    bonusDiscountLineItemId: The ID of the bonus discount line item this bonus product relates to. It is read only.

    +
    +
    property
    +

    bonusProductLineItem: A flag indicating whether the product item is a bonus.

    +
    +
    property
    +

    bundledProductItems: The bundled product items.

    +
    +
    property
    +

    gift: Returns true if the item is a gift. It is read only.

    +
    +
    property
    +

    giftMessage: The gift message.

    +
    +
    property
    +

    inventoryId: The inventory list ID associated with this item.

    +
      +
    • Max Length: 256
    • +
    +
    +
    property
    +

    itemId: The product item ID. Use it to identify this item when updating its quantity or creating a custom price adjustment for it. It is read only.

    +
    +
    property
    +

    itemText: The text describing the item.

    +
    +
    property
    +

    optionItems: The option items.

    +
    +
    property
    +

    price: The price of the line item before applying any adjustments. If the line item is based on net pricing then the net price is returned. If the line item is based on gross pricing then the gross price is returned. It is read only.

    +
    +
    property
    +

    priceAdjustments: The price adjustments.

    +
    +
    property
    +

    priceAfterItemDiscount: The price of the product line item including item-level adjustments, but not including order-level adjustments or shipping charges. If the taxation policy is net, it doesn't include tax. If the taxation policy is gross, it includes tax. It is read only.

    +
    +
    property
    +

    priceAfterOrderDiscount: The price of the product line item including item-level adjustments and prorated order-level adjustments, but not including shipping charges. If the taxation policy is net, it doesn't include tax. If the taxation policy is gross, it includes tax. It is read only.

    +
    +
    property
    +

    productId: The ID of the product.

    +
      +
    • Max Length: 100
    • +
    +
    +
    property
    +

    productListItem: If this product line item was added from a product list, this value is a reference to the corresponding product list item.

    +
    +
    property
    +

    productName: The name of the product.

    +
    +
    property
    +

    qualifyingProductItemId: Returns the id of the ProductLineItem that qualified the basket for this bonus product. This method is only applicable if the product line item is a bonus product line item, and if the promotion is a product promotion with number of qualifying products granting a bonus-product discount. If these conditions aren't met, the method returns null. If there are multiple product line items that triggered this bonus product, this method returns the last one by position within the order.

    +
      +
    • Max Length: 28
    • +
    +
    +
    property
    +

    quantity: The quantity of the products represented by this item.

    property
    -

    bankRoutingNumber: The bank routing number.

    -
      -
    • Max Length: 256
    • -
    +

    shipmentId: The ID of the shipment this item belongs to.

    property
    -

    giftCertificateCode: The gift certificate code.

    -
      -
    • Max Length: 256
    • -
    +

    shippingItemId: If the product line item has a related shipping item, this value is its ID. A related shipping item represents a surcharge applied to individual products using a particular shipping method. It is read only.

    property
    -

    paymentCard: The payment card.

    +

    tax: The tax for the product item, not including price adjustments. It is read only.

    property
    -

    paymentMethodId: The payment method ID.

    -
      -
    • Max Length: 256
    • -
    +

    taxBasis: The price used to calculate the tax for this product item. It is read only.

    +
    +
    property
    +

    taxClassId: The tax class ID for the product item, or null if no tax class ID is associated with the product item. It is read only.

    +
    +
    property
    +

    taxRate: The tax rate, which is the decimal tax rate to be applied to the product represented by this item. It is read only.

    -
    - -

    OrderPaymentStatusEnum

    -
    OrderPaymentStatusEnum: "not_paid" | "part_paid" | "paid"
    - -

    OrderShippingStatusEnum

    OrderShippingStatusEnum: "not_shipped" | "part_shipped" | "shipped"
    @@ -1976,7 +2658,7 @@

    OrderStatusEnum

    OrderStatusEnum: "created" | "new" | "completed" | "cancelled" | "replaced" | "failed"
    @@ -1986,7 +2668,7 @@

    OrderTaxationEnum

    OrderTaxationEnum: "gross" | "net"
    @@ -2142,6 +2824,73 @@

    PaymentMethodResult

    +
    + +

    PaymentReferenceRequest

    +
    PaymentReferenceRequest: { gateway?: PaymentReferenceRequestGatewayEnum; gatewayProperties?: PaymentReferenceRequestGatewayProperties; paymentMethodType?: undefined | string; zoneId?: undefined | string } & {}
    + +
    +
    +
    property
    +

    paymentMethodType: Payment Method Type

    +
      +
    • Max Length: 64
    • +
    +
    +
    property
    +

    zoneId: The unique identifier for a Payments zone.

    +
      +
    • Pattern: /^[a-zA-Z0-9\-_]{1,100}$/
    • +
    • Min Length: 1
    • +
    • Max Length: 100
    • +
    +
    +
    property
    +

    gateway: The payment gateway used to process the payment.

    +
    +
    property
    +

    gatewayProperties:

    +
    +
    +
    +
    +
    + +

    PaymentReferenceRequestGatewayEnum

    +
    PaymentReferenceRequestGatewayEnum: "stripe" | "paypal" | "adyen"
    + +
    +
    + +

    PaymentReferenceRequestGatewayProperties

    +
    PaymentReferenceRequestGatewayProperties: { adyen?: undefined | {}; paypal?: undefined | {}; stripe?: undefined | {} } & {}
    + +
    +
    +
    property
    +

    stripe: # Stripe specific properties. - setupFutureUsage: Indicates that you intend to make future payments with this payment method. - on_session: The payment method is intended to be used for a future payment on the same website session. - off_session: The payment method is intended to be used for a future payment on a different website session. - null: The payment method is not intended to be used for a future payment.

    +
    +
    property
    +

    paypal: # PayPal specific properties. - shippingPreference: Shipping preference for PayPal payment processing. Applicable only for basket payment instruments. - GET_FROM_FILE - NO_SHIPPING - SET_PROVIDED_ADDRESS

    +
    +
    property
    +

    adyen: # Adyen specific properties.

    +
    +
    +
    +

    PriceAdjustment

    @@ -2605,7 +3354,7 @@

    ShopperOrdersParameters

    @@ -2617,10 +3366,10 @@

    ShopperOrdersParameters

    ShopperOrdersPathParameters

    - +
    @@ -2632,10 +3381,10 @@

    ShopperOrdersPathParameters

    ShopperOrdersQueryParameters

    - +
    @@ -2730,7 +3479,7 @@

    createOrderPathParameters

    createOrderPathParameters: { organizationId: string }
    @@ -2748,7 +3497,7 @@

    createOrderQueryParameters

    createOrderQueryParameters: { locale?: LocaleCode; siteId: string }
    @@ -2769,7 +3518,7 @@

    createPaymentInstrumentForOrderPathParameters<
    createPaymentInstrumentForOrderPathParameters: { orderNo: string; organizationId: string }
    @@ -2790,7 +3539,49 @@

    createPaymentInstrumentForOrderQueryParameters
    createPaymentInstrumentForOrderQueryParameters: { locale?: LocaleCode; siteId: string }
    +
    +

    Type declaration

    +
      +
    • +
      Optional locale?: LocaleCode
      +
    • +
    • +
      siteId: string
      +
    • +
    +
    +

    +
    + +

    failOrderPathParameters

    +
    failOrderPathParameters: { orderNo: string; organizationId: string }
    + +
    +

    Type declaration

    +
      +
    • +
      orderNo: string
      +
    • +
    • +
      organizationId: string
      +
    • +
    +
    +
    +
    + +

    failOrderQueryParameters

    +
    failOrderQueryParameters: { locale?: LocaleCode; reopenBasket?: undefined | false | true; siteId: string }
    +
    @@ -2799,6 +3590,9 @@

    Type declaration

  • Optional locale?: LocaleCode
  • +
  • +
    Optional reopenBasket?: undefined | false | true
    +
  • siteId: string
  • @@ -2811,7 +3605,7 @@

    getOrderPathParameters

    getOrderPathParameters: { orderNo: string; organizationId: string }
    @@ -2829,15 +3623,18 @@
    organizationId:

    getOrderQueryParameters

    -
    getOrderQueryParameters: { locale?: LocaleCode; siteId: string }
    +
    getOrderQueryParameters: { expand?: Array<"oms" | "oms_shipments">; locale?: LocaleCode; siteId: string }

    Type declaration

      +
    • +
      Optional expand?: Array<"oms" | "oms_shipments">
      +
    • Optional locale?: LocaleCode
    • @@ -2853,7 +3650,7 @@

      getPaymentMethodsForOrderPathParameters

      getPaymentMethodsForOrderPathParameters: { orderNo: string; organizationId: string }
      @@ -2874,7 +3671,7 @@

      getPaymentMethodsForOrderQueryParameters

      getPaymentMethodsForOrderQueryParameters: { locale?: LocaleCode; siteId: string }
      @@ -2895,7 +3692,7 @@

      getTaxesFromOrderPathParameters

      getTaxesFromOrderPathParameters: { orderNo: string; organizationId: string }
      @@ -2916,7 +3713,7 @@

      getTaxesFromOrderQueryParameters

      getTaxesFromOrderQueryParameters: { siteId: string }
      @@ -2934,7 +3731,7 @@

      guestOrderLookupPathParameters

      guestOrderLookupPathParameters: { orderNo: string; organizationId: string }
      @@ -2955,7 +3752,7 @@

      guestOrderLookupQueryParameters

      guestOrderLookupQueryParameters: { locale?: LocaleCode; siteId: string }
      @@ -2976,7 +3773,7 @@

      removePaymentInstrumentFromOrderPathParameters
      removePaymentInstrumentFromOrderPathParameters: { orderNo: string; organizationId: string; paymentInstrumentId: string }
      @@ -3000,7 +3797,7 @@

      removePaymentInstrumentFromOrderQueryParameter
      removePaymentInstrumentFromOrderQueryParameters: { locale?: LocaleCode; siteId: string }
      @@ -3021,7 +3818,7 @@

      updatePaymentInstrumentForOrderPathParameters<
      updatePaymentInstrumentForOrderPathParameters: { orderNo: string; organizationId: string; paymentInstrumentId: string }
      @@ -3045,7 +3842,7 @@

      updatePaymentInstrumentForOrderQueryParameters
      updatePaymentInstrumentForOrderQueryParameters: { locale?: LocaleCode; siteId: string }
      @@ -3128,6 +3925,9 @@

      Const defaultBaseUri

    +
  • + shopperPayments +
  • shopperProducts
  • @@ -3165,6 +3965,12 @@

    Const defaultBaseUri BasketChannelTypeEnum +
  • + BasketProductItem +
  • +
  • + BasketProductItem +
  • BasketTaxationEnum
  • @@ -3189,24 +3995,12 @@

    Const defaultBaseUri CouponItemStatusCodeEnum -
  • - CurrencyCode -
  • -
  • - CurrencyCode -
  • CustomerInfo
  • CustomerInfo
  • -
  • - DefaultFallback -
  • -
  • - DefaultFallback -
  • Discount
  • @@ -3225,6 +4019,36 @@

    Const defaultBaseUri ErrorResponse +
  • + FailOrderRequest +
  • +
  • + FailOrderRequest +
  • +
  • + FailOrderRequestReasonCodeEnum +
  • +
  • + FailOrderRequestReasonCodeEnum +
  • +
  • + GetOrderExpandEnum +
  • +
  • + GetOrderExpandEnum +
  • +
  • + GiftCardRequest +
  • +
  • + GiftCardRequest +
  • +
  • + GiftCardResponse +
  • +
  • + GiftCardResponse +
  • GiftCertificateItem
  • @@ -3244,10 +4068,34 @@

    Const defaultBaseUriLocaleCode
  • - NoValue + OmsData +
  • +
  • + OmsData +
  • +
  • + OmsProductData +
  • +
  • + OmsProductData +
  • +
  • + OmsProductDataStatusEnum +
  • +
  • + OmsProductDataStatusEnum +
  • +
  • + OmsShipment +
  • +
  • + OmsShipment
  • - NoValue + OmsShipmentItem +
  • +
  • + OmsShipmentItem
  • OptionItem @@ -3303,6 +4151,24 @@

    Const defaultBaseUri OrderPaymentInstrument

  • +
  • + OrderPaymentInstrumentPaymentReference +
  • +
  • + OrderPaymentInstrumentPaymentReference +
  • +
  • + OrderPaymentInstrumentPaymentReferenceGatewayEnum +
  • +
  • + OrderPaymentInstrumentPaymentReferenceGatewayEnum +
  • +
  • + OrderPaymentInstrumentPaymentReferenceGatewayProperties +
  • +
  • + OrderPaymentInstrumentPaymentReferenceGatewayProperties +
  • OrderPaymentInstrumentRequest
  • @@ -3315,6 +4181,12 @@

    Const defaultBaseUri OrderPaymentStatusEnum +
  • + OrderProductItem +
  • +
  • + OrderProductItem +
  • OrderShippingStatusEnum
  • @@ -3357,6 +4229,24 @@

    Const defaultBaseUri PaymentMethodResult +
  • + PaymentReferenceRequest +
  • +
  • + PaymentReferenceRequest +
  • +
  • + PaymentReferenceRequestGatewayEnum +
  • +
  • + PaymentReferenceRequestGatewayEnum +
  • +
  • + PaymentReferenceRequestGatewayProperties +
  • +
  • + PaymentReferenceRequestGatewayProperties +
  • PriceAdjustment
  • @@ -3504,6 +4394,18 @@

    Const defaultBaseUri defaultBaseUri +
  • + failOrderPathParameters +
  • +
  • + failOrderPathParameters +
  • +
  • + failOrderQueryParameters +
  • +
  • + failOrderQueryParameters +
  • getOrderPathParameters
  • @@ -3585,6 +4487,9 @@

    Const defaultBaseUri BasketChannelTypeEnum +
  • + BasketProductItem +
  • BasketTaxationEnum
  • @@ -3597,15 +4502,9 @@

    Const defaultBaseUri CouponItemStatusCodeEnum -
  • - CurrencyCode -
  • CustomerInfo
  • -
  • - DefaultFallback -
  • Discount
  • @@ -3615,6 +4514,21 @@

    Const defaultBaseUri ErrorResponse +
  • + FailOrderRequest +
  • +
  • + FailOrderRequestReasonCodeEnum +
  • +
  • + GetOrderExpandEnum +
  • +
  • + GiftCardRequest +
  • +
  • + GiftCardResponse +
  • GiftCertificateItem
  • @@ -3625,7 +4539,19 @@

    Const defaultBaseUriLocaleCode
  • - NoValue + OmsData +
  • +
  • + OmsProductData +
  • +
  • + OmsProductDataStatusEnum +
  • +
  • + OmsShipment +
  • +
  • + OmsShipmentItem
  • OptionItem @@ -3654,12 +4580,24 @@

    Const defaultBaseUri OrderPaymentInstrument

  • +
  • + OrderPaymentInstrumentPaymentReference +
  • +
  • + OrderPaymentInstrumentPaymentReferenceGatewayEnum +
  • +
  • + OrderPaymentInstrumentPaymentReferenceGatewayProperties +
  • OrderPaymentInstrumentRequest
  • OrderPaymentStatusEnum
  • +
  • + OrderProductItem +
  • OrderShippingStatusEnum
  • @@ -3681,6 +4619,15 @@

    Const defaultBaseUri PaymentMethodResult +
  • + PaymentReferenceRequest +
  • +
  • + PaymentReferenceRequestGatewayEnum +
  • +
  • + PaymentReferenceRequestGatewayProperties +
  • PriceAdjustment
  • @@ -3750,6 +4697,12 @@

    Const defaultBaseUri createPaymentInstrumentForOrderQueryParameters +
  • + failOrderPathParameters +
  • +
  • + failOrderQueryParameters +
  • getOrderPathParameters
  • diff --git a/docs/modules/shopperorders.shopperorderstypes.html b/docs/modules/shopperorders.shopperorderstypes.html index f4cd5076..bee275f4 100644 --- a/docs/modules/shopperorders.shopperorderstypes.html +++ b/docs/modules/shopperorders.shopperorderstypes.html @@ -78,20 +78,28 @@

    Type aliases

    @@ -167,7 +184,17 @@

    BasketChannelTypeEnum

    BasketChannelTypeEnum: ShopperOrdersModelTypes.BasketChannelTypeEnum
    +
    +
    + +

    BasketProductItem

    +
    BasketProductItem: ShopperOrdersModelTypes.BasketProductItem
    +
    @@ -177,7 +204,7 @@

    BasketTaxationEnum

    BasketTaxationEnum: ShopperOrdersModelTypes.BasketTaxationEnum
    @@ -187,7 +214,7 @@

    BonusDiscountLineItem

    BonusDiscountLineItem: ShopperOrdersModelTypes.BonusDiscountLineItem
    @@ -197,7 +224,7 @@

    CouponItem

    CouponItem: ShopperOrdersModelTypes.CouponItem
    @@ -207,17 +234,7 @@

    CouponItemStatusCodeEnum

    CouponItemStatusCodeEnum: ShopperOrdersModelTypes.CouponItemStatusCodeEnum
    - -
    - -

    CurrencyCode

    -
    CurrencyCode: ShopperOrdersModelTypes.CurrencyCode
    -
    @@ -227,17 +244,7 @@

    CustomerInfo

    CustomerInfo: ShopperOrdersModelTypes.CustomerInfo
    - -
    - -

    DefaultFallback

    -
    DefaultFallback: ShopperOrdersModelTypes.DefaultFallback
    -
    @@ -247,7 +254,7 @@

    Discount

    Discount: ShopperOrdersModelTypes.Discount
    @@ -257,7 +264,7 @@

    DiscountTypeEnum

    DiscountTypeEnum: ShopperOrdersModelTypes.DiscountTypeEnum
    @@ -267,7 +274,57 @@

    ErrorResponse

    ErrorResponse: ShopperOrdersModelTypes.ErrorResponse
    + +
    + +

    FailOrderRequest

    +
    FailOrderRequest: ShopperOrdersModelTypes.FailOrderRequest
    + +
    +
    + +

    FailOrderRequestReasonCodeEnum

    +
    FailOrderRequestReasonCodeEnum: ShopperOrdersModelTypes.FailOrderRequestReasonCodeEnum
    + +
    +
    + +

    GetOrderExpandEnum

    +
    GetOrderExpandEnum: ShopperOrdersApiTypes.GetOrderExpandEnum
    + +
    +
    + +

    GiftCardRequest

    +
    GiftCardRequest: ShopperOrdersModelTypes.GiftCardRequest
    + +
    +
    + +

    GiftCardResponse

    +
    GiftCardResponse: ShopperOrdersModelTypes.GiftCardResponse
    +
    @@ -277,7 +334,7 @@

    GiftCertificateItem

    GiftCertificateItem: ShopperOrdersModelTypes.GiftCertificateItem
    @@ -287,7 +344,7 @@

    GroupedTaxItem

    GroupedTaxItem: ShopperOrdersModelTypes.GroupedTaxItem
    @@ -297,17 +354,57 @@

    LocaleCode

    LocaleCode: ShopperOrdersModelTypes.LocaleCode
    - -

    NoValue

    -
    NoValue: ShopperOrdersModelTypes.NoValue
    + +

    OmsData

    +
    OmsData: ShopperOrdersModelTypes.OmsData
    +
    +
    + +

    OmsProductData

    +
    OmsProductData: ShopperOrdersModelTypes.OmsProductData
    + +
    +
    + +

    OmsProductDataStatusEnum

    +
    OmsProductDataStatusEnum: ShopperOrdersModelTypes.OmsProductDataStatusEnum
    + +
    +
    + +

    OmsShipment

    +
    OmsShipment: ShopperOrdersModelTypes.OmsShipment
    + +
    +
    + +

    OmsShipmentItem

    +
    OmsShipmentItem: ShopperOrdersModelTypes.OmsShipmentItem
    +
    @@ -317,7 +414,7 @@

    OptionItem

    OptionItem: ShopperOrdersModelTypes.OptionItem
    @@ -327,7 +424,7 @@

    Order

    Order: ShopperOrdersModelTypes.Order
    @@ -337,7 +434,7 @@

    OrderAddress

    OrderAddress: ShopperOrdersModelTypes.OrderAddress
    @@ -347,7 +444,7 @@

    OrderChannelTypeEnum

    OrderChannelTypeEnum: ShopperOrdersModelTypes.OrderChannelTypeEnum
    @@ -357,7 +454,7 @@

    OrderConfirmationStatusEnum

    OrderConfirmationStatusEnum: ShopperOrdersModelTypes.OrderConfirmationStatusEnum
    @@ -367,7 +464,7 @@

    OrderExportStatusEnum

    OrderExportStatusEnum: ShopperOrdersModelTypes.OrderExportStatusEnum
    @@ -377,7 +474,7 @@

    OrderLookupRequest

    OrderLookupRequest: ShopperOrdersModelTypes.OrderLookupRequest
    @@ -387,7 +484,7 @@

    OrderPaymentCardRequest

    OrderPaymentCardRequest: ShopperOrdersModelTypes.OrderPaymentCardRequest
    @@ -397,7 +494,37 @@

    OrderPaymentInstrument

    OrderPaymentInstrument: ShopperOrdersModelTypes.OrderPaymentInstrument
    + +
    + +

    OrderPaymentInstrumentPaymentReference

    +
    OrderPaymentInstrumentPaymentReference: ShopperOrdersModelTypes.OrderPaymentInstrumentPaymentReference
    + +
    +
    + +

    OrderPaymentInstrumentPaymentReferenceGatewayEnum

    +
    OrderPaymentInstrumentPaymentReferenceGatewayEnum: ShopperOrdersModelTypes.OrderPaymentInstrumentPaymentReferenceGatewayEnum
    + +
    +
    + +

    OrderPaymentInstrumentPaymentReferenceGatewayProperties

    +
    OrderPaymentInstrumentPaymentReferenceGatewayProperties: ShopperOrdersModelTypes.OrderPaymentInstrumentPaymentReferenceGatewayProperties
    +
    @@ -407,7 +534,7 @@

    OrderPaymentInstrumentRequest

    OrderPaymentInstrumentRequest: ShopperOrdersModelTypes.OrderPaymentInstrumentRequest
    @@ -417,7 +544,17 @@

    OrderPaymentStatusEnum

    OrderPaymentStatusEnum: ShopperOrdersModelTypes.OrderPaymentStatusEnum
    + +
    + +

    OrderProductItem

    +
    OrderProductItem: ShopperOrdersModelTypes.OrderProductItem
    +
    @@ -427,7 +564,7 @@

    OrderShippingStatusEnum

    OrderShippingStatusEnum: ShopperOrdersModelTypes.OrderShippingStatusEnum
    @@ -437,7 +574,7 @@

    OrderStatusEnum

    OrderStatusEnum: ShopperOrdersModelTypes.OrderStatusEnum
    @@ -447,7 +584,7 @@

    OrderTaxationEnum

    OrderTaxationEnum: ShopperOrdersModelTypes.OrderTaxationEnum
    @@ -457,7 +594,7 @@

    PaymentCard

    PaymentCard: ShopperOrdersModelTypes.PaymentCard
    @@ -467,7 +604,7 @@

    PaymentCardSpec

    PaymentCardSpec: ShopperOrdersModelTypes.PaymentCardSpec
    @@ -477,7 +614,7 @@

    PaymentMethod

    PaymentMethod: ShopperOrdersModelTypes.PaymentMethod
    @@ -487,7 +624,37 @@

    PaymentMethodResult

    PaymentMethodResult: ShopperOrdersModelTypes.PaymentMethodResult
    + +
    + +

    PaymentReferenceRequest

    +
    PaymentReferenceRequest: ShopperOrdersModelTypes.PaymentReferenceRequest
    + +
    +
    + +

    PaymentReferenceRequestGatewayEnum

    +
    PaymentReferenceRequestGatewayEnum: ShopperOrdersModelTypes.PaymentReferenceRequestGatewayEnum
    + +
    +
    + +

    PaymentReferenceRequestGatewayProperties

    +
    PaymentReferenceRequestGatewayProperties: ShopperOrdersModelTypes.PaymentReferenceRequestGatewayProperties
    +
    @@ -497,7 +664,7 @@

    PriceAdjustment

    PriceAdjustment: ShopperOrdersModelTypes.PriceAdjustment
    @@ -507,7 +674,7 @@

    ProductDetailsLink

    ProductDetailsLink: ShopperOrdersModelTypes.ProductDetailsLink
    @@ -517,7 +684,7 @@

    ProductItem

    ProductItem: ShopperOrdersModelTypes.ProductItem
    @@ -527,7 +694,7 @@

    ProductListItemReference

    ProductListItemReference: ShopperOrdersModelTypes.ProductListItemReference
    @@ -537,7 +704,7 @@

    ProductListItemReferenceTypeEnum

    ProductListItemReferenceTypeEnum: ShopperOrdersModelTypes.ProductListItemReferenceTypeEnum
    @@ -547,7 +714,7 @@

    ProductListLink

    ProductListLink: ShopperOrdersModelTypes.ProductListLink
    @@ -557,7 +724,7 @@

    ProductListLinkTypeEnum

    ProductListLinkTypeEnum: ShopperOrdersModelTypes.ProductListLinkTypeEnum
    @@ -567,7 +734,7 @@

    Shipment

    Shipment: ShopperOrdersModelTypes.Shipment
    @@ -577,7 +744,7 @@

    ShipmentShippingStatusEnum

    ShipmentShippingStatusEnum: ShopperOrdersModelTypes.ShipmentShippingStatusEnum
    @@ -587,7 +754,7 @@

    ShippingItem

    ShippingItem: ShopperOrdersModelTypes.ShippingItem
    @@ -597,7 +764,7 @@

    ShippingMethod

    ShippingMethod: ShopperOrdersModelTypes.ShippingMethod
    @@ -607,7 +774,7 @@

    ShippingPromotion

    ShippingPromotion: ShopperOrdersModelTypes.ShippingPromotion
    @@ -637,7 +804,7 @@

    Status

    Status: ShopperOrdersModelTypes.Status
    @@ -647,7 +814,7 @@

    TaxItem

    TaxItem: ShopperOrdersModelTypes.TaxItem
    @@ -657,7 +824,7 @@

    TaxItems

    TaxItems: ShopperOrdersModelTypes.TaxItems
    @@ -667,7 +834,7 @@

    Taxes

    Taxes: ShopperOrdersModelTypes.Taxes
    @@ -711,13 +878,33 @@

    createPaymentInstrumentForOrderQueryParameters +
    + +

    failOrderPathParameters

    +
    failOrderPathParameters: ShopperOrdersApiTypes.failOrderPathParameters
    + +
    +
    + +

    failOrderQueryParameters

    +
    failOrderQueryParameters: ShopperOrdersApiTypes.failOrderQueryParameters
    + +

    getOrderPathParameters

    getOrderPathParameters: ShopperOrdersApiTypes.getOrderPathParameters
    @@ -727,7 +914,7 @@

    getOrderQueryParameters

    getOrderQueryParameters: ShopperOrdersApiTypes.getOrderQueryParameters
    @@ -737,7 +924,7 @@

    getPaymentMethodsForOrderPathParameters

    getPaymentMethodsForOrderPathParameters: ShopperOrdersApiTypes.getPaymentMethodsForOrderPathParameters
    @@ -747,7 +934,7 @@

    getPaymentMethodsForOrderQueryParameters

    getPaymentMethodsForOrderQueryParameters: ShopperOrdersApiTypes.getPaymentMethodsForOrderQueryParameters
    @@ -757,7 +944,7 @@

    getTaxesFromOrderPathParameters

    getTaxesFromOrderPathParameters: ShopperOrdersApiTypes.getTaxesFromOrderPathParameters
    @@ -767,7 +954,7 @@

    getTaxesFromOrderQueryParameters

    getTaxesFromOrderQueryParameters: ShopperOrdersApiTypes.getTaxesFromOrderQueryParameters
    @@ -777,7 +964,7 @@

    guestOrderLookupPathParameters

    guestOrderLookupPathParameters: ShopperOrdersApiTypes.guestOrderLookupPathParameters
    @@ -787,7 +974,7 @@

    guestOrderLookupQueryParameters

    guestOrderLookupQueryParameters: ShopperOrdersApiTypes.guestOrderLookupQueryParameters
    @@ -797,7 +984,7 @@

    removePaymentInstrumentFromOrderPathParameters
    removePaymentInstrumentFromOrderPathParameters: ShopperOrdersApiTypes.removePaymentInstrumentFromOrderPathParameters
    @@ -807,7 +994,7 @@

    removePaymentInstrumentFromOrderQueryParameter
    removePaymentInstrumentFromOrderQueryParameters: ShopperOrdersApiTypes.removePaymentInstrumentFromOrderQueryParameters
    @@ -817,7 +1004,7 @@

    updatePaymentInstrumentForOrderPathParameters<
    updatePaymentInstrumentForOrderPathParameters: ShopperOrdersApiTypes.updatePaymentInstrumentForOrderPathParameters
    @@ -827,7 +1014,7 @@

    updatePaymentInstrumentForOrderQueryParameters
    updatePaymentInstrumentForOrderQueryParameters: ShopperOrdersApiTypes.updatePaymentInstrumentForOrderQueryParameters
    @@ -886,6 +1073,9 @@

    updatePaymentInstrumentForOrderQueryParameters +
  • + shopperPayments +
  • shopperProducts
  • @@ -917,6 +1107,9 @@

    updatePaymentInstrumentForOrderQueryParameters
  • BasketChannelTypeEnum
  • +
  • + BasketProductItem +
  • BasketTaxationEnum
  • @@ -929,15 +1122,9 @@

    updatePaymentInstrumentForOrderQueryParameters
  • CouponItemStatusCodeEnum
  • -
  • - CurrencyCode -
  • CustomerInfo
  • -
  • - DefaultFallback -
  • Discount
  • @@ -947,6 +1134,21 @@

    updatePaymentInstrumentForOrderQueryParameters
  • ErrorResponse
  • +
  • + FailOrderRequest +
  • +
  • + FailOrderRequestReasonCodeEnum +
  • +
  • + GetOrderExpandEnum +
  • +
  • + GiftCardRequest +
  • +
  • + GiftCardResponse +
  • GiftCertificateItem
  • @@ -957,7 +1159,19 @@

    updatePaymentInstrumentForOrderQueryParameters LocaleCode
  • - NoValue + OmsData +
  • +
  • + OmsProductData +
  • +
  • + OmsProductDataStatusEnum +
  • +
  • + OmsShipment +
  • +
  • + OmsShipmentItem
  • OptionItem @@ -986,12 +1200,24 @@

    updatePaymentInstrumentForOrderQueryParameters
  • OrderPaymentInstrument
  • +
  • + OrderPaymentInstrumentPaymentReference +
  • +
  • + OrderPaymentInstrumentPaymentReferenceGatewayEnum +
  • +
  • + OrderPaymentInstrumentPaymentReferenceGatewayProperties +
  • OrderPaymentInstrumentRequest
  • OrderPaymentStatusEnum
  • +
  • + OrderProductItem +
  • OrderShippingStatusEnum
  • @@ -1013,6 +1239,15 @@

    updatePaymentInstrumentForOrderQueryParameters
  • PaymentMethodResult
  • +
  • + PaymentReferenceRequest +
  • +
  • + PaymentReferenceRequestGatewayEnum +
  • +
  • + PaymentReferenceRequestGatewayProperties +
  • PriceAdjustment
  • @@ -1079,6 +1314,12 @@

    updatePaymentInstrumentForOrderQueryParameters
  • createPaymentInstrumentForOrderQueryParameters
  • +
  • + failOrderPathParameters +
  • +
  • + failOrderQueryParameters +
  • getOrderPathParameters
  • diff --git a/docs/modules/shopperpayments.html b/docs/modules/shopperpayments.html new file mode 100644 index 00000000..8888423f --- /dev/null +++ b/docs/modules/shopperpayments.html @@ -0,0 +1,739 @@ + + + + + + shopperPayments | commerce-sdk-isomorphic + + + + + +
    +
    +
    +
    + +
    +
    + Options +
    +
    + All +
      +
    • Public
    • +
    • Public/Protected
    • +
    • All
    • +
    +
    + + + + + + +
    +
    + Menu +
    +
    +
    +
    +
    +
    + +

    Module shopperPayments

    +
    +
    +
    +
    +
    +
    +
    +

    Index

    +
    + +
    +
    +
    +

    References

    +
    + +

    ErrorResponse

    + Re-exports ErrorResponse +
    +
    + +

    ErrorResponse

    + Re-exports ErrorResponse +
    +
    + +

    PaymentConfiguration

    + Re-exports PaymentConfiguration +
    +
    + +

    PaymentConfiguration

    + Re-exports PaymentConfiguration +
    +
    + +

    PaymentConfigurationPaymentMethodSetAccountsInner

    + Re-exports PaymentConfigurationPaymentMethodSetAccountsInner +
    +
    + +

    PaymentConfigurationPaymentMethodSetAccountsInner

    + Re-exports PaymentConfigurationPaymentMethodSetAccountsInner +
    +
    + +

    PaymentConfigurationPaymentMethodSetAccountsInnerConfig

    + Re-exports PaymentConfigurationPaymentMethodSetAccountsInnerConfig +
    +
    + +

    PaymentConfigurationPaymentMethodSetAccountsInnerConfig

    + Re-exports PaymentConfigurationPaymentMethodSetAccountsInnerConfig +
    +
    + +

    PaymentConfigurationPaymentMethodsInner

    + Re-exports PaymentConfigurationPaymentMethodsInner +
    +
    + +

    PaymentConfigurationPaymentMethodsInner

    + Re-exports PaymentConfigurationPaymentMethodsInner +
    +
    + +

    ShopperPayments

    + Re-exports ShopperPayments +
    +
    + +

    ShopperPayments

    + Re-exports ShopperPayments +
    +
    + +

    ShopperPaymentsParameters

    + Re-exports ShopperPaymentsParameters +
    +
    + +

    ShopperPaymentsParameters

    + Re-exports ShopperPaymentsParameters +
    +
    + +

    ShopperPaymentsPathParameters

    + Re-exports ShopperPaymentsPathParameters +
    +
    + +

    ShopperPaymentsPathParameters

    + Re-exports ShopperPaymentsPathParameters +
    +
    + +

    ShopperPaymentsQueryParameters

    + Re-exports ShopperPaymentsQueryParameters +
    +
    + +

    ShopperPaymentsQueryParameters

    + Re-exports ShopperPaymentsQueryParameters +
    +
    + +

    defaultBaseUri

    + Re-exports defaultBaseUri +
    +
    + +

    getPaymentConfigurationPathParameters

    + Re-exports getPaymentConfigurationPathParameters +
    +
    + +

    getPaymentConfigurationPathParameters

    + Re-exports getPaymentConfigurationPathParameters +
    +
    + +

    getPaymentConfigurationQueryParameters

    + Re-exports getPaymentConfigurationQueryParameters +
    +
    + +

    getPaymentConfigurationQueryParameters

    + Re-exports getPaymentConfigurationQueryParameters +
    +
    +
    +

    Type aliases

    +
    + +

    ErrorResponse

    +
    ErrorResponse: { detail: string; instance?: undefined | string; title: string; type: string } & {}
    + +
    +
    +
    property
    +

    title: A short, human-readable summary of the problem type. It will not change from occurrence to occurrence of the problem, except for purposes of localization

    +
      +
    • Max Length: 256
    • +
    +
    +
    property
    +

    type: A URI reference [RFC3986] that identifies the problem type. This specification encourages that, when dereferenced, it provide human-readable documentation for the problem type (e.g., using HTML [W3C.REC-html5-20141028]). When this member is not present, its value is assumed to be "about:blank". It accepts relative URIs; this means that they must be resolved relative to the document's base URI, as per [RFC3986], Section 5.

    +
      +
    • Max Length: 2048
    • +
    +
    +
    property
    +

    detail: A human-readable explanation specific to this occurrence of the problem.

    +
    +
    property
    +

    instance: A URI reference that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced. It accepts relative URIs; this means that they must be resolved relative to the document's base URI, as per [RFC3986], Section 5.

    +
      +
    • Max Length: 2048
    • +
    +
    +
    +
    +
    +
    + +

    PaymentConfiguration

    +
    PaymentConfiguration: { paymentMethodSetAccounts: Array<PaymentConfigurationPaymentMethodSetAccountsInner>; paymentMethods: Array<PaymentConfigurationPaymentMethodsInner>; zoneId?: string | null } & {}
    + +
    +
    +
    property
    +

    zoneId: The unique identifier for a Payments zone.

    +
      +
    • Pattern: /^[a-zA-Z0-9\-_]{1,100}$/
    • +
    • Min Length: 1
    • +
    • Max Length: 100
    • +
    +
    +
    property
    +

    paymentMethodSetAccounts: List of payment method set accounts

    +
    +
    property
    +

    paymentMethods: Configured payment methods

    +
    +
    +
    +
    +
    + +

    PaymentConfigurationPaymentMethodSetAccountsInner

    +
    PaymentConfigurationPaymentMethodSetAccountsInner: { accountId: string; config?: PaymentConfigurationPaymentMethodSetAccountsInnerConfig; live: boolean; vendor: string } & {}
    + +
    +
    +
    property
    +

    accountId: Account identifier

    +
      +
    • Min Length: 1
    • +
    • Max Length: 100
    • +
    +
    +
    property
    +

    config:

    +
    +
    property
    +

    live: Whether the account is in live mode

    +
    +
    property
    +

    vendor: Payment vendor name

    +
    +
    +
    +
    +
    + +

    PaymentConfigurationPaymentMethodSetAccountsInnerConfig

    +
    PaymentConfigurationPaymentMethodSetAccountsInnerConfig: { bnCode?: undefined | string; country?: undefined | string; key?: undefined | string; paymentMethods?: {} | null } & {}
    + +
    +
    +
    property
    +

    key: API key for the payment processor

    +
      +
    • Max Length: 200
    • +
    +
    +
    property
    +

    bnCode: Account BN code (optional, null if not a PayPal account)

    +
      +
    • Max Length: 100
    • +
    +
    +
    property
    +

    country: The country associated with this payment account configuration

    +
      +
    • Max Length: 256
    • +
    +
    +
    property
    +

    paymentMethods: Available payment methods from gateway (optional, null if not an Adyen account)

    +
    +
    +
    +
    +
    + +

    PaymentConfigurationPaymentMethodsInner

    +
    PaymentConfigurationPaymentMethodsInner: { accountId: string; paymentMethodType: string; paymentModes: Array<string> } & {}
    + +
    +
    +
    property
    +

    accountId: Associated account identifier

    +
      +
    • Min Length: 1
    • +
    +
    +
    property
    +

    paymentMethodType: Type of payment method

    +
    +
    property
    +

    paymentModes: Supported payment modes

    +
    +
    +
    +
    +
    + +

    ShopperPaymentsParameters

    + + +
    +
    +

    All parameters that are used by ShopperPayments.

    +
    +
    +
    +
    + +

    ShopperPaymentsPathParameters

    +
    ShopperPaymentsPathParameters: Partial<getPaymentConfigurationPathParameters & {}>
    + +
    +
    +

    All path parameters that are used by at least one ShopperPayments method.

    +
    +
    +
    +
    + +

    ShopperPaymentsQueryParameters

    +
    ShopperPaymentsQueryParameters: Partial<getPaymentConfigurationQueryParameters & {}>
    + +
    +
    +

    All query parameters that are used by at least one ShopperPayments method.

    +
    +
    +
    +
    + +

    getPaymentConfigurationPathParameters

    +
    getPaymentConfigurationPathParameters: { organizationId: string }
    + +
    +

    Type declaration

    +
      +
    • +
      organizationId: string
      +
    • +
    +
    +
    +
    + +

    getPaymentConfigurationQueryParameters

    +
    getPaymentConfigurationQueryParameters: { amount?: number | null; countryCode?: undefined | string; currency: string; siteId: string; zoneId?: string | null }
    + +
    +

    Type declaration

    +
      +
    • +
      Optional amount?: number | null
      +
    • +
    • +
      Optional countryCode?: undefined | string
      +
    • +
    • +
      currency: string
      +
    • +
    • +
      siteId: string
      +
    • +
    • +
      Optional zoneId?: string | null
      +
    • +
    +
    +
    +
    +
    +

    Variables

    +
    + +

    Const defaultBaseUri

    +
    defaultBaseUri: "https://{shortCode}.api.commercecloud.salesforce.com/checkout/shopper-payments/v1" = "https://{shortCode}.api.commercecloud.salesforce.com/checkout/shopper-payments/v1"
    + +
    +
    +
    + +
    +
    +
    +
    +

    Legend

    +
    +
      +
    • Namespace
    • +
    • Variable
    • +
    • Function
    • +
    • Function with type parameter
    • +
    • Type alias
    • +
    • Type alias with type parameter
    • +
    +
      +
    • Interface
    • +
    • Interface with type parameter
    • +
    +
      +
    • Class
    • +
    • Class with type parameter
    • +
    +
    +
    +
    +
    +

    Generated using TypeDoc

    +
    +
    + + + \ No newline at end of file diff --git a/docs/modules/shopperpayments.shopperpaymentstypes.html b/docs/modules/shopperpayments.shopperpaymentstypes.html new file mode 100644 index 00000000..e3db8f98 --- /dev/null +++ b/docs/modules/shopperpayments.shopperpaymentstypes.html @@ -0,0 +1,329 @@ + + + + + + ShopperPaymentsTypes | commerce-sdk-isomorphic + + + + + +
    +
    +
    +
    + +
    +
    + Options +
    +
    + All +
      +
    • Public
    • +
    • Public/Protected
    • +
    • All
    • +
    +
    + + + + + + +
    +
    + Menu +
    +
    +
    +
    +
    +
    + +

    Namespace ShopperPaymentsTypes

    +
    +
    +
    +
    +
    +
    +
    +

    Index

    +
    + +
    +
    +
    +

    Type aliases

    +
    + +

    ErrorResponse

    +
    ErrorResponse: ShopperPaymentsModelTypes.ErrorResponse
    + +
    +
    + +

    PaymentConfiguration

    +
    PaymentConfiguration: ShopperPaymentsModelTypes.PaymentConfiguration
    + +
    +
    + +

    PaymentConfigurationPaymentMethodSetAccountsInner

    +
    PaymentConfigurationPaymentMethodSetAccountsInner: ShopperPaymentsModelTypes.PaymentConfigurationPaymentMethodSetAccountsInner
    + +
    +
    + +

    PaymentConfigurationPaymentMethodSetAccountsInnerConfig

    +
    PaymentConfigurationPaymentMethodSetAccountsInnerConfig: ShopperPaymentsModelTypes.PaymentConfigurationPaymentMethodSetAccountsInnerConfig
    + +
    +
    + +

    PaymentConfigurationPaymentMethodsInner

    +
    PaymentConfigurationPaymentMethodsInner: ShopperPaymentsModelTypes.PaymentConfigurationPaymentMethodsInner
    + +
    +
    + +

    ShopperPaymentsPathParameters

    +
    ShopperPaymentsPathParameters: ShopperPaymentsApiTypes.ShopperPaymentsPathParameters
    + +
    +
    + +

    ShopperPaymentsQueryParameters

    +
    ShopperPaymentsQueryParameters: ShopperPaymentsApiTypes.ShopperPaymentsQueryParameters
    + +
    +
    + +

    getPaymentConfigurationPathParameters

    +
    getPaymentConfigurationPathParameters: ShopperPaymentsApiTypes.getPaymentConfigurationPathParameters
    + +
    +
    + +

    getPaymentConfigurationQueryParameters

    +
    getPaymentConfigurationQueryParameters: ShopperPaymentsApiTypes.getPaymentConfigurationQueryParameters
    + +
    +
    +
    + +
    +
    +
    +
    +

    Legend

    +
    +
      +
    • Namespace
    • +
    • Variable
    • +
    • Function
    • +
    • Function with type parameter
    • +
    • Type alias
    • +
    • Type alias with type parameter
    • +
    +
      +
    • Interface
    • +
    • Interface with type parameter
    • +
    +
      +
    • Class
    • +
    • Class with type parameter
    • +
    +
    +
    +
    +
    +

    Generated using TypeDoc

    +
    +
    + + + \ No newline at end of file diff --git a/docs/modules/shopperproducts.html b/docs/modules/shopperproducts.html index f10f6653..1340aec2 100644 --- a/docs/modules/shopperproducts.html +++ b/docs/modules/shopperproducts.html @@ -79,10 +79,6 @@

    References

  • Category
  • CategoryResult
  • CategoryResult
  • -
  • CurrencyCode
  • -
  • CurrencyCode
  • -
  • DefaultFallback
  • -
  • DefaultFallback
  • ErrorResponse
  • ErrorResponse
  • GetCategoriesLevelsEnum
  • @@ -103,8 +99,6 @@

    References

  • LocaleCode
  • Master
  • Master
  • -
  • NoValue
  • -
  • NoValue
  • Option
  • Option
  • OptionValue
  • @@ -135,6 +129,10 @@

    References

  • RecommendationType
  • ResultBase
  • ResultBase
  • +
  • ShippingMethod
  • +
  • ShippingMethod
  • +
  • ShippingPromotion
  • +
  • ShippingPromotion
  • ShopperProducts
  • ShopperProducts
  • ShopperProductsParameters
  • @@ -188,8 +186,6 @@

    Type aliases

  • BundledProduct
  • Category
  • CategoryResult
  • -
  • CurrencyCode
  • -
  • DefaultFallback
  • ErrorResponse
  • GetCategoriesLevelsEnum
  • GetCategoryLevelsEnum
  • @@ -200,7 +196,6 @@

    Type aliases

  • Inventory
  • LocaleCode
  • Master
  • -
  • NoValue
  • Option
  • OptionValue
  • PageMetaTag
  • @@ -216,6 +211,8 @@

    Type aliases

  • Recommendation
  • RecommendationType
  • ResultBase
  • +
  • ShippingMethod
  • +
  • ShippingPromotion
  • ShopperProductsParameters
  • ShopperProductsPathParameters
  • ShopperProductsQueryParameters
  • @@ -274,26 +271,6 @@

    CategoryResult

    CategoryResult

    Re-exports CategoryResult -
    - -

    CurrencyCode

    - Re-exports CurrencyCode -
    -
    - -

    CurrencyCode

    - Re-exports CurrencyCode -
    -
    - -

    DefaultFallback

    - Re-exports DefaultFallback -
    -
    - -

    DefaultFallback

    - Re-exports DefaultFallback -

    ErrorResponse

    @@ -394,16 +371,6 @@

    Master

    Master

    Re-exports Master
    -
    - -

    NoValue

    - Re-exports NoValue -
    -
    - -

    NoValue

    - Re-exports NoValue -

    Option

    @@ -554,6 +521,26 @@

    ResultBase

    ResultBase

    Re-exports ResultBase
    +
    + +

    ShippingMethod

    + Re-exports ShippingMethod +
    +
    + +

    ShippingMethod

    + Re-exports ShippingMethod +
    +
    + +

    ShippingPromotion

    + Re-exports ShippingPromotion +
    +
    + +

    ShippingPromotion

    + Re-exports ShippingPromotion +

    ShopperProducts

    @@ -814,7 +801,7 @@

    CategoryResult

    data: The array of category documents.

    property
    -

    limit: Maximum records to retrieve per request, not to exceed the maximum defined. A limit must be at least 1 so at least one record is returned (if any match the criteria).

    +

    limit: Maximum records to retrieve per request. The limit with its constraints (minimum, maximum, default) is defined by the request parameter limit of the endpoint returning this schema.

    property

    total: The total number of hits that match the search's criteria. This can be greater than the number of results returned as search results are pagenated.

    @@ -822,33 +809,6 @@

    CategoryResult

    -
    - -

    CurrencyCode

    -
    CurrencyCode: NoValue | string
    - -
    -
    -
    -
    - -

    DefaultFallback

    -
    DefaultFallback: "default"
    - -
    -
    -

    A specialized value indicating the system default values for locales.

    -
    -
    -

    ErrorResponse

    @@ -890,7 +850,7 @@

    GetCategoriesLevelsEnum

    GetCategoriesLevelsEnum: 0 | 1 | 2
    @@ -900,24 +860,24 @@

    GetCategoryLevelsEnum

    GetCategoryLevelsEnum: 0 | 1 | 2

    GetProductExpandEnum

    -
    GetProductExpandEnum: "none" | "availability" | "bundled_products" | "links" | "promotions" | "options" | "images" | "prices" | "variations" | "set_products" | "recommendations" | "page_meta_tags"
    +
    GetProductExpandEnum: "none" | "availability" | "bundled_products" | "links" | "promotions" | "options" | "images" | "prices" | "variations" | "set_products" | "recommendations" | "shipping_methods" | "page_meta_tags"

    GetProductsExpandEnum

    -
    GetProductsExpandEnum: "none" | "availability" | "links" | "promotions" | "options" | "images" | "prices" | "variations" | "recommendations" | "page_meta_tags"
    +
    GetProductsExpandEnum: "none" | "availability" | "bundled_products" | "links" | "promotions" | "options" | "images" | "prices" | "variations" | "set_products" | "recommendations" | "shipping_methods" | "page_meta_tags"
    -
    - -

    CurrencyCode

    -
    CurrencyCode: ShopperProductsModelTypes.CurrencyCode
    - -
    -
    - -

    DefaultFallback

    -
    DefaultFallback: ShopperProductsModelTypes.DefaultFallback
    - -

    ErrorResponse

    ErrorResponse: ShopperProductsModelTypes.ErrorResponse
    @@ -234,7 +213,7 @@

    Image

    Image: ShopperProductsModelTypes.Image
    @@ -244,7 +223,7 @@

    ImageGroup

    ImageGroup: ShopperProductsModelTypes.ImageGroup
    @@ -254,7 +233,7 @@

    Inventory

    Inventory: ShopperProductsModelTypes.Inventory
    @@ -264,7 +243,7 @@

    LocaleCode

    LocaleCode: ShopperProductsModelTypes.LocaleCode
    @@ -274,17 +253,7 @@

    Master

    Master: ShopperProductsModelTypes.Master
    - -
    - -

    NoValue

    -
    NoValue: ShopperProductsModelTypes.NoValue
    -
    @@ -294,7 +263,7 @@

    Option

    Option: ShopperProductsModelTypes.Option
    @@ -304,7 +273,7 @@

    OptionValue

    OptionValue: ShopperProductsModelTypes.OptionValue
    @@ -314,7 +283,7 @@

    PageMetaTag

    PageMetaTag: ShopperProductsModelTypes.PageMetaTag
    @@ -324,7 +293,7 @@

    PathRecord

    PathRecord: ShopperProductsModelTypes.PathRecord
    @@ -334,7 +303,7 @@

    PriceRange

    PriceRange: ShopperProductsModelTypes.PriceRange
    @@ -344,7 +313,7 @@

    Product

    Product: ShopperProductsModelTypes.Product
    @@ -354,7 +323,7 @@

    ProductLink

    ProductLink: ShopperProductsModelTypes.ProductLink
    @@ -364,7 +333,7 @@

    ProductLinkTypeEnum

    ProductLinkTypeEnum: ShopperProductsModelTypes.ProductLinkTypeEnum
    @@ -374,7 +343,7 @@

    ProductPriceTable

    ProductPriceTable: ShopperProductsModelTypes.ProductPriceTable
    @@ -384,7 +353,7 @@

    ProductPromotion

    ProductPromotion: ShopperProductsModelTypes.ProductPromotion
    @@ -394,7 +363,7 @@

    ProductResult

    ProductResult: ShopperProductsModelTypes.ProductResult
    @@ -404,7 +373,7 @@

    ProductType

    ProductType: ShopperProductsModelTypes.ProductType
    @@ -414,7 +383,7 @@

    Recommendation

    Recommendation: ShopperProductsModelTypes.Recommendation
    @@ -424,7 +393,7 @@

    RecommendationType

    RecommendationType: ShopperProductsModelTypes.RecommendationType
    @@ -434,7 +403,27 @@

    ResultBase

    ResultBase: ShopperProductsModelTypes.ResultBase
    + +
    + +

    ShippingMethod

    +
    ShippingMethod: ShopperProductsModelTypes.ShippingMethod
    + +
    +
    + +

    ShippingPromotion

    +
    ShippingPromotion: ShopperProductsModelTypes.ShippingPromotion
    +
    @@ -464,7 +453,7 @@

    Variant

    Variant: ShopperProductsModelTypes.Variant
    @@ -474,7 +463,7 @@

    VariationAttribute

    VariationAttribute: ShopperProductsModelTypes.VariationAttribute
    @@ -484,7 +473,7 @@

    VariationAttributeValue

    VariationAttributeValue: ShopperProductsModelTypes.VariationAttributeValue
    @@ -494,7 +483,7 @@

    VariationGroup

    VariationGroup: ShopperProductsModelTypes.VariationGroup
    @@ -628,6 +617,9 @@

    getProductsQueryParameters

  • shopperOrders
  • +
  • + shopperPayments +
  • shopperProducts
      @@ -667,12 +659,6 @@

      getProductsQueryParameters

    • CategoryResult
    • -
    • - CurrencyCode -
    • -
    • - DefaultFallback -
    • ErrorResponse
    • @@ -703,9 +689,6 @@

      getProductsQueryParameters

    • Master
    • -
    • - NoValue -
    • Option
    • @@ -751,6 +734,12 @@

      getProductsQueryParameters

    • ResultBase
    • +
    • + ShippingMethod +
    • +
    • + ShippingPromotion +
    • ShopperProductsPathParameters
    • diff --git a/docs/modules/shopperpromotions.html b/docs/modules/shopperpromotions.html index 8495bf87..7fe9e4ba 100644 --- a/docs/modules/shopperpromotions.html +++ b/docs/modules/shopperpromotions.html @@ -73,8 +73,6 @@

      Index

      References

        -
      • DefaultFallback
      • -
      • DefaultFallback
      • ErrorResponse
      • ErrorResponse
      • LocaleCode
      • @@ -119,7 +117,6 @@

        Classes

        Type aliases

        References

        -
        - -

        DefaultFallback

        - Re-exports DefaultFallback -
        -
        - -

        DefaultFallback

        - Re-exports DefaultFallback -

        ErrorResponse

        @@ -293,21 +280,6 @@

        getPromotionsQueryParameters

        Type aliases

        -
        - -

        DefaultFallback

        -
        DefaultFallback: "default"
        - -
        -
        -

        A specialized value indicating the system default values for locales.

        -
        -
        -

        ErrorResponse

        @@ -346,10 +318,10 @@

        ErrorResponse

        LocaleCode

        -
        LocaleCode: DefaultFallback | string
        +
        LocaleCode: string
        @@ -408,7 +380,7 @@

        PromotionResult

        data: The array of promotion documents.

        property
        -

        limit: Maximum records to retrieve per request, not to exceed the maximum defined. A limit must be at least 1 so at least one record is returned (if any match the criteria).

        +

        limit: Maximum records to retrieve per request. The limit with its constraints (minimum, maximum, default) is defined by the request parameter limit of the endpoint returning this schema.

        property

        total: The total number of hits that match the search's criteria. This can be greater than the number of results returned as search results are pagenated.

        @@ -428,7 +400,7 @@

        ResultBase

        property
        -

        limit: Maximum records to retrieve per request, not to exceed the maximum defined. A limit must be at least 1 so at least one record is returned (if any match the criteria).

        +

        limit: Maximum records to retrieve per request. The limit with its constraints (minimum, maximum, default) is defined by the request parameter limit of the endpoint returning this schema.

        property

        total: The total number of hits that match the search's criteria. This can be greater than the number of results returned as search results are pagenated.

        @@ -634,6 +606,9 @@

        Const defaultBaseUri shopperOrders +
      • + shopperPayments +
      • shopperProducts
      • @@ -664,12 +639,6 @@

        Const defaultBaseUri

        @@ -141,7 +130,7 @@

        PromotionResult

        PromotionResult: ShopperPromotionsModelTypes.PromotionResult
        @@ -151,7 +140,7 @@

        ResultBase

        ResultBase: ShopperPromotionsModelTypes.ResultBase
        @@ -265,6 +254,9 @@

        getPromotionsQueryParameters

      • shopperOrders
      • +
      • + shopperPayments +
      • shopperProducts
      • @@ -295,9 +287,6 @@

        getPromotionsQueryParameters

        +
        + +

        ProcessedQuery

        +
        ProcessedQuery: ShopperSearchModelTypes.ProcessedQuery
        +
        @@ -283,7 +272,7 @@

        ProductPriceTable

        ProductPriceTable: ShopperSearchModelTypes.ProductPriceTable
      @@ -293,7 +282,7 @@

      ProductPromotion

      ProductPromotion: ShopperSearchModelTypes.ProductPromotion
      @@ -303,7 +292,7 @@

      ProductRef

      ProductRef: ShopperSearchModelTypes.ProductRef
      @@ -323,7 +312,7 @@

      ProductSearchHit

      ProductSearchHit: ShopperSearchModelTypes.ProductSearchHit
      @@ -333,7 +322,7 @@

      ProductSearchRefinement

      ProductSearchRefinement: ShopperSearchModelTypes.ProductSearchRefinement
      @@ -343,7 +332,7 @@

      ProductSearchRefinementValue

      ProductSearchRefinementValue: ShopperSearchModelTypes.ProductSearchRefinementValue
      @@ -353,7 +342,7 @@

      ProductSearchResult

      ProductSearchResult: ShopperSearchModelTypes.ProductSearchResult
      @@ -363,7 +352,7 @@

      ProductSearchSortingOption

      ProductSearchSortingOption: ShopperSearchModelTypes.ProductSearchSortingOption
      @@ -373,7 +362,7 @@

      ProductSuggestions

      ProductSuggestions: ShopperSearchModelTypes.ProductSuggestions
      @@ -383,7 +372,7 @@

      ProductType

      ProductType: ShopperSearchModelTypes.ProductType
      @@ -393,7 +382,7 @@

      ResultBase

      ResultBase: ShopperSearchModelTypes.ResultBase
      @@ -423,7 +412,7 @@

      SuggestedCategory

      SuggestedCategory: ShopperSearchModelTypes.SuggestedCategory
      @@ -433,7 +422,7 @@

      SuggestedPhrase

      SuggestedPhrase: ShopperSearchModelTypes.SuggestedPhrase
      @@ -443,7 +432,7 @@

      SuggestedProduct

      SuggestedProduct: ShopperSearchModelTypes.SuggestedProduct
      @@ -453,7 +442,7 @@

      SuggestedTerm

      SuggestedTerm: ShopperSearchModelTypes.SuggestedTerm
      @@ -463,7 +452,7 @@

      SuggestedTerms

      SuggestedTerms: ShopperSearchModelTypes.SuggestedTerms
      @@ -473,7 +462,7 @@

      Suggestion

      Suggestion: ShopperSearchModelTypes.Suggestion
      @@ -483,7 +472,7 @@

      SuggestionResult

      SuggestionResult: ShopperSearchModelTypes.SuggestionResult
      @@ -493,7 +482,7 @@

      Variant

      Variant: ShopperSearchModelTypes.Variant
      @@ -503,7 +492,7 @@

      VariationAttribute

      VariationAttribute: ShopperSearchModelTypes.VariationAttribute
      @@ -513,7 +502,7 @@

      VariationAttributeValue

      VariationAttributeValue: ShopperSearchModelTypes.VariationAttributeValue
      @@ -523,7 +512,7 @@

      VariationGroup

      VariationGroup: ShopperSearchModelTypes.VariationGroup
      @@ -617,6 +606,9 @@

      productSearchQueryParameters

    • shopperOrders
    • +
    • + shopperPayments +
    • shopperProducts
    • @@ -648,20 +640,17 @@

      productSearchQueryParameters