@freemius/sdk 0.0.5 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.mts","names":["paths","components","operations","webhooks","Record","$defs"],"sources":["../src/api/schema.d.ts","../../src/api/types.ts","../../src/contracts/types.ts","../../src/contracts/purchase.ts","../../src/contracts/portal.ts","../../src/contracts/checkout.ts","../../src/contracts/pricing.ts","../../src/api/parser.ts","../../src/api/client.ts","../../src/api/ApiBase.ts","../../src/api/License.ts","../../src/api/Product.ts","../../src/api/Subscription.ts","../../src/api/User.ts","../../src/api/Payment.ts","../../src/services/ApiService.ts","../../src/checkout/Checkout.ts","../../src/models/PurchaseInfo.ts","../../src/services/PurchaseService.ts","../../src/services/PricingService.ts","../../src/checkout/PricingRetriever.ts","../../src/checkout/PurchaseProcessor.ts","../../src/models/CheckoutRedirectInfo.ts","../../src/checkout/RedirectProcessor.ts","../../src/checkout/CheckoutRequestProcessor.ts","../../src/services/CheckoutService.ts","../../src/services/AuthService.ts","../../src/customer-portal/BillingAction.ts","../../src/customer-portal/InvoiceAction.ts","../../src/customer-portal/SubscriptionCancellationAction.ts","../../src/customer-portal/SubscriptionRenewalCouponAction.ts","../../src/customer-portal/CustomerPortalActionService.ts","../../src/customer-portal/PortalDataRepository.ts","../../src/customer-portal/PurchaseRestorer.ts","../../src/customer-portal/PortalRequestProcessor.ts","../../src/services/CustomerPortalService.ts","../../src/webhook/license.events.ts","../../src/webhook/subscription.events.ts","../../src/webhook/events.ts","../../src/webhook/WebhookListener.ts","../../src/services/WebhookService.ts","../../src/services/EntitlementService.ts","../../src/Freemius.ts"],"sourcesContent":["/**\n * This file was auto-generated by openapi-typescript.\n * Do not make direct changes to the file.\n */\n\nexport interface paths {\n '/developers/{developer_id}/bank_account/{bank_account_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: components['parameters']['developer_id'];\n /**\n * @description The ID of the bank account.\n * @example 1234\n */\n bank_account_id: components['parameters']['bank_account_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve bank account\n * @description Retrieve the developer's bank account.\n */\n get: operations['developers/retrieve-bank-account'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/developers/{developer_id}/login.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: components['parameters']['developer_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n /**\n * Log in\n * @description\n * Call this endpoint with your developer email and password and optionally 2FA auth code to login and set the authorization cookie.\n *\n * > This is a public endpoint and does not require any authentication.\n *\n * Please note that this endpoint is not meant for public use and should only be used by the Freemius Developer Dashboard. The login can expect a reCAPTCHA token and it will only work if the reCAPTCHA widget is initialized from the Developer Dashboard itself.\n * To get API tokens for a product or a store, please do it from the Developer Dashboard app itself.\n *\n */\n post: operations['developers/log-in'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/addons.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * List all addons\n * @description Retrieve the addons collection.\n */\n get: operations['products/list-addons'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/addons/{addon_id}/plans/{plan_id}/features.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Addon.\n * @example 1234\n */\n addon_id: components['parameters']['addon_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n /**\n * List all plan's features\n * @description Retrieve the plan's features collection for the addon.\n */\n get: operations['addons/list-plans-features'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/addons/{addon_id}/plans.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Addon.\n * @example 1234\n */\n addon_id: components['parameters']['addon_id'];\n };\n cookie?: never;\n };\n /**\n * List all plans\n * @description Retrieve the plans collection for the addon.\n */\n get: operations['addons/list-plans'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/addons/{addon_id}/plans/{plan_id}/pricing.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Addon.\n * @example 1234\n */\n addon_id: components['parameters']['addon_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n /**\n * List all pricings\n * @description Retrieve the pricing collection for the addon for specific the plan.\n */\n get: operations['addons/list-pricings'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/carts/{cart_id}/events.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Cart.\n * @example 1234\n */\n cart_id: components['parameters']['cart_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve cart events\n * @description Get the list of events associated with a cart.\n */\n get: operations['carts/retrieve-events'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/carts/{cart_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Cart.\n * @example 1234\n */\n cart_id: components['parameters']['cart_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve a cart\n * @description Retrieve cart details associated with the product.\n *\n * > You can use `enriched=true` to get more details about the cart, for example the `gross`, `coupon_code` and `licenses` fields will only be returned if enriched is enabled. Please see individual parameters in the response data below to learn more.\n */\n get: operations['carts/retrieve'];\n /**\n * Update a cart\n * @description Update the details of a particular cart.\n *\n * > Updating a completed checkout cart is prohibited.\n *\n * > Updating the coupon requires both the `coupon_id` and `coupon_code`.\n */\n put: operations['carts/update'];\n post?: never;\n /**\n * Delete a cart\n * @description Delete a particular cart.\n */\n delete: operations['carts/delete'];\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/carts.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * List all carts\n * @description Retrieve the cart collection associated with your product.\n *\n * > If `enriched=true` you will get more details about the cart for example the `gross`, `coupon_code` and `licenses` fields.\n *\n * > You can use the `filter` or `email` or `count` parameters to get more refined results from your query. Please learn more about the individual parameters below.\n */\n get: operations['carts/list'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/coupons/{coupon_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the coupon.\n * @example 1234\n */\n coupon_id: components['parameters']['coupon_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve a coupon\n * @description Get details of a specific coupon by ID.\n */\n get: operations['coupons/retrieve'];\n /**\n * Update a coupon\n * @description Update a specific coupon's details by ID.\n */\n put: operations['coupons/update'];\n post?: never;\n /**\n * Delete a coupon\n * @description Delete a specific coupon by ID.\n */\n delete: operations['coupons/delete'];\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/coupons.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * List all coupons\n * @description Retrieve the coupon collection associated with your product.\n *\n * ### Searching and filtering\n *\n * You can use filtering to search for a particular coupon or a group of coupons. The available parameters are:\n *\n * - `code` - You can explicitly search coupon by the code.\n * - `search` - You can search by coupon code or coupon ID.\n * - `prefix` - You can filter by coupon code prefix.\n *\n * > If using search and filtering, then the `is_enriched` parameter is ignored.\n *\n */\n get: operations['coupons/list'];\n put?: never;\n /**\n * Create a coupon\n * @description Create a new coupon.\n *\n * Alternatively, you can use the [Freemius Developer Dashboard](https://dashboard.freemius.com).\n *\n * > If you're creating coupon from your SaaS for some specific use case, please be sure to set the `plans`, `redemptions_limit`, `end_date`, and `is_one_per_user` properties to the appropriate values, to avoid misuse.\n */\n post: operations['coupons/create'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/coupons/{coupon_id}/note.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the coupon.\n * @example 1234\n */\n coupon_id: components['parameters']['coupon_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve a note\n * @description Get the details of a note associated with a coupon.\n */\n get: operations['coupons/retrieve-note'];\n /**\n * Update a note\n * @description Update a note for a coupon.\n */\n put: operations['coupons/update-note'];\n /**\n * Create a note\n * @description Create a new note for a coupon.\n */\n post: operations['coupons/create-note'];\n /**\n * Delete a note\n * @description Delete a note for a coupon.\n */\n delete: operations['coupons/delete-note'];\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/coupons/special.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve special coupons\n * @description Get the details of a special coupon.\n * *\n * ### Searching and filtering\n *\n * You can use filtering to search for a particular coupon or a group of coupons by `type`.\n */\n get: operations['coupons/retrieve-special'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/coupons/{coupon_id}/special/{special_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the coupon.\n * @example 1234\n */\n coupon_id: components['parameters']['coupon_id'];\n /**\n * @description The ID of the special coupon.\n * @example cart_recovery\n */\n special_id: components['parameters']['special_id'];\n };\n cookie?: never;\n };\n get?: never;\n /**\n * Create a special coupon\n * @description Create a special coupon.\n */\n put: operations['coupons/create-special'];\n post?: never;\n /**\n * Delete a special coupon\n * @description Delete a special coupon by ID.\n */\n delete: operations['coupons/delete-special'];\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/emails/addresses.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * List all email addresses\n * @description Retrieve the email addresses collection associated with a product. In case the product is using the store's email address configuration, the endpoint will return a `404` error.\n */\n get: operations['products/list-email-addresses'];\n put?: never;\n post?: never;\n /**\n * Delete all email addresses\n * @description Delete all email addresses associated with a product. Sets the product to use the default store-level email addresses.\n */\n delete: operations['products/delete-email-addresses'];\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/developers/{developer_id}/products/{product_id}/emails/addresses.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: components['parameters']['developer_id'];\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n get?: never;\n /**\n * Update email addressses\n * @description Update the email addresses associated with a product.\n *\n * > Only a plugin's developer can update the email addresses of their plugin.\n */\n put: operations['products/update-email-addressses'];\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/developers/{developer_id}/products/{product_id}/emails/{email_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: components['parameters']['developer_id'];\n /** @description The ID of the email. */\n email_id: string;\n };\n cookie?: never;\n };\n /**\n * Retrieve an email template\n * @description Retrieve a specific email template by ID.\n * > This is an experimental feature, please don't use it.\n *\n * > Only a developer can access email templates.\n */\n get: operations['products/retrieve-email-template'];\n /**\n * Update an email template\n * @description Update a specific email template by ID.\n * > This is an experimental feature, please don't use it.\n *\n * > Only a developer can update email templates.\n */\n put: operations['products/update-email-template'];\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/events/{event_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the event.\n * @example 1234\n */\n event_id: components['parameters']['event_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve an event\n * @description Retrieve a specific event by its ID. For instructions on creating webhook listeners, see the [documentation](https://freemius.com/help/documentation/saas/events-webhooks/#how_to_create_a_webhook).\n */\n get: operations['events/retrieve'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/events.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * List all events\n * @description Retrieve a list of events for a specific product. Supports filtering by type, state, and pagination. See the [documentation](https://freemius.com/help/documentation/saas/events-webhooks/#how_to_create_a_webhook) for instructions on creating a webhook to listen for events.\n */\n get: operations['events/list'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/features/{feature_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the feature.\n * @example 1234\n */\n feature_id: components['parameters']['feature_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve a feature\n * @description Retrieve a product's feature. In case of WordPress products, this is used automatically for the [in-dashboard pricing page](https://freemius.com/wordpress/checkout/).\n */\n get: operations['products/retrieve-feature'];\n /**\n * Update a feature\n * @description Update a product's feature. Please note that the `value` attribute can only be set and updated per plan with a developer scope authorization.\n */\n put: operations['products/update-feature'];\n post?: never;\n /**\n * Delete a feature\n * @description Delete a product's feature.\n */\n delete: operations['products/delete-feature'];\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/features.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * List all features\n * @description Retrieve the product features collection.\n */\n get: operations['products/list-features'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve a product\n * @description Query and retrieve a specific product by ID.\n */\n get: operations['products/retrieve'];\n /**\n * Update a product\n * @description Update a specific product by ID.\n */\n put: operations['products/update'];\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/info.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * Get product info\n * @description Get product info. Please use the Developer Dashboard to update the information of a product.\n */\n get: operations['products/get-info'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/addons/{addon_id}/plans/{plan_id}/features.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the Addon.\n * @example 1234\n */\n addon_id: components['parameters']['addon_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n /**\n * List all plan's features for Addon\n * @description Get plan's features collection for an addon on a site.\n */\n get: operations['installations/list-plans-features-for-addon'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/clones/{clone_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the clone.\n * @example 1234\n */\n clone_id: components['parameters']['clone_id'];\n };\n cookie?: never;\n };\n get?: never;\n /**\n * Resolve a clone\n * @description Resolve a clone of an install that was created by the product.\n */\n put: operations['installations/resolve-clone'];\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/clones.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n /**\n * Create a clone\n * @description Create a clone of an install associated with the product.\n *\n * > Use this endpoint if you want to support migration or temporary or long-term duplicates for staging purposes.\n *\n * By default the clone will be created in a pending state. For our [WP SDK](https://freemius.com/help/documentation/wordpress-sdk/safe-mode-clone-resolution-duplicate-website/) the clone will be created in a safe mode state.\n *\n * After creating the clone, you will need to resolve the clone by updating its state and resolution. You will need to handle the licensing logic for the new install entity. Our [WP SDK](https://freemius.com/help/documentation/wordpress-sdk/safe-mode-clone-resolution-duplicate-website/) handles it automatically for WordPress products (plugins and themes).\n */\n post: operations['installations/create-clone'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/count.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve installs count\n * @description Retrieve the number of installs associated with the product.\n *\n * ### Filtering\n *\n * You can filter the count by `plan_id` or `is_active`.\n */\n get: operations['installations/retrieve-installs-count'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/downgrade.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n get?: never;\n /**\n * Downgrade to the default plan\n * @description Downgrade install's plan to product’s default plan. This is usually the free plan.\n */\n put: operations['installations/downgrade-default-plan'];\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/events.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n /**\n * List all events\n * @description Retrieve the event collection related to a product install.\n */\n get: operations['installations/list-events'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve an install\n * @description Retrieve the details related to the product install.\n */\n get: operations['installations/retrieve-install'];\n /**\n * Update an install\n * @description Update the details related to the product install.\n */\n put: operations['installations/update-install'];\n post?: never;\n /**\n * Delete an install\n * @description Delete a product install. This is different from an uninstall.\n */\n delete: operations['installations/delete-install'];\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * List all installs\n * @description Retrieve the install collection associated with the product.\n *\n * Various filtering and search parameters are available to narrow down the results.\n */\n get: operations['installations/list-installs'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/license.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve an active license by UID\n * @description Retrieve the full information about the active license for the specified install when the UID of the install is known.\n *\n * > No Authorization header is required.\n */\n get: operations['installations/retrieve-active-license-by-uid'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/licenses/{license_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve an active license by ID\n * @description Retrieve specific license of the install when the license ID and the license key are known but the UID of the install is not known.\n *\n * > Retrieve the license information with product level authorization when the UID of the install is unknown.\n */\n get: operations['installations/retrieve-active-license-by-id'];\n /**\n * Activate a license\n * @description Activate license for an install.\n */\n put: operations['installations/activate-license'];\n post?: never;\n /**\n * Deactivate a license\n * @description Deactivate license from an install.\n */\n delete: operations['installations/deactivate-license'];\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/licenses.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n /**\n * List all active licenses\n * @description Retrieve the active licenses (usually only one) on an install.\n *\n * > Use this endpoint only when the ID of the license is unknown.\n */\n get: operations['installations/list-active-licenses'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/licenses/{license_id}/subscriptions.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n /**\n * List all subscriptions\n * @description Retrieve the subscription collection associated with a license.\n *\n * > A license can have one active and multiple inactive subscriptions. Subscriptions are inactivated when a license is downgraded or upgraded or when the payment method is updated.\n */\n get: operations['licenses/list-subscriptions'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/market_items.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n /**\n * List all market items\n * @description Retrieves all market items associated with an `Install` entity.\n *\n * > Market items are other products (not necessarily powered by Freemius) that are installed in the same site as the Freemius powered product.\n *\n * > It is only after the user chooses to opt-in that such data is collected and sent to Freemius. Right now we only support WordPress products i.e. plugins and themes.\n */\n get: operations['installations/list-market-items'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/developer/{developer_id}/products/{product_id}/installs/{install_id}/members.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n /**\n * Add team member\n * @description Add new team member to the product.\n *\n * > Only a developer with priviledge can add a new team member to a product.\n */\n post: operations['developers/add-team-member'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/payments.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n /**\n * List all payments\n * @description Retrieve the payment associated with the install.\n *\n * > This lists all payments collected from the license activated on this install.\n */\n get: operations['installations/list-payments'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/permissions.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n get?: never;\n /**\n * Update permissions\n * @description Update permissions to a product install.\n */\n put: operations['installations/update-permissions'];\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/plans/{plan_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve a plan\n * @description Retrieve the product plan details to which the install is subscribed.\n */\n get: operations['installations/retrieve-plan'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/plans.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n /**\n * List all plans\n * @description Retrieve all the available product plans to which an install can subscribe.\n */\n get: operations['installations/list-plans'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/plans/{plan_id}/pricing/{pricing_id}/licenses.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n /**\n * @description The ID of the Pricing.\n * @example 1234\n */\n pricing_id: components['parameters']['pricing_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n /**\n * Create a new license\n * @description Create a new license and assign it to the install.\n *\n * > Either `period` or `expires_at` must be set.\n */\n post: operations['installations/create-new-license'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/plans/{plan_id}/trials.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n /**\n * Start a trial\n * @description Start the trial of a plan for which an install is subscribed. The install must not have utilized the trial before.\n */\n post: operations['installations/start-trial'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/trials.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n post?: never;\n /**\n * Cancel a trial\n * @description Cancel a trial associated with a specific install.\n */\n delete: operations['installations/cancel-trial'];\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/uninstall.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve uninstall details\n * @description Retrieve the details of an install where the product has been uninstalled.\n */\n get: operations['installations/retrieve-uninstall-details'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/updates.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n /**\n * List all updates\n * @description Retrieve the product update collection available for an install.\n */\n get: operations['installations/list-updates'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/updates/latest.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve the latest update\n * @description Retrieve the latest product update available for an install.\n */\n get: operations['installations/retrieve-latest-update'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/users/{user_id}/ownership-change.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n get?: never;\n /**\n * Change ownership\n * @description Change ownership of an install.\n */\n put: operations['installations/change-ownership'];\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/users/{user_id}/verify.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n get?: never;\n /**\n * Send a verification email\n * @description Sends an email to the user associated with the install, containing a link to verify the email address.\n *\n * > With the `after_email_confirm_url` parameter, you can specify a URL address that the user will be auto forwarded to after email confirmation is clicked.\n */\n put: operations['installations/send-verification-email'];\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/is_active.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * Check product status\n * @description Check if the product is active.\n */\n get: operations['products/check-status'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/licenses/activate.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n /**\n * Activate a license\n * @description Activate a license and if needed, create an install with the given properties.\n *\n * > No Authorization header is required. If the provided license doesn't have an associated user, the endpoint will require the `first_name`, `last_name`, and `user_email` parameters to create a new user and associate it with the license.\n */\n post: operations['licenses/activate'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/licenses/{license_id}/checkout/link.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n /**\n * Generate upgrade link\n * @description Generate an upgrade link for a license. The API accepts a variety of parameters with which you can specify new plans or quota or billing cycles. If you skip all those, then a manual renewal link will be generated instead. The link will be valid for 24 hours.\n */\n post: operations['licenses/generate-upgrade-link'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/licenses/deactivate.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n /**\n * Deactivate a license\n * @description Deactivate a license from an install (No Authorization header is required).\n */\n post: operations['licenses/deactivate'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/licenses/{license_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve a license\n * @description Retrieve a specific license by its ID.\n */\n get: operations['licenses/retrieve'];\n /**\n * Update a license\n * @description Update a specific license by its ID. For ownership transfer please use the `new_user_id`. Ownership transfer is not supported for SaaS products.\n */\n put: operations['licenses/update'];\n post?: never;\n /**\n * Cancel a license\n * @description Cancel or delete a license. The Delete action is irreversible and will remove the license from the system.\n */\n delete: operations['licenses/cancel'];\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/licenses.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * List all licenses\n * @description Retrieve the license collection associated with a product.\n */\n get: operations['licenses/list'];\n /**\n * Assign a license\n * @description Associate an orphan license with a user and send a welcome email. If the user does not exist yet, one will be created.\n */\n put: operations['licenses/assign'];\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/licenses/{license_id}/installs.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n post?: never;\n /**\n * Deactivate installs\n * @description Deactivate license from all installs.\n */\n delete: operations['licenses/deactivate-installs'];\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/developers/{developer_id}/products/{product_id}/licenses/{license_id}/installs/sync.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: components['parameters']['developer_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n /**\n * Sync all activations\n * @description Sync all the license activations with the actual available installs.\n */\n post: operations['licenses/sync-activations'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/licenses/{license_id}/renewals.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n /**\n * Send the renewal email\n * @description Send the manual license renewal email. The system will send emails only for licenses with cancelled or inactive subscriptions.\n */\n post: operations['licenses/send-renewal-email'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/licenses/resend.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n /**\n * Resend license keys\n * @description Send an email from Freemius with all the license keys associated with the given email address. The email is sent to the email address.\n */\n post: operations['licenses/resend-keys'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/licenses/{license_id}/resend.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n /**\n * Resend the upgrade email\n * @description Resend the license upgrade email.\n */\n post: operations['licenses/resend-upgrade-email'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/licenses/{license_id}/subscription.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve latest subscription\n * @description A license can have only **one active subscription** at any given time. However, users may **upgrade**, **downgrade**, or **change their payment method**, which may result in a new subscription being created and associated with the same license.\n *\n * Use this endpoint to **retrieve the latest or currently active subscription** linked to a specific license.\n *\n * This is useful when you're building tools for license management or need to inspect the billing state of a customer. If you're integrating Freemius with your SaaS please refer to our [guide here](https://freemius.com/help/documentation/selling-with-freemius/saas-integration/).\n */\n get: operations['licenses/retrieve-latest-subscription'];\n put?: never;\n post?: never;\n /**\n * Cancel current subscription\n * @description Use this endpoint to **cancel the active subscription** associated with a license. If the license is currently in a **trialing state**, this will also cancel the trial.\n *\n * This is useful when you want to programmatically offer a cancellation feature from within your SaaS or custom dashboards. If you're integrating Freemius with your SaaS, please see our [guide here](https://freemius.com/help/documentation/selling-with-freemius/saas-integration/).\n *\n * > ⚠️ This action is irreversible and will immediately cancel the subscription or trial.\n *\n * Cancelling an already cancelled subscription will not have any effect and the endpoint will return the same subscription details as before.\n */\n delete: operations['licenses/cancel-current-subscription'];\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/payments/{payment_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the payment.\n * @example 1234\n */\n payment_id: components['parameters']['payment_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve a payment\n * @description Retrieve a specific payment.\n */\n get: operations['payments/retrieve'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/payments.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * List all payments\n * @description Retrieve the payment collection associated with the product.\n *\n * ### Filtering and searching\n *\n * You search and/or filter payments with these parameters:\n *\n * - `search` - You can search by `payment_id`, `external_payment_id`, or `user_email`. It can be a number or string.\n * - `user_id` - If you are looking to list all payments for a specific user use this.\n * - `billing_cycle` - Filter payments by billing cycle. `0` means lifetime payments.\n * - `currency` - Filter payments by currency.\n * - `coupon_id` - Filter payments by coupon ID.\n * - `filter` - Filter payments by different types: `all`, `refunds`, `not_refunded`, `disputed`, `won_disputes`, `chargebacks`.\n *\n * Please see the parameters in the responses body for more information.\n */\n get: operations['payments/list'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/payments/{payment_id}/invoice.pdf': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the payment.\n * @example 1234\n */\n payment_id: components['parameters']['payment_id'];\n };\n cookie?: never;\n };\n /**\n * Download invoice\n * @description Download invoice of a payment.\n */\n get: operations['payments/download-invoice'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/ping.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * GDPR compliance check\n * @description Find out if a product requires GDPR compliance based on the client's location.\n */\n get: operations['products/gdpr-compliance-check'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/plans/currencies.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * List all currencies\n * @description Retrieve all the currencies available for all the plans.\n */\n get: operations['plans/list-currencies'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/plans/{plan_id}/features.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n /**\n * List all features\n * @description Retrieve the features collection of a plan.\n */\n get: operations['plans/list-features'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/plans/{plan_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve a plan\n * @description Retrieve a specific plan by ID.\n */\n get: operations['plans/retrieve'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/plans.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * List all plans\n * @description Retrieve the plans collection.\n */\n get: operations['plans/list'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/developers/{developer_id}/products/{product_id}/plans.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: components['parameters']['developer_id'];\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n /**\n * Create a plan\n * @description Create a new plan for the product.\n */\n post: operations['plans/create'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/plans/{plan_id}/pricing/clone.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n /**\n * Clone pricing to other currency\n * @description Create new pricing in a specified currency from an existing one.\n */\n post: operations['plans/clone-pricing-other-currency'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/plans/{plan_id}/pricing/{pricing_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n /**\n * @description The ID of the Pricing.\n * @example 1234\n */\n pricing_id: components['parameters']['pricing_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve a pricing\n * @description Retrieve a specific plan pricing by ID.\n */\n get: operations['plans/retrieve-pricing'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/developers/{developer_id}/products/{product_id}/plans/{plan_id}/pricing/{pricing_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: components['parameters']['developer_id'];\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n /**\n * @description The ID of the Pricing.\n * @example 1234\n */\n pricing_id: components['parameters']['pricing_id'];\n };\n cookie?: never;\n };\n get?: never;\n /**\n * Update a pricing\n * @description Update the plan's pricing by ID.\n *\n * > Only developers can update a plan pricing.\n */\n put: operations['plans/update-pricing'];\n post?: never;\n /**\n * Delete a plan's pricing\n * @description Delete the plan pricing by ID.\n *\n * > Only developers can delete a plan pricing.\n */\n delete: operations['plans/delete-s-pricing'];\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/plans/{plan_id}/pricing.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n /**\n * List all plan's pricing\n * @description Retrieve the collection of all the plan's pricings.\n */\n get: operations['plans/list-s-pricing'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/developers/{developer_id}/products/{product_id}/plans/{plan_id}/pricing.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n /**\n * Create a pricing\n * @description Create new pricing for a plan.\n */\n post: operations['plans/create-pricing'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/plans/{plan_id}/pricing/{pricing_id}/licenses.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n /**\n * @description The ID of the Pricing.\n * @example 1234\n */\n pricing_id: components['parameters']['pricing_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n /**\n * Create a license\n * @description Create a new license for the plan and pricing. Please note that:\n * 1. Either `period` or `expires_at` or `is_block_features` must be set.\n * 2. If you create a license with `is_block_features` set to `false` and do not specify `period` and `expires_at`, the license will never expire or block features and will continue to work for lifetime.\n * 3. If you specify an email address, the user must have already activated a license or installed your product before. If your user has not activated a license, then please don't use the field and when they activate the license we will collect their email and register the user with Freemius.\n * 4. Use the `source` parameter only when creating migrated licenses from a legacy system.\n *\n * More information about every other parameters can be found below.\n *\n */\n post: operations['plans/create-license'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/pricing.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve the pricing table data\n * @description Retrieve the plugin's full features & pricing data for a pricing table. This is used by our official [pricing page app](https://github.com/Freemius/pricing-page/) inside the WordPress SDK.\n */\n get: operations['products/retrieve-pricing-table-data'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/reviews/{review_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the review.\n * @example 1234\n */\n review_id: components['parameters']['review_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve a review\n * @description Retrieve a product review by ID.\n */\n get: operations['reviews/retrieve'];\n /**\n * Update a review\n * @description Update a product review by ID\n * > The rate can only be modified for developer generated reviews.\n */\n put: operations['reviews/update'];\n post?: never;\n /**\n * Delete a review\n * @description Delete a product review by ID.\n */\n delete: operations['reviews/delete'];\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/reviews.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * List all reviews\n * @description Retrieve the reviews collection.\n */\n get: operations['reviews/list'];\n put?: never;\n /**\n * Create a review\n * @description Create a product review.\n */\n post: operations['reviews/create'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/reviews/summary.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve reviews summary\n * @description Retrieve the summary of the reviews collection. Every item is an object with a `rate` and `count` properties, where `rate` is the rating value (0-100) and `count` is the number of reviews with that rating. Reviews are grouped by their rating.\n */\n get: operations['reviews/retrieve-summary'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/settings/{setting_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the setting.\n * @example 1234\n */\n setting_id: components['parameters']['setting_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve a setting\n * @description Retrieve a specific product setting.\n * > Different settings are used for different functionalities around product. Please use the Developer Dashboard instead to modify the functionality.\n */\n get: operations['products/retrieve-setting'];\n /**\n * Update a setting\n * @description Update a specific product setting.\n * > Different settings are used for different functionalities around product. Please use the Developer Dashboard instead to modify the functionality.\n */\n put: operations['products/update-setting'];\n post?: never;\n /**\n * Delete a setting\n * @description Delete a specific product setting.\n */\n delete: operations['products/delete-setting'];\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/skip.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n get?: never;\n /**\n * Skip account connection\n * @description Skip the account connection step for the specified product. This is useful for testing purposes or for WordPress product integration. The functionality is handled automatically by our [WordPress SDK](https://github.com/Freemius/wordpress-sdk).\n */\n put: operations['products/skip-account-connection'];\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/subscriptions/{subscription_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Subscription.\n * @example 1234\n */\n subscription_id: components['parameters']['subscription_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve a subscription\n * @description Retrieve a subscription associated with your product.\n */\n get: operations['subscriptions/retrieve'];\n /**\n * Update a subscription\n * @description Update a subscription's auto-renewal status and activate a cancellation coupon.\n */\n put: operations['subscriptions/update'];\n post?: never;\n /**\n * Cancel a subscription\n * @description Use this endpoint to **cancel the subscription**. If the subscription is currently in a **trialing state**, this will also cancel the trial.\n *\n * This is useful when you want to programmatically offer a cancellation feature from within your SaaS or custom dashboards. If you're integrating Freemius with your SaaS, please see our [guide here](https://freemius.com/help/documentation/selling-with-freemius/saas-integration/).\n *\n * > ⚠️ This action is irreversible and will immediately cancel the subscription or trial.\n *\n * Cancelling an already cancelled subscription will not have any effect and the endpoint will return the same subscription details as before.\n */\n delete: operations['subscriptions/cancel'];\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/subscriptions.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * List all subscriptions\n * @description Retrieve the subscription collecttion associated with your product.\n * > Subscriptions are created when someone purchases your product using the [Freemius Checkout](https://freemius.com/wordpress/checkout/).\n *\n * ### Searching and filtering\n * There are various parameters to help you search and/or filter subscription.\n * - You can search by subscription ID, external subscription ID, or user email.\n * - You can also filter by billing cycle, gateway, plan ID, and subscription status.\n * Please see the parameters for more information.\n */\n get: operations['subscriptions/list'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/subscriptions/{subscription_id}/payments.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Subscription.\n * @example 1234\n */\n subscription_id: components['parameters']['subscription_id'];\n };\n cookie?: never;\n };\n /**\n * List all payments\n * @description Retrieve the payment collection associated with the subscription.\n */\n get: operations['subscriptions/list-payments'];\n put?: never;\n /**\n * Create a new migrated payment\n * @description In case you want to synchronize migrated subscription from the legacy platform use this endpoint to have our system log a migrated payment. Depending on your use case you can also choose to extend the license. Please read our [migration documentation](https://freemius.com/help/documentation/migration/) to learn more.\n */\n post: operations['subscriptions/create-new-migrated-payment'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/tags/{tag_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the product version.\n * @example 1234\n */\n tag_id: components['parameters']['tag_id'];\n };\n cookie?: never;\n };\n get?: never;\n /**\n * Update a deployment\n * @description Update a specific deployed version of the product. This applies to WordPress products only. Use this endpoint to update the `release_mode` of a deployment to make it available to your customers.\n *\n * ### Release Modes\n *\n * Defined by the `release_mode` property, with the following possible values:\n *\n * - `pending` – The deployment is pending and not visible to customers. This is the default value.\n * - `beta` – The deployment is in beta mode. Only customers with beta access will see this version.\n * - `released` – The deployment is released and visible to all customers.\n *\n * Additionally, WordPress plugins and themes support **incremental releases** and **staged rollouts**:\n *\n * - [**Incremental Release**](https://freemius.com/help/documentation/release-management/incremental-update/): Controlled via the `is_incremental` flag, incremental releases enforce sequential updates, requiring users to install designated intermediate versions before proceeding to newer ones.\n * - [**Staged Rollout**](https://freemius.com/help/documentation/release-management/staged-rollouts/): Managed through the `limit` and `percentage_limit` flags, staged rollouts enable gradual deployment of updates to a subset of users, allowing for monitoring and issue resolution before full release.\n *\n * > Note: Incremental Release and Staged Rollout are not supported for templates and widgets.\n *\n */\n put: operations['deployments/update'];\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/tags/{tag_id}.zip': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the product version.\n * @example 1234\n */\n tag_id: components['parameters']['tag_id'];\n };\n cookie?: never;\n };\n /**\n * Download a deployment\n * @description Download a specific deployed version of the product. This is for WordPress products only (including plugins, themes, templates and widgets). It outputs the zip file of the deployed version.\n *\n * > You can download both the premium and the free version of the deployment using the `is_premium` flag. This will help you setup automation to deploy Freemius generated free version to WordPress.org repository.\n *\n */\n get: operations['deployments/download'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/tags.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * List all deployments\n * @description Get the product version collection. This is for WordPress products only.\n */\n get: operations['deployments/list'];\n put?: never;\n /**\n * Create a deployment\n * @description Upload a new version of the product (for WordPress products only). The endpoint supports only the `multipart/form-data` content type and expects two payloads: `file` and `data`.\n *\n * - `file` - The zip file containing the product. For WordPress plugins or themes this must contain the root directory.\n * - `data` - Please omit this when deploying WordPress plugins and themes. In case of deploying templates and widgets, this needs to be a **stringified JSON** and must have the `version` and `requires_platform_version` properties.\n *\n * An example of the `data` property:\n *\n * ```\n * {\"version\": \"2.0.0\", \"requires_platform_version\": \"1.0.0\"}\n * ```\n *\n * > After you have created a deployment, please send another PUT request to the newly created version to update the `release_status` to either `released` or `beta`. The default value is `pending` which means none of the customers will be able to see the new version.\n *\n * You can learn more about the deployment process [here](https://freemius.com/help/documentation/getting-started/deployment-process/).\n *\n */\n post: operations['deployments/create'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/tags/latest.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * Get latest deployment\n * @description Get the information about the latest deployment the product has, including a secure download link. The download link will work without any authentication header and will expire in 24 hours.\n */\n get: operations['deployments/get-latest'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/tags/latest.zip': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * Download latest deployment\n * @description Download the latest deployment the product has. This is for WordPress products only (including plugins, themes, templates and widgets). It outputs the zip file of the deployed version.\n */\n get: operations['deployments/download-latest'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/trials.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * List all trials\n * @description List the trial collection associated with the product.\n *\n * To support trials, configure your product to [offer trial](https://freemius.com/help/documentation/selling-with-freemius/free-trials/) and then users can use the [Freemius Checkout](https://freemius.com/help/documentation/selling-with-freemius/freemius-checkout-buy-button/) to start a trial.\n *\n * You will need to pass `trial=paid` or `trial=free` to the Checkout's paramters to start a trial.\n */\n get: operations['trials/list'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/uninstall.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n get?: never;\n /**\n * Uninstall from anonymous site\n * @description Uninstall a product from anonymous site\n */\n put: operations['installations/uninstall-from-anonymous-site'];\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/users/{user_id}/billing.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve billing\n * @description Retrieves the billing information of a user for a specific product.\n */\n get: operations['users/retrieve-billing'];\n /**\n * Update or create billing\n * @description Update or create the billing information for a user.\n */\n put: operations['users/update-or-create-billing'];\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/users/{user_id}/events.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n /**\n * List all events\n * @description Retrieve a log of the events for the user associated with the product. Freemius tracks events such as opt-in, license activation, purchase etc. You can use this data for marketing and other automation purposes. More information can be found [here](https://freemius.com/help/documentation/marketing-automation/events-webhooks/).\n */\n get: operations['users/list-events'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/users/{user_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve a user\n * @description Retrieve a user associated with your product.\n */\n get: operations['users/retrieve'];\n /**\n * Update a user\n * @description Update a user associated with your product.\n */\n put: operations['users/update'];\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/users.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * List all users\n * @description\n * Gets the user collection associated with a product.\n *\n * ## Filtering\n * There are a few filters that can be applied to the request.\n *\n * ### Search by email\n * You can specify the parameter `email` to filter the users by email. Optionally you can also put a valid email in the `search` parameter.\n *\n * ### Other filtering options\n * The `search` parameter also accepts the following values:\n *\n * 1. User ID (number).\n * 2. Full or partial name (string).\n * 3. Full or partial email (string).\n *\n * ## Pagination\n * You can use the combination of `count` and `offset` parameters to paginate the results.\n *\n */\n get: operations['users/list'];\n put?: never;\n /**\n * Create a user\n * @description Create a new user associated with the product.\n *\n * The user will be linked to the product if they already exist in Freemius.\n *\n * > User can only be created for products with elevated permissions or during data migration.\n *\n * ## Migrating users from other platforms\n *\n * Freemius allows to migrate your users from other platforms. To do so, you need to set the `is_migration` parameter to `true`. This will prevent any emails from being sent to the users and will not log any events.\n * Once migrated the user can use their existing licenses to activate your product.\n */\n post: operations['users/create'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/users/{user_id}/installs.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n /**\n * List all installs\n * @description Retrieve the install collection associated with the user.\n *\n * Various filtering and search parameters are available to narrow down the results.\n */\n get: operations['users/list-installs'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/users/{user_id}/licenses.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n /**\n * List all licenses\n * @description Retrieve the license collection associated with a user.\n */\n get: operations['users/list-licenses'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/users/{user_id}/licenses/{license_id}/review_url.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n /**\n * Get review URL\n * @description Retrieve the review URL associated with a license.\n */\n get: operations['licenses/get-review-url'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/users/{user_id}/licenses/{license_id}/reviews.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n /**\n * Create a review\n * @description Creat a review associated with a license. If you want to create/import reviews which are not associated with a license or from a different system, please use the Review endpoint under `products/{product_id}/reviews.json`.\n */\n post: operations['licenses/create-review'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/users/{user_id}/payments.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n /**\n * List all payments\n * @description Retrieve the payment collection associated with a user.\n */\n get: operations['users/list-payments'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/users/{user_id}/subscriptions.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n /**\n * List all subscriptions\n * @description Retrieve the subscription collection associated with a user.\n */\n get: operations['users/list-subscriptions'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/users/{user_id}/tokens/checkout.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n /**\n * Create a checkout token\n * @description Create a 1 min long token that represents the details of the user for setting the user context in a checkout session. Please read our [documentation](https://freemius.com/help/documentation/selling-with-freemius/freemius-checkout-buy-button/#user_token_in_checkout_new) to learn how to use it.\n */\n post: operations['users/create-checkout-token'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/developers/{developer_id}/products/{product_id}/plans/{plan_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path?: never;\n cookie?: never;\n };\n get?: never;\n /**\n * Update a plan\n * @description\n * Update an existing plan by ID.\n *\n * > Only developers can update plans.\n */\n put: operations['plans/update'];\n post?: never;\n /**\n * Delete a plan\n * @description Delete a specific plan by ID.\n */\n delete: operations['plans/delete'];\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n}\nexport type webhooks = Record<string, never>;\nexport interface components {\n schemas: {\n ApiError: {\n /**\n * @description The API request path.\n * @example :/products/product_id/users.json\n */\n path?: string;\n /** @description This object contains the error details. */\n error?: {\n /**\n * @description The type of the error encountered by the server.\n * @example UnauthorizedAccess\n */\n type?: string;\n /**\n * @description The descriptive error message.\n * @example Some error has occured.\n */\n message?: string;\n /**\n * @description The error code.\n * @example unauthorized_access\n */\n code?: string;\n /**\n * @description The HTTP status code returned by the server.\n * @example 401\n */\n http?: number;\n /**\n * @description Current timestamp.\n * @example Thu, 11 May 2023 11:45:30 +0000\n */\n timestamp?: string;\n };\n /**\n * @description This object sends back the request payload as received by the server (both from path and from body or query).\n * @example {\n * \"beautify\": true,\n * \"format\": \"json\"\n * }\n */\n request?: {\n [key: string]: unknown;\n };\n };\n /** @description Some enums that are common to many entities. */\n CommonEnums: {\n /** @enum {string} */\n ProductType?: 'plugin' | 'theme' | 'widget' | 'template';\n /** @enum {string} */\n RefundPolicy?: 'flexible' | 'moderate' | 'strict';\n /**\n * @description The type of renewals discount, percentage or dollar.\n * @enum {string}\n */\n RenewalsDiscountType?: 'percentage' | 'dollar';\n /**\n * @description The type of authentication. If `app2fa` is set, the person has signed for 2FA authentication.\n * @enum {string}\n */\n AuthenticationType?: 'app2fa' | 'password';\n /**\n * @description The status of the last email sent to the user.\n * @enum {string}\n */\n EmailStatus?: 'delivered' | 'bounce' | 'dropped';\n /**\n * @description The billing cycle of the subscription in number of months. 1 means monthly, 12 means annually, 0 means lifetime usually when subscriptions are created for lifetime trials.\n * @enum {number}\n */\n BillingCycle?: 1 | 12 | 0;\n /**\n * @description The billing cycle or period of a plan.\n * @enum {string}\n */\n PlanPeriod?: 'monthly' | 'annual' | 'lifetime';\n /**\n * @description The type of the person. A developer is a person who sells software through the Freemius platform, a user is a person who buys software through the Freemius platform.\n * @enum {string}\n */\n PersonType?: 'developer' | 'user';\n /**\n * @description The type of the discount. \"percentage\" means the discount is a percentage of the price, \"dollar\" means the discount is a fixed amount.\n * @enum {string}\n */\n DiscountType?: 'dollar' | 'percentage';\n /**\n * @description The payment method selected for the purchase.\n * @default cc\n * @enum {string}\n */\n PaymentMethodType: 'cc' | 'paypal' | 'ideal';\n /**\n * @description 3-char currency code.\n * @enum {string}\n */\n Currency?: 'usd' | 'eur' | 'gbp';\n /**\n * @description The type of the payment.\n * @default payment\n * @enum {string}\n */\n PaymentType: 'payment' | 'refund' | 'disputed' | 'won_dispute' | 'lost_dispute' | 'chargeback';\n /**\n * @description The product sales model.\n * @example [\n * \"freemium\"\n * ]\n * @enum {string}\n */\n BusinessModel?: 'free' | 'freemium' | 'premium';\n /**\n * @description State of the event log. It essentially says whether the event was processed through the webhook or not.\n * @enum {string}\n */\n EventLogState?: 'processed' | 'pending' | 'canceled' | 'error';\n };\n /** @description This schema lists the common properties shared by various other schemas or entities. */\n CommonProperties: {\n /**\n * Format: int64\n * @description The unique identifier of the entity.\n * @example 123456\n */\n id?: string;\n /**\n * Format: date-time\n * @description The date and time the entity was created, under UTC timezone.\n * @example 2025-01-01 00:00:00\n */\n created?: string;\n /**\n * Format: date-time\n * @description The date and time the entity was updated, under UTC timezone. If `null` then the entity was never updated since its creation.\n * @example 2025-01-01 00:00:00\n */\n updated?: string | null;\n /**\n * Format: binary\n * @description The icon of the entity, must be a valid JPG, PNG or GIF image, with dimension not exceeding 300px by 300px. Max allowed size is 200KB\n */\n icon?: string;\n /**\n * Format: int64\n * @description The ID of the product the entity belongs to.\n * @example 123456\n */\n plugin_id?: string;\n /**\n * Format: int64\n * @description The ID of the product the entity belongs to. Null means it has not been associated with a product yet.\n * @example 123456\n */\n plugin_id_nullable?: string | null;\n /**\n * @description The environment the entity belongs to. 0 means it belongs to the production environment, 1 means it belongs to the sandbox environment.\n * @example 0\n * @enum {number}\n */\n environment?: 1 | 0;\n /**\n * Format: int64\n * @description The ID of the user the entity belongs to.\n * @example 123456\n */\n user_id?: string;\n /**\n * Format: int64\n * @description The ID of the installation or site the entity is associated with.\n * @example 123456\n */\n install_id?: string;\n /**\n * Format: int64\n * @description The ID of the installation or site the entity is associated with, a `null` value means it has not been associated with an installation yet.\n * @example 123456\n */\n install_id_nullable?: string | null;\n /**\n * Format: int64\n * @description The ID of the plan associated with the entity.\n * @example 123456\n */\n plan_id?: string;\n /**\n * Format: int64\n * @description The ID of the subscription associated with the entity.\n * @example 123456\n */\n subscription_id?: string;\n /**\n * Format: int64\n * @description The ID of the subscription associated with the entity.\n * @example 123456\n */\n subscription_id_nullable?: string | null;\n /**\n * Format: int64\n * @description The ID of the payment associated to the entity.\n * @example 123456\n */\n payment_id_nullable?: string | null;\n /**\n * Format: int64\n * @description The ID of the plan associated with the entity.\n * @example 123456\n */\n plan_id_nullable?: string | null;\n /**\n * Format: int64\n * @description The ID of the pricing associated with the entity.\n * @example 123456\n */\n pricing_id?: string;\n /**\n * Format: int64\n * @description The ID of the pricing associated with the entity.\n * @example 123456\n */\n pricing_id_nullable?: string | null;\n /**\n * Format: int64\n * @description The ID of the license associated with the entity.\n * @example 123456\n */\n license_id?: string;\n /**\n * Format: int64\n * @description The ID of the license associated with the entity.\n * @example 123456\n */\n license_id_nullable?: string | null;\n /**\n * Format: int64\n * @description The ID of the coupon associated with the entity.\n * @example 123456\n */\n coupon_id?: string;\n /**\n * Format: int64\n * @description The ID of the coupon associated with the entity.\n * @example 123456\n */\n coupon_id_nullable?: string | null;\n /**\n * @description Coupon code associated with the cart.\n * @example BLACKFRIDAY2024\n */\n coupon_code?: string | null;\n /**\n * Format: ipv4|ipv6\n * @description The IP address associated with the entity.\n * @example 0.0.0.0\n */\n ip_nullable?: string | null;\n /**\n * Format: ipv4|ipv6\n * @description The IP address associated with the entity.\n * @example 0.0.0.0\n */\n ip?: string;\n /**\n * @description The [ISO 3166-1 alpha 2](http://www.wikiwand.com/en/ISO_3166-1_alpha-2) two-letter country code associated with the entity.\n * @example us\n */\n country_code_nullable?: string | null;\n /**\n * @description The [ISO 3166-1 alpha 2](http://www.wikiwand.com/en/ISO_3166-1_alpha-2) two-letter country code associated with the entity.\n * @example us\n */\n country_code?: string;\n /**\n * @description The postal/zip code of the location.\n * @example 92710\n */\n zip_postal_code?: string;\n /**\n * @description The postal/zip code of the location.\n * @example 92710\n */\n zip_postal_code_nullable?: string | null;\n /**\n * @description The business VAT number (EU or UK territories) or other tax ID (for example Sales Tax ID for the US).\n * @example GB12345678\n */\n vat_id_nullable?: string | null;\n /**\n * @description The actual tax amount. It could be any kind of tax, not necessarily VAT. For example we support US Sales Tax.\n * @default 0\n * @example 1.24\n */\n vat: number;\n /**\n * Format: uid\n * @description Unique identifier of the caller. The UID must be same when pinging and when activating or deactivating a license. The generation of the UID is a responsibility of the client.\n * @example 7W131pej6bJYV8WYM9KgGoBNB9bCiSrY\n */\n uid?: string;\n /**\n * Format: int64\n * @description The ID of the user the entity belongs to. If NULL then still not associated to any user.\n * @example 123456\n */\n user_id_nullable?: string | null;\n /**\n * @description The URL of the entity.\n * @example https://www.example.com\n */\n url?: string;\n };\n /** @description Some request body schemas that are common to many endpoints. */\n CommonRequestSchemas: {\n /**\n * Format: json\n * @description The JSON data of the endpoint, matching the same schema as the json request body. Must be a valid JSON object.\n * @example {\"name\":\"My Product\"}\n */\n MultipartJsonData?: string;\n };\n /** @description Resource explaining different relational data for migrated entities. For example if you'd want to migrate your product from EDD to Freemius, then your existing subscriptions, payments, licenses etc would have a specific value in their `source` property. To get support migrating from other platform please see our [documentation](https://freemius.com/help/documentation/migration/). */\n Migration: {\n /**\n * @description The source of the migration data. To get support migrating from other platform please see our [documentation](https://freemius.com/help/documentation/migration/).\n * @example ls\n * @enum {string}\n */\n source_external_id?:\n | 'freemius'\n | 'edd'\n | 'others'\n | 'easydigitaldownloads'\n | 'woo'\n | 'wc'\n | 'woocommerce'\n | 'gumroad'\n | 'cc'\n | 'codecanyon'\n | 'tf'\n | 'themeforest'\n | 'appsumo'\n | 'sendowl'\n | 'whmcs'\n | 'ls'\n | 'lemonsqueezy';\n /**\n * @description\n * The source of the migration data. To get support migrating from other platform please see our [documentation](https://freemius.com/help/documentation/migration/).\n *\n * * `0` - Freemius\n * * `1` - Other\n * * `2` - Easy Digital Downloads (EDD)\n * * `3` - WooCommerce (WC)\n * * `4` - Rating Widget\n * * `5` - Gumroad\n * * `6` - CodeCanyon\n * * `7` - ThemeForest\n * * `8` - AppSumo\n * * `9` - SendOwl\n * * `10` - WHMCS\n * * `11` - Lemon Squeezy\n *\n *\n * @enum {number}\n */\n source?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11;\n };\n CheckoutUpgradeLink: {\n /**\n * Format: uri\n * @description The URL to the checkout page.\n */\n url?: string;\n /**\n * @description The settings used to generate the link. This can be fed as-is to the [Freemius Checkout JS SDK](https://github.com/Freemius/freemius-checkout-js) if you're using modals in your website.\n * @example {\n * \"plugin_id\": 1,\n * \"plan_id\": 2,\n * \"licenses\": \"unlimited\"\n * }\n */\n settings?: {\n [key: string]: unknown;\n };\n /**\n * Format: date-time\n * @description The expiration date of the link.\n */\n expires?: string;\n };\n BankAccount: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n /** @description ID of the person. */\n person_id?: number;\n person_type?: components['schemas']['CommonEnums']['PersonType'];\n /** @description Last 4 digits of the account number. */\n account_last4?: string;\n /** @description Name of the account holder. */\n name?: string;\n /** @description Phone number of the account holder. */\n phone?: string;\n /** @description Address line one of the account holder. */\n address_street?: string;\n /** @description Address line two of the account holder. */\n address_apt?: string | null;\n /** @description City of the account holder. */\n address_city?: string;\n /** @description State of the account holder. */\n address_state?: string | null;\n /** @description ZIP or postal code of the account holder. */\n address_zip?: string;\n address_country_code?: components['schemas']['CommonProperties']['country_code'];\n /** @description Name of the bank. */\n bank_name?: string;\n /** @description City and state of the bank. */\n bank_city_state?: string;\n bank_country_code?: components['schemas']['CommonProperties']['country_code'];\n /** @description Swift code of the bank. */\n swift?: string;\n /** @description IFSC number of Indian banks only. */\n ifsc?: string | null;\n /** @description 6 digits Sort code of UK banks only. */\n sort_code?: string | null;\n /** @description 9 digits Routing number for US banks only. */\n aba_rtn?: string | null;\n /** @description Email account for Wise banks only. */\n wise_account_email?: string | null;\n };\n /** @description A Beta participation represents a choice by the user to utilize the beta version of the product. */\n BetaParticipation: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n user_id?: components['schemas']['CommonProperties']['user_id'];\n plugin_id?: components['schemas']['CommonProperties']['plugin_id_nullable'];\n install_id?: components['schemas']['CommonProperties']['install_id_nullable'];\n /** @description Whether the product user is participating in the beta program. */\n is_beta?: boolean;\n };\n /** @description Representation of billing details associated with a person or a business. */\n Billing: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n /**\n * @description The name of the business.\n * @example Freemius, Inc.\n */\n business_name?: string;\n /**\n * @description The first name used in the billing.\n * @example John\n */\n first?: string;\n /**\n * @description The last name used in the billing.\n * @example Doe\n */\n last?: string;\n /**\n * @description The email used in the billing.\n * @example foo@freemius.com\n */\n email?: string;\n /**\n * @description The phone number used in the billing.\n * @example 555-555-5555\n */\n phone?: string;\n /**\n * @description The website used in the billing.\n * @example https://freemius.com\n */\n website?: string;\n /**\n * @description The business VAT number (EU or UK territories) or other tax ID (for example Sales Tax ID for the US).\n * @example GB123456789\n */\n tax_id?: string;\n /**\n * @description The street address used in the billing.\n * @example 21st Jump Street\n */\n address_street?: string;\n /**\n * @description The street address 2 used in the billing.\n * @example Block II\n */\n address_apt?: string;\n /**\n * @description The city used in the billing.\n * @example Atlanta\n */\n address_city?: string;\n /**\n * @description The country used in the billing.\n * @example United States\n */\n address_country?: string;\n address_country_code?: components['schemas']['CommonProperties']['country_code'];\n /**\n * @description The state of the location.\n * @example New York\n */\n address_state?: string;\n /**\n * @description ZIP or postal code.\n * @example 00001\n */\n address_zip?: string;\n };\n /** @description A cart represents a buyer's intent to purchase a product. The state of the cart is based on the action performed by the buyer. You can read our [documentation](https://freemius.com/help/documentation/marketing-automation/cart-abandonment-recovery/) to learn more about it. */\n Cart: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n /**\n * @description The status of the cart.\n * @default visit\n * @enum {string}\n */\n status:\n | 'pricing_visit'\n | 'visit'\n | 'abandoned'\n | 'completed'\n | 'email_1_sent'\n | 'email_2_sent'\n | 'email_3_sent'\n | 'recovered';\n /**\n * @description The mode the checkout app was opened in, when the cart was created. For example\n *\n * - `dashboard`: The checkout was opened through our [WordPress SDK](https://freemius.com/help/documentation/wordpress-sdk/).\n * - `dialog`: The checkout was opened through our [JavaScript SDK](https://freemius.com/help/documentation/selling-with-freemius/freemius-checkout-buy-button/).\n * - `page`: The checkout was opened directly.\n * @default dialog\n * @enum {string}\n */\n mode: 'dashboard' | 'dialog' | 'page';\n payment_method?: components['schemas']['CommonEnums']['PaymentMethodType'];\n plugin_id?: components['schemas']['CommonProperties']['plugin_id'];\n plan_id?: components['schemas']['CommonProperties']['plan_id_nullable'];\n pricing_id?: components['schemas']['CommonProperties']['pricing_id_nullable'];\n /** @description Whether the plan is a trial. */\n is_trial?: boolean;\n billing_cycle?: components['schemas']['CommonEnums']['BillingCycle'];\n install_id?: components['schemas']['CommonProperties']['install_id_nullable'];\n coupon_id?: components['schemas']['CommonProperties']['coupon_id_nullable'];\n country_code?: components['schemas']['CommonProperties']['country_code_nullable'];\n zip_postal_code?: components['schemas']['CommonProperties']['zip_postal_code'];\n vat_id?: components['schemas']['CommonProperties']['vat_id_nullable'];\n user_id?: components['schemas']['CommonProperties']['user_id_nullable'];\n /**\n * @description The prospect's email address.\n * @example doe@example.com\n */\n email?: string;\n /**\n * @description The prospect's first name.\n * @example John\n */\n first?: string;\n /**\n * @description The prospect's last name.\n * @example Doe\n */\n last?: string;\n ip?: components['schemas']['CommonProperties']['ip'];\n /**\n * @description The page URL containing the checkout.\n * @example https://example.com/pricing\n */\n url?: string;\n environment?: components['schemas']['CommonProperties']['environment'];\n /**\n * @description Cart supports [recovery campaign](https://freemius.com/help/documentation/marketing-automation/cart-abandonment-recovery/). If disabled, the recovery campaign will be stopped.\n * @default false\n */\n is_disabled: boolean;\n /**\n * @description If set to `true`, the cart recovery campaign will be non-functional and cannot be re-enabled. This happens if the prospect has clicked the \"unsubscribe\" link from any of the cart recovery emails.\n * @default false\n */\n is_unsubscribed: boolean;\n /**\n * Format: date-time\n * @description The first time the prospect visited the checkout when the cart was being created.\n * @example 2025-01-01 00:00:00\n */\n visited?: string | null;\n /**\n * Format: date-time\n * @description The cart completion date.\n * @example 2025-01-01 00:00:00\n */\n completed?: string | null;\n /**\n * Format: float\n * @description The cart's original price.\n * @example 19.99\n */\n price?: number;\n };\n /** @description A coupon can be used during the checkout to apply some discounts. */\n Coupon: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n /**\n * Format: int64\n * @description The ID of the entity the coupon belongs to.\n * @example 12345\n */\n entity_id?: string;\n /**\n * @description The type of the entity the coupon belongs to.\n * @example plugin\n * @enum {string}\n */\n entity_type?: 'plugin' | 'store' | 'marketplace';\n /**\n * @description Comma separated IDs of plans the coupon would work for. If `null`, coupon supports all plans.\n * @example 123,654,8757\n */\n plans?: string | null;\n /**\n * @description Comma separated licenses quota limits. If `null`, coupon supports all license limits. `0` is used for an unlimited-site license.\n * @example 1,5,10,0\n */\n licenses?: string | null;\n /**\n * @description Comma separated billing cycles. If `null`, coupon supports all billing cycles. `0` is used for lifetime billing cycle.\n * @example 1,12\n */\n billing_cycles?: string | null;\n /**\n * @description The coupon code.\n * @example BLACKFRIDAY2024\n */\n code?: string;\n /** @description The discount amount. */\n discount?: number;\n discount_type?: components['schemas']['CommonEnums']['DiscountType'];\n /**\n * Format: date-time\n * @description Date and time from when the coupon will be activated.\n * @example 2025-04-01 11:13:28\n */\n start_date?: string;\n /**\n * Format: date-time\n * @description Date and time, after which the coupon will be expired.\n * @example 2025-04-30 19:17:21\n */\n end_date?: string;\n /** @description The total number of redemptions of this coupon. */\n redemptions?: number;\n /** @description The total number of redemptions limit of this coupon. */\n redemptions_limit?: number | null;\n /** @description Whether the coupon also supports discount for renewals or first payment only. */\n has_renewals_discount?: boolean;\n /** @description Whether the coupon supports discount for add-ons or not. */\n has_addons_discount?: boolean;\n /** @description Whether to limit the coupon usage one per user. */\n is_one_per_user?: boolean;\n /** @description Whether the coupon is active. Use this flag to temporarily disable the coupon. */\n is_active?: boolean;\n /**\n * @description The user type the coupon is applicable to.\n * @default all\n * @enum {string}\n */\n user_type: 'all' | 'new' | 'current' | 'previous' | 'customer' | 'migrated';\n source?: components['schemas']['Migration']['source'];\n };\n /** @description Class CouponEnriched */\n CouponEnriched: components['schemas']['Coupon'] & {\n /** @description If the discount type is `dollar`, then this field will hold values of absolute discount amount per supported currency. */\n discounts?: {\n /**\n * Format: float\n * @description The discount amount in absolute value for USD currency.\n * @example 10.5\n */\n usd?: number | null;\n /**\n * Format: float\n * @description The discount amount in absolute value for EUR currency.\n * @example 10.5\n */\n eur?: number | null;\n /**\n * Format: float\n * @description The discount amount in absolute value for GBP currency.\n * @example 10.5\n */\n gbp?: number | null;\n };\n };\n /** @description Represents a link between coupons to various special entities. Example: Affiliate coupon tracking, cart abandonment recovery of a product. */\n CouponEntity: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n /**\n * @description The ID of the coupon.\n * @example 12345\n */\n coupon_id?: number;\n /**\n * Format: int64\n * @description The ID of the entity.\n * @example 12345\n */\n entity_id?: string;\n /**\n * @description The type of the entity (Usually `2` which means it is a product or `20` which means it is an affiliate).\n * @example 2\n */\n entity_type?: number;\n /**\n * @description The special coupon type.\n * @enum {string}\n */\n type?:\n | 'affiliate'\n | 'renewals_discount'\n | 'manual_renewals_discount'\n | 'subscription_cancellation'\n | 'cart_recovery'\n | 'exit_intent';\n };\n /** @description A coupon associated with a special checkout cart on conversions and renewals to reduce churn rate. */\n CouponEntityEnriched: components['schemas']['CouponEntity'] & {\n code?: components['schemas']['Coupon']['code'];\n redemptions?: components['schemas']['Coupon']['redemptions'];\n discount?: components['schemas']['Coupon']['discount'];\n discount_type?: components['schemas']['Coupon']['discount_type'];\n discounts?: components['schemas']['CouponEnriched']['allOf']['1']['discounts'];\n has_renewals_discount?: components['schemas']['Coupon']['has_renewals_discount'];\n };\n /** @description Class Customer\n *\n * An entity to store the connection between a user to its gateway's customer ID. */\n Customer: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n user_id?: components['schemas']['CommonProperties']['user_id'];\n /** @description The external ID from the gateway. */\n external_id?: string;\n /**\n * @description The gateway used for the purchase.\n * @enum {string}\n */\n gateway?: 'paypal' | 'stripe' | 'stripe_eu' | 'test';\n };\n /** @description A developer is someone who has registered to sell products on the Freemius platform. */\n Developer: {\n /**\n * @description Email address of the person.\n * @example jane@example.com\n */\n email?: string;\n /**\n * @description First name of the person.\n * @example Jane\n */\n first?: string;\n /**\n * @description Last name of the person.\n * @example Doe\n */\n last?: string;\n /**\n * @description Profile picture URL.\n * @example https://example.com/profile-pic.jpg\n */\n picture?: string;\n /**\n * Format: ipv4|ipv6\n * @description The IP address (v4 or v6).\n * @example 127.0.0.1\n */\n ip?: string | null;\n /**\n * @description Whether the person is trusted or not.\n * @example true\n */\n is_verified?: boolean;\n auth?: components['schemas']['CommonEnums']['AuthenticationType'];\n /**\n * @description The secret key associated with the entity for authorization.\n * @example sk_a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6\n */\n secret_key?: string;\n /**\n * @description The public key associated with the entity for authorization.\n * @example pk_a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6\n */\n public_key?: string;\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n /**\n * @deprecated\n * @description The legacy PayPal email of the developer. Please use the new billing instead.\n * @example payout@example.com\n */\n paypal_email?: string;\n /**\n * @description Additional address of the developer where Freemius will send security related emails.\n * @example security@example.com\n */\n security_email?: string;\n is_trusted?: boolean;\n /**\n * Format: float\n * @description Developer's paid out gross revenue (excluding chargeback fees, payout fees, and refund fees).\n * @example 1000.00\n */\n earnings?: number;\n /**\n * Format: float\n * @description Developer's unpaid gross revenue. Necessary for properly calculating the commission.\n * @example 100.00\n */\n last_cycle_earnings?: number;\n /**\n * Format: json\n * @description Commission structure. The structure `{1000: 0.3, 5000: 0.2, above: 0.1}`, means\n * that there's 30% commission on up to $1,000 rev, 20% on the revenues from $1,001-$5,000 and 10% after $5,001.\n * @example {\"above\":0.1}\n */\n commission?: string;\n };\n /** @description Discount entity holding the relation between a gateway entity and a coupon. */\n Discount: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n /**\n * Format: int64\n * @description The ID of the related entity.\n */\n entity_id?: string;\n /**\n * @description The type of the related entity. Defaults to `payment`.\n * @default payment\n * @enum {string}\n */\n entity_type: 'payment' | 'subscription';\n /**\n * @description The type of discount. Possible values are `prorate` and `subscription_cancellation`. Defaults to `prorate`.\n * @default prorate\n * @enum {string}\n */\n type: 'prorate' | 'subscription_cancellation';\n /**\n * Format: float\n * @description Discount amount in USD.\n * @example 10.0\n */\n discount?: number;\n /**\n * Format: int64\n * @description The ID of the related coupon.\n */\n coupon_id?: string;\n };\n /** @description Represents an email template. This feature is not fully made and should not be used. */\n EmailTemplate: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n plugin_id?: components['schemas']['CommonProperties']['plugin_id'];\n /**\n * @description The category of the email template.\n * @example user_register\n */\n category?: string;\n /**\n * @description The subject of the email.\n * @example Welcome to Freemius!\n */\n subject?: string;\n /** @description The plaintext version of the email. */\n plain?: string;\n /** @description The HTML version of the email. */\n html?: string;\n };\n /** @description A record of an event logged in the system. */\n EventLog: {\n state?: components['schemas']['CommonEnums']['EventLogState'];\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n /**\n * @description The type of event. See our documented list of the available [event types](https://freemius.com/help/documentation/marketing-automation/events-webhooks/#event_types).\n * @example license.activated\n */\n type?: string;\n /**\n * Format: int64\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id?: string;\n plugin_id?: components['schemas']['CommonProperties']['plugin_id_nullable'];\n user_id?: components['schemas']['CommonProperties']['user_id_nullable'];\n install_id?: components['schemas']['CommonProperties']['install_id_nullable'];\n /** @description The details of the triggered event. This can be a `string` showing ID of the associated entity, an `object` with additional information of the event, or array of objects. */\n data?: unknown;\n /**\n * @description The type of trigger for the event.\n * @example system\n * @enum {string}\n */\n event_trigger?: 'system' | 'developer' | 'plugin' | 'user' | 'install';\n /**\n * Format: date-time\n * @description The time the event was processed. If it is `null`, the event is pending.\n * @example 2025-01-01 12:00:00\n */\n process_time?: string | null;\n };\n /** @description A feature is a distinct functionality or capability of a product that delivers value to users by addressing specific needs or solving problems. */\n Feature: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n /**\n * Format: int64\n * @description The ID of the Plugin.\n * @example 1234\n */\n plugin_id?: string;\n /**\n * @description The title of the feature.\n * @example Pageviews per month\n */\n title?: string;\n /**\n * @description The description of the feature, up to 256 characters. This will be displayed as the description in the tooltip on the pricing page.\n * @example The number of times a page is loaded.\n */\n description?: string;\n /**\n * @description Whether the feature is highlighted and will be shown in the main pricing table. If set as `false`, the feature will be only shown in the plans' comparison table.\n * @example true\n */\n is_featured?: boolean;\n };\n FeatureEnriched: components['schemas']['Feature'] & {\n /**\n * @description The value of the feature associated with the plan. For example the feature name could be \"AI Credits\" and the value could be \"1000\".\n * @example 1000 Units\n */\n value?: string;\n plan_id?: components['schemas']['CommonProperties']['plan_id'];\n };\n FeaturePlan: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n /**\n * Format: int64\n * @description The ID of the plan that the feature is associated.\n * @example 1234\n */\n plan_id?: string;\n /**\n * @description The value associated with the feature.\n * @example 25k\n */\n value?: string | null;\n };\n /** @description Represents an installation of a product on a site. For WordPress products (themes, plugins) it can or cannot have a license. For SaaS or downloadable software, it would always have a license. Please see license activation for more information. */\n Install: {\n /**\n * @description The secret key associated with the entity for authorization.\n * @example sk_a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6\n */\n secret_key?: string;\n /**\n * @description The public key associated with the entity for authorization.\n * @example pk_a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6\n */\n public_key?: string;\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n /**\n * Format: int64\n * @description The ID of the site.\n * @example 1234\n */\n site_id?: string;\n plugin_id?: components['schemas']['CommonProperties']['plugin_id'];\n user_id?: components['schemas']['CommonProperties']['user_id'];\n /**\n * @description The site URL.\n * @example https://example.com\n */\n url?: string | null;\n /**\n * @description The site title.\n * @example Catwalk Designs\n */\n title?: string | null;\n /**\n * @description The Product version.\n * @example 1.0.0\n */\n version?: string;\n /**\n * Format: int64\n * @description The ID of the plan associated with the product that the install has a license activation. If `null` it means the install is using the free plan.\n * @example 1234\n */\n plan_id?: string;\n license_id?: components['schemas']['CommonProperties']['license_id_nullable'];\n /**\n * Format: int64\n * @description The ID of the trial license associated to the product. If this is not a trial, this will be `null`.\n * @example 1234\n */\n trial_plan_id?: string;\n /**\n * Format: date-time\n * @description The product trial license expiry date. If this is not a trial, this will be null.\n * @example 2025-01-01 00:00:00\n */\n trial_ends?: string | null;\n subscription_id?: components['schemas']['CommonProperties']['subscription_id_nullable'];\n /**\n * Format: float\n * @description The gross amount the install has spent on the product. This includes one time purchase, or subscriptions and renewals.\n * @example 100\n */\n gross?: number;\n country_code?: components['schemas']['CommonProperties']['country_code_nullable'];\n /**\n * @description The language specified for the product install.\n * @example en-GB\n */\n language?: string | null;\n /**\n * @description The platform version (e.g WordPress version).\n * @example 1.0.0\n */\n platform_version?: string | null;\n /**\n * @description The Freemius SDK version. Only relevant for WordPress products using the Freemius [WP SDK](https://freemius.com/help/documentation/wordpress-sdk/).\n * @example 1.2.2\n */\n sdk_version?: string | null;\n /**\n * @description The programming language version (e.g PHP version).\n * @example 5.6\n */\n programming_language_version?: string | null;\n /** @description If the product is actively installed on the site. */\n is_active?: boolean;\n /** @description If the product is disconnected on the site. */\n is_disconnected?: boolean;\n /** @description If the install using the premium code. Relevant only for WP Products. */\n is_premium?: boolean;\n /** @description If the product is uninstalled on the site. */\n is_uninstalled?: boolean;\n /** @description If the product is locked on the site. */\n is_locked?: boolean;\n source?: components['schemas']['Migration']['source'];\n /**\n * Format: date-time\n * @description Time when the product was upgraded to the current version. If never upgraded since the initial installation, this will be `null`.\n * @example 2025-01-01 00:00:00\n */\n upgraded?: string | null;\n /**\n * Format: date-time\n * @description The last time the product was used on the site.\n * @example 2025-01-01 00:00:00\n */\n last_seen_at?: string | null;\n /**\n * @description The last product version update used on the site. If not updated, this will be null.\n * @example 1.2.2\n */\n last_served_update_version?: string | null;\n };\n /** @description Represents the relation between an install and its clone. These entities are usually created when a user clones the site in staging or locally. */\n InstallClone: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n install_id?: components['schemas']['CommonProperties']['install_id'];\n /**\n * Format: int64\n * @description The ID of the newly created cloned `Install`.\n * @example 1234\n */\n new_install_id?: string | null;\n /**\n * @description The install's URL (install.url) when the clone was identified.\n * @example https://example.com\n */\n install_url?: string;\n /**\n * @description The URL of the site where the clone was identified.\n * @example https://staging.example.com\n */\n site_url?: string;\n /**\n * @description The state of the clone.\n * @enum {string}\n */\n state?: 'pending' | 'resolved';\n /**\n * @description The resolution or purpose of the clone site.\n * @enum {string|null}\n */\n resolution?: 'temporary_duplicate' | 'new_home' | 'long_term_duplicate' | null;\n };\n InstallMetadata: {\n permissions?: {\n /** @description Whether the site level tracking is on, for example the site title, URL, language etc. */\n site?: boolean;\n /** @description Whether the user level tracking is on, for example the user email, first and last name, etc. */\n user?: boolean;\n /** @description Whether the extensions tracking is on (for example list of plugins and themes installed on the same WordPress website). */\n extensions?: boolean;\n };\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n install_id?: components['schemas']['CommonProperties']['install_id'];\n };\n /** @description A license represents authorization to use available features of the product. */\n License: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n plugin_id?: components['schemas']['CommonProperties']['plugin_id'];\n user_id?: components['schemas']['CommonProperties']['user_id_nullable'];\n plan_id?: components['schemas']['CommonProperties']['plan_id'];\n pricing_id?: components['schemas']['CommonProperties']['pricing_id_nullable'];\n /**\n * @description The maximum number of license activations. If `null` then the license will support unlimited activations.\n * @example 10\n */\n quota?: number | null;\n /**\n * @description The total number of production activation the license has. This does not count local or staging environment activations.\n * @example 1\n */\n activated?: number;\n /**\n * @description The number of times the license is activated on local or staging environments.\n * @example 1\n */\n activated_local?: number | null;\n /**\n * Format: date-time\n * @description The expiration date of the license. If `null` then it's a lifetime license.\n * @example 2025-12-31 23:59:59\n */\n expiration?: string | null;\n /**\n * @description The license key. This is used for activating the license on the user's site.\n * @example sk_123FGqM456Pa786WtOp%^+67Y+;sXXz\n */\n secret_key?: string;\n /**\n * @description Whether the license offers unlimited local or staging environment activations.\n * @default true\n */\n is_free_localhost: boolean;\n /**\n * @description Whether to block features after expiration of the license. If set to `false`, this would not block features, would only block updates.\n * @default true\n */\n is_block_features: boolean;\n /** @description If the license is canceled from the Developer Dashboard. */\n is_cancelled?: boolean;\n /** @description Guide the [Freemius WP SDK](https://github.com/Freemius/wordpress-sdk) when the product should be running in a [white-label](https://freemius.com/help/documentation/users-account-management/license-security/#white_label_mode) mode. */\n is_whitelabeled?: boolean;\n environment?: components['schemas']['CommonProperties']['environment'];\n source?: components['schemas']['Migration']['source'];\n };\n /** @description A license associated with a subscription or a bundle. */\n LicenseEnriched: components['schemas']['License'] & {\n /** @description The ID of the associated bundle license (**Only** available when `enriched` option is set). */\n parent_plan_id?: number;\n /**\n * Format: date-time\n * @description The end date of a trial subscription (**Only** available when `enriched` option is set).\n * @example 2021-01-01 00:00:00\n */\n trial_ends?: string;\n /**\n * Format: int64\n * @description The ID of the associated subscription (**Only** available when `enriched` option is set).\n * @example 1234\n */\n subscription_id?: string;\n /**\n * Format: float\n * @description The total gross price associated with the subscription (**Only** available when `enriched` option is set).\n * @example 102.34\n */\n subscription_total_gross?: number;\n /**\n * Format: float\n * @description The initial amount associated with the subscription (**Only** available when `enriched` option is set).\n * @example 105.99\n */\n subscription_initial_amount?: number;\n /**\n * @description The payment gateway associated with the subscription (**Only** available when `enriched` option is set).\n * @example stripe\n * @enum {string}\n */\n subscription_gateway?: 'paypal' | 'stripe' | 'test';\n /**\n * @description The number of failed payments associated with the subscription (**Only** available when `enriched` option is set).\n * @example 2\n */\n subscription_failed_payments?: number;\n /**\n * Format: date-time\n * @description The renewal date of the subscription (**Only** available when `enriched` option is set).\n * @example 2025-01-01 00:00:00\n */\n next_payment?: string | null;\n /**\n * Format: int64\n * @description The ID of the associated bundle license. This will be populated only when the license is associated with a parent license from a bundle (**Only** available when `enriched` option is set).\n * @example 1234\n */\n parent_license_id?: string;\n /**\n * Format: int64\n * @description The ID of the bundle that is associated with the parent license (**Only** available when `enriched` option is set).\n * @example 1234\n */\n parent_license_bundle_id?: string;\n /**\n * @description The title of the plan associated with the bundle (**Only** available when `enriched` option is set).\n * @example Agency\n */\n parent_plan_title?: string | null;\n /**\n * @description The slug of the plan associated with the bundle (**Only** available when `enriched` option is set).\n * @example agency\n */\n parent_plan_name?: string | null;\n };\n /** @description Represents a product from the market, not necessarily powered by Freemius. For WordPress product this usually represents a themes or plugins installed in the same site as the Freemius powered product. Only after the user chooses to opt-in, such data is collected and sent to Freemius. */\n MarketItem: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n plugin_id?: components['schemas']['CommonProperties']['plugin_id_nullable'];\n /**\n * @description Product slug name.\n * @example catwalk-reviews\n */\n slug?: string;\n /**\n * @description Products name.\n * @example Catwalk Reviews\n */\n title?: string;\n /**\n * @description The business model of the product. We can only detect the model if the product is also integrated with Freemius.\n * @default free\n * @enum {string}\n */\n model: 'free' | 'premium' | 'freemium';\n /**\n * @description The type of the product. Right now we only support WordPress products, i.e, plugins and themes.\n * @default plugin\n * @enum {string}\n */\n type: 'plugin' | 'theme';\n /**\n * @description The number of product downloads.\n *\n * > We are not updating this field yet. We plan to do it in the future.\n * @example 1000\n */\n downloads?: number;\n /**\n * @description The number of product installs.\n *\n * > We are not updating this field yet. We plan to do it in the future.\n * @example 1000\n */\n installs_count?: number;\n /**\n * Format: date-time\n * @description The date of the last product release/update.\n *\n * > We are not updating this field yet. We plan to do it in the future.\n * @example 2025-01-01 00:00:00\n */\n last_release?: string;\n /**\n * @description The version number of the latest release/update.\n * @example 1.0.0\n */\n newest_version?: string;\n };\n Member: components['schemas']['Developer'] & {\n plugin_id?: components['schemas']['CommonProperties']['plugin_id'];\n /**\n * @description The user role assigned to the team member.\n * @enum {string}\n */\n role?: 'admin' | 'developer' | 'support' | 'accountant';\n };\n /** @description A written remark that provides additional context, clarification, or explanation related to a specific record. */\n Note: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n /**\n * @description The ID of the scope entity that this note is associated with.\n * @example 12345\n */\n scope_entity_id?: number;\n /**\n * @description The type of the scope entity that this note is associated with.\n * @enum {string}\n */\n scope_entity_type?: 'plugin' | 'store';\n /**\n * @description The ID of the entity that this note is associated with.\n * @example 12345\n */\n entity_id?: number;\n /**\n * @description The type of the entity that this note is associated with.\n * @enum {string}\n */\n entity_type?: 'coupon' | 'user' | 'payment' | 'subscription' | 'license';\n /**\n * @description The note.\n * @example This is a note\n */\n note?: string;\n };\n /** @description An acknowledgement of a payment recevied for the following cases:\n * - Initial payment of a subscription.\n * - Renewal payment of a subscription.\n * - One-time payment for a product.\n *\n * Along with refunds, disputes, chargebacks etc. */\n Payment: {\n user_id?: components['schemas']['CommonProperties']['user_id'];\n install_id?: components['schemas']['CommonProperties']['install_id_nullable'];\n plan_id?: components['schemas']['CommonProperties']['plan_id'];\n pricing_id?: components['schemas']['CommonProperties']['pricing_id_nullable'];\n license_id?: components['schemas']['CommonProperties']['license_id'];\n ip?: components['schemas']['CommonProperties']['ip_nullable'];\n country_code?: components['schemas']['CommonProperties']['country_code'];\n zip_postal_code?: components['schemas']['CommonProperties']['zip_postal_code_nullable'];\n vat_id?: components['schemas']['CommonProperties']['vat_id_nullable'];\n coupon_id?: components['schemas']['CommonProperties']['coupon_id_nullable'];\n /**\n * Format: int64\n * @description The ID of the user card that was used for this payment.\n * @example 12345\n */\n user_card_id?: string;\n source?: components['schemas']['Migration']['source'];\n plugin_id?: components['schemas']['CommonProperties']['plugin_id'];\n /**\n * @description The external ID of the gateway entity.\n * @example abcde12345\n */\n external_id?: string;\n /** @description The gateway used for the purchase. The gateway will be set to `null` when purchasing a product with a 100% discount. */\n gateway?: string | null;\n environment?: components['schemas']['CommonProperties']['environment'];\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n currency?: components['schemas']['CommonEnums']['Currency'];\n /** @example Refunded due to a bug in the plugin. */\n refund_reason?: string | null;\n subscription_id?: components['schemas']['CommonProperties']['subscription_id_nullable'];\n /**\n * Format: float\n * @description The payment amount (not including taxes).\n * @example 2075.45\n */\n gross?: number;\n /**\n * Format: int64\n * @description The ID of the payment that this payment is bound to, in case of a refund or chargeback/dispute.\n * @example 123456\n */\n bound_payment_id?: string;\n /**\n * Format: float\n * @description The fee that the gateway took for processing this payment.\n * @default 0\n * @example 2.99\n */\n gateway_fee: number;\n vat?: components['schemas']['CommonProperties']['vat'];\n /**\n * @description If the payment is a renewal.\n * @default false\n */\n is_renewal: boolean;\n type?: components['schemas']['CommonEnums']['PaymentType'];\n };\n /** @description A plan defines the features available to the users. It can have different set of pricing per billing cycle, quota, currency etc. */\n Plan: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n plugin_id?: components['schemas']['CommonProperties']['plugin_id'];\n /**\n * Format: slug\n * @description The name of the plan. Only lowercase characters allowed.\n * @example professional\n */\n name?: string;\n /**\n * @description The title of the plan. This is the human readable name of the plan. Please do not add the suffix `Plan` to the title, as Freemius does that for you at various places.\n * @example Professional\n */\n title?: string;\n /**\n * @description The description of the plan.\n * @example For small to medium businesses.\n */\n description?: string | null;\n /**\n * @description Whether the plan offers unlimited local or staging activations with the same license.\n * @default true\n */\n is_free_localhost: boolean;\n /**\n * @description Whether to block features on expiration of **annual** licenses. If `false`, does not block features but only block updates and support.\n * @default true\n */\n is_block_features: boolean;\n /**\n * @description Whether to block particular features on expiration of **monthly** licenses. If `false`, does not block features but only block updates and support.\n * @default true\n */\n is_block_features_monthly: boolean;\n /**\n * @description The type of the license. `0` for per domain license. `1` for per subdomain license.\n * @default 0\n * @enum {integer}\n */\n license_type: 0 | 1;\n /**\n * @description The number of days a trial period will last. If `null` the plan does not support trials.\n * @example 14\n */\n trial_period?: number | null;\n /** @description Whether to require a subscription payment for the trial period. */\n is_require_subscription?: boolean;\n /**\n * @description The Knowledge Base URL.\n * @example https://example.com/help/documentation\n */\n support_kb?: string | null;\n /**\n * @description The support Forum URL.\n * @example https://example.com/support\n */\n support_forum?: string | null;\n /**\n * @description The support email address.\n * @example support@example.com\n */\n support_email?: string | null;\n /**\n * @description The support phone contact.\n * @example 555-555-5555\n */\n support_phone?: string | null;\n /** @description Is a personal success manager allocated with the plan. */\n is_success_manager?: boolean;\n /** @description Whether this is a featured plan. */\n is_featured?: boolean;\n /** @description Whether to hide the plan from the auto-generated pricing page. Mostly relevant for WordPress products and our WordPress SDK. Please see our [pricing-page](https://github.com/Freemius/pricing-page/) library to implement your own. */\n is_hidden?: boolean;\n };\n /**\n * Product\n * @description A **product** is a software that is being sold on Freemius. It can be a WordPress plugin, theme, SaaS, or any other software that is being sold on Freemius.\n */\n Plugin: {\n /**\n * @description The secret key associated with the entity for authorization.\n * @example sk_a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6\n */\n secret_key?: string;\n /**\n * @description The public key associated with the entity for authorization.\n * @example pk_a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6\n */\n public_key?: string;\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n /**\n * Format: int64\n * @description If the product is an add-on then this is the ID of the parent product.\n * @example 123456\n */\n parent_plugin_id?: string | null;\n /**\n * Format: int64\n * @description The ID of the developer that owns the product.\n * @example 123456\n */\n developer_id?: string;\n /**\n * Format: int64\n * @description The ID of the store that the product is being sold on.\n * @example 123456\n */\n store_id?: string;\n /**\n * @description The `slug` of the product. If your plugin is listed on `WordPress.org` repository, use the exact slug.\n * @example my-freemius-plugin\n */\n slug?: string;\n /**\n * @description The title of the product.\n * @example My Freemius Plugin\n */\n title?: string;\n environment?: components['schemas']['CommonProperties']['environment'];\n /**\n * @description Product's icon (profile picture).\n * @example https://img.freemius.com/plugin-icon-blue.png\n */\n icon?: string | null;\n /**\n * Format: int64\n * @description Default plan ID of the product.\n */\n default_plan_id?: string;\n /**\n * @description Comma separated, ordered plans collection.\n * @example 123456,123457,123458\n */\n plans?: string;\n /**\n * @description Comma separated, ordered features collection.\n * @example 123456,123457,123458\n */\n features?: string;\n /** @description Money-back guarantee in days. */\n money_back_period?: number;\n refund_policy?: components['schemas']['CommonEnums']['RefundPolicy'];\n /** @description Renewals discount that will be applied to the chosen plan. */\n annual_renewals_discount?: number | null;\n renewals_discount_type?: components['schemas']['CommonEnums']['RenewalsDiscountType'];\n /** @description A flag that controls the visibility of add-ons in the in-dashboard add-ons marketplace. Defaults to true. Only applicable if the product is an add-on. */\n is_released?: boolean;\n /** @description A flag that controls whether the SDK should be required or not during deployment of a version. It defaults to `true`. */\n is_sdk_required?: boolean;\n /** @description Determines if the pricing should be visible in the in-SDK pricing page. Defaults to true. Turn this off during the development of a new product. */\n is_pricing_visible?: boolean;\n /** @description Set to true if the free version of the module is hosted on WordPress.org. Defaults to true. */\n is_wp_org_compliant?: boolean;\n /** @description Total number of opted in sites which were logged with the SDK. */\n installs_count?: number;\n /** @description Total number of active sites where the SDK is active. */\n active_installs_count?: number;\n /** @description The number of \"free\" version of the product that were deployed from Freemius. */\n free_releases_count?: number;\n /** @description The number of \"premium\" version of the product that were deployed from Freemius. */\n premium_releases_count?: number;\n /** @description Total number of payments recorded for the product. */\n total_purchases?: number;\n /** @description Total number of subscriptions recorded for the product. */\n total_subscriptions?: number;\n /** @description Total number of renewals recorded for the product. */\n total_renewals?: number;\n /**\n * @description Total number of failed payments recorded for the product.\n * @example 1234\n */\n total_failed_purchases?: number;\n /**\n * Format: float\n * @description Total gross revenues.\n * @example 1234.56\n */\n earnings?: number;\n type?: components['schemas']['CommonEnums']['ProductType'];\n /** @description Determines whether the product is categorized as a static product (for example, a widget or a template). */\n is_static?: boolean;\n };\n /**\n * ProductEmailAddress\n * @description Represents the email address setup associated with the product.\n */\n PluginEmailAddress: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n plugin_id?: components['schemas']['CommonProperties']['plugin_id'];\n store_id?: components['parameters']['store_id'];\n /**\n * @description The general system email address.\n * @example foo@example.com\n */\n general?: string | null;\n /**\n * @description The label to the general system email address.\n * @example Company Support\n */\n general_name?: string | null;\n /**\n * @description The do-not-reply email address.\n * @example donotreply@example.com\n */\n dont_reply?: string | null;\n /**\n * @description The label to the do-not-reply email address.\n * @example Do Not Reply\n */\n dont_reply_name?: string | null;\n /**\n * @description The personal assistance email address.\n * @example personalmanager@example.com\n */\n personal?: string | null;\n /**\n * @description The label to the personal assistance email address.\n * @example John Doe\n */\n personal_name?: string | null;\n /**\n * @description The technical support representative email address.\n * @example techsupport@example.com\n */\n personal_technical?: string | null;\n /**\n * @description The label to the technical support representative email address.\n * @example Tech Support\n */\n personal_technical_name?: string | null;\n /**\n * @description The happiness representative email address.\n * @example support@example.com\n */\n personal_setup?: string | null;\n /**\n * @description The label to the happiness representative email address.\n * @example Support\n */\n personal_setup_name?: string | null;\n /**\n * @description The general support email address.\n * @example support@example.com\n */\n support?: string | null;\n /**\n * @description The label to the general support email address.\n * @example Support\n */\n support_name?: string | null;\n };\n /**\n * ProductInfo\n * @description The basic information about a product.\n */\n PluginInfo: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n plugin_id?: components['schemas']['CommonProperties']['plugin_id'];\n url?: components['schemas']['CommonProperties']['url'];\n /**\n * @description The description of the product.\n * @example Calculate profits for small to medium businesses. This product is a must-have for any business owner who intends to view the profits of their business.\n */\n description?: string;\n /**\n * @description The short description of the product.\n * @example Calculate profits for small to medium businesses.\n */\n short_description?: string;\n banner_url?: components['schemas']['CommonProperties']['url'];\n card_banner_url?: components['schemas']['CommonProperties']['url'];\n /**\n * @description The selling point one of the product.\n * @example Ability to use stunning feature x.\n */\n selling_point_0?: string;\n /**\n * @description The selling point two of the product.\n * @example Ability to use stunning feature y.\n */\n selling_point_1?: string;\n /**\n * @description The selling point three of the product.\n * @example Ability to use stunning feature z.\n */\n selling_point_2?: string;\n /**\n * @description The URLs of the product screenshot.\n * @example {\n * \"screenshot_0\": \"https://exmaple.com/\",\n * \"screenshot_1\": \"https://exmaple.com/\",\n * \"screenshot_2\": \"https://exmaple.com/\",\n * \"screenshot_3\": \"https://exmaple.com/\"\n * }\n */\n screenshots?: {\n [key: string]: unknown;\n };\n };\n /**\n * ProductReview\n * @description Represents a customer's opinion after using a product. It can be generated by a real user or a developer. The review can be featured on the pricing page.\n */\n PluginReview: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n plugin_id?: components['schemas']['CommonProperties']['plugin_id'];\n /** @description The external ID of the review (in case migrating from another system). */\n external_id?: string;\n user_id?: components['schemas']['CommonProperties']['user_id_nullable'];\n /**\n * @description The score of the review.\n * @example 80\n */\n rate?: number;\n /**\n * @description The title of the review.\n * @example Great plugin! It works perfectly.\n */\n title?: string;\n /**\n * @description The content of the review.\n * @example I love this plugin! It has all the features I need and more. The support team is also very responsive and helpful. Highly recommend!\n */\n text?: string;\n /**\n * @description The full name of the reviewer.\n * @example John Doe\n */\n name?: string;\n /**\n * @description The job title of the reviewer.\n * @example Software Engineer\n */\n job_title?: string;\n /**\n * @description The company name of the reviewer.\n * @example Example Software Inc.\n */\n company?: string;\n company_url?: components['schemas']['CommonProperties']['url'];\n picture?: components['schemas']['CommonProperties']['icon'];\n /**\n * @description The URL of the reviewer's profile.\n * @example https://example.com/profile\n */\n profile_url?: string;\n license_id?: components['schemas']['CommonProperties']['license_id'];\n /**\n * @description Whether this is a genuine review generated by a real user.\n * @default true\n */\n is_verified: boolean;\n /**\n * @description Whether the review should be included in marketing material (e.g. pricing page).\n * @default false\n */\n is_featured: boolean;\n };\n /**\n * ProductTag\n * @description A product tag represents a version of the product that is available for download by users.\n */\n PluginTag: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n plugin_id?: components['schemas']['CommonProperties']['plugin_id'];\n /**\n * Format: int64\n * @description The ID of a developer.\n * @example 1234\n */\n developer_id?: string;\n /**\n * @description The `slug` of the product. This is auto-generated from your product settings.\n * @example my-freemius-plugin\n */\n slug?: string | null;\n /**\n * @description The `slug` of the premium product. This is auto-generated from your product's settings.\n * @example my-freemius-plugin-pro\n */\n premium_slug?: string | null;\n /**\n * Format: semver\n * @description The version of the product. For WordPress.org products (plugins and themes), we recommend using semver semantics to support composer integration.\n * @example 1.0.0\n */\n version?: string;\n /**\n * @description The Freemius SDK version. Only relevant for WordPress products using the Freemius [WP SDK](https://freemius.com/help/documentation/wordpress-sdk/).\n * @example 1.2.2\n */\n sdk_version?: string;\n /**\n * @description The platform version required (e.g WordPress version).\n * @example 1.0.0\n */\n requires_platform_version?: string | null;\n /**\n * @description The programming language version (e.g PHP version).\n * @example 5.6\n */\n requires_programming_language_version?: string | null;\n /**\n * @description The tested platform version that the product is compatible (e.g WordPress version).\n * @example 1.0.0\n */\n tested_up_to_version?: string | null;\n /**\n * @description The number of times the product has been downloaded.\n * @example 1234\n */\n downloaded?: number;\n /** @description If the product has a free version. */\n has_free?: boolean;\n /** @description If the product has a premium version. */\n has_premium?: boolean;\n /**\n * @description The release mode of the product.\n * @enum {string}\n */\n release_mode?: 'released' | 'pending' | 'beta';\n /**\n * @description The maximum number of downloads allowed for this version. This is used for [staged rollout](https://freemius.com/help/documentation/release-management/staged-rollouts/) of WordPress products. Unlimited number is set as `null`.\n * @example 50\n */\n limit?: number;\n /**\n * @description The number of unique users that have downloaded the product.\n * @example 1234\n */\n uniques?: number;\n /**\n * @description Determines whether the version is incremental or not.\n * @example true\n */\n is_incremental?: boolean;\n };\n /** @description The pricing represents the cost of a quota and billing cycles of a plan. */\n Pricing: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n currency?: components['schemas']['CommonEnums']['Currency'];\n /**\n * Format: int64\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id?: string;\n /**\n * @description The number of activations or quota supported by the license that will be created through the pricing (Using [Freemius Checkout](https://freemius.com/help/documentation/selling-with-freemius/freemius-checkout-buy-button/)). Use `null` for unlimited activations or quota.\n * @example 10\n */\n licenses?: number | null;\n /**\n * Format: float\n * @description The price for a single month.\n * @example 59.99\n */\n monthly_price?: number | null;\n /**\n * Format: float\n * @description The price for one year.\n * @example 159.99\n */\n annual_price?: number | null;\n /**\n * Format: float\n * @description The lifetime price.\n * @example 359.99\n */\n lifetime_price?: number | null;\n /** @description Whether to [whitelabel](https://freemius.com/help/documentation/users-account-management/license-security/#white_label_mode) the license that will be created from this pricing upon successful Checkout. */\n is_whitelabeled?: boolean;\n /** @description Whether to hide the pricing from checkout and the pricing page in the WP dashboard. */\n is_hidden?: boolean;\n };\n /** @description Settings associated with an element. */\n Setting: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n /** @description The type of the setting. */\n setting_type?: number;\n /**\n * Format: int64\n * @description The ID of the element the setting is associated with.\n * @example 1234\n */\n element_id?: string;\n /** @description The type of the element. It is unique for each entity type. */\n element_type?: number;\n /**\n * Format: json\n * @description JSON encoded data of the settings.\n * @example {\"key\":\"value\"}\n */\n data?: string;\n };\n /** @description A subscription is created when a user uses [Freemius Checkout](https://freemius.com/wordpress/checkout/) to purchase or subscribe to a plan of a product. */\n Subscription: {\n user_id?: components['schemas']['CommonProperties']['user_id'];\n install_id?: components['schemas']['CommonProperties']['install_id_nullable'];\n plan_id?: components['schemas']['CommonProperties']['plan_id'];\n pricing_id?: components['schemas']['CommonProperties']['pricing_id_nullable'];\n license_id?: components['schemas']['CommonProperties']['license_id'];\n ip?: components['schemas']['CommonProperties']['ip_nullable'];\n country_code?: components['schemas']['CommonProperties']['country_code'];\n zip_postal_code?: components['schemas']['CommonProperties']['zip_postal_code_nullable'];\n vat_id?: components['schemas']['CommonProperties']['vat_id_nullable'];\n coupon_id?: components['schemas']['CommonProperties']['coupon_id_nullable'];\n /**\n * Format: int64\n * @description The ID of the user card that was used for this payment.\n * @example 12345\n */\n user_card_id?: string;\n source?: components['schemas']['Migration']['source'];\n plugin_id?: components['schemas']['CommonProperties']['plugin_id'];\n /**\n * @description The external ID of the gateway entity.\n * @example abcde12345\n */\n external_id?: string;\n /** @description The gateway used for the purchase. The gateway will be set to `null` when purchasing a product with a 100% discount. */\n gateway?: string | null;\n environment?: components['schemas']['CommonProperties']['environment'];\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n currency?: components['schemas']['CommonEnums']['Currency'];\n /**\n * Format: float\n * @description The tax rate as a fraction. It will either be US sales tax or VAT.\n * @example 1.00\n */\n tax_rate?: number;\n /**\n * Format: float\n * @description The total gross amount of the subscription, including taxes.\n * @example 1.21\n */\n total_gross?: number;\n /**\n * Format: float\n * @description The plan's original amount per cycle (not including taxes).\n * @example 1.00\n */\n amount_per_cycle?: number;\n /**\n * Format: float\n * @description The initial payment amount (not including taxes).\n * @example 1.00\n */\n initial_amount?: number;\n /**\n * Format: float\n * @description The renewals amount (not including taxes).\n * @example 1.00\n */\n renewal_amount?: number;\n /**\n * @description The renewals discount that will be applied to the chosen plan.\n * @example 1\n */\n renewals_discount?: number;\n renewals_discount_type?: components['schemas']['CommonEnums']['RenewalsDiscountType'];\n billing_cycle?: components['schemas']['CommonEnums']['BillingCycle'];\n /**\n * Format: float\n * @description Any outstanding balance that the user has for this subscription.\n * @example 1.00\n */\n outstanding_balance?: number;\n /**\n * @description Number of failed payments associated with the subscription.\n * @example 1\n */\n failed_payments?: number;\n /**\n * Format: date-time\n * @description The date time when the trial period ends. If `null` the subscription is not associated with a trial.\n * @example 2025-01-01 00:00:00\n */\n trial_ends?: string | null;\n /**\n * Format: date-time\n * @description Datetime of the next payment, or `null` if cancelled.\n * @example 2025-01-01 00:00:00\n */\n next_payment?: string | null;\n /**\n * Format: date-time\n * @description Datetime of the cancellation.\n * @example 2025-01-01 00:00:00\n */\n canceled_at?: string | null;\n };\n /** @description A trial represents a user's trial period for a product. Please read our [documentation](https://freemius.com/help/documentation/selling-with-freemius/free-trials/) to learn more about trials. */\n Trial: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n plugin_id?: components['schemas']['CommonProperties']['plugin_id'];\n user_id?: components['schemas']['CommonProperties']['user_id'];\n payment_id?: components['schemas']['CommonProperties']['payment_id_nullable'];\n subscription_id?: components['schemas']['CommonProperties']['subscription_id_nullable'];\n license_id?: components['schemas']['CommonProperties']['license_id_nullable'];\n /**\n * Format: date-time\n * @description The date and time the trial ends, under UTC timezone.\n * @example 2025-01-01 00:00:00\n */\n trial_ends_at?: string;\n /** @description Whether the trial was created with a payment method. Freemius supports both free and paid trials. */\n with_payment_method?: boolean;\n /**\n * Format: date-time\n * @description The date and time the trial was cancelled, under UTC timezone. If `null` the trial has not been cancelled.\n * @example 2025-01-01 00:00:00\n */\n canceled_at?: string | null;\n /**\n * Format: date-time\n * @description The date and time the trial was converted to a paid subscription or one-time purchase, under UTC timezone.\n * If `null` the trial has not been converted.\n * @example 2025-01-01 00:00:00\n */\n converted_at?: string | null;\n environment?: components['schemas']['CommonProperties']['environment'];\n };\n /** @description An uninstall represents a user uninstalling a product from their site. This is different from deleting. */\n Uninstall: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n plugin_id?: components['schemas']['CommonProperties']['plugin_id'];\n install_id?: components['schemas']['CommonProperties']['install_id'];\n /**\n * Format: int64\n * @description The ID of the site.\n * @example 1234\n */\n site_id?: string;\n /**\n * @description\n * Uninstall reason. Possible values:\n *\n * * `1` - No longer needed\n * * `2` - Found a better alternative\n * * `3` - Only needed for short period\n * * `4` - Broke the website\n * * `5` - Suddenly stopped working\n * * `6` - Cannot continue paying\n * * `7` - Other\n * * `8` - Didn't work after installation\n * * `9` - User doesn't like to share data\n * * `10` - Didn't understand how it works\n * * `11` - Missing specific feature\n * * `12` - Didn't work\n * * `13` - Expected something else\n * * `14` - Expected to work differently\n * * `15` - Temporary deactivation\n *\n * @example 1\n * @enum {integer}\n */\n reason_id?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15;\n /** @description Additional information gathered from the user for the uninstallation. This is populated when the product user chooses “Other” in contrast to pre-set options. */\n reason_info?: string;\n };\n /** @description A **User** is a person who is registered to Freemius through some usage of one or more products selling through Freemius. The user could own licenses of such products or simply could have been linked to the Free version of the products. Every user has unique email address. */\n User: {\n /** @description A note about the user. Only visible to the developer. */\n note?: string;\n /** @description Whether or not the user has given their consent for marketing materials. A `null` value indicates that the user has not made a decision yet. */\n is_marketing_allowed?: boolean | null;\n /** @description Whether or not the user has opted-in to beta versions. We do not recommend using this option anymore since it will opt-in the user to all sites/activations. Currently, sites or activations can be managed individually. */\n is_beta?: boolean;\n /**\n * @description Email address of the person.\n * @example jane@example.com\n */\n email?: string;\n /**\n * @description First name of the person.\n * @example Jane\n */\n first?: string;\n /**\n * @description Last name of the person.\n * @example Doe\n */\n last?: string;\n /**\n * @description Profile picture URL.\n * @example https://example.com/profile-pic.jpg\n */\n picture?: string;\n /**\n * Format: ipv4|ipv6\n * @description The IP address (v4 or v6).\n * @example 127.0.0.1\n */\n ip?: string | null;\n /**\n * @description Whether the person is trusted or not.\n * @example true\n */\n is_verified?: boolean;\n auth?: components['schemas']['CommonEnums']['AuthenticationType'];\n /**\n * @description The secret key associated with the entity for authorization.\n * @example sk_a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6\n */\n secret_key?: string;\n /**\n * @description The public key associated with the entity for authorization.\n * @example pk_a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6\n */\n public_key?: string;\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n /**\n * Format: float\n * @description The total amount of money the user has spent on the platform.\n */\n gross?: number;\n /**\n * Format: date-time\n * @description Date and time of the last login.\n * @example 2025-07-30 05:56:29\n */\n last_login_at?: string | null;\n email_status?: components['schemas']['CommonEnums']['EmailStatus'];\n };\n UserPluginEnriched: components['schemas']['User'] & {\n plugin_id?: components['schemas']['CommonProperties']['plugin_id'];\n user_id?: components['schemas']['CommonProperties']['user_id'];\n /**\n * Format: float\n * @description Gross payments made by the user for the product\n * @example 999\n */\n gross?: number;\n /** @description Whether the user has consented for marketing notifications. */\n is_marketing_allowed?: boolean;\n };\n /** @description An affiliate is individual or businesses that promotes and sells products or services in exchange for a commission on each sale. */\n Affiliate: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n user_id?: components['schemas']['CommonProperties']['user_id'];\n ip?: components['schemas']['CommonProperties']['ip'];\n /**\n * @description The PayPal email for payout purposes.\n * @example foo@freemius.com\n */\n paypal_email?: string;\n plugin_id?: components['schemas']['CommonProperties']['plugin_id'];\n /**\n * Format: int64\n * @description The ID of the affiliate terms.\n * @example 1234\n */\n affiliate_terms_id?: string;\n /**\n * Format: int64\n * @description The ID of the custom affiliate terms.\n * @example 1234\n */\n custom_affiliate_terms_id?: string;\n /** @description Whether the affiliate is using custom terms. */\n is_using_custom_terms?: boolean;\n /**\n * @description The status of the affiliate signup.\n * @default \\Freemius\\Entities\\Affiliation\\Affiliate::STATE_PENDING\n * @enum {string}\n */\n status: 'pending' | 'rejected' | 'suspended' | 'active';\n /**\n * @description The domain of the affiliate.\n * @example https://awesome-products.com\n */\n domain?: string;\n /**\n * Format: float\n * @description The earnings of the affiliate from sales.\n * @example 2000.45\n */\n earnings?: number;\n /**\n * @description The number of unapproved/pending referrals.\n * @example 1234\n */\n pending_referrals?: number;\n /**\n * @description The number of visits through the affiliate link.\n * @example 1234\n */\n visits?: number;\n /**\n * @description The number of unique visits through the affiliate link.\n * @example 1234\n */\n unique_visits?: number;\n };\n AuthToken: {\n /**\n * @description The access token that our API or general infrastructure will accept.\n * @example 1234567890abcdef1234567890abcdef\n */\n access?: string;\n /**\n * @description The expiration time of the access token in timestamp.\n * @example 1234567890\n */\n expires?: number;\n /**\n * @deprecated\n * @description The refresh token which can be used to generate a new access token. We don't support creating access tokens with refresh tokens anymore. For API communication please use the Bearer token.\n * @example \"1234567890abcdef1234567890abcdef\"\n */\n refresh?: string;\n };\n /** @description The key represents the ID of the plan */\n FSEndpointDeveloperPluginPricing: {\n /** @description Monthly pricing in different currencies */\n monthly_price?: {\n /**\n * Format: float\n * @example 9.99\n */\n usd?: number;\n /**\n * Format: float\n * @example 7.99\n */\n gbp?: number;\n /**\n * Format: float\n * @example 8.99\n */\n eur?: number;\n };\n /** @description Annual pricing in different currencies */\n annual_price?: {\n /**\n * Format: float\n * @example 99.99\n */\n usd?: number;\n /**\n * Format: float\n * @example 79.99\n */\n gbp?: number;\n /**\n * Format: float\n * @example 89.99\n */\n eur?: number;\n };\n /** @description Lifetime pricing in different currencies */\n lifetime_price?: {\n /**\n * Format: float\n * @example 299.99\n */\n usd?: number;\n /**\n * Format: float\n * @example 249.99\n */\n gbp?: number;\n /**\n * Format: float\n * @example 279.99\n */\n eur?: number;\n };\n };\n FSEndpointDeveloperPluginSubscriptions: components['schemas']['Discount'][];\n FSEndpointDeveloperPluginUserSubscriptions: components['schemas']['Discount'][];\n };\n responses: {\n /** @description The API has no content to send. This usually happens when some entity is deleted. */\n 204: {\n headers: {\n [name: string]: unknown;\n };\n content?: never;\n };\n /** @description Bad request. The request could not be understood by the server due to malformed syntax or arguments. */\n 400: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['ApiError'];\n };\n };\n /** @description Unauthorized access error. The request requires [authentication](/api/section/bearer-token-auth/) but was not provided or the provided authentication does not satisfy the required permissions. */\n 401: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['ApiError'];\n };\n };\n /** @description The request is missing the specified argument. */\n 402: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['ApiError'];\n };\n };\n /** @description The requested resource was not found. */\n 404: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['ApiError'];\n };\n };\n };\n parameters: {\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: number;\n /**\n * @description The ID of the store.\n * @example 1234\n */\n store_id: number;\n /**\n * @description The ID of the product.\n * @example 1234\n */\n plugin_id: number;\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: number;\n /**\n * @description The ID of the bank account.\n * @example 1234\n */\n bank_account_id: number;\n /**\n * @description The ID of the Cart.\n * @example 1234\n */\n cart_id: number;\n /**\n * @description The ID of the setting.\n * @example 1234\n */\n setting_id: number;\n /**\n * @description The ID of the payment.\n * @example 1234\n */\n payment_id: number;\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: number;\n /**\n * @description The ID of the clone.\n * @example 1234\n */\n clone_id: number;\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: number;\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: number;\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: number;\n /**\n * @description The ID of the Subscription.\n * @example 1234\n */\n subscription_id: number;\n /**\n * @description The ID of the Pricing.\n * @example 1234\n */\n pricing_id: number;\n /**\n * @description The ID of the Addon.\n * @example 1234\n */\n addon_id: number;\n /**\n * @description The ID of the product version.\n * @example 1234\n */\n tag_id: number;\n /**\n * @description The ID of the coupon.\n * @example 1234\n */\n coupon_id: number;\n /**\n * @description The ID of the special coupon.\n * @example cart_recovery\n */\n special_id:\n | 'affiliate'\n | 'cart_recovery'\n | 'subscription_cancellation'\n | 'exit_intent'\n | 'renewals_discount'\n | 'manual_renewals_discount';\n /**\n * @description The ID of the review.\n * @example 1234\n */\n review_id: number;\n /**\n * @description The ID of the feature.\n * @example 1234\n */\n feature_id: number;\n /**\n * @description The ID of the event.\n * @example 1234\n */\n event_id: number;\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields: string;\n /**\n * @description The number of records to return.\n * @example 10\n */\n count: number;\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset: number;\n /**\n * @description Filter by gateway.\n * @example stripe\n */\n gateway: 'paypal' | 'stripe';\n /**\n * @description The start of the date range in YYYY-MM-DD HH:MM:SS format\n * @example 2025-08-01 00:00:00\n */\n from: string;\n /**\n * @description The end of the date range in YYYY-MM-DD HH:MM:SS format\n * @example 2025-08-01 00:00:00\n */\n to: string;\n /** @description Filter by billing cycle. */\n billing_cycle: components['schemas']['CommonEnums']['BillingCycle'];\n /** @description The Unique identifier. It is a 32 characters long string. */\n uid: string;\n };\n requestBodies: never;\n headers: never;\n pathItems: never;\n}\nexport type $defs = Record<string, never>;\nexport interface operations {\n 'developers/retrieve-bank-account': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: components['parameters']['developer_id'];\n /**\n * @description The ID of the bank account.\n * @example 1234\n */\n bank_account_id: components['parameters']['bank_account_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description OK */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['BankAccount'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'developers/log-in': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: components['parameters']['developer_id'];\n };\n cookie?: never;\n };\n requestBody?: {\n content: {\n 'application/json': {\n /**\n * @description Valid email address.\n * @example jane@freemius.com\n */\n email?: string;\n /** @description Valid password. */\n password?: string;\n /** @description reCAPTCHA token. One must use the Developer Dashboard to get the reCAPTCHA token if the login asks for it. */\n recaptcha_token?: string;\n /** @description Will set the cookie expiration day to 7 days from the successful login if set to `true`. Otherwise, the cookie will expire in 12 hours. */\n remember_me?: boolean;\n /** @description 2FA 6 digits code in case developer's auth mode is using TOTP based 2FA apps. */\n code?: string;\n /** @description 2FA backup code (24 chars) to disable and bypass 2FA authentication. */\n backup_code?: string;\n };\n };\n };\n responses: {\n /** @description Successful login. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n person?: components['schemas']['Developer'];\n /** @description The expiration time of the cookie in seconds. */\n expires?: number;\n /** @description Signal the developer is not new (this is a login, so it must exists), for consistency with the other auth endpoints. */\n is_new?: boolean;\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/list-addons': {\n parameters: {\n query?: {\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n /** @description Whether to show released addons only or the hidden as well. */\n show_pending?: boolean;\n /** @description If set to `true`, returns marketing info. */\n enriched?: boolean;\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The list of all the addons. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n addons?: components['schemas']['Plugin'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'addons/list-plans-features': {\n parameters: {\n query?: {\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Addon.\n * @example 1234\n */\n addon_id: components['parameters']['addon_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description List of all the plan's features for the addon. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n features?: components['schemas']['Feature'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'addons/list-plans': {\n parameters: {\n query?: {\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n /** @description If set to `true`, retrieves unreleased add-ons as well. */\n show_pending?: boolean;\n /** @description Whether to show released addons only or the hidden as well. */\n type?: 'all' | 'visible';\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Addon.\n * @example 1234\n */\n addon_id: components['parameters']['addon_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The list of all the plans for the addon. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n plans?: components['schemas']['Plan'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'addons/list-pricings': {\n parameters: {\n query?: {\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n currency?: components['schemas']['CommonEnums']['Currency'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Addon.\n * @example 1234\n */\n addon_id: components['parameters']['addon_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The list of all the plans for the addon. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n plans?: components['schemas']['Pricing'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'carts/retrieve-events': {\n parameters: {\n query?: {\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Cart.\n * @example 1234\n */\n cart_id: components['parameters']['cart_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The cart's events collection. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n events?: components['schemas']['EventLog'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'carts/retrieve': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n /** @description Defaults to false, if true returns enriched cart details. */\n enriched?: boolean;\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Cart.\n * @example 1234\n */\n cart_id: components['parameters']['cart_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Cart details associated with the product. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Cart'] & {\n /**\n * Format: float\n * @description Gross amount associated with the cart. (Only available when `enriched` is set to `true`.)\n * @example 359.64\n */\n gross?: number | null;\n /**\n * @description Coupon code associated with the cart. (Only available when `enriched` is set to `true`.)\n * @example BLACKFRIDAY2024\n */\n coupon_code?: string | null;\n /**\n * @description Number of licenses associated with the cart. (Only available when `enriched` is set to `true`.)\n * @example 10\n */\n licenses?: number | null;\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n };\n };\n 'carts/update': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Cart.\n * @example 1234\n */\n cart_id: components['parameters']['cart_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n /**\n * @description The Plan ID.\n * @example 1234\n */\n plan_id?: number;\n pricing_id?: components['schemas']['CommonProperties']['pricing_id'];\n payment_method?: components['schemas']['CommonEnums']['PaymentMethodType'];\n billing_cycle?: components['schemas']['CommonEnums']['BillingCycle'];\n coupon_id?: components['schemas']['CommonProperties']['coupon_id'];\n coupon_code?: components['schemas']['CommonProperties']['coupon_code'];\n country_code?: components['schemas']['CommonProperties']['country_code_nullable'];\n vat_id?: components['schemas']['CommonProperties']['vat_id_nullable'];\n email?: components['schemas']['Cart']['email'];\n first?: components['schemas']['Cart']['first'];\n last?: components['schemas']['Cart']['last'];\n ip?: components['schemas']['CommonProperties']['ip'];\n };\n };\n };\n responses: {\n /** @description Provides the updated cart with details. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Cart'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n };\n };\n 'carts/delete': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Cart.\n * @example 1234\n */\n cart_id: components['parameters']['cart_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n 204: components['responses']['204'];\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n };\n };\n 'carts/list': {\n parameters: {\n query?: {\n /** @description You can use the `filter` parameter to filter by status. If you don't provide a status, the endpoint will return all carts. */\n filter?: 'all' | 'abandoned' | 'completed' | 'recovered' | 'recovery' | 'active';\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n /** @description Defaults to false, if true returns enriched cart details. */\n enriched?: boolean;\n /** @description Filter the cart collections by the email address. */\n email?: string;\n /** @description Number of carts to retrieve. */\n count?: number;\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Provides a collection of carts associated with the product. All carts are listed under the `carts` key. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n carts?: (components['schemas']['Cart'] & {\n /**\n * Format: float\n * @description Email of the user associated with the cart. (Only available when `enriched` is set to `true`.)\n * @example 359.64\n */\n gross?: number | null;\n /**\n * @description Coupon code associated with the cart. (Only available when `enriched` is set to `true`.)\n * @example BLACKFRIDAY2024\n */\n coupon_code?: string | null;\n /**\n * @description Number of licenses associated with the cart. (Only available when `enriched` is set to `true`.)\n * @example 10\n */\n licenses?: number | null;\n })[];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n };\n };\n 'coupons/retrieve': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the coupon.\n * @example 1234\n */\n coupon_id: components['parameters']['coupon_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The coupon is retrieved successfully. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Coupon'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'coupons/update': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the coupon.\n * @example 1234\n */\n coupon_id: components['parameters']['coupon_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n plans?: components['schemas']['Coupon']['plans'];\n licenses?: components['schemas']['Coupon']['licenses'];\n billing_cycles?: components['schemas']['Coupon']['billing_cycles'];\n user_type?: components['schemas']['Coupon']['user_type'];\n code?: components['schemas']['Coupon']['code'];\n discount?: components['schemas']['Coupon']['discount'];\n discount_type?: components['schemas']['Coupon']['discount_type'];\n start_date?: components['schemas']['Coupon']['start_date'];\n end_date?: components['schemas']['Coupon']['end_date'];\n redemptions_limit?: components['schemas']['Coupon']['redemptions_limit'];\n has_renewals_discount?: components['schemas']['Coupon']['has_renewals_discount'];\n has_addons_discount?: components['schemas']['Coupon']['has_addons_discount'];\n is_one_per_user?: components['schemas']['Coupon']['is_one_per_user'];\n is_active?: components['schemas']['Coupon']['is_active'];\n };\n };\n };\n responses: {\n /** @description The coupon is updated. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Coupon'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'coupons/delete': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the coupon.\n * @example 1234\n */\n coupon_id: components['parameters']['coupon_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n 204: components['responses']['204'];\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'coupons/list': {\n parameters: {\n query?: {\n /** @description The coupon code filter. */\n code?: string;\n /** @description If `true`, each coupon will include multi-currency discount properties. Coupons will only be enriched if no filtering is used. */\n is_enriched?: boolean;\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /** @description Optional coupon code prefix for search coupons. */\n prefix?: string;\n /** @description Optional coupon code(or code part) for search coupons. */\n search?: string;\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Provides a collection of coupons associated with the product. All coupons are listed under the `coupons` key. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n coupons?: (components['schemas']['Coupon'] & {\n discounts?: Record<string, never>;\n })[];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n };\n };\n 'coupons/create': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n plans?: components['schemas']['Coupon']['plans'];\n licenses?: components['schemas']['Coupon']['licenses'];\n billing_cycles?: components['schemas']['Coupon']['billing_cycles'];\n user_type?: components['schemas']['Coupon']['user_type'];\n code?: components['schemas']['Coupon']['code'];\n discount?: components['schemas']['Coupon']['discount'];\n discount_type?: components['schemas']['Coupon']['discount_type'];\n start_date?: components['schemas']['Coupon']['start_date'];\n end_date?: components['schemas']['Coupon']['end_date'];\n redemptions_limit?: components['schemas']['Coupon']['redemptions_limit'];\n has_renewals_discount?: components['schemas']['Coupon']['has_renewals_discount'];\n has_addons_discount?: components['schemas']['Coupon']['has_addons_discount'];\n is_one_per_user?: components['schemas']['Coupon']['is_one_per_user'];\n is_active?: components['schemas']['Coupon']['is_active'];\n };\n };\n };\n responses: {\n /** @description The coupon is created. */\n 201: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Coupon'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n };\n };\n 'coupons/retrieve-note': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the coupon.\n * @example 1234\n */\n coupon_id: components['parameters']['coupon_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The coupon note details. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Note'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'coupons/update-note': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the coupon.\n * @example 1234\n */\n coupon_id: components['parameters']['coupon_id'];\n };\n cookie?: never;\n };\n requestBody?: {\n content: {\n 'application/json': {\n /** @example This is an updated note. */\n note?: string;\n };\n };\n };\n responses: {\n /** @description The coupon note was updated. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Note'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'coupons/create-note': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the coupon.\n * @example 1234\n */\n coupon_id: components['parameters']['coupon_id'];\n };\n cookie?: never;\n };\n requestBody?: {\n content: {\n 'application/json': {\n /** @example This is a note. */\n note?: string;\n };\n };\n };\n responses: {\n /** @description The note was added to the coupon. */\n 201: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Note'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'coupons/delete-note': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the coupon.\n * @example 1234\n */\n coupon_id: components['parameters']['coupon_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n 204: components['responses']['204'];\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'coupons/retrieve-special': {\n parameters: {\n query?: {\n /** @description Filter based on a coupon type. */\n type?: components['schemas']['CouponEntity']['type'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The special coupons details. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n coupon_entities?: components['schemas']['CouponEntityEnriched'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'coupons/create-special': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the coupon.\n * @example 1234\n */\n coupon_id: components['parameters']['coupon_id'];\n /**\n * @description The ID of the special coupon.\n * @example cart_recovery\n */\n special_id: components['parameters']['special_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The special coupon has been created. */\n 201: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['CouponEntityEnriched'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'coupons/delete-special': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the coupon.\n * @example 1234\n */\n coupon_id: components['parameters']['coupon_id'];\n /**\n * @description The ID of the special coupon.\n * @example cart_recovery\n */\n special_id: components['parameters']['special_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n 204: components['responses']['204'];\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/list-email-addresses': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The list of all the email addresses associated with a product. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['PluginEmailAddress'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/delete-email-addresses': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Email addresses deleted. Product set to use the default store-level email addresses. */\n 204: {\n headers: {\n [name: string]: unknown;\n };\n content?: never;\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/update-email-addressses': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: components['parameters']['developer_id'];\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': components['schemas']['PluginEmailAddress'];\n };\n };\n responses: {\n /** @description Email addresses updated. */\n 204: {\n headers: {\n [name: string]: unknown;\n };\n content?: never;\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/retrieve-email-template': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: components['parameters']['developer_id'];\n /** @description The ID of the email. */\n email_id: string;\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The email template. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['EmailTemplate'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/update-email-template': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: components['parameters']['developer_id'];\n /** @description The ID of the email. */\n email_id: string;\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n subject?: components['schemas']['EmailTemplate']['subject'];\n html?: components['schemas']['EmailTemplate']['html'];\n plain?: components['schemas']['EmailTemplate']['plain'];\n };\n };\n };\n responses: {\n /** @description The updated email template. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['EmailTemplate'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'events/retrieve': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the event.\n * @example 1234\n */\n event_id: components['parameters']['event_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The retrieved event. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['EventLog'] & {\n /** @description A map of related objects keyed by their type or ID, such as Payment, User, Install, or License. */\n objects?: {\n user?: components['schemas']['UserPluginEnriched'] | null;\n install?: components['schemas']['Install'] | null;\n payment?: components['schemas']['Payment'] | null;\n subscription?: components['schemas']['Subscription'] | null;\n license?: components['schemas']['License'] | null;\n } & {\n [key: string]: unknown;\n };\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'events/list': {\n parameters: {\n query?: {\n /** @description Filter events by type string or event name, such as `license.created`. See the [documentation](https://freemius.com/help/documentation/saas/events-webhooks/#event_types) for a list of available event types. */\n type?: string;\n /** @description Filter events by state: 'pending', 'processed', 'error', or 'canceled'. */\n state?: components['schemas']['CommonEnums']['EventLogState'];\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description A collection of events. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n events?: components['schemas']['EventLog'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/retrieve-feature': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the feature.\n * @example 1234\n */\n feature_id: components['parameters']['feature_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The product's feature. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Feature'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/update-feature': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the feature.\n * @example 1234\n */\n feature_id: components['parameters']['feature_id'];\n };\n cookie?: never;\n };\n requestBody?: {\n content: {\n 'application/json': {\n title?: components['schemas']['Feature']['title'];\n description?: components['schemas']['Feature']['description'];\n is_featured?: components['schemas']['Feature']['is_featured'];\n };\n };\n };\n responses: {\n /** @description The updated feature. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Feature'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/delete-feature': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the feature.\n * @example 1234\n */\n feature_id: components['parameters']['feature_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n 204: components['responses']['204'];\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/list-features': {\n parameters: {\n query?: {\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The product features collection. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n features?: components['schemas']['Feature'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/retrieve': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description OK */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Plugin'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/update': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: {\n content: {\n 'multipart/form-data': {\n icon?: components['schemas']['CommonProperties']['icon'];\n data?: components['schemas']['CommonRequestSchemas']['MultipartJsonData'];\n };\n 'application/json': {\n slug?: components['schemas']['Plugin']['slug'];\n title?: components['schemas']['Plugin']['title'];\n type?: components['schemas']['Plugin']['type'];\n plans?: components['schemas']['Plugin']['plans'];\n features?: components['schemas']['Plugin']['features'];\n money_back_period?: components['schemas']['Plugin']['money_back_period'];\n refund_policy?: components['schemas']['Plugin']['refund_policy'];\n annual_renewals_discount?: components['schemas']['Plugin']['annual_renewals_discount'];\n renewals_discount_type?: components['schemas']['Plugin']['renewals_discount_type'];\n is_pricing_visible?: components['schemas']['Plugin']['is_pricing_visible'];\n default_plan_id?: components['schemas']['Plugin']['default_plan_id'];\n /**\n * @description Can be one of the following values: `1` for `PayPal`, `2` for `Credit Cards`, or `0` for both.\n * @enum {integer}\n */\n accepted_payments?: 0 | 1;\n /** @description `True` to expose license key to customers upon purchase/subscription. (Available for 'SaaS' products only) */\n expose_license_key?: boolean;\n /** @description `True` to include in the after-purchase emails the customer portal login link. */\n enable_after_purchase_email_login_link?: boolean;\n };\n };\n };\n responses: {\n /** @description OK */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Plugin'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/get-info': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Successful operation */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['PluginInfo'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/list-plans-features-for-addon': {\n parameters: {\n query?: {\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the Addon.\n * @example 1234\n */\n addon_id: components['parameters']['addon_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The plan's features collection for Addon on an install. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n features?: components['schemas']['Feature'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/resolve-clone': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the clone.\n * @example 1234\n */\n clone_id: components['parameters']['clone_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n resolution: components['schemas']['InstallClone']['resolution'];\n new_install_id?: components['schemas']['InstallClone']['new_install_id'];\n };\n };\n };\n responses: {\n /** @description Install clone created. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['InstallClone'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 404: components['responses']['404'];\n };\n };\n 'installations/create-clone': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n requestBody?: {\n content: {\n 'application/json': {\n /**\n * @description The URL of the new site to clone the install to.\n * @example https://example.com\n */\n site_url: string;\n };\n };\n };\n responses: {\n /** @description Install clone created. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['InstallClone'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 404: components['responses']['404'];\n };\n };\n 'installations/retrieve-installs-count': {\n parameters: {\n query?: {\n /** @description (optional) Return the count of installs that are associated with a non-expired license for the given plan ID. */\n plan_id?: number;\n /** @description (optional) Return active installs only. */\n is_active?: boolean;\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The number of installs with the product. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n /** @example 123 */\n count?: number;\n };\n };\n };\n };\n };\n 'installations/downgrade-default-plan': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n /** @description Deactivate license. */\n deactivate_license?: boolean;\n reason_ids?: components['schemas']['Uninstall']['reason_id'];\n reason?: components['schemas']['Uninstall']['reason_info'];\n };\n };\n };\n responses: {\n /** @description Product plan downgraded. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Install'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/list-events': {\n parameters: {\n query?: {\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n /** @description Filter events by type string or event name. */\n type?: string;\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Events triggered by the install. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n events?: components['schemas']['EventLog'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/retrieve-install': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The install details. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Install'] & {\n /** @description Whether the install is participating in the beta program. */\n is_beta?: boolean;\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 404: components['responses']['404'];\n };\n };\n 'installations/update-install': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n uid?: components['schemas']['CommonProperties']['uid'];\n license_key?: components['schemas']['License']['secret_key'];\n url?: components['schemas']['Install']['url'];\n title?: components['schemas']['Install']['title'];\n version?: components['schemas']['Install']['version'];\n sdk_version?: components['schemas']['Install']['sdk_version'];\n platform_version?: components['schemas']['Install']['platform_version'];\n programming_language_version?: components['schemas']['Install']['programming_language_version'];\n plan_id?: components['schemas']['Plan']['id'];\n trial_plan_id?: components['schemas']['Install']['trial_plan_id'];\n /**\n * Format: date-time\n * @description The datetime that the trial expires.\n * @example 2025-01-01 00:00:00\n */\n trials_ends?: string;\n subscription_id?: components['schemas']['Subscription']['id'];\n is_locked?: components['schemas']['Install']['is_locked'];\n is_active?: components['schemas']['Install']['is_active'];\n is_disconnected?: components['schemas']['Install']['is_disconnected'];\n is_premium?: components['schemas']['Install']['is_premium'];\n is_sdk_required?: components['schemas']['Plugin']['is_sdk_required'];\n reason_id?: components['schemas']['Uninstall']['reason_id'];\n reason_info?: components['schemas']['Uninstall']['reason_info'];\n /** @description The site plugins installed. */\n plugins?: string;\n /** @description The site themes installed. */\n themes?: string;\n is_beta?: components['schemas']['BetaParticipation']['is_beta'];\n /** @description Recover the install. */\n recover?: boolean;\n is_uninstalled?: components['schemas']['Install']['is_uninstalled'];\n /**\n * Format: int64\n * @description The ID of the user. This is used for ownership change of the install.\n * @example 1234\n */\n user_id?: string;\n /**\n * @description The email of the user. This is used for ownership change of the install.\n * @example foo@example.com\n */\n user_email?: string;\n /**\n * @description A comma seperated string of Install IDs. This is used for ownership change of the install.\n * @example 1234,2478,2345\n */\n install_ids?: string[];\n };\n };\n };\n responses: {\n /** @description Install updated */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Install'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/delete-install': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n 204: components['responses']['204'];\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/list-installs': {\n parameters: {\n query?: {\n /** @description Install IDs collection to filter. */\n ids?: string;\n /** @description Install status to filter the installs by. */\n filter?:\n | 'all'\n | 'active'\n | 'inactive'\n | 'trial'\n | 'paying'\n | 'uninstalled'\n | 'active_premium'\n | 'active_free';\n /** @description Plugin version to filter the installs by. */\n version?: string;\n /** @description License ID to filter the installs by. */\n license_id?: number;\n /** @description Plan ID to filter the installs by. */\n plan_id?: number;\n /** @description Install title to filter the installs by. */\n title?: string;\n /** @description Install URL to filter the installs by. */\n url?: string;\n /** @description Search item to filter the installs by e.g. domain, site_id, or reason info. */\n search?: string;\n /** @description If true, loads all installs, including the uninstalled ones. */\n all?: boolean;\n /** @description Reason ID (either string or numeric) to filter the installs by. */\n reason_id?: string;\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Installs collection */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n installs?: components['schemas']['Install'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/retrieve-active-license-by-uid': {\n parameters: {\n query: {\n /** @description The license key used for the activation of the install. */\n license_key: components['schemas']['License']['secret_key'];\n /** @description The Unique identifier. It is a 32 characters long string. */\n uid: components['parameters']['uid'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Successful operation */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['License'];\n };\n };\n 400: components['responses']['400'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/retrieve-active-license-by-id': {\n parameters: {\n query: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n /** @description The license key used on the install. */\n license_key: components['schemas']['License']['secret_key'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Install's licence */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['License'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/activate-license': {\n parameters: {\n query: {\n /** @description The license key received from the checkout. */\n license_key: string;\n /** @description If `true`, the parent license's and plan's info will be included in the result if there's any. */\n is_enriched?: boolean;\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Activated licence. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['License'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/deactivate-license': {\n parameters: {\n query: {\n /** @description The same license key used to activate the install. */\n license_key: string;\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Activated licence. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['License'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/list-active-licenses': {\n parameters: {\n query?: {\n /** @description If `true`, the parent license's and plan's info will be included in the result if there's any. */\n is_enriched?: boolean;\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Active license. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n licenses?: components['schemas']['License'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'licenses/list-subscriptions': {\n parameters: {\n query?: {\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Subscriptions collection. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n subscriptions?: components['schemas']['Subscription'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/list-market-items': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description All market items associated with the install. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n market_items?: components['schemas']['MarketItem'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 404: components['responses']['404'];\n };\n };\n 'developers/add-team-member': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n role: components['schemas']['Member']['allOf']['1']['role'];\n /**\n * Format: int64\n * @description The id of the new member (Developer ID).\n * @example 1234\n */\n member_id?: string;\n /**\n * @description The email of the new member.\n * @example foo@example.com\n */\n email?: string;\n };\n };\n };\n responses: {\n /** @description Team member added successfully. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n /**\n * @description The id of the team member.\n * @example 1234\n */\n id?: number;\n /**\n * @description The email of the team member.\n * @example foo@example.com\n */\n email?: string;\n /**\n * @description The first name of the team member.\n * @example John\n */\n first?: string;\n /**\n * @description The last name of the team member.\n * @example Doe\n */\n last?: string;\n /** @description The picture of the team member. */\n picture?: string;\n role?: components['schemas']['Member']['allOf']['1']['role'];\n plugin_id?: components['schemas']['Member']['allOf']['1']['plugin_id'];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/list-payments': {\n parameters: {\n query?: {\n /** @description If `true`, loads linked user email, install URL, subscription billing cycle and plan name. */\n extended?: boolean;\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Payments collection */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n payments?: (components['schemas']['Payment'] & {\n email?: components['schemas']['User']['email'];\n url?: components['schemas']['Install']['url'];\n billing_cycle?: components['schemas']['Subscription']['billing_cycle'];\n plan_name?: components['schemas']['Plan']['name'];\n /** @description 512-character reason for the refund. */\n refund_reason?: string | null;\n })[];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/update-permissions': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n /** @description Whether to enable the selected permission. */\n is_enabled?: boolean;\n /**\n * Format: csv\n * @description Comma separated list of permissions to update. Allowed values are `site`, `user`, `extensions`.\n * @example site,user,extensions\n */\n permissions?: string;\n };\n };\n };\n responses: {\n /** @description Install permission updated. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['InstallMetadata'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/retrieve-plan': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Install Plan */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Plan'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/list-plans': {\n parameters: {\n query?: {\n /** @description Show all plans whether released to customers or hidden. */\n show_pending?: boolean;\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Install Plans */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n plans?: components['schemas']['Plan'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/create-new-license': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n /**\n * @description The ID of the Pricing.\n * @example 1234\n */\n pricing_id: components['parameters']['pricing_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n is_block_features?: components['schemas']['License']['is_block_features'];\n period?: components['schemas']['Subscription']['billing_cycle'];\n expires_at?: components['schemas']['License']['expiration'];\n /** @description Whether or not to email the license key and download link to the user. */\n send_email?: boolean;\n };\n };\n };\n responses: {\n /** @description License created successfully. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['License'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/start-trial': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n /**\n * Format: date-time\n * @description The expiry date of the trial. If set, will set the trial expiration based on that parameter. **Note:** Trial expiration date cannot exceed the maximum trial period days based on the plan configuration.\n * @example 2025-01-01 00:00:00\n */\n trial_ends?: string;\n phone?: components['schemas']['Billing']['phone'];\n /** @description Whether emails will be sent to users or log events. If `true`, no emails will be sent nor events logged. */\n is_migration?: boolean;\n /** @description Security token for sandbox mode trial. */\n trial_token?: string;\n /**\n * @description Security timestamp for sandbox mode trial.\n * @example 1730160000\n */\n trial_timestamp?: string;\n };\n };\n };\n responses: {\n /** @description Started Trial */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n trial?: components['schemas']['Trial'];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/cancel-trial': {\n parameters: {\n query?: {\n /** @description Optional cancellation reason IDs. */\n reason_ids?: components['schemas']['Uninstall']['reason_id'][];\n reason?: components['schemas']['Uninstall']['reason_info'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The install with cancelled trial. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Install'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/retrieve-uninstall-details': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The uninstall details. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Uninstall'] & {\n /** @description The reason for the uninstall which translates to the string value of the uninstall `reason_id`. */\n reason?: string;\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 404: components['responses']['404'];\n };\n };\n 'installations/list-updates': {\n parameters: {\n query: {\n /** @description The product's version of the current install. The endpoint will return newer versions when set. This is a required param unless `older_than` is provided. */\n version: string;\n /** @description If provided, only versions that are older than this will be returned. */\n older_than?: string;\n /** @description The product type. If the type provide is `all`, the latest `released` or `pending` version will be returned, whichever has the higher version. */\n type?: 'released' | 'pending' | 'beta' | 'all';\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Updates collection. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n tags?: (components['schemas']['PluginTag'] & {\n is_released?: components['schemas']['Plugin']['is_released'];\n /**\n * @description The Installation zip file URL with authentication token.\n * @example https://example.com/\n */\n url?: string;\n })[];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 404: components['responses']['404'];\n };\n };\n 'installations/retrieve-latest-update': {\n parameters: {\n query?: {\n /** @description If set, tries to fetch the requested version. If requires premium but no license, will throw an error. Otherwise, fetch version based on license. */\n is_premium?: boolean;\n /** @description If set, tries to fetch the readme information. */\n readme?: boolean;\n /** @description If set, return the latest version's data only if it's newer than this property's value. */\n newer_than?: boolean;\n /** @description The product type. If the type provided is `all`, the latest `released`, `beta`, or `pending` version will be returned, whichever has the higher version. */\n type?: 'released' | 'pending' | 'beta' | 'all';\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Updates collection. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['PluginTag'] & {\n is_released?: components['schemas']['Plugin']['is_released'];\n /**\n * @description The Installation zip file URL with authorization token.\n * @example https://example.com/\n */\n url?: string;\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/change-ownership': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n /** @description The transfer token salt. This is generated by Freemius and sent over email with expiration. */\n token_salt: unknown;\n /** @description Candidate or owner email. */\n email: unknown;\n /** @description Defaults to 'transfer' for backward compatibility. */\n transfer_type?: unknown;\n /** @description Token generated by Freemius. Get this from the [Developer Dashboard](https://dashboard.freemius.com). */\n owner_token?: unknown;\n /** @description Token generated by Freemius. Get this from the [Developer Dashboard](https://dashboard.freemius.com). */\n candidate_token?: unknown;\n /** @description The URL to redirect after the user confirms the ownership change. */\n after_confirm_url?: unknown;\n /** @description Comma-separated list of IDs of installs that should be transferred to the new owner. This can include add-ons' install IDs. */\n install_ids?: unknown;\n };\n };\n };\n responses: {\n /** @description Install ownership changed successfully. No response will be sent, but it will be redirected to the `after_confirm_url` if it was used when initiating the ownership transfer. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content?: never;\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/send-verification-email': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n /**\n * @description URL address that the user will be auto forwarded to after email confirmation is clicked.\n * @example https://example.com/email-confirmation/\n */\n after_email_confirm_url?: string;\n };\n };\n };\n responses: {\n /** @description Successful operation. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content?: never;\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/check-status': {\n parameters: {\n query?: {\n /** @description You can use this flag in conjunction with the Moderation Setting of your product.\n *\n * In case you want to limit the activation of your product to new instances only (say after migrating to Freemius) you can check the relevant settings from the Developer Dashboard and from your product make an API request like below:\n *\n * - If your product is already active in some device before joining Freemius - Set value to `true`.\n * - Otherwise set value to `false`.\n *\n * This will also work with any “Activation limitation” you have put in your Moderation settings. */\n is_update?: boolean;\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Product status. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n /** @description The product status. */\n is_active?: boolean;\n /**\n * Format: int64\n * @description The timestamp when the product status was done.\n * @example 1742454772\n */\n timestamp?: number;\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'licenses/activate': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n uid: components['schemas']['CommonProperties']['uid'];\n license_key: components['schemas']['License']['secret_key'];\n /** @description Site's homepage URL. */\n url?: string;\n /** @description Site's title. */\n title?: string;\n /** @description Product's version. */\n version?: string;\n is_marketing_allowed?: components['schemas']['User']['is_marketing_allowed'];\n /** @description Install ID when activating on an already existing install. If provided must belong to the same user as the license owner and must have the same UID. The new license will be activated for the install and existing one will be deactivated. */\n install_id?: number;\n /** @description First name of the user (only needed when activating a ghost license). */\n first_name?: string;\n /** @description Last name of the user (only needed when activating a ghost license). */\n last_name?: string;\n /** @description Email address of the user (only needed when activating a ghost license). */\n user_email?: string;\n };\n };\n };\n responses: {\n /** @description License activated successfully. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n user_id?: components['schemas']['User']['id'];\n user_secret_key?: components['schemas']['User']['secret_key'];\n user_public_key?: components['schemas']['User']['public_key'];\n plugin_id?: components['schemas']['Plugin']['id'];\n license_plan_name?: components['schemas']['Plan']['name'];\n is_marketing_allowed?: components['schemas']['User']['is_marketing_allowed'];\n install_id?: components['schemas']['Install']['id'];\n install_secret_key?: components['schemas']['Install']['secret_key'];\n install_public_key?: components['schemas']['Install']['public_key'];\n /**\n * @description The API access token with which authenticated requests can be made for this `install` entity. You need to set this token as the `Bearer` token in the `Authorization` header. For example: <pre>Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9</pre>\n * @example eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9\n */\n install_api_token?: string;\n };\n };\n };\n 400: components['responses']['400'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'licenses/generate-upgrade-link': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n /**\n * Format: int64\n * @description The plan ID to upgrade to.\n */\n plan_id?: string;\n billing_cycle?: components['schemas']['CommonEnums']['PlanPeriod'];\n /** @description The quota to use. Can be a number or the string 'unlimited'. */\n quota?: number | 'unlimited';\n /**\n * @description Whether to update the payment method. If true, the link will be generated for the current plan and billing cycle of the license and other parameters will be ignored. If the license is not associated with a subscription, or is lifetime, an exception will be thrown.\n * @default false\n */\n is_payment_method_update?: boolean;\n };\n };\n };\n responses: {\n /** @description Upgrade link generated successfully. */\n 201: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['CheckoutUpgradeLink'];\n };\n };\n 400: components['responses']['400'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'licenses/deactivate': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n uid: components['schemas']['CommonProperties']['uid'];\n /** @description Install ID from which the license should be deactivated. The license must be active on the install. */\n install_id: number;\n license_key: components['schemas']['License']['secret_key'];\n };\n };\n };\n responses: {\n /** @description License deactivated. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Install'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'licenses/retrieve': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The retrieved license. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['License'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'licenses/update': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n requestBody?: {\n content: {\n 'application/json': {\n quota?: components['schemas']['License']['quota'];\n expiration?: components['schemas']['License']['expiration'];\n is_block_features?: components['schemas']['License']['is_block_features'];\n is_whitelabeled?: components['schemas']['License']['is_whitelabeled'];\n is_free_localhost?: components['schemas']['License']['is_free_localhost'];\n new_user_id?: components['schemas']['License']['user_id'];\n /**\n * @description (optional) When set to `true` will cancel the subscription.\n * @example true\n */\n cancel_subscription?: boolean;\n /**\n * @description (optional) When set to `true` to extend the bundle license.\n * @example true\n */\n extend_bundle?: boolean;\n /**\n * @description (optional) When set to `true`, it will update the relevant (subscription renewal or trial end) date to 24 hours before license expiration.\n * @example true\n */\n update_subscription_renewal_date?: boolean;\n };\n };\n };\n responses: {\n /** @description The updated license. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['License'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'licenses/cancel': {\n parameters: {\n query?: {\n /** @description (optional) Whether to delete the license. If not `true` then the license is cancelled. */\n delete?: boolean;\n /** @description (optional) Whether to include the bundle license in the deletion or delete the main license only. */\n include_bundle?: boolean;\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n 200: components['schemas']['License'];\n 204: components['responses']['204'];\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'licenses/list': {\n parameters: {\n query?: {\n /** @description Filter licenses by status. */\n filter?: 'active' | 'cancelled' | 'expired' | 'abandoned' | 'migrated';\n /** @description Filter licenses by plan ID. */\n plan_id?: number;\n /** @description Search license id or key. */\n search?: string;\n /** @description If `true`, returns the associated user information. */\n enriched?: boolean;\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n /** @description If set, returns only licenses that are associated with the given source ID. */\n source?: number;\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The licenses collection is retrieved. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n licenses?: components['schemas']['LicenseEnriched'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'licenses/assign': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n /**\n * @description User's email address.\n * @example foo@example.com\n */\n email: string;\n /**\n * @description User's full name.\n * @example John Doe\n */\n name?: string;\n license_key: components['schemas']['License']['secret_key'];\n is_marketing_allowed?: components['schemas']['User']['is_marketing_allowed'];\n };\n };\n };\n responses: {\n /** @description The license is assigned. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['License'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'licenses/deactivate-installs': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Licenses deactivated from all installs. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['License'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'licenses/sync-activations': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: components['parameters']['developer_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description License activations synced. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['License'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'licenses/send-renewal-email': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The license renewal email is sent. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n /** @description Whether the email is sent. */\n sent?: boolean;\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'licenses/resend-keys': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n /**\n * @description The user's email address associated with the license.\n * @example johndoe@example.com\n */\n email: string;\n };\n };\n };\n responses: {\n /** @description The license key has been resent. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content?: never;\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'licenses/resend-upgrade-email': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description License email resent. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content?: never;\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'licenses/retrieve-latest-subscription': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Subscription retrieved. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Subscription'];\n };\n };\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'licenses/cancel-current-subscription': {\n parameters: {\n query?: {\n /** @description Optional cancellation reason IDs. */\n reason_ids?: components['schemas']['Uninstall']['reason_id'][];\n reason?: components['schemas']['Uninstall']['reason_info'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Subscription retrieved. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Subscription'];\n };\n };\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'payments/retrieve': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the payment.\n * @example 1234\n */\n payment_id: components['parameters']['payment_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Retrieve a specific payment. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Payment'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'payments/list': {\n parameters: {\n query?: {\n /** @description Search by `payment_id`, `external_payment_id`, or `user_email`. */\n search?: string;\n /** @description User ID to filter with. */\n search_user_id?: components['schemas']['CommonProperties']['user_id'];\n /** @description Filter by billing cycle. */\n billing_cycle?: components['parameters']['billing_cycle'];\n currency?: components['schemas']['CommonEnums']['Currency'];\n /** @description Filter payments by coupon ID. */\n coupon_id?: components['schemas']['CommonProperties']['id'];\n /** @description Filter payments by different types */\n filter?: 'all' | 'refunds' | 'not_refunded' | 'disputed' | 'won_disputes' | 'chargebacks';\n /** @description If true, loads linked user, plan and subscription. */\n extended?: boolean;\n /**\n * @description The end of the date range in YYYY-MM-DD HH:MM:SS format\n * @example 2025-08-01 00:00:00\n */\n to?: components['parameters']['to'];\n /**\n * @description The start of the date range in YYYY-MM-DD HH:MM:SS format\n * @example 2025-08-01 00:00:00\n */\n from?: components['parameters']['from'];\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The payment collection. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n payments?: (components['schemas']['Payment'] & {\n email?: components['schemas']['User']['email'];\n url?: components['schemas']['Install']['url'];\n billing_cycle?: components['schemas']['Subscription']['billing_cycle'];\n /** @description Name of the plan the payment is associated with. */\n plan_name?: string;\n /** @description If the payment is refunded, this will contain the reason. */\n refund_reason?: string;\n })[];\n discounts?: components['schemas']['Discount'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'payments/download-invoice': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the payment.\n * @example 1234\n */\n payment_id: components['parameters']['payment_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description PDF invoice */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/pdf': unknown;\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/gdpr-compliance-check': {\n parameters: {\n query: {\n /** @description Unique identifier of the caller. The UID must be same when pinging and when activating or deactivating a license. The generation of the UID is a responsibility of the client. */\n uid: components['schemas']['CommonProperties']['uid'];\n /** @description If the call is during a product update. */\n is_update?: boolean;\n /** @description Whether the request is made for testing GDPR compliance from the client of the product. */\n is_gdpr_test?: boolean;\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Response from the product */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n /**\n * @description Just a \"pong\" to annotate the success.\n * @example pong\n * @enum {string}\n */\n api?: 'pong';\n /**\n * @description Whether GDPR compliance is required for the client.\n * @example false\n */\n is_gdpr_required?: boolean;\n /**\n * Format: rfc-2822\n * @description Timestamp in [RFC 2822](http://www.faqs.org/rfcs/rfc2822) or [RFC 5322](http://www.faqs.org/rfcs/rfc5322) format.\n * @example Thu, 21 Jan 2021 12:00:00 +0000\n */\n timestamp?: string;\n /**\n * @description Whether the product is active. Only returned when `is_update` is true in the request.\n * @example true\n */\n is_active?: boolean;\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 404: components['responses']['404'];\n };\n };\n 'plans/list-currencies': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The list of all currencies for all the plans. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n currencies?: components['schemas']['CommonEnums']['Currency'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'plans/list-features': {\n parameters: {\n query?: {\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Feature listing of a plan. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n features?: (components['schemas']['Feature'] & components['schemas']['FeaturePlan'])[];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'plans/retrieve': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Plan listing. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Plan'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'plans/list': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description List of all the plans. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n plans?: components['schemas']['Plan'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'plans/create': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: components['parameters']['developer_id'];\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n name?: components['schemas']['Plan']['name'];\n title?: components['schemas']['Plan']['title'];\n description?: components['schemas']['Plan']['description'];\n is_free_localhost?: components['schemas']['Plan']['is_free_localhost'];\n is_block_features?: components['schemas']['Plan']['is_block_features'];\n is_block_features_monthly?: components['schemas']['Plan']['is_block_features_monthly'];\n license_type?: components['schemas']['Plan']['license_type'];\n trial_period?: components['schemas']['Plan']['trial_period'];\n is_require_subscription?: components['schemas']['Plan']['is_require_subscription'];\n support_forum?: components['schemas']['Plan']['support_forum'];\n support_kb?: components['schemas']['Plan']['support_kb'];\n support_email?: components['schemas']['Plan']['support_email'];\n support_phone?: components['schemas']['Plan']['support_phone'];\n is_success_manager?: components['schemas']['Plan']['is_success_manager'];\n is_featured?: components['schemas']['Plan']['is_featured'];\n };\n };\n };\n responses: {\n /** @description A new plan is created. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Plan'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'plans/clone-pricing-other-currency': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n /**\n * @description The currency of the pricing to be created.\n * @example eur\n * @enum {string}\n */\n to_currency?: 'eur' | 'usd' | 'gbp';\n /**\n * @description The currency of the pricing to clone.\n * @default usd\n * @enum {string}\n */\n from_currency?: 'eur' | 'usd' | 'gbp';\n };\n };\n };\n responses: {\n /** @description New pricing for the currency created. */\n 201: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n pricing?: components['schemas']['Pricing'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'plans/retrieve-pricing': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n /**\n * @description The ID of the Pricing.\n * @example 1234\n */\n pricing_id: components['parameters']['pricing_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The plan pricing. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n pricing?: components['schemas']['Pricing'];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'plans/update-pricing': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: components['parameters']['developer_id'];\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n /**\n * @description The ID of the Pricing.\n * @example 1234\n */\n pricing_id: components['parameters']['pricing_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': components['schemas']['Pricing'];\n };\n };\n responses: {\n /** @description The plan pricing was updated. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n pricing?: components['schemas']['Pricing'];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'plans/delete-s-pricing': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: components['parameters']['developer_id'];\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n /**\n * @description The ID of the Pricing.\n * @example 1234\n */\n pricing_id: components['parameters']['pricing_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The plan pricing was deleted. */\n 204: {\n headers: {\n [name: string]: unknown;\n };\n content?: never;\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'plans/list-s-pricing': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n currency?: components['schemas']['CommonEnums']['Currency'];\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The collection of the plan's pricing. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n pricing?: components['schemas']['Pricing'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'plans/create-pricing': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n currency?: components['schemas']['CommonEnums']['Currency'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n monthly_price?: components['schemas']['Pricing']['monthly_price'];\n annual_price?: components['schemas']['Pricing']['annual_price'];\n lifetime_price?: components['schemas']['Pricing']['lifetime_price'];\n licenses?: components['schemas']['Pricing']['licenses'];\n currency?: unknown;\n };\n };\n };\n responses: {\n /** @description The pricing for the plan has been created. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n pricing?: components['schemas']['Pricing'];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'plans/create-license': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n /**\n * @description The ID of the Pricing.\n * @example 1234\n */\n pricing_id: components['parameters']['pricing_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n is_whitelabeled?: components['schemas']['License']['is_whitelabeled'];\n period?: components['schemas']['Subscription']['billing_cycle'];\n is_block_features?: components['schemas']['License']['is_block_features'];\n expires_at?: components['schemas']['License']['expiration'];\n /** @description (optional) License owner email. */\n email?: string;\n /** @description (optional) If the module type is `bundle` and `existing_install_id` is a valid ID of an install that is using a product of the bundle, a child license will automatically be created and activated for the install. */\n existing_install_id?: string;\n /** @description (optional) Whether to email the license key and download link to the user. */\n send_email?: boolean;\n source?: components['schemas']['License']['source'];\n /** @description (optional) Predefined license key - this can be used when duplicating a license of another product into another product. */\n license_key?: string;\n };\n };\n };\n responses: {\n /** @description The license created successfully. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n license?: components['schemas']['License'];\n };\n };\n };\n };\n };\n 'products/retrieve-pricing-table-data': {\n parameters: {\n query?: {\n /** @description The currency to use for the pricing. */\n currency?: components['schemas']['CommonEnums']['Currency'];\n show_pending?: boolean;\n /** @description Whether to show all plans or only the visible ones. */\n type?: 'all' | 'visible';\n /** @description If set to `true`, the result will be enriched with some of the context plugin's information. */\n is_enriched?: boolean;\n /** @description (optional) (Development Only) The ID of the parent bundle product. When getting the pricing of a product, if the product is part of a bundle, you can set the value here (along with the public key of the bundle). This will be used to determine the trial status of the product in sandbox mode. Our WP SDK uses it internally. */\n bundle_product_id?: string;\n /** @description (optional) (Development Only) Used alongside the `bundle_product_id` parameter. */\n bundle_product_public_key?: string;\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The features and pricing data. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n plugin?: {\n icon?: components['schemas']['Plugin']['icon'];\n slug?: components['schemas']['Plugin']['slug'];\n title?: components['schemas']['Plugin']['title'];\n type?: components['schemas']['Plugin']['type'];\n money_back_period?: components['schemas']['Plugin']['money_back_period'];\n refund_policy?: components['schemas']['Plugin']['refund_policy'];\n public_key?: components['schemas']['Plugin']['public_key'];\n parent_plugin_id?: components['schemas']['Plugin']['parent_plugin_id'];\n /** @description The label used for the selling unit of the product, e.g., 'Credit', 'Activation', etc. The resulting object will have both singular and plural. */\n selling_unit_label?: {\n /**\n * @description The singular form of the selling unit label.\n * @example Credit\n */\n singular?: string;\n /**\n * @description The plural form of the selling unit label.\n * @example Credits\n */\n plural?: string;\n };\n };\n plans?: (components['schemas']['Plan'] & {\n pricing?: components['schemas']['Pricing'][];\n } & {\n features?: components['schemas']['FeatureEnriched'][];\n })[];\n /** @description Verified and featured reviews of the product. */\n reviews?: components['schemas']['PluginReview'][];\n /**\n * @description The estimated number of active installs of the product.\n * @example 10000\n */\n active_installs?: number;\n /**\n * @description The estimated number of downloads of the product.\n * @example 5000\n */\n downloads?: number;\n /**\n * @description Single site pricing for all plans indexed by plan ID\n * @example {\n * \"16633\": {\n * \"monthly_price\": {\n * \"usd\": 9.99,\n * \"gbp\": 7.99,\n * \"eur\": 8.99\n * },\n * \"annual_price\": {\n * \"usd\": 99.99,\n * \"gbp\": 79.99,\n * \"eur\": 89.99\n * },\n * \"lifetime_price\": {\n * \"usd\": 299.99,\n * \"gbp\": 249.99,\n * \"eur\": 279.99\n * }\n * }\n * }\n */\n all_plans_single_site_pricing?: {\n [key: string]: {\n /** @description Monthly pricing in different currencies */\n monthly_price?: {\n /**\n * Format: float\n * @example 9.99\n */\n usd?: number;\n /**\n * Format: float\n * @example 7.99\n */\n gbp?: number;\n /**\n * Format: float\n * @example 8.99\n */\n eur?: number;\n };\n /** @description Annual pricing in different currencies */\n annual_price?: {\n /**\n * Format: float\n * @example 99.99\n */\n usd?: number;\n /**\n * Format: float\n * @example 79.99\n */\n gbp?: number;\n /**\n * Format: float\n * @example 89.99\n */\n eur?: number;\n };\n /** @description Lifetime pricing in different currencies */\n lifetime_price?: {\n /**\n * Format: float\n * @example 299.99\n */\n usd?: number;\n /**\n * Format: float\n * @example 249.99\n */\n gbp?: number;\n /**\n * Format: float\n * @example 279.99\n */\n eur?: number;\n };\n };\n };\n /**\n * @description The URL to the Freemius Checkout. You need to append the product id and plan id as necessary. Please refer to the [Checkout documentation](https://freemius.com/help/documentation/selling-with-freemius/hosted-checkout/) for more information.\n * @example https://checkout.freemius.com\n */\n checkout_url?: string;\n /**\n * @description The URL to the Freemius WP Endpoint. This is internally used by the Freemius SDK.\n * @example https://wp.freemius.com\n */\n fs_wp_endpoint_url?: string;\n /**\n * @description Whenther the product supports trial for the current install/site. This is relevant for WP products only.\n * @example true\n */\n trial_mode?: boolean;\n /**\n * @description Whether the trial has been utilized for the current install/site. This is relevant for WP products only.\n * @example false\n */\n trial_utilized?: boolean;\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'reviews/retrieve': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the review.\n * @example 1234\n */\n review_id: components['parameters']['review_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The retrieved review. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['PluginReview'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'reviews/update': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the review.\n * @example 1234\n */\n review_id: components['parameters']['review_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'multipart/form-data': {\n /**\n * Format: binary\n * @description Reviewer's profile picture. A maximum of 200KB in size and 300px width and 300px height is allowed.\n */\n picture?: string;\n data?: components['schemas']['CommonRequestSchemas']['MultipartJsonData'];\n };\n 'application/json': {\n title?: components['schemas']['PluginReview']['title'];\n text?: components['schemas']['PluginReview']['text'];\n name?: components['schemas']['PluginReview']['name'];\n rate?: components['schemas']['PluginReview']['rate'];\n job_title?: components['schemas']['PluginReview']['job_title'];\n company?: components['schemas']['PluginReview']['company'];\n company_url?: components['schemas']['PluginReview']['company_url'];\n profile_url?: components['schemas']['PluginReview']['profile_url'];\n is_featured?: components['schemas']['PluginReview']['is_featured'];\n };\n };\n };\n responses: {\n /** @description The updated review. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['PluginReview'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'reviews/delete': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the review.\n * @example 1234\n */\n review_id: components['parameters']['review_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n 204: components['responses']['204'];\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'reviews/list': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The reviews collection. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n reviews?: components['schemas']['PluginReview'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'reviews/create': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'multipart/form-data': {\n /**\n * Format: binary\n * @description Reviewer's profile picture. A maximum of 200KB in size and 300px width and 300px height is allowed.\n */\n picture?: string;\n data?: components['schemas']['CommonRequestSchemas']['MultipartJsonData'];\n };\n 'application/json': {\n title?: components['schemas']['PluginReview']['title'];\n text?: components['schemas']['PluginReview']['text'];\n name?: components['schemas']['PluginReview']['name'];\n rate?: components['schemas']['PluginReview']['rate'];\n job_title?: components['schemas']['PluginReview']['job_title'];\n company?: components['schemas']['PluginReview']['company'];\n company_url?: components['schemas']['PluginReview']['company_url'];\n profile_url?: components['schemas']['PluginReview']['profile_url'];\n is_featured?: components['schemas']['PluginReview']['is_featured'];\n /**\n * @description Whether the review is active or not.\n * @default true\n */\n is_active?: boolean;\n };\n };\n };\n responses: {\n /** @description The retrieved review. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['PluginReview'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'reviews/retrieve-summary': {\n parameters: {\n query?: {\n type?: 'all' | 'verified';\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The summary of the review collection. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n reviews?: {\n rate?: components['schemas']['PluginReview']['rate'];\n /**\n * Format: int64\n * @description The total number of reviews that have the same rating for the product.\n * @example 10\n */\n count?: string;\n }[];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/retrieve-setting': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the setting.\n * @example 1234\n */\n setting_id: components['parameters']['setting_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The product setting. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Setting'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/update-setting': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the setting.\n * @example 1234\n */\n setting_id: components['parameters']['setting_id'];\n };\n cookie?: never;\n };\n requestBody?: {\n content: {\n 'application/json': {\n data?: components['schemas']['Setting']['data'];\n };\n };\n };\n responses: {\n /** @description Updated product settings. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Setting'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/delete-setting': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the setting.\n * @example 1234\n */\n setting_id: components['parameters']['setting_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n 204: components['responses']['204'];\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/skip-account-connection': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n /** @description MD5 Collection of unique site identifiers. */\n uids?: components['schemas']['CommonProperties']['uid'][];\n uid?: components['schemas']['CommonProperties']['uid'];\n };\n };\n };\n responses: {\n 204: components['responses']['204'];\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'subscriptions/retrieve': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Subscription.\n * @example 1234\n */\n subscription_id: components['parameters']['subscription_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Subscription retrieved. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Subscription'];\n };\n };\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'subscriptions/update': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Subscription.\n * @example 1234\n */\n subscription_id: components['parameters']['subscription_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n /** @description Logs an event that confirms the user requested that the subscription will continue to auto-renew. */\n auto_renew?: boolean;\n /** @description An optional subscription cancellation coupon ID. The coupon must be set as a special \"Cancellation Coupon\" in the Freemius Developer Dashboard. If provided the discount will be applied to the next renewals. */\n coupon_id?: number;\n };\n };\n };\n responses: {\n /** @description Subscription retrieved. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Subscription'] & {\n /**\n * @description Shows whether a subscription cancellation discount was applied to the subscription.\n * @example false\n */\n has_subscription_cancellation_discount?: boolean | null;\n };\n };\n };\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'subscriptions/cancel': {\n parameters: {\n query?: {\n /** @description Optional cancellation reason IDs. */\n reason_ids?: components['schemas']['Uninstall']['reason_id'][];\n reason?: components['schemas']['Uninstall']['reason_info'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Subscription.\n * @example 1234\n */\n subscription_id: components['parameters']['subscription_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Subscription retrieved. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Subscription'];\n };\n };\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'subscriptions/list': {\n parameters: {\n query?: {\n /** @description Optional search: subscription id, external subscription id or user email */\n search?: string;\n /** @description Filter by billing cycle. */\n billing_cycle?: components['parameters']['billing_cycle'];\n /**\n * @description Filter by gateway.\n * @example stripe\n */\n gateway?: components['parameters']['gateway'];\n /** @description Optional filtering based on the status of the subscription. Defaults to `all`. */\n filter?: 'all' | 'active' | 'cancelled';\n /** @description When set to `true` enrich the subscriptions with the plan name, install URL & title, and user email. */\n extended?: boolean;\n /** @description When set to `true` enrich the subscription to include any cancellation discounts applied to the subscriptions. */\n enrich_with_cancellation_discounts?: boolean;\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n /** @description The sort order of the subscriptions. Example: -id. Default: -id. */\n sort?: 'id' | 'next_payment';\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Provides a collection of subscriptions associated with the product. All subscriptions are listed under the `subscriptions` key. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n subscriptions?: (components['schemas']['Subscription'] & {\n /**\n * @description Name of the plan associated with the subscription. (Only available when `extended` is set to `true`.)\n * @example Professional\n */\n plan_name?: string | null;\n /**\n * @description Email of the user associated with the subscription. (Only available when `extended` is set to `true`.)\n * @example foo@freemius.com\n */\n email?: string | null;\n /**\n * @description URL of the installation associated with the subscription. (Only available when `extended` is set to `true`.)\n * @example https://example.com\n */\n url?: string | null;\n /**\n * @description Title of the installation associated with the subscription. (Only available when `extended` is set to `true`.)\n * @example Website title\n */\n title?: string | null;\n /**\n * @description Whether subscription cancellation discount was already applied. (Only available when `enrich_with_cancellation_discounts` is set to `true`.)\n * @example true\n */\n has_subscription_cancellation_discount?: boolean | null;\n })[];\n /** @description The key represents the ID of the subscription */\n discounts?: {\n [key: string]: components['schemas']['Discount'][];\n };\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'subscriptions/list-payments': {\n parameters: {\n query?: {\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Subscription.\n * @example 1234\n */\n subscription_id: components['parameters']['subscription_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Provides a collection of payments associated with the subscription. All payments are listed under the `payments` key. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n payments?: components['schemas']['Payment'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'subscriptions/create-new-migrated-payment': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Subscription.\n * @example 1234\n */\n subscription_id: components['parameters']['subscription_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n gross?: components['schemas']['Payment']['gross'];\n payment_external_id?: components['schemas']['Payment']['external_id'];\n source?: components['schemas']['Migration']['source_external_id'];\n vat?: components['schemas']['Payment']['vat'];\n gateway_fee?: components['schemas']['Payment']['gateway_fee'];\n processed_at?: components['schemas']['Cart']['completed'];\n /** @description Whether the license should be extended. The default value is `false`. */\n is_extend_license?: boolean;\n next_payment?: components['schemas']['Subscription']['next_payment'];\n };\n };\n };\n responses: {\n /** @description The payment was successfully created. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Payment'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'deployments/update': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the product version.\n * @example 1234\n */\n tag_id: components['parameters']['tag_id'];\n };\n cookie?: never;\n };\n requestBody?: {\n content: {\n 'application/json': {\n release_mode?: components['schemas']['PluginTag']['release_mode'];\n limit?: components['schemas']['PluginTag']['limit'];\n /** @description Instead of `limit`, you can use this property to limit the percentage of license owners that will receive an update. The value must be between 0 and 100. Behind the scenes the system will count the current active license owners and convert it into an absolute value. */\n percentage_limit?: number;\n is_incremental?: components['schemas']['PluginTag']['is_incremental'];\n };\n };\n };\n responses: {\n /** @description The updated deployment. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['PluginTag'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'deployments/download': {\n parameters: {\n query?: {\n /** @description (Optional) Whether to retrieve a premium version of the product or not. For WordPress products (plugins and themes) only. */\n is_premium?: boolean;\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the product version.\n * @example 1234\n */\n tag_id: components['parameters']['tag_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The zip file of the deployed version. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/zip': unknown;\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'deployments/list': {\n parameters: {\n query?: {\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The product version collection. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n tags?: components['schemas']['PluginTag'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'deployments/create': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: {\n content: {\n 'multipart/form-data': {\n /**\n * Format: binary\n * @description The zip file containing the product. For WordPress plugins or themes this must contain the root directory.\n */\n file: string;\n /**\n * Format: json\n * @description The metadata details associated with this specific product version.\n * @example {\"version\": \"1.0.0\", \"requires_platform_version\": \"1.0.0\"}\n */\n data?: string;\n };\n };\n };\n responses: {\n /** @description OK */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['PluginTag'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'deployments/get-latest': {\n parameters: {\n query?: {\n /** @description (Optional) Whether to retrieve a premium version of the product or not. For WordPress products (plugins and themes) only. */\n is_premium?: boolean;\n /** @description Type of the latest deployment to load. If the type provided is `all`, the latest `released`, `beta`, or `pending` version will be returned, whichever has the higher version. */\n type?: 'released' | 'beta' | 'pending' | 'all';\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The latest deployment information. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['PluginTag'] & {\n /** @description URL to download the deployed ZIP file. This is a secure URL and does not need any additional authentication header. Will expire after 24 hours from the time of generation. */\n url?: string;\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'deployments/download-latest': {\n parameters: {\n query?: {\n /** @description (Optional) Whether to retrieve a premium version of the product or not. For WordPress products (plugins and themes) only. */\n is_premium?: boolean;\n /** @description Type of the latest deployment to load. If the type provided is `all`, the latest `released`, `beta`, or `pending` version will be returned, whichever has the higher version. */\n type?: 'released' | 'beta' | 'pending' | 'all';\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The zip file of the deployed version. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/zip': unknown;\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'trials/list': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The start of the date range in YYYY-MM-DD HH:MM:SS format\n * @example 2025-08-01 00:00:00\n */\n from?: components['parameters']['from'];\n /**\n * @description The end of the date range in YYYY-MM-DD HH:MM:SS format\n * @example 2025-08-01 00:00:00\n */\n to?: components['parameters']['to'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Trial collection. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n trials?: components['schemas']['Trial'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/uninstall-from-anonymous-site': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n uid?: components['schemas']['CommonProperties']['uid'];\n reason_id?: components['schemas']['Uninstall']['reason_id'];\n reason?: components['schemas']['Uninstall']['reason_info'];\n };\n };\n };\n responses: {\n /** @description The product is uninstalled. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n /** @example 200 OK */\n 'application/json': string;\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'users/retrieve-billing': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Billing Information retrieved. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Billing'];\n };\n };\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'users/update-or-create-billing': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n business_name?: components['schemas']['Billing']['business_name'];\n first?: components['schemas']['Billing']['first'];\n last?: components['schemas']['Billing']['last'];\n email?: components['schemas']['Billing']['email'];\n phone?: components['schemas']['Billing']['phone'];\n website?: components['schemas']['Billing']['website'];\n tax_id?: components['schemas']['Billing']['tax_id'];\n address_street?: components['schemas']['Billing']['address_street'];\n address_apt?: components['schemas']['Billing']['address_apt'];\n address_city?: components['schemas']['Billing']['address_city'];\n address_country?: components['schemas']['Billing']['address_country'];\n address_country_code?: components['schemas']['Billing']['address_country_code'];\n address_state?: components['schemas']['Billing']['address_state'];\n address_zip?: components['schemas']['Billing']['address_zip'];\n };\n };\n };\n responses: {\n /** @description Billing information updated. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Billing'];\n };\n };\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'users/list-events': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The user's events log. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n events?: components['schemas']['EventLog'][];\n };\n };\n };\n };\n };\n 'users/retrieve': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The product user data. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['User'];\n };\n };\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'users/update': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n /** @description The name of the user (Optional). */\n name?: string;\n first?: components['schemas']['User']['first'];\n last?: components['schemas']['User']['last'];\n is_marketing_allowed?: components['schemas']['User']['is_marketing_allowed'];\n is_beta?: components['schemas']['User']['is_beta'];\n };\n };\n };\n responses: {\n /** @description The product user updated data. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['User'];\n };\n };\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'users/list': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /** @description Search user by email address. */\n email?: string;\n /** @description Filter user by their financial status */\n filter?: 'all' | 'never_paid' | 'paid' | 'paying' | 'beta';\n /** @description Search by user ID, email or name */\n search?: string;\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description OK */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n users?: components['schemas']['User'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'users/create': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n /** @description Valid email address. */\n email?: string;\n /** @description Valid password. Must have at least 8 characters. */\n password?: string;\n /** @description (optional) IPv4 or IPv6 Address */\n ip?: string;\n /** @description (optional) Full name property. If not specified, `first` and `last` must be provided instead. */\n name?: string;\n /** @description (optional) First name. `Required` if no valid `name` was provided. */\n first?: string;\n /** @description (optional) Last name. `Required` if no valid `name` was provided. */\n last?: string;\n /** @description (optional) Profile picture URL. */\n picture?: string;\n /** @description (optional) Tells if person is already verified, defaults to FALSE. */\n is_verified?: boolean;\n /** @description (optional) URL address that the user will be auto forwarded to after email confirmation is clicked. */\n after_email_confirm_url?: string;\n /** @description (optional) Defaults to TRUE. If `false`, email verification message will NOT be sent after registration. */\n send_verification_email?: boolean;\n is_marketing_allowed?: components['schemas']['User']['is_marketing_allowed'];\n /** @description (optional) If `true`, no emails will be sent to users nor events will be logged. */\n is_migration?: string;\n source?: components['schemas']['Migration']['source_external_id'];\n };\n };\n };\n responses: {\n /** @description OK */\n 201: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['User'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n };\n };\n 'users/list-installs': {\n parameters: {\n query?: {\n /**\n * @description Comma-separated install IDs list to filter.\n * @example 1234,2478,2345\n */\n install_ids?: string;\n /** @description License ID filter. If set, return installs that are linked to the specified license. */\n license_id?: number;\n /** @description Plan ID filter. If set, return installs associated with the given plan. */\n plan_id?: number;\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Installs collection */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n installs?: components['schemas']['Install'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'users/list-licenses': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /** @description Retrieve specific license by its key. */\n license_key?: string;\n /** @description Comma-separated license IDs. */\n ids?: string;\n /** @description Retrieve specific multiple license with a comma-separated string of their license keys. */\n license_keys?: string;\n /** @description The type of license. */\n type?: 'all' | 'active' | 'expired';\n /** @description Returns the license's product type. */\n is_enriched?: boolean;\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description License collection. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n licenses?: (components['schemas']['License'] & {\n /** @description The product type of the license. */\n plugin_type?: string;\n /** @description List of IDs of children products in case the product is a bundle. */\n products?: components['schemas']['Plugin']['id'][];\n })[];\n };\n };\n };\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'licenses/get-review-url': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The retrieved review URL. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': unknown;\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'licenses/create-review': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n /** @description Data needed to create a review with an optional picture. When sending `multipart/form-data` the `data` property must be a JSON object with same structure as the JSON payload. */\n requestBody: {\n content: {\n 'multipart/form-data': {\n /**\n * Format: binary\n * @description Reviewer's profile picture. A maximum of 200KB in size and 300px width and 300px height is allowed.\n */\n picture?: string;\n data?: components['schemas']['CommonRequestSchemas']['MultipartJsonData'];\n };\n 'application/json': {\n rate?: components['schemas']['PluginReview']['rate'];\n title?: components['schemas']['PluginReview']['title'];\n text?: components['schemas']['PluginReview']['text'];\n name?: components['schemas']['PluginReview']['name'];\n job_title?: components['schemas']['PluginReview']['job_title'];\n company?: components['schemas']['PluginReview']['company'];\n company_url?: components['schemas']['PluginReview']['company_url'];\n profile_url?: components['schemas']['PluginReview']['profile_url'];\n is_active?: components['schemas']['PluginReview']['is_featured'];\n };\n };\n };\n responses: {\n /** @description The created review. */\n 201: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['PluginReview'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'users/list-payments': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /** @description If `true`, loads linked user, plan and subscription. */\n extended?: boolean;\n /** @description Returns the plugin add-ons' payments as well. */\n include_addons?: boolean;\n /** @description Returns the plugin bundles' payments as well. */\n include_bundles?: boolean;\n /** @description Filter the payments by the status. */\n filter?: 'all' | 'refunds' | 'not_refunded' | 'not_refunded_renewals';\n /** @description Filter by billing cycle. */\n billing_cycle?: components['parameters']['billing_cycle'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Payment collection. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n payments?: (components['schemas']['Payment'] & {\n /**\n * @description 3-char currency code. (Only available when `extended` is set to `true`.)\n * @enum {string}\n */\n currency?: 'usd' | 'eur' | 'gbp';\n /**\n * @description Name of the plan associated with the subscription. (Only available when `extended` is set to `true`.)\n * @example Professional\n */\n plan_name?: string | null;\n /**\n * @description Email of the user associated with the subscription. (Only available when `extended` is set to `true`.)\n * @example foo@freemius.com\n */\n email?: string | null;\n /**\n * @description URL of the installation associated with the subscription. (Only available when `extended` is set to `true`.)\n * @example https://example.com\n */\n url?: string | null;\n /**\n * @description The billing cycle of the subscription in number of months. 1 means monthly, 12 means annually, 0 means lifetime usually when subscriptions are created for lifetime trials. (Only available when `extended` is set to `true`.)\n * @enum {number}\n */\n billing_cycle?: 1 | 12 | 0;\n })[];\n discounts?: components['schemas']['Discount'][];\n };\n };\n };\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'users/list-subscriptions': {\n parameters: {\n query?: {\n /** @description Enrich the subscriptions with the plan name, install URL & title, and user email. */\n extended?: boolean;\n /** @description Filter the subscriptions by the status. */\n filter?: 'all' | 'active' | 'cancelled';\n /** @description Filter by billing cycle. */\n billing_cycle?: 1 | 12;\n /**\n * @description Filter by gateway.\n * @example stripe\n */\n gateway?: components['parameters']['gateway'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /** @description Filter the subscriptions by the plan ID. */\n plan_id?: string;\n /** @description Sort the subscriptions by the ID or the next payment date. */\n sort?: 'id' | 'next_payment';\n /** @description Search by subscription ID, external subscription ID or user email. */\n search?: string;\n /** @description When set to `true` enrich the subscription to include any cancellation discounts applied to the subscriptions. */\n enrich_with_cancellation_discounts?: boolean;\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Subscription collection. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n subscriptions?: (components['schemas']['Subscription'] & {\n /**\n * @description Name of the plan associated with the subscription. (Only available when `extended` is set to `true`.)\n * @example Professional\n */\n plan_name?: string | null;\n /**\n * @description Email of the user associated with the subscription. (Only available when `extended` is set to `true`.)\n * @example foo@freemius.com\n */\n email?: string | null;\n /**\n * @description URL of the installation associated with the subscription. (Only available when `extended` is set to `true`.)\n * @example https://example.com\n */\n url?: string | null;\n /**\n * @description Title of the installation associated with the subscription. (Only available when `extended` is set to `true`.)\n * @example Website title\n */\n title?: string | null;\n /**\n * @description Shows whether a renewal discount was already applied to the subscription.\n * @example false\n */\n has_subscription_cancellation_discount?: boolean | null;\n })[];\n /** @description The key represents the ID of the subscription */\n discounts?: {\n [key: string]: components['schemas']['Discount'][];\n };\n };\n };\n };\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'users/create-checkout-token': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The created checkout token. */\n 201: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n /** @example eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjoxLCJwcm9kdWN0X2lkIjozLCJ0b2tlbl9leHBpcmF0aW9uIjoxNTY3ODk4NzYwfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c */\n token?: unknown;\n };\n };\n };\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'plans/update': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: components['parameters']['developer_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n name?: components['schemas']['Plan']['name'];\n title?: components['schemas']['Plan']['title'];\n description?: components['schemas']['Plan']['description'];\n is_free_localhost?: components['schemas']['Plan']['is_free_localhost'];\n is_block_features?: components['schemas']['Plan']['is_block_features'];\n is_block_features_monthly?: components['schemas']['Plan']['is_block_features_monthly'];\n license_type?: components['schemas']['Plan']['license_type'];\n trial_period?: components['schemas']['Plan']['trial_period'];\n is_require_subscription?: components['schemas']['Plan']['is_require_subscription'];\n support_forum?: components['schemas']['Plan']['support_forum'];\n support_kb?: components['schemas']['Plan']['support_kb'];\n support_email?: components['schemas']['Plan']['support_email'];\n support_phone?: components['schemas']['Plan']['support_phone'];\n is_success_manager?: components['schemas']['Plan']['is_success_manager'];\n is_featured?: components['schemas']['Plan']['is_featured'];\n is_hidden?: components['schemas']['Plan']['is_hidden'];\n };\n };\n };\n responses: {\n /** @description Plan updated */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Plan'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'plans/delete': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: components['parameters']['developer_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n 204: components['responses']['204'];\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n}\n"],"mappings":"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"}
1
+ {"version":3,"file":"index.d.mts","names":["paths","components","operations","webhooks","Record","$defs"],"sources":["../src/api/schema.d.ts","../../src/api/types.ts","../../src/contracts/types.ts","../../src/contracts/purchase.ts","../../src/contracts/portal.ts","../../src/contracts/checkout.ts","../../src/contracts/pricing.ts","../../src/contracts/webhook.ts","../../src/api/parser.ts","../../src/errors/ActionError.ts","../../src/errors/WebhookError.ts","../../src/api/client.ts","../../src/api/ApiBase.ts","../../src/api/License.ts","../../src/api/Product.ts","../../src/api/Subscription.ts","../../src/api/User.ts","../../src/api/Payment.ts","../../src/api/WebhookEvent.ts","../../src/services/ApiService.ts","../../src/checkout/Checkout.ts","../../src/models/PurchaseInfo.ts","../../src/services/PurchaseService.ts","../../src/services/PricingService.ts","../../src/checkout/PricingRetriever.ts","../../src/checkout/PurchaseProcessor.ts","../../src/models/CheckoutRedirectInfo.ts","../../src/checkout/RedirectProcessor.ts","../../src/checkout/CheckoutRequestProcessor.ts","../../src/services/CheckoutService.ts","../../src/services/AuthService.ts","../../src/customer-portal/BillingAction.ts","../../src/customer-portal/InvoiceAction.ts","../../src/customer-portal/SubscriptionCancellationAction.ts","../../src/customer-portal/SubscriptionRenewalCouponAction.ts","../../src/customer-portal/CustomerPortalActionService.ts","../../src/customer-portal/PortalDataRepository.ts","../../src/customer-portal/PurchaseRestorer.ts","../../src/customer-portal/PortalRequestProcessor.ts","../../src/services/CustomerPortalService.ts","../../src/webhook/license.events.ts","../../src/webhook/subscription.events.ts","../../src/webhook/events.ts","../../src/webhook/WebhookListener.ts","../../src/services/WebhookService.ts","../../src/services/EntitlementService.ts","../../src/Freemius.ts"],"sourcesContent":["/**\n * This file was auto-generated by openapi-typescript.\n * Do not make direct changes to the file.\n */\n\nexport interface paths {\n '/developers/{developer_id}/bank_account/{bank_account_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: components['parameters']['developer_id'];\n /**\n * @description The ID of the bank account.\n * @example 1234\n */\n bank_account_id: components['parameters']['bank_account_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve bank account\n * @description Retrieve the developer's bank account.\n */\n get: operations['developers/retrieve-bank-account'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/developers/{developer_id}/login.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: components['parameters']['developer_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n /**\n * Log in\n * @description\n * Call this endpoint with your developer email and password and optionally 2FA auth code to login and set the authorization cookie.\n *\n * > This is a public endpoint and does not require any authentication.\n *\n * Please note that this endpoint is not meant for public use and should only be used by the Freemius Developer Dashboard. The login can expect a reCAPTCHA token and it will only work if the reCAPTCHA widget is initialized from the Developer Dashboard itself.\n * To get API tokens for a product or a store, please do it from the Developer Dashboard app itself.\n *\n */\n post: operations['developers/log-in'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/addons.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * List all addons\n * @description Retrieve the addons collection.\n */\n get: operations['products/list-addons'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/addons/{addon_id}/plans/{plan_id}/features.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Addon.\n * @example 1234\n */\n addon_id: components['parameters']['addon_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n /**\n * List all plan's features\n * @description Retrieve the plan's features collection for the addon.\n */\n get: operations['addons/list-plans-features'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/addons/{addon_id}/plans.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Addon.\n * @example 1234\n */\n addon_id: components['parameters']['addon_id'];\n };\n cookie?: never;\n };\n /**\n * List all plans\n * @description Retrieve the plans collection for the addon.\n */\n get: operations['addons/list-plans'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/addons/{addon_id}/plans/{plan_id}/pricing.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Addon.\n * @example 1234\n */\n addon_id: components['parameters']['addon_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n /**\n * List all pricings\n * @description Retrieve the pricing collection for the addon for specific the plan.\n */\n get: operations['addons/list-pricings'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/carts/{cart_id}/events.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Cart.\n * @example 1234\n */\n cart_id: components['parameters']['cart_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve cart events\n * @description Get the list of events associated with a cart.\n */\n get: operations['carts/retrieve-events'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/carts/{cart_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Cart.\n * @example 1234\n */\n cart_id: components['parameters']['cart_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve a cart\n * @description Retrieve cart details associated with the product.\n *\n * > You can use `enriched=true` to get more details about the cart, for example the `gross`, `coupon_code` and `licenses` fields will only be returned if enriched is enabled. Please see individual parameters in the response data below to learn more.\n */\n get: operations['carts/retrieve'];\n /**\n * Update a cart\n * @description Update the details of a particular cart.\n *\n * > Updating a completed checkout cart is prohibited.\n *\n * > Updating the coupon requires both the `coupon_id` and `coupon_code`.\n */\n put: operations['carts/update'];\n post?: never;\n /**\n * Delete a cart\n * @description Delete a particular cart.\n */\n delete: operations['carts/delete'];\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/carts.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * List all carts\n * @description Retrieve the cart collection associated with your product.\n *\n * > If `enriched=true` you will get more details about the cart for example the `gross`, `coupon_code` and `licenses` fields.\n *\n * > You can use the `filter` or `email` or `count` parameters to get more refined results from your query. Please learn more about the individual parameters below.\n */\n get: operations['carts/list'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/coupons/{coupon_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the coupon.\n * @example 1234\n */\n coupon_id: components['parameters']['coupon_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve a coupon\n * @description Get details of a specific coupon by ID.\n */\n get: operations['coupons/retrieve'];\n /**\n * Update a coupon\n * @description Update a specific coupon's details by ID.\n */\n put: operations['coupons/update'];\n post?: never;\n /**\n * Delete a coupon\n * @description Delete a specific coupon by ID.\n */\n delete: operations['coupons/delete'];\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/coupons.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * List all coupons\n * @description Retrieve the coupon collection associated with your product.\n *\n * ### Searching and filtering\n *\n * You can use filtering to search for a particular coupon or a group of coupons. The available parameters are:\n *\n * - `code` - You can explicitly search coupon by the code.\n * - `search` - You can search by coupon code or coupon ID.\n * - `prefix` - You can filter by coupon code prefix.\n *\n * > If using search and filtering, then the `is_enriched` parameter is ignored.\n *\n */\n get: operations['coupons/list'];\n put?: never;\n /**\n * Create a coupon\n * @description Create a new coupon.\n *\n * Alternatively, you can use the [Freemius Developer Dashboard](https://dashboard.freemius.com).\n *\n * > If you're creating coupon from your SaaS for some specific use case, please be sure to set the `plans`, `redemptions_limit`, `end_date`, and `is_one_per_user` properties to the appropriate values, to avoid misuse.\n */\n post: operations['coupons/create'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/coupons/{coupon_id}/note.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the coupon.\n * @example 1234\n */\n coupon_id: components['parameters']['coupon_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve a note\n * @description Get the details of a note associated with a coupon.\n */\n get: operations['coupons/retrieve-note'];\n /**\n * Update a note\n * @description Update a note for a coupon.\n */\n put: operations['coupons/update-note'];\n /**\n * Create a note\n * @description Create a new note for a coupon.\n */\n post: operations['coupons/create-note'];\n /**\n * Delete a note\n * @description Delete a note for a coupon.\n */\n delete: operations['coupons/delete-note'];\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/coupons/special.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve special coupons\n * @description Get the details of a special coupon.\n * *\n * ### Searching and filtering\n *\n * You can use filtering to search for a particular coupon or a group of coupons by `type`.\n */\n get: operations['coupons/retrieve-special'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/coupons/{coupon_id}/special/{special_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the coupon.\n * @example 1234\n */\n coupon_id: components['parameters']['coupon_id'];\n /**\n * @description The ID of the special coupon.\n * @example cart_recovery\n */\n special_id: components['parameters']['special_id'];\n };\n cookie?: never;\n };\n get?: never;\n /**\n * Create a special coupon\n * @description Create a special coupon.\n */\n put: operations['coupons/create-special'];\n post?: never;\n /**\n * Delete a special coupon\n * @description Delete a special coupon by ID.\n */\n delete: operations['coupons/delete-special'];\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/emails/addresses.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * List all email addresses\n * @description Retrieve the email addresses collection associated with a product. In case the product is using the store's email address configuration, the endpoint will return a `404` error.\n */\n get: operations['products/list-email-addresses'];\n put?: never;\n post?: never;\n /**\n * Delete all email addresses\n * @description Delete all email addresses associated with a product. Sets the product to use the default store-level email addresses.\n */\n delete: operations['products/delete-email-addresses'];\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/developers/{developer_id}/products/{product_id}/emails/addresses.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: components['parameters']['developer_id'];\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n get?: never;\n /**\n * Update email addressses\n * @description Update the email addresses associated with a product.\n *\n * > Only a plugin's developer can update the email addresses of their plugin.\n */\n put: operations['products/update-email-addressses'];\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/developers/{developer_id}/products/{product_id}/emails/{email_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: components['parameters']['developer_id'];\n /** @description The ID of the email. */\n email_id: string;\n };\n cookie?: never;\n };\n /**\n * Retrieve an email template\n * @description Retrieve a specific email template by ID.\n * > This is an experimental feature, please don't use it.\n *\n * > Only a developer can access email templates.\n */\n get: operations['products/retrieve-email-template'];\n /**\n * Update an email template\n * @description Update a specific email template by ID.\n * > This is an experimental feature, please don't use it.\n *\n * > Only a developer can update email templates.\n */\n put: operations['products/update-email-template'];\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/events/{event_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the event.\n * @example 1234\n */\n event_id: components['parameters']['event_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve an event\n * @description Retrieve a specific event by its ID. For instructions on creating webhook listeners, see the [documentation](https://freemius.com/help/documentation/saas/events-webhooks/#how_to_create_a_webhook).\n */\n get: operations['events/retrieve'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/events.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * List all events\n * @description Retrieve a list of events for a specific product. Supports filtering by type, state, and pagination. See the [documentation](https://freemius.com/help/documentation/saas/events-webhooks/#how_to_create_a_webhook) for instructions on creating a webhook to listen for events.\n */\n get: operations['events/list'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/features/{feature_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the feature.\n * @example 1234\n */\n feature_id: components['parameters']['feature_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve a feature\n * @description Retrieve a product's feature. In case of WordPress products, this is used automatically for the [in-dashboard pricing page](https://freemius.com/wordpress/checkout/).\n */\n get: operations['products/retrieve-feature'];\n /**\n * Update a feature\n * @description Update a product's feature. Please note that the `value` attribute can only be set and updated per plan with a developer scope authorization.\n */\n put: operations['products/update-feature'];\n post?: never;\n /**\n * Delete a feature\n * @description Delete a product's feature.\n */\n delete: operations['products/delete-feature'];\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/features.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * List all features\n * @description Retrieve the product features collection.\n */\n get: operations['products/list-features'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve a product\n * @description Query and retrieve a specific product by ID.\n */\n get: operations['products/retrieve'];\n /**\n * Update a product\n * @description Update a specific product by ID.\n */\n put: operations['products/update'];\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/info.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * Get product info\n * @description Get product info. Please use the Developer Dashboard to update the information of a product.\n */\n get: operations['products/get-info'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/addons/{addon_id}/plans/{plan_id}/features.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the Addon.\n * @example 1234\n */\n addon_id: components['parameters']['addon_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n /**\n * List all plan's features for Addon\n * @description Get plan's features collection for an addon on a site.\n */\n get: operations['installations/list-plans-features-for-addon'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/clones/{clone_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the clone.\n * @example 1234\n */\n clone_id: components['parameters']['clone_id'];\n };\n cookie?: never;\n };\n get?: never;\n /**\n * Resolve a clone\n * @description Resolve a clone of an install that was created by the product.\n */\n put: operations['installations/resolve-clone'];\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/clones.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n /**\n * Create a clone\n * @description Create a clone of an install associated with the product.\n *\n * > Use this endpoint if you want to support migration or temporary or long-term duplicates for staging purposes.\n *\n * By default the clone will be created in a pending state. For our [WP SDK](https://freemius.com/help/documentation/wordpress-sdk/safe-mode-clone-resolution-duplicate-website/) the clone will be created in a safe mode state.\n *\n * After creating the clone, you will need to resolve the clone by updating its state and resolution. You will need to handle the licensing logic for the new install entity. Our [WP SDK](https://freemius.com/help/documentation/wordpress-sdk/safe-mode-clone-resolution-duplicate-website/) handles it automatically for WordPress products (plugins and themes).\n */\n post: operations['installations/create-clone'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/count.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve installs count\n * @description Retrieve the number of installs associated with the product.\n *\n * ### Filtering\n *\n * You can filter the count by `plan_id` or `is_active`.\n */\n get: operations['installations/retrieve-installs-count'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/downgrade.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n get?: never;\n /**\n * Downgrade to the default plan\n * @description Downgrade install's plan to product’s default plan. This is usually the free plan.\n */\n put: operations['installations/downgrade-default-plan'];\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/events.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n /**\n * List all events\n * @description Retrieve the event collection related to a product install.\n */\n get: operations['installations/list-events'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve an install\n * @description Retrieve the details related to the product install.\n */\n get: operations['installations/retrieve-install'];\n /**\n * Update an install\n * @description Update the details related to the product install.\n */\n put: operations['installations/update-install'];\n post?: never;\n /**\n * Delete an install\n * @description Delete a product install. This is different from an uninstall.\n */\n delete: operations['installations/delete-install'];\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * List all installs\n * @description Retrieve the install collection associated with the product.\n *\n * Various filtering and search parameters are available to narrow down the results.\n */\n get: operations['installations/list-installs'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/license.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve an active license by UID\n * @description Retrieve the full information about the active license for the specified install when the UID of the install is known.\n *\n * > No Authorization header is required.\n */\n get: operations['installations/retrieve-active-license-by-uid'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/licenses/{license_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve an active license by ID\n * @description Retrieve specific license of the install when the license ID and the license key are known but the UID of the install is not known.\n *\n * > Retrieve the license information with product level authorization when the UID of the install is unknown.\n */\n get: operations['installations/retrieve-active-license-by-id'];\n /**\n * Activate a license\n * @description Activate license for an install.\n */\n put: operations['installations/activate-license'];\n post?: never;\n /**\n * Deactivate a license\n * @description Deactivate license from an install.\n */\n delete: operations['installations/deactivate-license'];\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/licenses.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n /**\n * List all active licenses\n * @description Retrieve the active licenses (usually only one) on an install.\n *\n * > Use this endpoint only when the ID of the license is unknown.\n */\n get: operations['installations/list-active-licenses'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/licenses/{license_id}/subscriptions.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n /**\n * List all subscriptions\n * @description Retrieve the subscription collection associated with a license.\n *\n * > A license can have one active and multiple inactive subscriptions. Subscriptions are inactivated when a license is downgraded or upgraded or when the payment method is updated.\n */\n get: operations['licenses/list-subscriptions'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/market_items.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n /**\n * List all market items\n * @description Retrieves all market items associated with an `Install` entity.\n *\n * > Market items are other products (not necessarily powered by Freemius) that are installed in the same site as the Freemius powered product.\n *\n * > It is only after the user chooses to opt-in that such data is collected and sent to Freemius. Right now we only support WordPress products i.e. plugins and themes.\n */\n get: operations['installations/list-market-items'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/developer/{developer_id}/products/{product_id}/installs/{install_id}/members.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n /**\n * Add team member\n * @description Add new team member to the product.\n *\n * > Only a developer with priviledge can add a new team member to a product.\n */\n post: operations['developers/add-team-member'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/payments.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n /**\n * List all payments\n * @description Retrieve the payment associated with the install.\n *\n * > This lists all payments collected from the license activated on this install.\n */\n get: operations['installations/list-payments'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/permissions.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n get?: never;\n /**\n * Update permissions\n * @description Update permissions to a product install.\n */\n put: operations['installations/update-permissions'];\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/plans/{plan_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve a plan\n * @description Retrieve the product plan details to which the install is subscribed.\n */\n get: operations['installations/retrieve-plan'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/plans.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n /**\n * List all plans\n * @description Retrieve all the available product plans to which an install can subscribe.\n */\n get: operations['installations/list-plans'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/plans/{plan_id}/pricing/{pricing_id}/licenses.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n /**\n * @description The ID of the Pricing.\n * @example 1234\n */\n pricing_id: components['parameters']['pricing_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n /**\n * Create a new license\n * @description Create a new license and assign it to the install.\n *\n * > Either `period` or `expires_at` must be set.\n */\n post: operations['installations/create-new-license'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/plans/{plan_id}/trials.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n /**\n * Start a trial\n * @description Start the trial of a plan for which an install is subscribed. The install must not have utilized the trial before.\n */\n post: operations['installations/start-trial'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/trials.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n post?: never;\n /**\n * Cancel a trial\n * @description Cancel a trial associated with a specific install.\n */\n delete: operations['installations/cancel-trial'];\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/uninstall.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve uninstall details\n * @description Retrieve the details of an install where the product has been uninstalled.\n */\n get: operations['installations/retrieve-uninstall-details'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/updates.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n /**\n * List all updates\n * @description Retrieve the product update collection available for an install.\n */\n get: operations['installations/list-updates'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/updates/latest.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve the latest update\n * @description Retrieve the latest product update available for an install.\n */\n get: operations['installations/retrieve-latest-update'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/users/{user_id}/ownership-change.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n get?: never;\n /**\n * Change ownership\n * @description Change ownership of an install.\n */\n put: operations['installations/change-ownership'];\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/installs/{install_id}/users/{user_id}/verify.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n get?: never;\n /**\n * Send a verification email\n * @description Sends an email to the user associated with the install, containing a link to verify the email address.\n *\n * > With the `after_email_confirm_url` parameter, you can specify a URL address that the user will be auto forwarded to after email confirmation is clicked.\n */\n put: operations['installations/send-verification-email'];\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/is_active.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * Check product status\n * @description Check if the product is active.\n */\n get: operations['products/check-status'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/licenses/activate.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n /**\n * Activate a license\n * @description Activate a license and if needed, create an install with the given properties.\n *\n * > No Authorization header is required. If the provided license doesn't have an associated user, the endpoint will require the `first_name`, `last_name`, and `user_email` parameters to create a new user and associate it with the license.\n */\n post: operations['licenses/activate'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/licenses/{license_id}/checkout/link.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n /**\n * Generate upgrade link\n * @description Generate an upgrade link for a license. The API accepts a variety of parameters with which you can specify new plans or quota or billing cycles. If you skip all those, then a manual renewal link will be generated instead. The link will be valid for 24 hours.\n */\n post: operations['licenses/generate-upgrade-link'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/licenses/deactivate.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n /**\n * Deactivate a license\n * @description Deactivate a license from an install (No Authorization header is required).\n */\n post: operations['licenses/deactivate'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/licenses/{license_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve a license\n * @description Retrieve a specific license by its ID.\n */\n get: operations['licenses/retrieve'];\n /**\n * Update a license\n * @description Update a specific license by its ID. For ownership transfer please use the `new_user_id`. Ownership transfer is not supported for SaaS products.\n */\n put: operations['licenses/update'];\n post?: never;\n /**\n * Cancel a license\n * @description Cancel or delete a license. The Delete action is irreversible and will remove the license from the system.\n */\n delete: operations['licenses/cancel'];\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/licenses.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * List all licenses\n * @description Retrieve the license collection associated with a product.\n */\n get: operations['licenses/list'];\n /**\n * Assign a license\n * @description Associate an orphan license with a user and send a welcome email. If the user does not exist yet, one will be created.\n */\n put: operations['licenses/assign'];\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/licenses/{license_id}/installs.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n post?: never;\n /**\n * Deactivate installs\n * @description Deactivate license from all installs.\n */\n delete: operations['licenses/deactivate-installs'];\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/developers/{developer_id}/products/{product_id}/licenses/{license_id}/installs/sync.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: components['parameters']['developer_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n /**\n * Sync all activations\n * @description Sync all the license activations with the actual available installs.\n */\n post: operations['licenses/sync-activations'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/licenses/{license_id}/renewals.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n /**\n * Send the renewal email\n * @description Send the manual license renewal email. The system will send emails only for licenses with cancelled or inactive subscriptions.\n */\n post: operations['licenses/send-renewal-email'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/licenses/resend.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n /**\n * Resend license keys\n * @description Send an email from Freemius with all the license keys associated with the given email address. The email is sent to the email address.\n */\n post: operations['licenses/resend-keys'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/licenses/{license_id}/resend.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n /**\n * Resend the upgrade email\n * @description Resend the license upgrade email.\n */\n post: operations['licenses/resend-upgrade-email'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/licenses/{license_id}/subscription.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve latest subscription\n * @description A license can have only **one active subscription** at any given time. However, users may **upgrade**, **downgrade**, or **change their payment method**, which may result in a new subscription being created and associated with the same license.\n *\n * Use this endpoint to **retrieve the latest or currently active subscription** linked to a specific license.\n *\n * This is useful when you're building tools for license management or need to inspect the billing state of a customer. If you're integrating Freemius with your SaaS please refer to our [guide here](https://freemius.com/help/documentation/selling-with-freemius/saas-integration/).\n */\n get: operations['licenses/retrieve-latest-subscription'];\n put?: never;\n post?: never;\n /**\n * Cancel current subscription\n * @description Use this endpoint to **cancel the active subscription** associated with a license. If the license is currently in a **trialing state**, this will also cancel the trial.\n *\n * This is useful when you want to programmatically offer a cancellation feature from within your SaaS or custom dashboards. If you're integrating Freemius with your SaaS, please see our [guide here](https://freemius.com/help/documentation/selling-with-freemius/saas-integration/).\n *\n * > ⚠️ This action is irreversible and will immediately cancel the subscription or trial.\n *\n * Cancelling an already cancelled subscription will not have any effect and the endpoint will return the same subscription details as before.\n */\n delete: operations['licenses/cancel-current-subscription'];\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/payments/{payment_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the payment.\n * @example 1234\n */\n payment_id: components['parameters']['payment_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve a payment\n * @description Retrieve a specific payment.\n */\n get: operations['payments/retrieve'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/payments.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * List all payments\n * @description Retrieve the payment collection associated with the product.\n *\n * ### Filtering and searching\n *\n * You search and/or filter payments with these parameters:\n *\n * - `search` - You can search by `payment_id`, `external_payment_id`, or `user_email`. It can be a number or string.\n * - `user_id` - If you are looking to list all payments for a specific user use this.\n * - `billing_cycle` - Filter payments by billing cycle. `0` means lifetime payments.\n * - `currency` - Filter payments by currency.\n * - `coupon_id` - Filter payments by coupon ID.\n * - `filter` - Filter payments by different types: `all`, `refunds`, `not_refunded`, `disputed`, `won_disputes`, `chargebacks`.\n *\n * Please see the parameters in the responses body for more information.\n */\n get: operations['payments/list'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/payments/{payment_id}/invoice.pdf': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the payment.\n * @example 1234\n */\n payment_id: components['parameters']['payment_id'];\n };\n cookie?: never;\n };\n /**\n * Download invoice\n * @description Download invoice of a payment.\n */\n get: operations['payments/download-invoice'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/ping.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * GDPR compliance check\n * @description Find out if a product requires GDPR compliance based on the client's location.\n */\n get: operations['products/gdpr-compliance-check'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/plans/currencies.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * List all currencies\n * @description Retrieve all the currencies available for all the plans.\n */\n get: operations['plans/list-currencies'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/plans/{plan_id}/features.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n /**\n * List all features\n * @description Retrieve the features collection of a plan.\n */\n get: operations['plans/list-features'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/plans/{plan_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve a plan\n * @description Retrieve a specific plan by ID.\n */\n get: operations['plans/retrieve'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/plans.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * List all plans\n * @description Retrieve the plans collection.\n */\n get: operations['plans/list'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/developers/{developer_id}/products/{product_id}/plans.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: components['parameters']['developer_id'];\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n /**\n * Create a plan\n * @description Create a new plan for the product.\n */\n post: operations['plans/create'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/plans/{plan_id}/pricing/clone.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n /**\n * Clone pricing to other currency\n * @description Create new pricing in a specified currency from an existing one.\n */\n post: operations['plans/clone-pricing-other-currency'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/plans/{plan_id}/pricing/{pricing_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n /**\n * @description The ID of the Pricing.\n * @example 1234\n */\n pricing_id: components['parameters']['pricing_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve a pricing\n * @description Retrieve a specific plan pricing by ID.\n */\n get: operations['plans/retrieve-pricing'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/developers/{developer_id}/products/{product_id}/plans/{plan_id}/pricing/{pricing_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: components['parameters']['developer_id'];\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n /**\n * @description The ID of the Pricing.\n * @example 1234\n */\n pricing_id: components['parameters']['pricing_id'];\n };\n cookie?: never;\n };\n get?: never;\n /**\n * Update a pricing\n * @description Update the plan's pricing by ID.\n *\n * > Only developers can update a plan pricing.\n */\n put: operations['plans/update-pricing'];\n post?: never;\n /**\n * Delete a plan's pricing\n * @description Delete the plan pricing by ID.\n *\n * > Only developers can delete a plan pricing.\n */\n delete: operations['plans/delete-s-pricing'];\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/plans/{plan_id}/pricing.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n /**\n * List all plan's pricing\n * @description Retrieve the collection of all the plan's pricings.\n */\n get: operations['plans/list-s-pricing'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/developers/{developer_id}/products/{product_id}/plans/{plan_id}/pricing.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n /**\n * Create a pricing\n * @description Create new pricing for a plan.\n */\n post: operations['plans/create-pricing'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/plans/{plan_id}/pricing/{pricing_id}/licenses.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n /**\n * @description The ID of the Pricing.\n * @example 1234\n */\n pricing_id: components['parameters']['pricing_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n /**\n * Create a license\n * @description Create a new license for the plan and pricing. Please note that:\n * 1. Either `period` or `expires_at` or `is_block_features` must be set.\n * 2. If you create a license with `is_block_features` set to `false` and do not specify `period` and `expires_at`, the license will never expire or block features and will continue to work for lifetime.\n * 3. If you specify an email address, the user must have already activated a license or installed your product before. If your user has not activated a license, then please don't use the field and when they activate the license we will collect their email and register the user with Freemius.\n * 4. Use the `source` parameter only when creating migrated licenses from a legacy system.\n *\n * More information about every other parameters can be found below.\n *\n */\n post: operations['plans/create-license'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/pricing.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve the pricing table data\n * @description Retrieve the plugin's full features & pricing data for a pricing table. This is used by our official [pricing page app](https://github.com/Freemius/pricing-page/) inside the WordPress SDK.\n */\n get: operations['products/retrieve-pricing-table-data'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/reviews/{review_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the review.\n * @example 1234\n */\n review_id: components['parameters']['review_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve a review\n * @description Retrieve a product review by ID.\n */\n get: operations['reviews/retrieve'];\n /**\n * Update a review\n * @description Update a product review by ID\n * > The rate can only be modified for developer generated reviews.\n */\n put: operations['reviews/update'];\n post?: never;\n /**\n * Delete a review\n * @description Delete a product review by ID.\n */\n delete: operations['reviews/delete'];\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/reviews.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * List all reviews\n * @description Retrieve the reviews collection.\n */\n get: operations['reviews/list'];\n put?: never;\n /**\n * Create a review\n * @description Create a product review.\n */\n post: operations['reviews/create'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/reviews/summary.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve reviews summary\n * @description Retrieve the summary of the reviews collection. Every item is an object with a `rate` and `count` properties, where `rate` is the rating value (0-100) and `count` is the number of reviews with that rating. Reviews are grouped by their rating.\n */\n get: operations['reviews/retrieve-summary'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/settings/{setting_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the setting.\n * @example 1234\n */\n setting_id: components['parameters']['setting_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve a setting\n * @description Retrieve a specific product setting.\n * > Different settings are used for different functionalities around product. Please use the Developer Dashboard instead to modify the functionality.\n */\n get: operations['products/retrieve-setting'];\n /**\n * Update a setting\n * @description Update a specific product setting.\n * > Different settings are used for different functionalities around product. Please use the Developer Dashboard instead to modify the functionality.\n */\n put: operations['products/update-setting'];\n post?: never;\n /**\n * Delete a setting\n * @description Delete a specific product setting.\n */\n delete: operations['products/delete-setting'];\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/skip.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n get?: never;\n /**\n * Skip account connection\n * @description Skip the account connection step for the specified product. This is useful for testing purposes or for WordPress product integration. The functionality is handled automatically by our [WordPress SDK](https://github.com/Freemius/wordpress-sdk).\n */\n put: operations['products/skip-account-connection'];\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/subscriptions/{subscription_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Subscription.\n * @example 1234\n */\n subscription_id: components['parameters']['subscription_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve a subscription\n * @description Retrieve a subscription associated with your product.\n */\n get: operations['subscriptions/retrieve'];\n /**\n * Update a subscription\n * @description Update a subscription's auto-renewal status and activate a cancellation coupon.\n */\n put: operations['subscriptions/update'];\n post?: never;\n /**\n * Cancel a subscription\n * @description Use this endpoint to **cancel the subscription**. If the subscription is currently in a **trialing state**, this will also cancel the trial.\n *\n * This is useful when you want to programmatically offer a cancellation feature from within your SaaS or custom dashboards. If you're integrating Freemius with your SaaS, please see our [guide here](https://freemius.com/help/documentation/selling-with-freemius/saas-integration/).\n *\n * > ⚠️ This action is irreversible and will immediately cancel the subscription or trial.\n *\n * Cancelling an already cancelled subscription will not have any effect and the endpoint will return the same subscription details as before.\n */\n delete: operations['subscriptions/cancel'];\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/subscriptions.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * List all subscriptions\n * @description Retrieve the subscription collecttion associated with your product.\n * > Subscriptions are created when someone purchases your product using the [Freemius Checkout](https://freemius.com/wordpress/checkout/).\n *\n * ### Searching and filtering\n * There are various parameters to help you search and/or filter subscription.\n * - You can search by subscription ID, external subscription ID, or user email.\n * - You can also filter by billing cycle, gateway, plan ID, and subscription status.\n * Please see the parameters for more information.\n */\n get: operations['subscriptions/list'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/subscriptions/{subscription_id}/payments.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Subscription.\n * @example 1234\n */\n subscription_id: components['parameters']['subscription_id'];\n };\n cookie?: never;\n };\n /**\n * List all payments\n * @description Retrieve the payment collection associated with the subscription.\n */\n get: operations['subscriptions/list-payments'];\n put?: never;\n /**\n * Create a new migrated payment\n * @description In case you want to synchronize migrated subscription from the legacy platform use this endpoint to have our system log a migrated payment. Depending on your use case you can also choose to extend the license. Please read our [migration documentation](https://freemius.com/help/documentation/migration/) to learn more.\n */\n post: operations['subscriptions/create-new-migrated-payment'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/tags/{tag_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the product version.\n * @example 1234\n */\n tag_id: components['parameters']['tag_id'];\n };\n cookie?: never;\n };\n get?: never;\n /**\n * Update a deployment\n * @description Update a specific deployed version of the product. This applies to WordPress products only. Use this endpoint to update the `release_mode` of a deployment to make it available to your customers.\n *\n * ### Release Modes\n *\n * Defined by the `release_mode` property, with the following possible values:\n *\n * - `pending` – The deployment is pending and not visible to customers. This is the default value.\n * - `beta` – The deployment is in beta mode. Only customers with beta access will see this version.\n * - `released` – The deployment is released and visible to all customers.\n *\n * Additionally, WordPress plugins and themes support **incremental releases** and **staged rollouts**:\n *\n * - [**Incremental Release**](https://freemius.com/help/documentation/release-management/incremental-update/): Controlled via the `is_incremental` flag, incremental releases enforce sequential updates, requiring users to install designated intermediate versions before proceeding to newer ones.\n * - [**Staged Rollout**](https://freemius.com/help/documentation/release-management/staged-rollouts/): Managed through the `limit` and `percentage_limit` flags, staged rollouts enable gradual deployment of updates to a subset of users, allowing for monitoring and issue resolution before full release.\n *\n * > Note: Incremental Release and Staged Rollout are not supported for templates and widgets.\n *\n */\n put: operations['deployments/update'];\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/tags/{tag_id}.zip': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the product version.\n * @example 1234\n */\n tag_id: components['parameters']['tag_id'];\n };\n cookie?: never;\n };\n /**\n * Download a deployment\n * @description Download a specific deployed version of the product. This is for WordPress products only (including plugins, themes, templates and widgets). It outputs the zip file of the deployed version.\n *\n * > You can download both the premium and the free version of the deployment using the `is_premium` flag. This will help you setup automation to deploy Freemius generated free version to WordPress.org repository.\n *\n */\n get: operations['deployments/download'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/tags.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * List all deployments\n * @description Get the product version collection. This is for WordPress products only.\n */\n get: operations['deployments/list'];\n put?: never;\n /**\n * Create a deployment\n * @description Upload a new version of the product (for WordPress products only). The endpoint supports only the `multipart/form-data` content type and expects two payloads: `file` and `data`.\n *\n * - `file` - The zip file containing the product. For WordPress plugins or themes this must contain the root directory.\n * - `data` - Please omit this when deploying WordPress plugins and themes. In case of deploying templates and widgets, this needs to be a **stringified JSON** and must have the `version` and `requires_platform_version` properties.\n *\n * An example of the `data` property:\n *\n * ```\n * {\"version\": \"2.0.0\", \"requires_platform_version\": \"1.0.0\"}\n * ```\n *\n * > After you have created a deployment, please send another PUT request to the newly created version to update the `release_status` to either `released` or `beta`. The default value is `pending` which means none of the customers will be able to see the new version.\n *\n * You can learn more about the deployment process [here](https://freemius.com/help/documentation/getting-started/deployment-process/).\n *\n */\n post: operations['deployments/create'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/tags/latest.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * Get latest deployment\n * @description Get the information about the latest deployment the product has, including a secure download link. The download link will work without any authentication header and will expire in 24 hours.\n */\n get: operations['deployments/get-latest'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/tags/latest.zip': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * Download latest deployment\n * @description Download the latest deployment the product has. This is for WordPress products only (including plugins, themes, templates and widgets). It outputs the zip file of the deployed version.\n */\n get: operations['deployments/download-latest'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/trials.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * List all trials\n * @description List the trial collection associated with the product.\n *\n * To support trials, configure your product to [offer trial](https://freemius.com/help/documentation/selling-with-freemius/free-trials/) and then users can use the [Freemius Checkout](https://freemius.com/help/documentation/selling-with-freemius/freemius-checkout-buy-button/) to start a trial.\n *\n * You will need to pass `trial=paid` or `trial=free` to the Checkout's paramters to start a trial.\n */\n get: operations['trials/list'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/uninstall.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n get?: never;\n /**\n * Uninstall from anonymous site\n * @description Uninstall a product from anonymous site\n */\n put: operations['installations/uninstall-from-anonymous-site'];\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/users/{user_id}/billing.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve billing\n * @description Retrieves the billing information of a user for a specific product.\n */\n get: operations['users/retrieve-billing'];\n /**\n * Update or create billing\n * @description Update or create the billing information for a user.\n */\n put: operations['users/update-or-create-billing'];\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/users/{user_id}/events.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n /**\n * List all events\n * @description Retrieve a log of the events for the user associated with the product. Freemius tracks events such as opt-in, license activation, purchase etc. You can use this data for marketing and other automation purposes. More information can be found [here](https://freemius.com/help/documentation/marketing-automation/events-webhooks/).\n */\n get: operations['users/list-events'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/users/{user_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n /**\n * Retrieve a user\n * @description Retrieve a user associated with your product.\n */\n get: operations['users/retrieve'];\n /**\n * Update a user\n * @description Update a user associated with your product.\n */\n put: operations['users/update'];\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/users.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n /**\n * List all users\n * @description\n * Gets the user collection associated with a product.\n *\n * ## Filtering\n * There are a few filters that can be applied to the request.\n *\n * ### Search by email\n * You can specify the parameter `email` to filter the users by email. Optionally you can also put a valid email in the `search` parameter.\n *\n * ### Other filtering options\n * The `search` parameter also accepts the following values:\n *\n * 1. User ID (number).\n * 2. Full or partial name (string).\n * 3. Full or partial email (string).\n *\n * ## Pagination\n * You can use the combination of `count` and `offset` parameters to paginate the results.\n *\n */\n get: operations['users/list'];\n put?: never;\n /**\n * Create a user\n * @description Create a new user associated with the product.\n *\n * The user will be linked to the product if they already exist in Freemius.\n *\n * > User can only be created for products with elevated permissions or during data migration.\n *\n * ## Migrating users from other platforms\n *\n * Freemius allows to migrate your users from other platforms. To do so, you need to set the `is_migration` parameter to `true`. This will prevent any emails from being sent to the users and will not log any events.\n * Once migrated the user can use their existing licenses to activate your product.\n */\n post: operations['users/create'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/users/{user_id}/installs.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n /**\n * List all installs\n * @description Retrieve the install collection associated with the user.\n *\n * Various filtering and search parameters are available to narrow down the results.\n */\n get: operations['users/list-installs'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/users/{user_id}/licenses.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n /**\n * List all licenses\n * @description Retrieve the license collection associated with a user.\n */\n get: operations['users/list-licenses'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/users/{user_id}/licenses/{license_id}/review_url.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n /**\n * Get review URL\n * @description Retrieve the review URL associated with a license.\n */\n get: operations['licenses/get-review-url'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/users/{user_id}/licenses/{license_id}/reviews.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n /**\n * Create a review\n * @description Creat a review associated with a license. If you want to create/import reviews which are not associated with a license or from a different system, please use the Review endpoint under `products/{product_id}/reviews.json`.\n */\n post: operations['licenses/create-review'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/users/{user_id}/payments.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n /**\n * List all payments\n * @description Retrieve the payment collection associated with a user.\n */\n get: operations['users/list-payments'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/users/{user_id}/subscriptions.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n /**\n * List all subscriptions\n * @description Retrieve the subscription collection associated with a user.\n */\n get: operations['users/list-subscriptions'];\n put?: never;\n post?: never;\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/products/{product_id}/users/{user_id}/tokens/checkout.json': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n get?: never;\n put?: never;\n /**\n * Create a checkout token\n * @description Create a 1 min long token that represents the details of the user for setting the user context in a checkout session. Please read our [documentation](https://freemius.com/help/documentation/selling-with-freemius/freemius-checkout-buy-button/#user_token_in_checkout_new) to learn how to use it.\n */\n post: operations['users/create-checkout-token'];\n delete?: never;\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n '/developers/{developer_id}/products/{product_id}/plans/{plan_id}.json': {\n parameters: {\n query?: never;\n header?: never;\n path?: never;\n cookie?: never;\n };\n get?: never;\n /**\n * Update a plan\n * @description\n * Update an existing plan by ID.\n *\n * > Only developers can update plans.\n */\n put: operations['plans/update'];\n post?: never;\n /**\n * Delete a plan\n * @description Delete a specific plan by ID.\n */\n delete: operations['plans/delete'];\n options?: never;\n head?: never;\n patch?: never;\n trace?: never;\n };\n}\nexport type webhooks = Record<string, never>;\nexport interface components {\n schemas: {\n ApiError: {\n /**\n * @description The API request path.\n * @example :/products/product_id/users.json\n */\n path?: string;\n /** @description This object contains the error details. */\n error?: {\n /**\n * @description The type of the error encountered by the server.\n * @example UnauthorizedAccess\n */\n type?: string;\n /**\n * @description The descriptive error message.\n * @example Some error has occured.\n */\n message?: string;\n /**\n * @description The error code.\n * @example unauthorized_access\n */\n code?: string;\n /**\n * @description The HTTP status code returned by the server.\n * @example 401\n */\n http?: number;\n /**\n * @description Current timestamp.\n * @example Thu, 11 May 2023 11:45:30 +0000\n */\n timestamp?: string;\n };\n /**\n * @description This object sends back the request payload as received by the server (both from path and from body or query).\n * @example {\n * \"beautify\": true,\n * \"format\": \"json\"\n * }\n */\n request?: {\n [key: string]: unknown;\n };\n };\n /** @description Some enums that are common to many entities. */\n CommonEnums: {\n /** @enum {string} */\n ProductType?: 'plugin' | 'theme' | 'widget' | 'template';\n /** @enum {string} */\n RefundPolicy?: 'flexible' | 'moderate' | 'strict';\n /**\n * @description The type of renewals discount, percentage or dollar.\n * @enum {string}\n */\n RenewalsDiscountType?: 'percentage' | 'dollar';\n /**\n * @description The type of authentication. If `app2fa` is set, the person has signed for 2FA authentication.\n * @enum {string}\n */\n AuthenticationType?: 'app2fa' | 'password';\n /**\n * @description The status of the last email sent to the user.\n * @enum {string}\n */\n EmailStatus?: 'delivered' | 'bounce' | 'dropped';\n /**\n * @description The billing cycle of the subscription in number of months. 1 means monthly, 12 means annually, 0 means lifetime usually when subscriptions are created for lifetime trials.\n * @enum {number}\n */\n BillingCycle?: 1 | 12 | 0;\n /**\n * @description The billing cycle or period of a plan.\n * @enum {string}\n */\n PlanPeriod?: 'monthly' | 'annual' | 'lifetime';\n /**\n * @description The type of the person. A developer is a person who sells software through the Freemius platform, a user is a person who buys software through the Freemius platform.\n * @enum {string}\n */\n PersonType?: 'developer' | 'user';\n /**\n * @description The type of the discount. \"percentage\" means the discount is a percentage of the price, \"dollar\" means the discount is a fixed amount.\n * @enum {string}\n */\n DiscountType?: 'dollar' | 'percentage';\n /**\n * @description The payment method selected for the purchase.\n * @default cc\n * @enum {string}\n */\n PaymentMethodType: 'cc' | 'paypal' | 'ideal';\n /**\n * @description 3-char currency code.\n * @enum {string}\n */\n Currency?: 'usd' | 'eur' | 'gbp';\n /**\n * @description The type of the payment.\n * @default payment\n * @enum {string}\n */\n PaymentType: 'payment' | 'refund' | 'disputed' | 'won_dispute' | 'lost_dispute' | 'chargeback';\n /**\n * @description The product sales model.\n * @example [\n * \"freemium\"\n * ]\n * @enum {string}\n */\n BusinessModel?: 'free' | 'freemium' | 'premium';\n /**\n * @description State of the event log. It essentially says whether the event was processed through the webhook or not.\n * @enum {string}\n */\n EventLogState?: 'processed' | 'pending' | 'canceled' | 'error';\n };\n /** @description This schema lists the common properties shared by various other schemas or entities. */\n CommonProperties: {\n /**\n * Format: int64\n * @description The unique identifier of the entity.\n * @example 123456\n */\n id?: string;\n /**\n * Format: date-time\n * @description The date and time the entity was created, under UTC timezone.\n * @example 2025-01-01 00:00:00\n */\n created?: string;\n /**\n * Format: date-time\n * @description The date and time the entity was updated, under UTC timezone. If `null` then the entity was never updated since its creation.\n * @example 2025-01-01 00:00:00\n */\n updated?: string | null;\n /**\n * Format: binary\n * @description The icon of the entity, must be a valid JPG, PNG or GIF image, with dimension not exceeding 300px by 300px. Max allowed size is 200KB\n */\n icon?: string;\n /**\n * Format: int64\n * @description The ID of the product the entity belongs to.\n * @example 123456\n */\n plugin_id?: string;\n /**\n * Format: int64\n * @description The ID of the product the entity belongs to. Null means it has not been associated with a product yet.\n * @example 123456\n */\n plugin_id_nullable?: string | null;\n /**\n * @description The environment the entity belongs to. 0 means it belongs to the production environment, 1 means it belongs to the sandbox environment.\n * @example 0\n * @enum {number}\n */\n environment?: 1 | 0;\n /**\n * Format: int64\n * @description The ID of the user the entity belongs to.\n * @example 123456\n */\n user_id?: string;\n /**\n * Format: int64\n * @description The ID of the installation or site the entity is associated with.\n * @example 123456\n */\n install_id?: string;\n /**\n * Format: int64\n * @description The ID of the installation or site the entity is associated with, a `null` value means it has not been associated with an installation yet.\n * @example 123456\n */\n install_id_nullable?: string | null;\n /**\n * Format: int64\n * @description The ID of the plan associated with the entity.\n * @example 123456\n */\n plan_id?: string;\n /**\n * Format: int64\n * @description The ID of the subscription associated with the entity.\n * @example 123456\n */\n subscription_id?: string;\n /**\n * Format: int64\n * @description The ID of the subscription associated with the entity.\n * @example 123456\n */\n subscription_id_nullable?: string | null;\n /**\n * Format: int64\n * @description The ID of the payment associated to the entity.\n * @example 123456\n */\n payment_id_nullable?: string | null;\n /**\n * Format: int64\n * @description The ID of the plan associated with the entity.\n * @example 123456\n */\n plan_id_nullable?: string | null;\n /**\n * Format: int64\n * @description The ID of the pricing associated with the entity.\n * @example 123456\n */\n pricing_id?: string;\n /**\n * Format: int64\n * @description The ID of the pricing associated with the entity.\n * @example 123456\n */\n pricing_id_nullable?: string | null;\n /**\n * Format: int64\n * @description The ID of the license associated with the entity.\n * @example 123456\n */\n license_id?: string;\n /**\n * Format: int64\n * @description The ID of the license associated with the entity.\n * @example 123456\n */\n license_id_nullable?: string | null;\n /**\n * Format: int64\n * @description The ID of the coupon associated with the entity.\n * @example 123456\n */\n coupon_id?: string;\n /**\n * Format: int64\n * @description The ID of the coupon associated with the entity.\n * @example 123456\n */\n coupon_id_nullable?: string | null;\n /**\n * @description Coupon code associated with the cart.\n * @example BLACKFRIDAY2024\n */\n coupon_code?: string | null;\n /**\n * Format: ipv4|ipv6\n * @description The IP address associated with the entity.\n * @example 0.0.0.0\n */\n ip_nullable?: string | null;\n /**\n * Format: ipv4|ipv6\n * @description The IP address associated with the entity.\n * @example 0.0.0.0\n */\n ip?: string;\n /**\n * @description The [ISO 3166-1 alpha 2](http://www.wikiwand.com/en/ISO_3166-1_alpha-2) two-letter country code associated with the entity.\n * @example us\n */\n country_code_nullable?: string | null;\n /**\n * @description The [ISO 3166-1 alpha 2](http://www.wikiwand.com/en/ISO_3166-1_alpha-2) two-letter country code associated with the entity.\n * @example us\n */\n country_code?: string;\n /**\n * @description The postal/zip code of the location.\n * @example 92710\n */\n zip_postal_code?: string;\n /**\n * @description The postal/zip code of the location.\n * @example 92710\n */\n zip_postal_code_nullable?: string | null;\n /**\n * @description The business VAT number (EU or UK territories) or other tax ID (for example Sales Tax ID for the US).\n * @example GB12345678\n */\n vat_id_nullable?: string | null;\n /**\n * @description The actual tax amount. It could be any kind of tax, not necessarily VAT. For example we support US Sales Tax.\n * @default 0\n * @example 1.24\n */\n vat: number;\n /**\n * Format: uid\n * @description Unique identifier of the caller. The UID must be same when pinging and when activating or deactivating a license. The generation of the UID is a responsibility of the client.\n * @example 7W131pej6bJYV8WYM9KgGoBNB9bCiSrY\n */\n uid?: string;\n /**\n * Format: int64\n * @description The ID of the user the entity belongs to. If NULL then still not associated to any user.\n * @example 123456\n */\n user_id_nullable?: string | null;\n /**\n * @description The URL of the entity.\n * @example https://www.example.com\n */\n url?: string;\n };\n /** @description Some request body schemas that are common to many endpoints. */\n CommonRequestSchemas: {\n /**\n * Format: json\n * @description The JSON data of the endpoint, matching the same schema as the json request body. Must be a valid JSON object.\n * @example {\"name\":\"My Product\"}\n */\n MultipartJsonData?: string;\n };\n /** @description Resource explaining different relational data for migrated entities. For example if you'd want to migrate your product from EDD to Freemius, then your existing subscriptions, payments, licenses etc would have a specific value in their `source` property. To get support migrating from other platform please see our [documentation](https://freemius.com/help/documentation/migration/). */\n Migration: {\n /**\n * @description The source of the migration data. To get support migrating from other platform please see our [documentation](https://freemius.com/help/documentation/migration/).\n * @example ls\n * @enum {string}\n */\n source_external_id?:\n | 'freemius'\n | 'edd'\n | 'others'\n | 'easydigitaldownloads'\n | 'woo'\n | 'wc'\n | 'woocommerce'\n | 'gumroad'\n | 'cc'\n | 'codecanyon'\n | 'tf'\n | 'themeforest'\n | 'appsumo'\n | 'sendowl'\n | 'whmcs'\n | 'ls'\n | 'lemonsqueezy';\n /**\n * @description\n * The source of the migration data. To get support migrating from other platform please see our [documentation](https://freemius.com/help/documentation/migration/).\n *\n * * `0` - Freemius\n * * `1` - Other\n * * `2` - Easy Digital Downloads (EDD)\n * * `3` - WooCommerce (WC)\n * * `4` - Rating Widget\n * * `5` - Gumroad\n * * `6` - CodeCanyon\n * * `7` - ThemeForest\n * * `8` - AppSumo\n * * `9` - SendOwl\n * * `10` - WHMCS\n * * `11` - Lemon Squeezy\n *\n *\n * @enum {number}\n */\n source?: 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11;\n };\n CheckoutUpgradeLink: {\n /**\n * Format: uri\n * @description The URL to the checkout page.\n */\n url?: string;\n /**\n * @description The settings used to generate the link. This can be fed as-is to the [Freemius Checkout JS SDK](https://github.com/Freemius/freemius-checkout-js) if you're using modals in your website.\n * @example {\n * \"plugin_id\": 1,\n * \"plan_id\": 2,\n * \"licenses\": \"unlimited\"\n * }\n */\n settings?: {\n [key: string]: unknown;\n };\n /**\n * Format: date-time\n * @description The expiration date of the link.\n */\n expires?: string;\n };\n BankAccount: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n /** @description ID of the person. */\n person_id?: number;\n person_type?: components['schemas']['CommonEnums']['PersonType'];\n /** @description Last 4 digits of the account number. */\n account_last4?: string;\n /** @description Name of the account holder. */\n name?: string;\n /** @description Phone number of the account holder. */\n phone?: string;\n /** @description Address line one of the account holder. */\n address_street?: string;\n /** @description Address line two of the account holder. */\n address_apt?: string | null;\n /** @description City of the account holder. */\n address_city?: string;\n /** @description State of the account holder. */\n address_state?: string | null;\n /** @description ZIP or postal code of the account holder. */\n address_zip?: string;\n address_country_code?: components['schemas']['CommonProperties']['country_code'];\n /** @description Name of the bank. */\n bank_name?: string;\n /** @description City and state of the bank. */\n bank_city_state?: string;\n bank_country_code?: components['schemas']['CommonProperties']['country_code'];\n /** @description Swift code of the bank. */\n swift?: string;\n /** @description IFSC number of Indian banks only. */\n ifsc?: string | null;\n /** @description 6 digits Sort code of UK banks only. */\n sort_code?: string | null;\n /** @description 9 digits Routing number for US banks only. */\n aba_rtn?: string | null;\n /** @description Email account for Wise banks only. */\n wise_account_email?: string | null;\n };\n /** @description A Beta participation represents a choice by the user to utilize the beta version of the product. */\n BetaParticipation: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n user_id?: components['schemas']['CommonProperties']['user_id'];\n plugin_id?: components['schemas']['CommonProperties']['plugin_id_nullable'];\n install_id?: components['schemas']['CommonProperties']['install_id_nullable'];\n /** @description Whether the product user is participating in the beta program. */\n is_beta?: boolean;\n };\n /** @description Representation of billing details associated with a person or a business. */\n Billing: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n /**\n * @description The name of the business.\n * @example Freemius, Inc.\n */\n business_name?: string;\n /**\n * @description The first name used in the billing.\n * @example John\n */\n first?: string;\n /**\n * @description The last name used in the billing.\n * @example Doe\n */\n last?: string;\n /**\n * @description The email used in the billing.\n * @example foo@freemius.com\n */\n email?: string;\n /**\n * @description The phone number used in the billing.\n * @example 555-555-5555\n */\n phone?: string;\n /**\n * @description The website used in the billing.\n * @example https://freemius.com\n */\n website?: string;\n /**\n * @description The business VAT number (EU or UK territories) or other tax ID (for example Sales Tax ID for the US).\n * @example GB123456789\n */\n tax_id?: string;\n /**\n * @description The street address used in the billing.\n * @example 21st Jump Street\n */\n address_street?: string;\n /**\n * @description The street address 2 used in the billing.\n * @example Block II\n */\n address_apt?: string;\n /**\n * @description The city used in the billing.\n * @example Atlanta\n */\n address_city?: string;\n /**\n * @description The country used in the billing.\n * @example United States\n */\n address_country?: string;\n address_country_code?: components['schemas']['CommonProperties']['country_code'];\n /**\n * @description The state of the location.\n * @example New York\n */\n address_state?: string;\n /**\n * @description ZIP or postal code.\n * @example 00001\n */\n address_zip?: string;\n };\n /** @description A cart represents a buyer's intent to purchase a product. The state of the cart is based on the action performed by the buyer. You can read our [documentation](https://freemius.com/help/documentation/marketing-automation/cart-abandonment-recovery/) to learn more about it. */\n Cart: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n /**\n * @description The status of the cart.\n * @default visit\n * @enum {string}\n */\n status:\n | 'pricing_visit'\n | 'visit'\n | 'abandoned'\n | 'completed'\n | 'email_1_sent'\n | 'email_2_sent'\n | 'email_3_sent'\n | 'recovered';\n /**\n * @description The mode the checkout app was opened in, when the cart was created. For example\n *\n * - `dashboard`: The checkout was opened through our [WordPress SDK](https://freemius.com/help/documentation/wordpress-sdk/).\n * - `dialog`: The checkout was opened through our [JavaScript SDK](https://freemius.com/help/documentation/selling-with-freemius/freemius-checkout-buy-button/).\n * - `page`: The checkout was opened directly.\n * @default dialog\n * @enum {string}\n */\n mode: 'dashboard' | 'dialog' | 'page';\n payment_method?: components['schemas']['CommonEnums']['PaymentMethodType'];\n plugin_id?: components['schemas']['CommonProperties']['plugin_id'];\n plan_id?: components['schemas']['CommonProperties']['plan_id_nullable'];\n pricing_id?: components['schemas']['CommonProperties']['pricing_id_nullable'];\n /** @description Whether the plan is a trial. */\n is_trial?: boolean;\n billing_cycle?: components['schemas']['CommonEnums']['BillingCycle'];\n install_id?: components['schemas']['CommonProperties']['install_id_nullable'];\n coupon_id?: components['schemas']['CommonProperties']['coupon_id_nullable'];\n country_code?: components['schemas']['CommonProperties']['country_code_nullable'];\n zip_postal_code?: components['schemas']['CommonProperties']['zip_postal_code'];\n vat_id?: components['schemas']['CommonProperties']['vat_id_nullable'];\n user_id?: components['schemas']['CommonProperties']['user_id_nullable'];\n /**\n * @description The prospect's email address.\n * @example doe@example.com\n */\n email?: string;\n /**\n * @description The prospect's first name.\n * @example John\n */\n first?: string;\n /**\n * @description The prospect's last name.\n * @example Doe\n */\n last?: string;\n ip?: components['schemas']['CommonProperties']['ip'];\n /**\n * @description The page URL containing the checkout.\n * @example https://example.com/pricing\n */\n url?: string;\n environment?: components['schemas']['CommonProperties']['environment'];\n /**\n * @description Cart supports [recovery campaign](https://freemius.com/help/documentation/marketing-automation/cart-abandonment-recovery/). If disabled, the recovery campaign will be stopped.\n * @default false\n */\n is_disabled: boolean;\n /**\n * @description If set to `true`, the cart recovery campaign will be non-functional and cannot be re-enabled. This happens if the prospect has clicked the \"unsubscribe\" link from any of the cart recovery emails.\n * @default false\n */\n is_unsubscribed: boolean;\n /**\n * Format: date-time\n * @description The first time the prospect visited the checkout when the cart was being created.\n * @example 2025-01-01 00:00:00\n */\n visited?: string | null;\n /**\n * Format: date-time\n * @description The cart completion date.\n * @example 2025-01-01 00:00:00\n */\n completed?: string | null;\n /**\n * Format: float\n * @description The cart's original price.\n * @example 19.99\n */\n price?: number;\n };\n /** @description A coupon can be used during the checkout to apply some discounts. */\n Coupon: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n /**\n * Format: int64\n * @description The ID of the entity the coupon belongs to.\n * @example 12345\n */\n entity_id?: string;\n /**\n * @description The type of the entity the coupon belongs to.\n * @example plugin\n * @enum {string}\n */\n entity_type?: 'plugin' | 'store' | 'marketplace';\n /**\n * @description Comma separated IDs of plans the coupon would work for. If `null`, coupon supports all plans.\n * @example 123,654,8757\n */\n plans?: string | null;\n /**\n * @description Comma separated licenses quota limits. If `null`, coupon supports all license limits. `0` is used for an unlimited-site license.\n * @example 1,5,10,0\n */\n licenses?: string | null;\n /**\n * @description Comma separated billing cycles. If `null`, coupon supports all billing cycles. `0` is used for lifetime billing cycle.\n * @example 1,12\n */\n billing_cycles?: string | null;\n /**\n * @description The coupon code.\n * @example BLACKFRIDAY2024\n */\n code?: string;\n /** @description The discount amount. */\n discount?: number;\n discount_type?: components['schemas']['CommonEnums']['DiscountType'];\n /**\n * Format: date-time\n * @description Date and time from when the coupon will be activated.\n * @example 2025-04-01 11:13:28\n */\n start_date?: string;\n /**\n * Format: date-time\n * @description Date and time, after which the coupon will be expired.\n * @example 2025-04-30 19:17:21\n */\n end_date?: string;\n /** @description The total number of redemptions of this coupon. */\n redemptions?: number;\n /** @description The total number of redemptions limit of this coupon. */\n redemptions_limit?: number | null;\n /** @description Whether the coupon also supports discount for renewals or first payment only. */\n has_renewals_discount?: boolean;\n /** @description Whether the coupon supports discount for add-ons or not. */\n has_addons_discount?: boolean;\n /** @description Whether to limit the coupon usage one per user. */\n is_one_per_user?: boolean;\n /** @description Whether the coupon is active. Use this flag to temporarily disable the coupon. */\n is_active?: boolean;\n /**\n * @description The user type the coupon is applicable to.\n * @default all\n * @enum {string}\n */\n user_type: 'all' | 'new' | 'current' | 'previous' | 'customer' | 'migrated';\n source?: components['schemas']['Migration']['source'];\n };\n /** @description Class CouponEnriched */\n CouponEnriched: components['schemas']['Coupon'] & {\n /** @description If the discount type is `dollar`, then this field will hold values of absolute discount amount per supported currency. */\n discounts?: {\n /**\n * Format: float\n * @description The discount amount in absolute value for USD currency.\n * @example 10.5\n */\n usd?: number | null;\n /**\n * Format: float\n * @description The discount amount in absolute value for EUR currency.\n * @example 10.5\n */\n eur?: number | null;\n /**\n * Format: float\n * @description The discount amount in absolute value for GBP currency.\n * @example 10.5\n */\n gbp?: number | null;\n };\n };\n /** @description Represents a link between coupons to various special entities. Example: Affiliate coupon tracking, cart abandonment recovery of a product. */\n CouponEntity: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n /**\n * @description The ID of the coupon.\n * @example 12345\n */\n coupon_id?: number;\n /**\n * Format: int64\n * @description The ID of the entity.\n * @example 12345\n */\n entity_id?: string;\n /**\n * @description The type of the entity (Usually `2` which means it is a product or `20` which means it is an affiliate).\n * @example 2\n */\n entity_type?: number;\n /**\n * @description The special coupon type.\n * @enum {string}\n */\n type?:\n | 'affiliate'\n | 'renewals_discount'\n | 'manual_renewals_discount'\n | 'subscription_cancellation'\n | 'cart_recovery'\n | 'exit_intent';\n };\n /** @description A coupon associated with a special checkout cart on conversions and renewals to reduce churn rate. */\n CouponEntityEnriched: components['schemas']['CouponEntity'] & {\n code?: components['schemas']['Coupon']['code'];\n redemptions?: components['schemas']['Coupon']['redemptions'];\n discount?: components['schemas']['Coupon']['discount'];\n discount_type?: components['schemas']['Coupon']['discount_type'];\n discounts?: components['schemas']['CouponEnriched']['allOf']['1']['discounts'];\n has_renewals_discount?: components['schemas']['Coupon']['has_renewals_discount'];\n };\n /** @description Class Customer\n *\n * An entity to store the connection between a user to its gateway's customer ID. */\n Customer: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n user_id?: components['schemas']['CommonProperties']['user_id'];\n /** @description The external ID from the gateway. */\n external_id?: string;\n /**\n * @description The gateway used for the purchase.\n * @enum {string}\n */\n gateway?: 'paypal' | 'stripe' | 'stripe_eu' | 'test';\n };\n /** @description A developer is someone who has registered to sell products on the Freemius platform. */\n Developer: {\n /**\n * @description Email address of the person.\n * @example jane@example.com\n */\n email?: string;\n /**\n * @description First name of the person.\n * @example Jane\n */\n first?: string;\n /**\n * @description Last name of the person.\n * @example Doe\n */\n last?: string;\n /**\n * @description Profile picture URL.\n * @example https://example.com/profile-pic.jpg\n */\n picture?: string;\n /**\n * Format: ipv4|ipv6\n * @description The IP address (v4 or v6).\n * @example 127.0.0.1\n */\n ip?: string | null;\n /**\n * @description Whether the person is trusted or not.\n * @example true\n */\n is_verified?: boolean;\n auth?: components['schemas']['CommonEnums']['AuthenticationType'];\n /**\n * @description The secret key associated with the entity for authorization.\n * @example sk_a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6\n */\n secret_key?: string;\n /**\n * @description The public key associated with the entity for authorization.\n * @example pk_a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6\n */\n public_key?: string;\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n /**\n * @deprecated\n * @description The legacy PayPal email of the developer. Please use the new billing instead.\n * @example payout@example.com\n */\n paypal_email?: string;\n /**\n * @description Additional address of the developer where Freemius will send security related emails.\n * @example security@example.com\n */\n security_email?: string;\n is_trusted?: boolean;\n /**\n * Format: float\n * @description Developer's paid out gross revenue (excluding chargeback fees, payout fees, and refund fees).\n * @example 1000.00\n */\n earnings?: number;\n /**\n * Format: float\n * @description Developer's unpaid gross revenue. Necessary for properly calculating the commission.\n * @example 100.00\n */\n last_cycle_earnings?: number;\n /**\n * Format: json\n * @description Commission structure. The structure `{1000: 0.3, 5000: 0.2, above: 0.1}`, means\n * that there's 30% commission on up to $1,000 rev, 20% on the revenues from $1,001-$5,000 and 10% after $5,001.\n * @example {\"above\":0.1}\n */\n commission?: string;\n };\n /** @description Discount entity holding the relation between a gateway entity and a coupon. */\n Discount: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n /**\n * Format: int64\n * @description The ID of the related entity.\n */\n entity_id?: string;\n /**\n * @description The type of the related entity. Defaults to `payment`.\n * @default payment\n * @enum {string}\n */\n entity_type: 'payment' | 'subscription';\n /**\n * @description The type of discount. Possible values are `prorate` and `subscription_cancellation`. Defaults to `prorate`.\n * @default prorate\n * @enum {string}\n */\n type: 'prorate' | 'subscription_cancellation';\n /**\n * Format: float\n * @description Discount amount in USD.\n * @example 10.0\n */\n discount?: number;\n /**\n * Format: int64\n * @description The ID of the related coupon.\n */\n coupon_id?: string;\n };\n /** @description Represents an email template. This feature is not fully made and should not be used. */\n EmailTemplate: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n plugin_id?: components['schemas']['CommonProperties']['plugin_id'];\n /**\n * @description The category of the email template.\n * @example user_register\n */\n category?: string;\n /**\n * @description The subject of the email.\n * @example Welcome to Freemius!\n */\n subject?: string;\n /** @description The plaintext version of the email. */\n plain?: string;\n /** @description The HTML version of the email. */\n html?: string;\n };\n /** @description A record of an event logged in the system. */\n EventLog: {\n state?: components['schemas']['CommonEnums']['EventLogState'];\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n /**\n * @description The type of event. See our documented list of the available [event types](https://freemius.com/help/documentation/marketing-automation/events-webhooks/#event_types).\n * @example license.activated\n */\n type?: string;\n /**\n * Format: int64\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id?: string;\n plugin_id?: components['schemas']['CommonProperties']['plugin_id_nullable'];\n user_id?: components['schemas']['CommonProperties']['user_id_nullable'];\n install_id?: components['schemas']['CommonProperties']['install_id_nullable'];\n /** @description The details of the triggered event. This can be a `string` showing ID of the associated entity, an `object` with additional information of the event, or array of objects. */\n data?: unknown;\n /**\n * @description The type of trigger for the event.\n * @example system\n * @enum {string}\n */\n event_trigger?: 'system' | 'developer' | 'plugin' | 'user' | 'install';\n /**\n * Format: date-time\n * @description The time the event was processed. If it is `null`, the event is pending.\n * @example 2025-01-01 12:00:00\n */\n process_time?: string | null;\n };\n /** @description A feature is a distinct functionality or capability of a product that delivers value to users by addressing specific needs or solving problems. */\n Feature: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n /**\n * Format: int64\n * @description The ID of the Plugin.\n * @example 1234\n */\n plugin_id?: string;\n /**\n * @description The title of the feature.\n * @example Pageviews per month\n */\n title?: string;\n /**\n * @description The description of the feature, up to 256 characters. This will be displayed as the description in the tooltip on the pricing page.\n * @example The number of times a page is loaded.\n */\n description?: string;\n /**\n * @description Whether the feature is highlighted and will be shown in the main pricing table. If set as `false`, the feature will be only shown in the plans' comparison table.\n * @example true\n */\n is_featured?: boolean;\n };\n FeatureEnriched: components['schemas']['Feature'] & {\n /**\n * @description The value of the feature associated with the plan. For example the feature name could be \"AI Credits\" and the value could be \"1000\".\n * @example 1000 Units\n */\n value?: string;\n plan_id?: components['schemas']['CommonProperties']['plan_id'];\n };\n FeaturePlan: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n /**\n * Format: int64\n * @description The ID of the plan that the feature is associated.\n * @example 1234\n */\n plan_id?: string;\n /**\n * @description The value associated with the feature.\n * @example 25k\n */\n value?: string | null;\n };\n /** @description Represents an installation of a product on a site. For WordPress products (themes, plugins) it can or cannot have a license. For SaaS or downloadable software, it would always have a license. Please see license activation for more information. */\n Install: {\n /**\n * @description The secret key associated with the entity for authorization.\n * @example sk_a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6\n */\n secret_key?: string;\n /**\n * @description The public key associated with the entity for authorization.\n * @example pk_a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6\n */\n public_key?: string;\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n /**\n * Format: int64\n * @description The ID of the site.\n * @example 1234\n */\n site_id?: string;\n plugin_id?: components['schemas']['CommonProperties']['plugin_id'];\n user_id?: components['schemas']['CommonProperties']['user_id'];\n /**\n * @description The site URL.\n * @example https://example.com\n */\n url?: string | null;\n /**\n * @description The site title.\n * @example Catwalk Designs\n */\n title?: string | null;\n /**\n * @description The Product version.\n * @example 1.0.0\n */\n version?: string;\n /**\n * Format: int64\n * @description The ID of the plan associated with the product that the install has a license activation. If `null` it means the install is using the free plan.\n * @example 1234\n */\n plan_id?: string;\n license_id?: components['schemas']['CommonProperties']['license_id_nullable'];\n /**\n * Format: int64\n * @description The ID of the trial license associated to the product. If this is not a trial, this will be `null`.\n * @example 1234\n */\n trial_plan_id?: string;\n /**\n * Format: date-time\n * @description The product trial license expiry date. If this is not a trial, this will be null.\n * @example 2025-01-01 00:00:00\n */\n trial_ends?: string | null;\n subscription_id?: components['schemas']['CommonProperties']['subscription_id_nullable'];\n /**\n * Format: float\n * @description The gross amount the install has spent on the product. This includes one time purchase, or subscriptions and renewals.\n * @example 100\n */\n gross?: number;\n country_code?: components['schemas']['CommonProperties']['country_code_nullable'];\n /**\n * @description The language specified for the product install.\n * @example en-GB\n */\n language?: string | null;\n /**\n * @description The platform version (e.g WordPress version).\n * @example 1.0.0\n */\n platform_version?: string | null;\n /**\n * @description The Freemius SDK version. Only relevant for WordPress products using the Freemius [WP SDK](https://freemius.com/help/documentation/wordpress-sdk/).\n * @example 1.2.2\n */\n sdk_version?: string | null;\n /**\n * @description The programming language version (e.g PHP version).\n * @example 5.6\n */\n programming_language_version?: string | null;\n /** @description If the product is actively installed on the site. */\n is_active?: boolean;\n /** @description If the product is disconnected on the site. */\n is_disconnected?: boolean;\n /** @description If the install using the premium code. Relevant only for WP Products. */\n is_premium?: boolean;\n /** @description If the product is uninstalled on the site. */\n is_uninstalled?: boolean;\n /** @description If the product is locked on the site. */\n is_locked?: boolean;\n source?: components['schemas']['Migration']['source'];\n /**\n * Format: date-time\n * @description Time when the product was upgraded to the current version. If never upgraded since the initial installation, this will be `null`.\n * @example 2025-01-01 00:00:00\n */\n upgraded?: string | null;\n /**\n * Format: date-time\n * @description The last time the product was used on the site.\n * @example 2025-01-01 00:00:00\n */\n last_seen_at?: string | null;\n /**\n * @description The last product version update used on the site. If not updated, this will be null.\n * @example 1.2.2\n */\n last_served_update_version?: string | null;\n };\n /** @description Represents the relation between an install and its clone. These entities are usually created when a user clones the site in staging or locally. */\n InstallClone: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n install_id?: components['schemas']['CommonProperties']['install_id'];\n /**\n * Format: int64\n * @description The ID of the newly created cloned `Install`.\n * @example 1234\n */\n new_install_id?: string | null;\n /**\n * @description The install's URL (install.url) when the clone was identified.\n * @example https://example.com\n */\n install_url?: string;\n /**\n * @description The URL of the site where the clone was identified.\n * @example https://staging.example.com\n */\n site_url?: string;\n /**\n * @description The state of the clone.\n * @enum {string}\n */\n state?: 'pending' | 'resolved';\n /**\n * @description The resolution or purpose of the clone site.\n * @enum {string|null}\n */\n resolution?: 'temporary_duplicate' | 'new_home' | 'long_term_duplicate' | null;\n };\n InstallMetadata: {\n permissions?: {\n /** @description Whether the site level tracking is on, for example the site title, URL, language etc. */\n site?: boolean;\n /** @description Whether the user level tracking is on, for example the user email, first and last name, etc. */\n user?: boolean;\n /** @description Whether the extensions tracking is on (for example list of plugins and themes installed on the same WordPress website). */\n extensions?: boolean;\n };\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n install_id?: components['schemas']['CommonProperties']['install_id'];\n };\n /** @description A license represents authorization to use available features of the product. */\n License: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n plugin_id?: components['schemas']['CommonProperties']['plugin_id'];\n user_id?: components['schemas']['CommonProperties']['user_id_nullable'];\n plan_id?: components['schemas']['CommonProperties']['plan_id'];\n pricing_id?: components['schemas']['CommonProperties']['pricing_id_nullable'];\n /**\n * @description The maximum number of license activations. If `null` then the license will support unlimited activations.\n * @example 10\n */\n quota?: number | null;\n /**\n * @description The total number of production activation the license has. This does not count local or staging environment activations.\n * @example 1\n */\n activated?: number;\n /**\n * @description The number of times the license is activated on local or staging environments.\n * @example 1\n */\n activated_local?: number | null;\n /**\n * Format: date-time\n * @description The expiration date of the license. If `null` then it's a lifetime license.\n * @example 2025-12-31 23:59:59\n */\n expiration?: string | null;\n /**\n * @description The license key. This is used for activating the license on the user's site.\n * @example sk_123FGqM456Pa786WtOp%^+67Y+;sXXz\n */\n secret_key?: string;\n /**\n * @description Whether the license offers unlimited local or staging environment activations.\n * @default true\n */\n is_free_localhost: boolean;\n /**\n * @description Whether to block features after expiration of the license. If set to `false`, this would not block features, would only block updates.\n * @default true\n */\n is_block_features: boolean;\n /** @description If the license is canceled from the Developer Dashboard. */\n is_cancelled?: boolean;\n /** @description Guide the [Freemius WP SDK](https://github.com/Freemius/wordpress-sdk) when the product should be running in a [white-label](https://freemius.com/help/documentation/users-account-management/license-security/#white_label_mode) mode. */\n is_whitelabeled?: boolean;\n environment?: components['schemas']['CommonProperties']['environment'];\n source?: components['schemas']['Migration']['source'];\n };\n /** @description A license associated with a subscription or a bundle. */\n LicenseEnriched: components['schemas']['License'] & {\n /** @description The ID of the associated bundle license (**Only** available when `enriched` option is set). */\n parent_plan_id?: number;\n /**\n * Format: date-time\n * @description The end date of a trial subscription (**Only** available when `enriched` option is set).\n * @example 2021-01-01 00:00:00\n */\n trial_ends?: string;\n /**\n * Format: int64\n * @description The ID of the associated subscription (**Only** available when `enriched` option is set).\n * @example 1234\n */\n subscription_id?: string;\n /**\n * Format: float\n * @description The total gross price associated with the subscription (**Only** available when `enriched` option is set).\n * @example 102.34\n */\n subscription_total_gross?: number;\n /**\n * Format: float\n * @description The initial amount associated with the subscription (**Only** available when `enriched` option is set).\n * @example 105.99\n */\n subscription_initial_amount?: number;\n /**\n * @description The payment gateway associated with the subscription (**Only** available when `enriched` option is set).\n * @example stripe\n * @enum {string}\n */\n subscription_gateway?: 'paypal' | 'stripe' | 'test';\n /**\n * @description The number of failed payments associated with the subscription (**Only** available when `enriched` option is set).\n * @example 2\n */\n subscription_failed_payments?: number;\n /**\n * Format: date-time\n * @description The renewal date of the subscription (**Only** available when `enriched` option is set).\n * @example 2025-01-01 00:00:00\n */\n next_payment?: string | null;\n /**\n * Format: int64\n * @description The ID of the associated bundle license. This will be populated only when the license is associated with a parent license from a bundle (**Only** available when `enriched` option is set).\n * @example 1234\n */\n parent_license_id?: string;\n /**\n * Format: int64\n * @description The ID of the bundle that is associated with the parent license (**Only** available when `enriched` option is set).\n * @example 1234\n */\n parent_license_bundle_id?: string;\n /**\n * @description The title of the plan associated with the bundle (**Only** available when `enriched` option is set).\n * @example Agency\n */\n parent_plan_title?: string | null;\n /**\n * @description The slug of the plan associated with the bundle (**Only** available when `enriched` option is set).\n * @example agency\n */\n parent_plan_name?: string | null;\n };\n /** @description Represents a product from the market, not necessarily powered by Freemius. For WordPress product this usually represents a themes or plugins installed in the same site as the Freemius powered product. Only after the user chooses to opt-in, such data is collected and sent to Freemius. */\n MarketItem: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n plugin_id?: components['schemas']['CommonProperties']['plugin_id_nullable'];\n /**\n * @description Product slug name.\n * @example catwalk-reviews\n */\n slug?: string;\n /**\n * @description Products name.\n * @example Catwalk Reviews\n */\n title?: string;\n /**\n * @description The business model of the product. We can only detect the model if the product is also integrated with Freemius.\n * @default free\n * @enum {string}\n */\n model: 'free' | 'premium' | 'freemium';\n /**\n * @description The type of the product. Right now we only support WordPress products, i.e, plugins and themes.\n * @default plugin\n * @enum {string}\n */\n type: 'plugin' | 'theme';\n /**\n * @description The number of product downloads.\n *\n * > We are not updating this field yet. We plan to do it in the future.\n * @example 1000\n */\n downloads?: number;\n /**\n * @description The number of product installs.\n *\n * > We are not updating this field yet. We plan to do it in the future.\n * @example 1000\n */\n installs_count?: number;\n /**\n * Format: date-time\n * @description The date of the last product release/update.\n *\n * > We are not updating this field yet. We plan to do it in the future.\n * @example 2025-01-01 00:00:00\n */\n last_release?: string;\n /**\n * @description The version number of the latest release/update.\n * @example 1.0.0\n */\n newest_version?: string;\n };\n Member: components['schemas']['Developer'] & {\n plugin_id?: components['schemas']['CommonProperties']['plugin_id'];\n /**\n * @description The user role assigned to the team member.\n * @enum {string}\n */\n role?: 'admin' | 'developer' | 'support' | 'accountant';\n };\n /** @description A written remark that provides additional context, clarification, or explanation related to a specific record. */\n Note: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n /**\n * @description The ID of the scope entity that this note is associated with.\n * @example 12345\n */\n scope_entity_id?: number;\n /**\n * @description The type of the scope entity that this note is associated with.\n * @enum {string}\n */\n scope_entity_type?: 'plugin' | 'store';\n /**\n * @description The ID of the entity that this note is associated with.\n * @example 12345\n */\n entity_id?: number;\n /**\n * @description The type of the entity that this note is associated with.\n * @enum {string}\n */\n entity_type?: 'coupon' | 'user' | 'payment' | 'subscription' | 'license';\n /**\n * @description The note.\n * @example This is a note\n */\n note?: string;\n };\n /** @description An acknowledgement of a payment recevied for the following cases:\n * - Initial payment of a subscription.\n * - Renewal payment of a subscription.\n * - One-time payment for a product.\n *\n * Along with refunds, disputes, chargebacks etc. */\n Payment: {\n user_id?: components['schemas']['CommonProperties']['user_id'];\n install_id?: components['schemas']['CommonProperties']['install_id_nullable'];\n plan_id?: components['schemas']['CommonProperties']['plan_id'];\n pricing_id?: components['schemas']['CommonProperties']['pricing_id_nullable'];\n license_id?: components['schemas']['CommonProperties']['license_id'];\n ip?: components['schemas']['CommonProperties']['ip_nullable'];\n country_code?: components['schemas']['CommonProperties']['country_code'];\n zip_postal_code?: components['schemas']['CommonProperties']['zip_postal_code_nullable'];\n vat_id?: components['schemas']['CommonProperties']['vat_id_nullable'];\n coupon_id?: components['schemas']['CommonProperties']['coupon_id_nullable'];\n /**\n * Format: int64\n * @description The ID of the user card that was used for this payment.\n * @example 12345\n */\n user_card_id?: string;\n source?: components['schemas']['Migration']['source'];\n plugin_id?: components['schemas']['CommonProperties']['plugin_id'];\n /**\n * @description The external ID of the gateway entity.\n * @example abcde12345\n */\n external_id?: string;\n /** @description The gateway used for the purchase. The gateway will be set to `null` when purchasing a product with a 100% discount. */\n gateway?: string | null;\n environment?: components['schemas']['CommonProperties']['environment'];\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n currency?: components['schemas']['CommonEnums']['Currency'];\n /** @example Refunded due to a bug in the plugin. */\n refund_reason?: string | null;\n subscription_id?: components['schemas']['CommonProperties']['subscription_id_nullable'];\n /**\n * Format: float\n * @description The payment amount (not including taxes).\n * @example 2075.45\n */\n gross?: number;\n /**\n * Format: int64\n * @description The ID of the payment that this payment is bound to, in case of a refund or chargeback/dispute.\n * @example 123456\n */\n bound_payment_id?: string;\n /**\n * Format: float\n * @description The fee that the gateway took for processing this payment.\n * @default 0\n * @example 2.99\n */\n gateway_fee: number;\n vat?: components['schemas']['CommonProperties']['vat'];\n /**\n * @description If the payment is a renewal.\n * @default false\n */\n is_renewal: boolean;\n type?: components['schemas']['CommonEnums']['PaymentType'];\n };\n /** @description A plan defines the features available to the users. It can have different set of pricing per billing cycle, quota, currency etc. */\n Plan: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n plugin_id?: components['schemas']['CommonProperties']['plugin_id'];\n /**\n * Format: slug\n * @description The name of the plan. Only lowercase characters allowed.\n * @example professional\n */\n name?: string;\n /**\n * @description The title of the plan. This is the human readable name of the plan. Please do not add the suffix `Plan` to the title, as Freemius does that for you at various places.\n * @example Professional\n */\n title?: string;\n /**\n * @description The description of the plan.\n * @example For small to medium businesses.\n */\n description?: string | null;\n /**\n * @description Whether the plan offers unlimited local or staging activations with the same license.\n * @default true\n */\n is_free_localhost: boolean;\n /**\n * @description Whether to block features on expiration of **annual** licenses. If `false`, does not block features but only block updates and support.\n * @default true\n */\n is_block_features: boolean;\n /**\n * @description Whether to block particular features on expiration of **monthly** licenses. If `false`, does not block features but only block updates and support.\n * @default true\n */\n is_block_features_monthly: boolean;\n /**\n * @description The type of the license. `0` for per domain license. `1` for per subdomain license.\n * @default 0\n * @enum {integer}\n */\n license_type: 0 | 1;\n /**\n * @description The number of days a trial period will last. If `null` the plan does not support trials.\n * @example 14\n */\n trial_period?: number | null;\n /** @description Whether to require a subscription payment for the trial period. */\n is_require_subscription?: boolean;\n /**\n * @description The Knowledge Base URL.\n * @example https://example.com/help/documentation\n */\n support_kb?: string | null;\n /**\n * @description The support Forum URL.\n * @example https://example.com/support\n */\n support_forum?: string | null;\n /**\n * @description The support email address.\n * @example support@example.com\n */\n support_email?: string | null;\n /**\n * @description The support phone contact.\n * @example 555-555-5555\n */\n support_phone?: string | null;\n /** @description Is a personal success manager allocated with the plan. */\n is_success_manager?: boolean;\n /** @description Whether this is a featured plan. */\n is_featured?: boolean;\n /** @description Whether to hide the plan from the auto-generated pricing page. Mostly relevant for WordPress products and our WordPress SDK. Please see our [pricing-page](https://github.com/Freemius/pricing-page/) library to implement your own. */\n is_hidden?: boolean;\n };\n /**\n * Product\n * @description A **product** is a software that is being sold on Freemius. It can be a WordPress plugin, theme, SaaS, or any other software that is being sold on Freemius.\n */\n Plugin: {\n /**\n * @description The secret key associated with the entity for authorization.\n * @example sk_a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6\n */\n secret_key?: string;\n /**\n * @description The public key associated with the entity for authorization.\n * @example pk_a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6\n */\n public_key?: string;\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n /**\n * Format: int64\n * @description If the product is an add-on then this is the ID of the parent product.\n * @example 123456\n */\n parent_plugin_id?: string | null;\n /**\n * Format: int64\n * @description The ID of the developer that owns the product.\n * @example 123456\n */\n developer_id?: string;\n /**\n * Format: int64\n * @description The ID of the store that the product is being sold on.\n * @example 123456\n */\n store_id?: string;\n /**\n * @description The `slug` of the product. If your plugin is listed on `WordPress.org` repository, use the exact slug.\n * @example my-freemius-plugin\n */\n slug?: string;\n /**\n * @description The title of the product.\n * @example My Freemius Plugin\n */\n title?: string;\n environment?: components['schemas']['CommonProperties']['environment'];\n /**\n * @description Product's icon (profile picture).\n * @example https://img.freemius.com/plugin-icon-blue.png\n */\n icon?: string | null;\n /**\n * Format: int64\n * @description Default plan ID of the product.\n */\n default_plan_id?: string;\n /**\n * @description Comma separated, ordered plans collection.\n * @example 123456,123457,123458\n */\n plans?: string;\n /**\n * @description Comma separated, ordered features collection.\n * @example 123456,123457,123458\n */\n features?: string;\n /** @description Money-back guarantee in days. */\n money_back_period?: number;\n refund_policy?: components['schemas']['CommonEnums']['RefundPolicy'];\n /** @description Renewals discount that will be applied to the chosen plan. */\n annual_renewals_discount?: number | null;\n renewals_discount_type?: components['schemas']['CommonEnums']['RenewalsDiscountType'];\n /** @description A flag that controls the visibility of add-ons in the in-dashboard add-ons marketplace. Defaults to true. Only applicable if the product is an add-on. */\n is_released?: boolean;\n /** @description A flag that controls whether the SDK should be required or not during deployment of a version. It defaults to `true`. */\n is_sdk_required?: boolean;\n /** @description Determines if the pricing should be visible in the in-SDK pricing page. Defaults to true. Turn this off during the development of a new product. */\n is_pricing_visible?: boolean;\n /** @description Set to true if the free version of the module is hosted on WordPress.org. Defaults to true. */\n is_wp_org_compliant?: boolean;\n /** @description Total number of opted in sites which were logged with the SDK. */\n installs_count?: number;\n /** @description Total number of active sites where the SDK is active. */\n active_installs_count?: number;\n /** @description The number of \"free\" version of the product that were deployed from Freemius. */\n free_releases_count?: number;\n /** @description The number of \"premium\" version of the product that were deployed from Freemius. */\n premium_releases_count?: number;\n /** @description Total number of payments recorded for the product. */\n total_purchases?: number;\n /** @description Total number of subscriptions recorded for the product. */\n total_subscriptions?: number;\n /** @description Total number of renewals recorded for the product. */\n total_renewals?: number;\n /**\n * @description Total number of failed payments recorded for the product.\n * @example 1234\n */\n total_failed_purchases?: number;\n /**\n * Format: float\n * @description Total gross revenues.\n * @example 1234.56\n */\n earnings?: number;\n type?: components['schemas']['CommonEnums']['ProductType'];\n /** @description Determines whether the product is categorized as a static product (for example, a widget or a template). */\n is_static?: boolean;\n };\n /**\n * ProductEmailAddress\n * @description Represents the email address setup associated with the product.\n */\n PluginEmailAddress: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n plugin_id?: components['schemas']['CommonProperties']['plugin_id'];\n store_id?: components['parameters']['store_id'];\n /**\n * @description The general system email address.\n * @example foo@example.com\n */\n general?: string | null;\n /**\n * @description The label to the general system email address.\n * @example Company Support\n */\n general_name?: string | null;\n /**\n * @description The do-not-reply email address.\n * @example donotreply@example.com\n */\n dont_reply?: string | null;\n /**\n * @description The label to the do-not-reply email address.\n * @example Do Not Reply\n */\n dont_reply_name?: string | null;\n /**\n * @description The personal assistance email address.\n * @example personalmanager@example.com\n */\n personal?: string | null;\n /**\n * @description The label to the personal assistance email address.\n * @example John Doe\n */\n personal_name?: string | null;\n /**\n * @description The technical support representative email address.\n * @example techsupport@example.com\n */\n personal_technical?: string | null;\n /**\n * @description The label to the technical support representative email address.\n * @example Tech Support\n */\n personal_technical_name?: string | null;\n /**\n * @description The happiness representative email address.\n * @example support@example.com\n */\n personal_setup?: string | null;\n /**\n * @description The label to the happiness representative email address.\n * @example Support\n */\n personal_setup_name?: string | null;\n /**\n * @description The general support email address.\n * @example support@example.com\n */\n support?: string | null;\n /**\n * @description The label to the general support email address.\n * @example Support\n */\n support_name?: string | null;\n };\n /**\n * ProductInfo\n * @description The basic information about a product.\n */\n PluginInfo: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n plugin_id?: components['schemas']['CommonProperties']['plugin_id'];\n url?: components['schemas']['CommonProperties']['url'];\n /**\n * @description The description of the product.\n * @example Calculate profits for small to medium businesses. This product is a must-have for any business owner who intends to view the profits of their business.\n */\n description?: string;\n /**\n * @description The short description of the product.\n * @example Calculate profits for small to medium businesses.\n */\n short_description?: string;\n banner_url?: components['schemas']['CommonProperties']['url'];\n card_banner_url?: components['schemas']['CommonProperties']['url'];\n /**\n * @description The selling point one of the product.\n * @example Ability to use stunning feature x.\n */\n selling_point_0?: string;\n /**\n * @description The selling point two of the product.\n * @example Ability to use stunning feature y.\n */\n selling_point_1?: string;\n /**\n * @description The selling point three of the product.\n * @example Ability to use stunning feature z.\n */\n selling_point_2?: string;\n /**\n * @description The URLs of the product screenshot.\n * @example {\n * \"screenshot_0\": \"https://exmaple.com/\",\n * \"screenshot_1\": \"https://exmaple.com/\",\n * \"screenshot_2\": \"https://exmaple.com/\",\n * \"screenshot_3\": \"https://exmaple.com/\"\n * }\n */\n screenshots?: {\n [key: string]: unknown;\n };\n };\n /**\n * ProductReview\n * @description Represents a customer's opinion after using a product. It can be generated by a real user or a developer. The review can be featured on the pricing page.\n */\n PluginReview: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n plugin_id?: components['schemas']['CommonProperties']['plugin_id'];\n /** @description The external ID of the review (in case migrating from another system). */\n external_id?: string;\n user_id?: components['schemas']['CommonProperties']['user_id_nullable'];\n /**\n * @description The score of the review.\n * @example 80\n */\n rate?: number;\n /**\n * @description The title of the review.\n * @example Great plugin! It works perfectly.\n */\n title?: string;\n /**\n * @description The content of the review.\n * @example I love this plugin! It has all the features I need and more. The support team is also very responsive and helpful. Highly recommend!\n */\n text?: string;\n /**\n * @description The full name of the reviewer.\n * @example John Doe\n */\n name?: string;\n /**\n * @description The job title of the reviewer.\n * @example Software Engineer\n */\n job_title?: string;\n /**\n * @description The company name of the reviewer.\n * @example Example Software Inc.\n */\n company?: string;\n company_url?: components['schemas']['CommonProperties']['url'];\n picture?: components['schemas']['CommonProperties']['icon'];\n /**\n * @description The URL of the reviewer's profile.\n * @example https://example.com/profile\n */\n profile_url?: string;\n license_id?: components['schemas']['CommonProperties']['license_id'];\n /**\n * @description Whether this is a genuine review generated by a real user.\n * @default true\n */\n is_verified: boolean;\n /**\n * @description Whether the review should be included in marketing material (e.g. pricing page).\n * @default false\n */\n is_featured: boolean;\n };\n /**\n * ProductTag\n * @description A product tag represents a version of the product that is available for download by users.\n */\n PluginTag: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n plugin_id?: components['schemas']['CommonProperties']['plugin_id'];\n /**\n * Format: int64\n * @description The ID of a developer.\n * @example 1234\n */\n developer_id?: string;\n /**\n * @description The `slug` of the product. This is auto-generated from your product settings.\n * @example my-freemius-plugin\n */\n slug?: string | null;\n /**\n * @description The `slug` of the premium product. This is auto-generated from your product's settings.\n * @example my-freemius-plugin-pro\n */\n premium_slug?: string | null;\n /**\n * Format: semver\n * @description The version of the product. For WordPress.org products (plugins and themes), we recommend using semver semantics to support composer integration.\n * @example 1.0.0\n */\n version?: string;\n /**\n * @description The Freemius SDK version. Only relevant for WordPress products using the Freemius [WP SDK](https://freemius.com/help/documentation/wordpress-sdk/).\n * @example 1.2.2\n */\n sdk_version?: string;\n /**\n * @description The platform version required (e.g WordPress version).\n * @example 1.0.0\n */\n requires_platform_version?: string | null;\n /**\n * @description The programming language version (e.g PHP version).\n * @example 5.6\n */\n requires_programming_language_version?: string | null;\n /**\n * @description The tested platform version that the product is compatible (e.g WordPress version).\n * @example 1.0.0\n */\n tested_up_to_version?: string | null;\n /**\n * @description The number of times the product has been downloaded.\n * @example 1234\n */\n downloaded?: number;\n /** @description If the product has a free version. */\n has_free?: boolean;\n /** @description If the product has a premium version. */\n has_premium?: boolean;\n /**\n * @description The release mode of the product.\n * @enum {string}\n */\n release_mode?: 'released' | 'pending' | 'beta';\n /**\n * @description The maximum number of downloads allowed for this version. This is used for [staged rollout](https://freemius.com/help/documentation/release-management/staged-rollouts/) of WordPress products. Unlimited number is set as `null`.\n * @example 50\n */\n limit?: number;\n /**\n * @description The number of unique users that have downloaded the product.\n * @example 1234\n */\n uniques?: number;\n /**\n * @description Determines whether the version is incremental or not.\n * @example true\n */\n is_incremental?: boolean;\n };\n /** @description The pricing represents the cost of a quota and billing cycles of a plan. */\n Pricing: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n currency?: components['schemas']['CommonEnums']['Currency'];\n /**\n * Format: int64\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id?: string;\n /**\n * @description The number of activations or quota supported by the license that will be created through the pricing (Using [Freemius Checkout](https://freemius.com/help/documentation/selling-with-freemius/freemius-checkout-buy-button/)). Use `null` for unlimited activations or quota.\n * @example 10\n */\n licenses?: number | null;\n /**\n * Format: float\n * @description The price for a single month.\n * @example 59.99\n */\n monthly_price?: number | null;\n /**\n * Format: float\n * @description The price for one year.\n * @example 159.99\n */\n annual_price?: number | null;\n /**\n * Format: float\n * @description The lifetime price.\n * @example 359.99\n */\n lifetime_price?: number | null;\n /** @description Whether to [whitelabel](https://freemius.com/help/documentation/users-account-management/license-security/#white_label_mode) the license that will be created from this pricing upon successful Checkout. */\n is_whitelabeled?: boolean;\n /** @description Whether to hide the pricing from checkout and the pricing page in the WP dashboard. */\n is_hidden?: boolean;\n };\n /** @description Settings associated with an element. */\n Setting: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n /** @description The type of the setting. */\n setting_type?: number;\n /**\n * Format: int64\n * @description The ID of the element the setting is associated with.\n * @example 1234\n */\n element_id?: string;\n /** @description The type of the element. It is unique for each entity type. */\n element_type?: number;\n /**\n * Format: json\n * @description JSON encoded data of the settings.\n * @example {\"key\":\"value\"}\n */\n data?: string;\n };\n /** @description A subscription is created when a user uses [Freemius Checkout](https://freemius.com/wordpress/checkout/) to purchase or subscribe to a plan of a product. */\n Subscription: {\n user_id?: components['schemas']['CommonProperties']['user_id'];\n install_id?: components['schemas']['CommonProperties']['install_id_nullable'];\n plan_id?: components['schemas']['CommonProperties']['plan_id'];\n pricing_id?: components['schemas']['CommonProperties']['pricing_id_nullable'];\n license_id?: components['schemas']['CommonProperties']['license_id'];\n ip?: components['schemas']['CommonProperties']['ip_nullable'];\n country_code?: components['schemas']['CommonProperties']['country_code'];\n zip_postal_code?: components['schemas']['CommonProperties']['zip_postal_code_nullable'];\n vat_id?: components['schemas']['CommonProperties']['vat_id_nullable'];\n coupon_id?: components['schemas']['CommonProperties']['coupon_id_nullable'];\n /**\n * Format: int64\n * @description The ID of the user card that was used for this payment.\n * @example 12345\n */\n user_card_id?: string;\n source?: components['schemas']['Migration']['source'];\n plugin_id?: components['schemas']['CommonProperties']['plugin_id'];\n /**\n * @description The external ID of the gateway entity.\n * @example abcde12345\n */\n external_id?: string;\n /** @description The gateway used for the purchase. The gateway will be set to `null` when purchasing a product with a 100% discount. */\n gateway?: string | null;\n environment?: components['schemas']['CommonProperties']['environment'];\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n currency?: components['schemas']['CommonEnums']['Currency'];\n /**\n * Format: float\n * @description The tax rate as a fraction. It will either be US sales tax or VAT.\n * @example 1.00\n */\n tax_rate?: number;\n /**\n * Format: float\n * @description The total gross amount of the subscription, including taxes.\n * @example 1.21\n */\n total_gross?: number;\n /**\n * Format: float\n * @description The plan's original amount per cycle (not including taxes).\n * @example 1.00\n */\n amount_per_cycle?: number;\n /**\n * Format: float\n * @description The initial payment amount (not including taxes).\n * @example 1.00\n */\n initial_amount?: number;\n /**\n * Format: float\n * @description The renewals amount (not including taxes).\n * @example 1.00\n */\n renewal_amount?: number;\n /**\n * @description The renewals discount that will be applied to the chosen plan.\n * @example 1\n */\n renewals_discount?: number;\n renewals_discount_type?: components['schemas']['CommonEnums']['RenewalsDiscountType'];\n billing_cycle?: components['schemas']['CommonEnums']['BillingCycle'];\n /**\n * Format: float\n * @description Any outstanding balance that the user has for this subscription.\n * @example 1.00\n */\n outstanding_balance?: number;\n /**\n * @description Number of failed payments associated with the subscription.\n * @example 1\n */\n failed_payments?: number;\n /**\n * Format: date-time\n * @description The date time when the trial period ends. If `null` the subscription is not associated with a trial.\n * @example 2025-01-01 00:00:00\n */\n trial_ends?: string | null;\n /**\n * Format: date-time\n * @description Datetime of the next payment, or `null` if cancelled.\n * @example 2025-01-01 00:00:00\n */\n next_payment?: string | null;\n /**\n * Format: date-time\n * @description Datetime of the cancellation.\n * @example 2025-01-01 00:00:00\n */\n canceled_at?: string | null;\n };\n /** @description A trial represents a user's trial period for a product. Please read our [documentation](https://freemius.com/help/documentation/selling-with-freemius/free-trials/) to learn more about trials. */\n Trial: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n plugin_id?: components['schemas']['CommonProperties']['plugin_id'];\n user_id?: components['schemas']['CommonProperties']['user_id'];\n payment_id?: components['schemas']['CommonProperties']['payment_id_nullable'];\n subscription_id?: components['schemas']['CommonProperties']['subscription_id_nullable'];\n license_id?: components['schemas']['CommonProperties']['license_id_nullable'];\n /**\n * Format: date-time\n * @description The date and time the trial ends, under UTC timezone.\n * @example 2025-01-01 00:00:00\n */\n trial_ends_at?: string;\n /** @description Whether the trial was created with a payment method. Freemius supports both free and paid trials. */\n with_payment_method?: boolean;\n /**\n * Format: date-time\n * @description The date and time the trial was cancelled, under UTC timezone. If `null` the trial has not been cancelled.\n * @example 2025-01-01 00:00:00\n */\n canceled_at?: string | null;\n /**\n * Format: date-time\n * @description The date and time the trial was converted to a paid subscription or one-time purchase, under UTC timezone.\n * If `null` the trial has not been converted.\n * @example 2025-01-01 00:00:00\n */\n converted_at?: string | null;\n environment?: components['schemas']['CommonProperties']['environment'];\n };\n /** @description An uninstall represents a user uninstalling a product from their site. This is different from deleting. */\n Uninstall: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n plugin_id?: components['schemas']['CommonProperties']['plugin_id'];\n install_id?: components['schemas']['CommonProperties']['install_id'];\n /**\n * Format: int64\n * @description The ID of the site.\n * @example 1234\n */\n site_id?: string;\n /**\n * @description\n * Uninstall reason. Possible values:\n *\n * * `1` - No longer needed\n * * `2` - Found a better alternative\n * * `3` - Only needed for short period\n * * `4` - Broke the website\n * * `5` - Suddenly stopped working\n * * `6` - Cannot continue paying\n * * `7` - Other\n * * `8` - Didn't work after installation\n * * `9` - User doesn't like to share data\n * * `10` - Didn't understand how it works\n * * `11` - Missing specific feature\n * * `12` - Didn't work\n * * `13` - Expected something else\n * * `14` - Expected to work differently\n * * `15` - Temporary deactivation\n *\n * @example 1\n * @enum {integer}\n */\n reason_id?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15;\n /** @description Additional information gathered from the user for the uninstallation. This is populated when the product user chooses “Other” in contrast to pre-set options. */\n reason_info?: string;\n };\n /** @description A **User** is a person who is registered to Freemius through some usage of one or more products selling through Freemius. The user could own licenses of such products or simply could have been linked to the Free version of the products. Every user has unique email address. */\n User: {\n /** @description A note about the user. Only visible to the developer. */\n note?: string;\n /** @description Whether or not the user has given their consent for marketing materials. A `null` value indicates that the user has not made a decision yet. */\n is_marketing_allowed?: boolean | null;\n /** @description Whether or not the user has opted-in to beta versions. We do not recommend using this option anymore since it will opt-in the user to all sites/activations. Currently, sites or activations can be managed individually. */\n is_beta?: boolean;\n /**\n * @description Email address of the person.\n * @example jane@example.com\n */\n email?: string;\n /**\n * @description First name of the person.\n * @example Jane\n */\n first?: string;\n /**\n * @description Last name of the person.\n * @example Doe\n */\n last?: string;\n /**\n * @description Profile picture URL.\n * @example https://example.com/profile-pic.jpg\n */\n picture?: string;\n /**\n * Format: ipv4|ipv6\n * @description The IP address (v4 or v6).\n * @example 127.0.0.1\n */\n ip?: string | null;\n /**\n * @description Whether the person is trusted or not.\n * @example true\n */\n is_verified?: boolean;\n auth?: components['schemas']['CommonEnums']['AuthenticationType'];\n /**\n * @description The secret key associated with the entity for authorization.\n * @example sk_a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6\n */\n secret_key?: string;\n /**\n * @description The public key associated with the entity for authorization.\n * @example pk_a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6\n */\n public_key?: string;\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n /**\n * Format: float\n * @description The total amount of money the user has spent on the platform.\n */\n gross?: number;\n /**\n * Format: date-time\n * @description Date and time of the last login.\n * @example 2025-07-30 05:56:29\n */\n last_login_at?: string | null;\n email_status?: components['schemas']['CommonEnums']['EmailStatus'];\n };\n UserPluginEnriched: components['schemas']['User'] & {\n plugin_id?: components['schemas']['CommonProperties']['plugin_id'];\n user_id?: components['schemas']['CommonProperties']['user_id'];\n /**\n * Format: float\n * @description Gross payments made by the user for the product\n * @example 999\n */\n gross?: number;\n /** @description Whether the user has consented for marketing notifications. */\n is_marketing_allowed?: boolean;\n };\n /** @description An affiliate is individual or businesses that promotes and sells products or services in exchange for a commission on each sale. */\n Affiliate: {\n id?: components['schemas']['CommonProperties']['id'];\n created?: components['schemas']['CommonProperties']['created'];\n updated?: components['schemas']['CommonProperties']['updated'];\n user_id?: components['schemas']['CommonProperties']['user_id'];\n ip?: components['schemas']['CommonProperties']['ip'];\n /**\n * @description The PayPal email for payout purposes.\n * @example foo@freemius.com\n */\n paypal_email?: string;\n plugin_id?: components['schemas']['CommonProperties']['plugin_id'];\n /**\n * Format: int64\n * @description The ID of the affiliate terms.\n * @example 1234\n */\n affiliate_terms_id?: string;\n /**\n * Format: int64\n * @description The ID of the custom affiliate terms.\n * @example 1234\n */\n custom_affiliate_terms_id?: string;\n /** @description Whether the affiliate is using custom terms. */\n is_using_custom_terms?: boolean;\n /**\n * @description The status of the affiliate signup.\n * @default \\Freemius\\Entities\\Affiliation\\Affiliate::STATE_PENDING\n * @enum {string}\n */\n status: 'pending' | 'rejected' | 'suspended' | 'active';\n /**\n * @description The domain of the affiliate.\n * @example https://awesome-products.com\n */\n domain?: string;\n /**\n * Format: float\n * @description The earnings of the affiliate from sales.\n * @example 2000.45\n */\n earnings?: number;\n /**\n * @description The number of unapproved/pending referrals.\n * @example 1234\n */\n pending_referrals?: number;\n /**\n * @description The number of visits through the affiliate link.\n * @example 1234\n */\n visits?: number;\n /**\n * @description The number of unique visits through the affiliate link.\n * @example 1234\n */\n unique_visits?: number;\n };\n AuthToken: {\n /**\n * @description The access token that our API or general infrastructure will accept.\n * @example 1234567890abcdef1234567890abcdef\n */\n access?: string;\n /**\n * @description The expiration time of the access token in timestamp.\n * @example 1234567890\n */\n expires?: number;\n /**\n * @deprecated\n * @description The refresh token which can be used to generate a new access token. We don't support creating access tokens with refresh tokens anymore. For API communication please use the Bearer token.\n * @example \"1234567890abcdef1234567890abcdef\"\n */\n refresh?: string;\n };\n /** @description The key represents the ID of the plan */\n FSEndpointDeveloperPluginPricing: {\n /** @description Monthly pricing in different currencies */\n monthly_price?: {\n /**\n * Format: float\n * @example 9.99\n */\n usd?: number;\n /**\n * Format: float\n * @example 7.99\n */\n gbp?: number;\n /**\n * Format: float\n * @example 8.99\n */\n eur?: number;\n };\n /** @description Annual pricing in different currencies */\n annual_price?: {\n /**\n * Format: float\n * @example 99.99\n */\n usd?: number;\n /**\n * Format: float\n * @example 79.99\n */\n gbp?: number;\n /**\n * Format: float\n * @example 89.99\n */\n eur?: number;\n };\n /** @description Lifetime pricing in different currencies */\n lifetime_price?: {\n /**\n * Format: float\n * @example 299.99\n */\n usd?: number;\n /**\n * Format: float\n * @example 249.99\n */\n gbp?: number;\n /**\n * Format: float\n * @example 279.99\n */\n eur?: number;\n };\n };\n FSEndpointDeveloperPluginSubscriptions: components['schemas']['Discount'][];\n FSEndpointDeveloperPluginUserSubscriptions: components['schemas']['Discount'][];\n };\n responses: {\n /** @description The API has no content to send. This usually happens when some entity is deleted. */\n 204: {\n headers: {\n [name: string]: unknown;\n };\n content?: never;\n };\n /** @description Bad request. The request could not be understood by the server due to malformed syntax or arguments. */\n 400: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['ApiError'];\n };\n };\n /** @description Unauthorized access error. The request requires [authentication](/api/section/bearer-token-auth/) but was not provided or the provided authentication does not satisfy the required permissions. */\n 401: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['ApiError'];\n };\n };\n /** @description The request is missing the specified argument. */\n 402: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['ApiError'];\n };\n };\n /** @description The requested resource was not found. */\n 404: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['ApiError'];\n };\n };\n };\n parameters: {\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: number;\n /**\n * @description The ID of the store.\n * @example 1234\n */\n store_id: number;\n /**\n * @description The ID of the product.\n * @example 1234\n */\n plugin_id: number;\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: number;\n /**\n * @description The ID of the bank account.\n * @example 1234\n */\n bank_account_id: number;\n /**\n * @description The ID of the Cart.\n * @example 1234\n */\n cart_id: number;\n /**\n * @description The ID of the setting.\n * @example 1234\n */\n setting_id: number;\n /**\n * @description The ID of the payment.\n * @example 1234\n */\n payment_id: number;\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: number;\n /**\n * @description The ID of the clone.\n * @example 1234\n */\n clone_id: number;\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: number;\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: number;\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: number;\n /**\n * @description The ID of the Subscription.\n * @example 1234\n */\n subscription_id: number;\n /**\n * @description The ID of the Pricing.\n * @example 1234\n */\n pricing_id: number;\n /**\n * @description The ID of the Addon.\n * @example 1234\n */\n addon_id: number;\n /**\n * @description The ID of the product version.\n * @example 1234\n */\n tag_id: number;\n /**\n * @description The ID of the coupon.\n * @example 1234\n */\n coupon_id: number;\n /**\n * @description The ID of the special coupon.\n * @example cart_recovery\n */\n special_id:\n | 'affiliate'\n | 'cart_recovery'\n | 'subscription_cancellation'\n | 'exit_intent'\n | 'renewals_discount'\n | 'manual_renewals_discount';\n /**\n * @description The ID of the review.\n * @example 1234\n */\n review_id: number;\n /**\n * @description The ID of the feature.\n * @example 1234\n */\n feature_id: number;\n /**\n * @description The ID of the event.\n * @example 1234\n */\n event_id: number;\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields: string;\n /**\n * @description The number of records to return.\n * @example 10\n */\n count: number;\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset: number;\n /**\n * @description Filter by gateway.\n * @example stripe\n */\n gateway: 'paypal' | 'stripe';\n /**\n * @description The start of the date range in YYYY-MM-DD HH:MM:SS format\n * @example 2025-08-01 00:00:00\n */\n from: string;\n /**\n * @description The end of the date range in YYYY-MM-DD HH:MM:SS format\n * @example 2025-08-01 00:00:00\n */\n to: string;\n /** @description Filter by billing cycle. */\n billing_cycle: components['schemas']['CommonEnums']['BillingCycle'];\n /** @description The Unique identifier. It is a 32 characters long string. */\n uid: string;\n };\n requestBodies: never;\n headers: never;\n pathItems: never;\n}\nexport type $defs = Record<string, never>;\nexport interface operations {\n 'developers/retrieve-bank-account': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: components['parameters']['developer_id'];\n /**\n * @description The ID of the bank account.\n * @example 1234\n */\n bank_account_id: components['parameters']['bank_account_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description OK */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['BankAccount'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'developers/log-in': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: components['parameters']['developer_id'];\n };\n cookie?: never;\n };\n requestBody?: {\n content: {\n 'application/json': {\n /**\n * @description Valid email address.\n * @example jane@freemius.com\n */\n email?: string;\n /** @description Valid password. */\n password?: string;\n /** @description reCAPTCHA token. One must use the Developer Dashboard to get the reCAPTCHA token if the login asks for it. */\n recaptcha_token?: string;\n /** @description Will set the cookie expiration day to 7 days from the successful login if set to `true`. Otherwise, the cookie will expire in 12 hours. */\n remember_me?: boolean;\n /** @description 2FA 6 digits code in case developer's auth mode is using TOTP based 2FA apps. */\n code?: string;\n /** @description 2FA backup code (24 chars) to disable and bypass 2FA authentication. */\n backup_code?: string;\n };\n };\n };\n responses: {\n /** @description Successful login. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n person?: components['schemas']['Developer'];\n /** @description The expiration time of the cookie in seconds. */\n expires?: number;\n /** @description Signal the developer is not new (this is a login, so it must exists), for consistency with the other auth endpoints. */\n is_new?: boolean;\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/list-addons': {\n parameters: {\n query?: {\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n /** @description Whether to show released addons only or the hidden as well. */\n show_pending?: boolean;\n /** @description If set to `true`, returns marketing info. */\n enriched?: boolean;\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The list of all the addons. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n addons?: components['schemas']['Plugin'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'addons/list-plans-features': {\n parameters: {\n query?: {\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Addon.\n * @example 1234\n */\n addon_id: components['parameters']['addon_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description List of all the plan's features for the addon. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n features?: components['schemas']['Feature'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'addons/list-plans': {\n parameters: {\n query?: {\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n /** @description If set to `true`, retrieves unreleased add-ons as well. */\n show_pending?: boolean;\n /** @description Whether to show released addons only or the hidden as well. */\n type?: 'all' | 'visible';\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Addon.\n * @example 1234\n */\n addon_id: components['parameters']['addon_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The list of all the plans for the addon. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n plans?: components['schemas']['Plan'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'addons/list-pricings': {\n parameters: {\n query?: {\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n currency?: components['schemas']['CommonEnums']['Currency'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Addon.\n * @example 1234\n */\n addon_id: components['parameters']['addon_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The list of all the plans for the addon. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n plans?: components['schemas']['Pricing'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'carts/retrieve-events': {\n parameters: {\n query?: {\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Cart.\n * @example 1234\n */\n cart_id: components['parameters']['cart_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The cart's events collection. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n events?: components['schemas']['EventLog'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'carts/retrieve': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n /** @description Defaults to false, if true returns enriched cart details. */\n enriched?: boolean;\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Cart.\n * @example 1234\n */\n cart_id: components['parameters']['cart_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Cart details associated with the product. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Cart'] & {\n /**\n * Format: float\n * @description Gross amount associated with the cart. (Only available when `enriched` is set to `true`.)\n * @example 359.64\n */\n gross?: number | null;\n /**\n * @description Coupon code associated with the cart. (Only available when `enriched` is set to `true`.)\n * @example BLACKFRIDAY2024\n */\n coupon_code?: string | null;\n /**\n * @description Number of licenses associated with the cart. (Only available when `enriched` is set to `true`.)\n * @example 10\n */\n licenses?: number | null;\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n };\n };\n 'carts/update': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Cart.\n * @example 1234\n */\n cart_id: components['parameters']['cart_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n /**\n * @description The Plan ID.\n * @example 1234\n */\n plan_id?: number;\n pricing_id?: components['schemas']['CommonProperties']['pricing_id'];\n payment_method?: components['schemas']['CommonEnums']['PaymentMethodType'];\n billing_cycle?: components['schemas']['CommonEnums']['BillingCycle'];\n coupon_id?: components['schemas']['CommonProperties']['coupon_id'];\n coupon_code?: components['schemas']['CommonProperties']['coupon_code'];\n country_code?: components['schemas']['CommonProperties']['country_code_nullable'];\n vat_id?: components['schemas']['CommonProperties']['vat_id_nullable'];\n email?: components['schemas']['Cart']['email'];\n first?: components['schemas']['Cart']['first'];\n last?: components['schemas']['Cart']['last'];\n ip?: components['schemas']['CommonProperties']['ip'];\n };\n };\n };\n responses: {\n /** @description Provides the updated cart with details. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Cart'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n };\n };\n 'carts/delete': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Cart.\n * @example 1234\n */\n cart_id: components['parameters']['cart_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n 204: components['responses']['204'];\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n };\n };\n 'carts/list': {\n parameters: {\n query?: {\n /** @description You can use the `filter` parameter to filter by status. If you don't provide a status, the endpoint will return all carts. */\n filter?: 'all' | 'abandoned' | 'completed' | 'recovered' | 'recovery' | 'active';\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n /** @description Defaults to false, if true returns enriched cart details. */\n enriched?: boolean;\n /** @description Filter the cart collections by the email address. */\n email?: string;\n /** @description Number of carts to retrieve. */\n count?: number;\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Provides a collection of carts associated with the product. All carts are listed under the `carts` key. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n carts?: (components['schemas']['Cart'] & {\n /**\n * Format: float\n * @description Email of the user associated with the cart. (Only available when `enriched` is set to `true`.)\n * @example 359.64\n */\n gross?: number | null;\n /**\n * @description Coupon code associated with the cart. (Only available when `enriched` is set to `true`.)\n * @example BLACKFRIDAY2024\n */\n coupon_code?: string | null;\n /**\n * @description Number of licenses associated with the cart. (Only available when `enriched` is set to `true`.)\n * @example 10\n */\n licenses?: number | null;\n })[];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n };\n };\n 'coupons/retrieve': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the coupon.\n * @example 1234\n */\n coupon_id: components['parameters']['coupon_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The coupon is retrieved successfully. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Coupon'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'coupons/update': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the coupon.\n * @example 1234\n */\n coupon_id: components['parameters']['coupon_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n plans?: components['schemas']['Coupon']['plans'];\n licenses?: components['schemas']['Coupon']['licenses'];\n billing_cycles?: components['schemas']['Coupon']['billing_cycles'];\n user_type?: components['schemas']['Coupon']['user_type'];\n code?: components['schemas']['Coupon']['code'];\n discount?: components['schemas']['Coupon']['discount'];\n discount_type?: components['schemas']['Coupon']['discount_type'];\n start_date?: components['schemas']['Coupon']['start_date'];\n end_date?: components['schemas']['Coupon']['end_date'];\n redemptions_limit?: components['schemas']['Coupon']['redemptions_limit'];\n has_renewals_discount?: components['schemas']['Coupon']['has_renewals_discount'];\n has_addons_discount?: components['schemas']['Coupon']['has_addons_discount'];\n is_one_per_user?: components['schemas']['Coupon']['is_one_per_user'];\n is_active?: components['schemas']['Coupon']['is_active'];\n };\n };\n };\n responses: {\n /** @description The coupon is updated. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Coupon'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'coupons/delete': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the coupon.\n * @example 1234\n */\n coupon_id: components['parameters']['coupon_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n 204: components['responses']['204'];\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'coupons/list': {\n parameters: {\n query?: {\n /** @description The coupon code filter. */\n code?: string;\n /** @description If `true`, each coupon will include multi-currency discount properties. Coupons will only be enriched if no filtering is used. */\n is_enriched?: boolean;\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /** @description Optional coupon code prefix for search coupons. */\n prefix?: string;\n /** @description Optional coupon code(or code part) for search coupons. */\n search?: string;\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Provides a collection of coupons associated with the product. All coupons are listed under the `coupons` key. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n coupons?: (components['schemas']['Coupon'] & {\n discounts?: Record<string, never>;\n })[];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n };\n };\n 'coupons/create': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n plans?: components['schemas']['Coupon']['plans'];\n licenses?: components['schemas']['Coupon']['licenses'];\n billing_cycles?: components['schemas']['Coupon']['billing_cycles'];\n user_type?: components['schemas']['Coupon']['user_type'];\n code?: components['schemas']['Coupon']['code'];\n discount?: components['schemas']['Coupon']['discount'];\n discount_type?: components['schemas']['Coupon']['discount_type'];\n start_date?: components['schemas']['Coupon']['start_date'];\n end_date?: components['schemas']['Coupon']['end_date'];\n redemptions_limit?: components['schemas']['Coupon']['redemptions_limit'];\n has_renewals_discount?: components['schemas']['Coupon']['has_renewals_discount'];\n has_addons_discount?: components['schemas']['Coupon']['has_addons_discount'];\n is_one_per_user?: components['schemas']['Coupon']['is_one_per_user'];\n is_active?: components['schemas']['Coupon']['is_active'];\n };\n };\n };\n responses: {\n /** @description The coupon is created. */\n 201: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Coupon'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n };\n };\n 'coupons/retrieve-note': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the coupon.\n * @example 1234\n */\n coupon_id: components['parameters']['coupon_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The coupon note details. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Note'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'coupons/update-note': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the coupon.\n * @example 1234\n */\n coupon_id: components['parameters']['coupon_id'];\n };\n cookie?: never;\n };\n requestBody?: {\n content: {\n 'application/json': {\n /** @example This is an updated note. */\n note?: string;\n };\n };\n };\n responses: {\n /** @description The coupon note was updated. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Note'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'coupons/create-note': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the coupon.\n * @example 1234\n */\n coupon_id: components['parameters']['coupon_id'];\n };\n cookie?: never;\n };\n requestBody?: {\n content: {\n 'application/json': {\n /** @example This is a note. */\n note?: string;\n };\n };\n };\n responses: {\n /** @description The note was added to the coupon. */\n 201: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Note'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'coupons/delete-note': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the coupon.\n * @example 1234\n */\n coupon_id: components['parameters']['coupon_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n 204: components['responses']['204'];\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'coupons/retrieve-special': {\n parameters: {\n query?: {\n /** @description Filter based on a coupon type. */\n type?: components['schemas']['CouponEntity']['type'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The special coupons details. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n coupon_entities?: components['schemas']['CouponEntityEnriched'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'coupons/create-special': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the coupon.\n * @example 1234\n */\n coupon_id: components['parameters']['coupon_id'];\n /**\n * @description The ID of the special coupon.\n * @example cart_recovery\n */\n special_id: components['parameters']['special_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The special coupon has been created. */\n 201: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['CouponEntityEnriched'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'coupons/delete-special': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the coupon.\n * @example 1234\n */\n coupon_id: components['parameters']['coupon_id'];\n /**\n * @description The ID of the special coupon.\n * @example cart_recovery\n */\n special_id: components['parameters']['special_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n 204: components['responses']['204'];\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/list-email-addresses': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The list of all the email addresses associated with a product. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['PluginEmailAddress'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/delete-email-addresses': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Email addresses deleted. Product set to use the default store-level email addresses. */\n 204: {\n headers: {\n [name: string]: unknown;\n };\n content?: never;\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/update-email-addressses': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: components['parameters']['developer_id'];\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': components['schemas']['PluginEmailAddress'];\n };\n };\n responses: {\n /** @description Email addresses updated. */\n 204: {\n headers: {\n [name: string]: unknown;\n };\n content?: never;\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/retrieve-email-template': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: components['parameters']['developer_id'];\n /** @description The ID of the email. */\n email_id: string;\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The email template. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['EmailTemplate'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/update-email-template': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: components['parameters']['developer_id'];\n /** @description The ID of the email. */\n email_id: string;\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n subject?: components['schemas']['EmailTemplate']['subject'];\n html?: components['schemas']['EmailTemplate']['html'];\n plain?: components['schemas']['EmailTemplate']['plain'];\n };\n };\n };\n responses: {\n /** @description The updated email template. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['EmailTemplate'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'events/retrieve': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the event.\n * @example 1234\n */\n event_id: components['parameters']['event_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The retrieved event. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['EventLog'] & {\n /** @description A map of related objects keyed by their type or ID, such as Payment, User, Install, or License. */\n objects?: {\n user?: components['schemas']['UserPluginEnriched'] | null;\n install?: components['schemas']['Install'] | null;\n payment?: components['schemas']['Payment'] | null;\n subscription?: components['schemas']['Subscription'] | null;\n license?: components['schemas']['License'] | null;\n } & {\n [key: string]: unknown;\n };\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'events/list': {\n parameters: {\n query?: {\n /** @description Filter events by type string or event name, such as `license.created`. See the [documentation](https://freemius.com/help/documentation/saas/events-webhooks/#event_types) for a list of available event types. */\n type?: string;\n /** @description Filter events by state: 'pending', 'processed', 'error', or 'canceled'. */\n state?: components['schemas']['CommonEnums']['EventLogState'];\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description A collection of events. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n events?: components['schemas']['EventLog'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/retrieve-feature': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the feature.\n * @example 1234\n */\n feature_id: components['parameters']['feature_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The product's feature. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Feature'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/update-feature': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the feature.\n * @example 1234\n */\n feature_id: components['parameters']['feature_id'];\n };\n cookie?: never;\n };\n requestBody?: {\n content: {\n 'application/json': {\n title?: components['schemas']['Feature']['title'];\n description?: components['schemas']['Feature']['description'];\n is_featured?: components['schemas']['Feature']['is_featured'];\n };\n };\n };\n responses: {\n /** @description The updated feature. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Feature'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/delete-feature': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the feature.\n * @example 1234\n */\n feature_id: components['parameters']['feature_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n 204: components['responses']['204'];\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/list-features': {\n parameters: {\n query?: {\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The product features collection. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n features?: components['schemas']['Feature'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/retrieve': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description OK */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Plugin'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/update': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: {\n content: {\n 'multipart/form-data': {\n icon?: components['schemas']['CommonProperties']['icon'];\n data?: components['schemas']['CommonRequestSchemas']['MultipartJsonData'];\n };\n 'application/json': {\n slug?: components['schemas']['Plugin']['slug'];\n title?: components['schemas']['Plugin']['title'];\n type?: components['schemas']['Plugin']['type'];\n plans?: components['schemas']['Plugin']['plans'];\n features?: components['schemas']['Plugin']['features'];\n money_back_period?: components['schemas']['Plugin']['money_back_period'];\n refund_policy?: components['schemas']['Plugin']['refund_policy'];\n annual_renewals_discount?: components['schemas']['Plugin']['annual_renewals_discount'];\n renewals_discount_type?: components['schemas']['Plugin']['renewals_discount_type'];\n is_pricing_visible?: components['schemas']['Plugin']['is_pricing_visible'];\n default_plan_id?: components['schemas']['Plugin']['default_plan_id'];\n /**\n * @description Can be one of the following values: `1` for `PayPal`, `2` for `Credit Cards`, or `0` for both.\n * @enum {integer}\n */\n accepted_payments?: 0 | 1;\n /** @description `True` to expose license key to customers upon purchase/subscription. (Available for 'SaaS' products only) */\n expose_license_key?: boolean;\n /** @description `True` to include in the after-purchase emails the customer portal login link. */\n enable_after_purchase_email_login_link?: boolean;\n };\n };\n };\n responses: {\n /** @description OK */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Plugin'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/get-info': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Successful operation */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['PluginInfo'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/list-plans-features-for-addon': {\n parameters: {\n query?: {\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the Addon.\n * @example 1234\n */\n addon_id: components['parameters']['addon_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The plan's features collection for Addon on an install. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n features?: components['schemas']['Feature'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/resolve-clone': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the clone.\n * @example 1234\n */\n clone_id: components['parameters']['clone_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n resolution: components['schemas']['InstallClone']['resolution'];\n new_install_id?: components['schemas']['InstallClone']['new_install_id'];\n };\n };\n };\n responses: {\n /** @description Install clone created. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['InstallClone'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 404: components['responses']['404'];\n };\n };\n 'installations/create-clone': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n requestBody?: {\n content: {\n 'application/json': {\n /**\n * @description The URL of the new site to clone the install to.\n * @example https://example.com\n */\n site_url: string;\n };\n };\n };\n responses: {\n /** @description Install clone created. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['InstallClone'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 404: components['responses']['404'];\n };\n };\n 'installations/retrieve-installs-count': {\n parameters: {\n query?: {\n /** @description (optional) Return the count of installs that are associated with a non-expired license for the given plan ID. */\n plan_id?: number;\n /** @description (optional) Return active installs only. */\n is_active?: boolean;\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The number of installs with the product. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n /** @example 123 */\n count?: number;\n };\n };\n };\n };\n };\n 'installations/downgrade-default-plan': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n /** @description Deactivate license. */\n deactivate_license?: boolean;\n reason_ids?: components['schemas']['Uninstall']['reason_id'];\n reason?: components['schemas']['Uninstall']['reason_info'];\n };\n };\n };\n responses: {\n /** @description Product plan downgraded. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Install'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/list-events': {\n parameters: {\n query?: {\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n /** @description Filter events by type string or event name. */\n type?: string;\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Events triggered by the install. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n events?: components['schemas']['EventLog'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/retrieve-install': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The install details. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Install'] & {\n /** @description Whether the install is participating in the beta program. */\n is_beta?: boolean;\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 404: components['responses']['404'];\n };\n };\n 'installations/update-install': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n uid?: components['schemas']['CommonProperties']['uid'];\n license_key?: components['schemas']['License']['secret_key'];\n url?: components['schemas']['Install']['url'];\n title?: components['schemas']['Install']['title'];\n version?: components['schemas']['Install']['version'];\n sdk_version?: components['schemas']['Install']['sdk_version'];\n platform_version?: components['schemas']['Install']['platform_version'];\n programming_language_version?: components['schemas']['Install']['programming_language_version'];\n plan_id?: components['schemas']['Plan']['id'];\n trial_plan_id?: components['schemas']['Install']['trial_plan_id'];\n /**\n * Format: date-time\n * @description The datetime that the trial expires.\n * @example 2025-01-01 00:00:00\n */\n trials_ends?: string;\n subscription_id?: components['schemas']['Subscription']['id'];\n is_locked?: components['schemas']['Install']['is_locked'];\n is_active?: components['schemas']['Install']['is_active'];\n is_disconnected?: components['schemas']['Install']['is_disconnected'];\n is_premium?: components['schemas']['Install']['is_premium'];\n is_sdk_required?: components['schemas']['Plugin']['is_sdk_required'];\n reason_id?: components['schemas']['Uninstall']['reason_id'];\n reason_info?: components['schemas']['Uninstall']['reason_info'];\n /** @description The site plugins installed. */\n plugins?: string;\n /** @description The site themes installed. */\n themes?: string;\n is_beta?: components['schemas']['BetaParticipation']['is_beta'];\n /** @description Recover the install. */\n recover?: boolean;\n is_uninstalled?: components['schemas']['Install']['is_uninstalled'];\n /**\n * Format: int64\n * @description The ID of the user. This is used for ownership change of the install.\n * @example 1234\n */\n user_id?: string;\n /**\n * @description The email of the user. This is used for ownership change of the install.\n * @example foo@example.com\n */\n user_email?: string;\n /**\n * @description A comma seperated string of Install IDs. This is used for ownership change of the install.\n * @example 1234,2478,2345\n */\n install_ids?: string[];\n };\n };\n };\n responses: {\n /** @description Install updated */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Install'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/delete-install': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n 204: components['responses']['204'];\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/list-installs': {\n parameters: {\n query?: {\n /** @description Install IDs collection to filter. */\n ids?: string;\n /** @description Install status to filter the installs by. */\n filter?:\n | 'all'\n | 'active'\n | 'inactive'\n | 'trial'\n | 'paying'\n | 'uninstalled'\n | 'active_premium'\n | 'active_free';\n /** @description Plugin version to filter the installs by. */\n version?: string;\n /** @description License ID to filter the installs by. */\n license_id?: number;\n /** @description Plan ID to filter the installs by. */\n plan_id?: number;\n /** @description Install title to filter the installs by. */\n title?: string;\n /** @description Install URL to filter the installs by. */\n url?: string;\n /** @description Search item to filter the installs by e.g. domain, site_id, or reason info. */\n search?: string;\n /** @description If true, loads all installs, including the uninstalled ones. */\n all?: boolean;\n /** @description Reason ID (either string or numeric) to filter the installs by. */\n reason_id?: string;\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Installs collection */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n installs?: components['schemas']['Install'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/retrieve-active-license-by-uid': {\n parameters: {\n query: {\n /** @description The license key used for the activation of the install. */\n license_key: components['schemas']['License']['secret_key'];\n /** @description The Unique identifier. It is a 32 characters long string. */\n uid: components['parameters']['uid'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Successful operation */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['License'];\n };\n };\n 400: components['responses']['400'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/retrieve-active-license-by-id': {\n parameters: {\n query: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n /** @description The license key used on the install. */\n license_key: components['schemas']['License']['secret_key'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Install's licence */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['License'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/activate-license': {\n parameters: {\n query: {\n /** @description The license key received from the checkout. */\n license_key: string;\n /** @description If `true`, the parent license's and plan's info will be included in the result if there's any. */\n is_enriched?: boolean;\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Activated licence. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['License'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/deactivate-license': {\n parameters: {\n query: {\n /** @description The same license key used to activate the install. */\n license_key: string;\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Activated licence. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['License'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/list-active-licenses': {\n parameters: {\n query?: {\n /** @description If `true`, the parent license's and plan's info will be included in the result if there's any. */\n is_enriched?: boolean;\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Active license. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n licenses?: components['schemas']['License'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'licenses/list-subscriptions': {\n parameters: {\n query?: {\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Subscriptions collection. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n subscriptions?: components['schemas']['Subscription'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/list-market-items': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description All market items associated with the install. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n market_items?: components['schemas']['MarketItem'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 404: components['responses']['404'];\n };\n };\n 'developers/add-team-member': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n role: components['schemas']['Member']['allOf']['1']['role'];\n /**\n * Format: int64\n * @description The id of the new member (Developer ID).\n * @example 1234\n */\n member_id?: string;\n /**\n * @description The email of the new member.\n * @example foo@example.com\n */\n email?: string;\n };\n };\n };\n responses: {\n /** @description Team member added successfully. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n /**\n * @description The id of the team member.\n * @example 1234\n */\n id?: number;\n /**\n * @description The email of the team member.\n * @example foo@example.com\n */\n email?: string;\n /**\n * @description The first name of the team member.\n * @example John\n */\n first?: string;\n /**\n * @description The last name of the team member.\n * @example Doe\n */\n last?: string;\n /** @description The picture of the team member. */\n picture?: string;\n role?: components['schemas']['Member']['allOf']['1']['role'];\n plugin_id?: components['schemas']['Member']['allOf']['1']['plugin_id'];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/list-payments': {\n parameters: {\n query?: {\n /** @description If `true`, loads linked user email, install URL, subscription billing cycle and plan name. */\n extended?: boolean;\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Payments collection */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n payments?: (components['schemas']['Payment'] & {\n email?: components['schemas']['User']['email'];\n url?: components['schemas']['Install']['url'];\n billing_cycle?: components['schemas']['Subscription']['billing_cycle'];\n plan_name?: components['schemas']['Plan']['name'];\n /** @description 512-character reason for the refund. */\n refund_reason?: string | null;\n })[];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/update-permissions': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n /** @description Whether to enable the selected permission. */\n is_enabled?: boolean;\n /**\n * Format: csv\n * @description Comma separated list of permissions to update. Allowed values are `site`, `user`, `extensions`.\n * @example site,user,extensions\n */\n permissions?: string;\n };\n };\n };\n responses: {\n /** @description Install permission updated. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['InstallMetadata'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/retrieve-plan': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Install Plan */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Plan'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/list-plans': {\n parameters: {\n query?: {\n /** @description Show all plans whether released to customers or hidden. */\n show_pending?: boolean;\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Install Plans */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n plans?: components['schemas']['Plan'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/create-new-license': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n /**\n * @description The ID of the Pricing.\n * @example 1234\n */\n pricing_id: components['parameters']['pricing_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n is_block_features?: components['schemas']['License']['is_block_features'];\n period?: components['schemas']['Subscription']['billing_cycle'];\n expires_at?: components['schemas']['License']['expiration'];\n /** @description Whether or not to email the license key and download link to the user. */\n send_email?: boolean;\n };\n };\n };\n responses: {\n /** @description License created successfully. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['License'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/start-trial': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n /**\n * Format: date-time\n * @description The expiry date of the trial. If set, will set the trial expiration based on that parameter. **Note:** Trial expiration date cannot exceed the maximum trial period days based on the plan configuration.\n * @example 2025-01-01 00:00:00\n */\n trial_ends?: string;\n phone?: components['schemas']['Billing']['phone'];\n /** @description Whether emails will be sent to users or log events. If `true`, no emails will be sent nor events logged. */\n is_migration?: boolean;\n /** @description Security token for sandbox mode trial. */\n trial_token?: string;\n /**\n * @description Security timestamp for sandbox mode trial.\n * @example 1730160000\n */\n trial_timestamp?: string;\n };\n };\n };\n responses: {\n /** @description Started Trial */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n trial?: components['schemas']['Trial'];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/cancel-trial': {\n parameters: {\n query?: {\n /** @description Optional cancellation reason IDs. */\n reason_ids?: components['schemas']['Uninstall']['reason_id'][];\n reason?: components['schemas']['Uninstall']['reason_info'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The install with cancelled trial. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Install'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/retrieve-uninstall-details': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The uninstall details. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Uninstall'] & {\n /** @description The reason for the uninstall which translates to the string value of the uninstall `reason_id`. */\n reason?: string;\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 404: components['responses']['404'];\n };\n };\n 'installations/list-updates': {\n parameters: {\n query: {\n /** @description The product's version of the current install. The endpoint will return newer versions when set. This is a required param unless `older_than` is provided. */\n version: string;\n /** @description If provided, only versions that are older than this will be returned. */\n older_than?: string;\n /** @description The product type. If the type provide is `all`, the latest `released` or `pending` version will be returned, whichever has the higher version. */\n type?: 'released' | 'pending' | 'beta' | 'all';\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Updates collection. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n tags?: (components['schemas']['PluginTag'] & {\n is_released?: components['schemas']['Plugin']['is_released'];\n /**\n * @description The Installation zip file URL with authentication token.\n * @example https://example.com/\n */\n url?: string;\n })[];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 404: components['responses']['404'];\n };\n };\n 'installations/retrieve-latest-update': {\n parameters: {\n query?: {\n /** @description If set, tries to fetch the requested version. If requires premium but no license, will throw an error. Otherwise, fetch version based on license. */\n is_premium?: boolean;\n /** @description If set, tries to fetch the readme information. */\n readme?: boolean;\n /** @description If set, return the latest version's data only if it's newer than this property's value. */\n newer_than?: boolean;\n /** @description The product type. If the type provided is `all`, the latest `released`, `beta`, or `pending` version will be returned, whichever has the higher version. */\n type?: 'released' | 'pending' | 'beta' | 'all';\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Updates collection. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['PluginTag'] & {\n is_released?: components['schemas']['Plugin']['is_released'];\n /**\n * @description The Installation zip file URL with authorization token.\n * @example https://example.com/\n */\n url?: string;\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/change-ownership': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n /** @description The transfer token salt. This is generated by Freemius and sent over email with expiration. */\n token_salt: unknown;\n /** @description Candidate or owner email. */\n email: unknown;\n /** @description Defaults to 'transfer' for backward compatibility. */\n transfer_type?: unknown;\n /** @description Token generated by Freemius. Get this from the [Developer Dashboard](https://dashboard.freemius.com). */\n owner_token?: unknown;\n /** @description Token generated by Freemius. Get this from the [Developer Dashboard](https://dashboard.freemius.com). */\n candidate_token?: unknown;\n /** @description The URL to redirect after the user confirms the ownership change. */\n after_confirm_url?: unknown;\n /** @description Comma-separated list of IDs of installs that should be transferred to the new owner. This can include add-ons' install IDs. */\n install_ids?: unknown;\n };\n };\n };\n responses: {\n /** @description Install ownership changed successfully. No response will be sent, but it will be redirected to the `after_confirm_url` if it was used when initiating the ownership transfer. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content?: never;\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/send-verification-email': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the install.\n * @example 1234\n */\n install_id: components['parameters']['install_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n /**\n * @description URL address that the user will be auto forwarded to after email confirmation is clicked.\n * @example https://example.com/email-confirmation/\n */\n after_email_confirm_url?: string;\n };\n };\n };\n responses: {\n /** @description Successful operation. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content?: never;\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/check-status': {\n parameters: {\n query?: {\n /** @description You can use this flag in conjunction with the Moderation Setting of your product.\n *\n * In case you want to limit the activation of your product to new instances only (say after migrating to Freemius) you can check the relevant settings from the Developer Dashboard and from your product make an API request like below:\n *\n * - If your product is already active in some device before joining Freemius - Set value to `true`.\n * - Otherwise set value to `false`.\n *\n * This will also work with any “Activation limitation” you have put in your Moderation settings. */\n is_update?: boolean;\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Product status. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n /** @description The product status. */\n is_active?: boolean;\n /**\n * Format: int64\n * @description The timestamp when the product status was done.\n * @example 1742454772\n */\n timestamp?: number;\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'licenses/activate': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n uid: components['schemas']['CommonProperties']['uid'];\n license_key: components['schemas']['License']['secret_key'];\n /** @description Site's homepage URL. */\n url?: string;\n /** @description Site's title. */\n title?: string;\n /** @description Product's version. */\n version?: string;\n is_marketing_allowed?: components['schemas']['User']['is_marketing_allowed'];\n /** @description Install ID when activating on an already existing install. If provided must belong to the same user as the license owner and must have the same UID. The new license will be activated for the install and existing one will be deactivated. */\n install_id?: number;\n /** @description First name of the user (only needed when activating a ghost license). */\n first_name?: string;\n /** @description Last name of the user (only needed when activating a ghost license). */\n last_name?: string;\n /** @description Email address of the user (only needed when activating a ghost license). */\n user_email?: string;\n };\n };\n };\n responses: {\n /** @description License activated successfully. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n user_id?: components['schemas']['User']['id'];\n user_secret_key?: components['schemas']['User']['secret_key'];\n user_public_key?: components['schemas']['User']['public_key'];\n plugin_id?: components['schemas']['Plugin']['id'];\n license_plan_name?: components['schemas']['Plan']['name'];\n is_marketing_allowed?: components['schemas']['User']['is_marketing_allowed'];\n install_id?: components['schemas']['Install']['id'];\n install_secret_key?: components['schemas']['Install']['secret_key'];\n install_public_key?: components['schemas']['Install']['public_key'];\n /**\n * @description The API access token with which authenticated requests can be made for this `install` entity. You need to set this token as the `Bearer` token in the `Authorization` header. For example: <pre>Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9</pre>\n * @example eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9\n */\n install_api_token?: string;\n };\n };\n };\n 400: components['responses']['400'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'licenses/generate-upgrade-link': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n /**\n * Format: int64\n * @description The plan ID to upgrade to.\n */\n plan_id?: string;\n billing_cycle?: components['schemas']['CommonEnums']['PlanPeriod'];\n /** @description The quota to use. Can be a number or the string 'unlimited'. */\n quota?: number | 'unlimited';\n /**\n * @description Whether to update the payment method. If true, the link will be generated for the current plan and billing cycle of the license and other parameters will be ignored. If the license is not associated with a subscription, or is lifetime, an exception will be thrown.\n * @default false\n */\n is_payment_method_update?: boolean;\n };\n };\n };\n responses: {\n /** @description Upgrade link generated successfully. */\n 201: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['CheckoutUpgradeLink'];\n };\n };\n 400: components['responses']['400'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'licenses/deactivate': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n uid: components['schemas']['CommonProperties']['uid'];\n /** @description Install ID from which the license should be deactivated. The license must be active on the install. */\n install_id: number;\n license_key: components['schemas']['License']['secret_key'];\n };\n };\n };\n responses: {\n /** @description License deactivated. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Install'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'licenses/retrieve': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The retrieved license. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['License'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'licenses/update': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n requestBody?: {\n content: {\n 'application/json': {\n quota?: components['schemas']['License']['quota'];\n expiration?: components['schemas']['License']['expiration'];\n is_block_features?: components['schemas']['License']['is_block_features'];\n is_whitelabeled?: components['schemas']['License']['is_whitelabeled'];\n is_free_localhost?: components['schemas']['License']['is_free_localhost'];\n new_user_id?: components['schemas']['License']['user_id'];\n /**\n * @description (optional) When set to `true` will cancel the subscription.\n * @example true\n */\n cancel_subscription?: boolean;\n /**\n * @description (optional) When set to `true` to extend the bundle license.\n * @example true\n */\n extend_bundle?: boolean;\n /**\n * @description (optional) When set to `true`, it will update the relevant (subscription renewal or trial end) date to 24 hours before license expiration.\n * @example true\n */\n update_subscription_renewal_date?: boolean;\n };\n };\n };\n responses: {\n /** @description The updated license. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['License'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'licenses/cancel': {\n parameters: {\n query?: {\n /** @description (optional) Whether to delete the license. If not `true` then the license is cancelled. */\n delete?: boolean;\n /** @description (optional) Whether to include the bundle license in the deletion or delete the main license only. */\n include_bundle?: boolean;\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n 200: components['schemas']['License'];\n 204: components['responses']['204'];\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'licenses/list': {\n parameters: {\n query?: {\n /** @description Filter licenses by status. */\n filter?: 'active' | 'cancelled' | 'expired' | 'abandoned' | 'migrated';\n /** @description Filter licenses by plan ID. */\n plan_id?: number;\n /** @description Search license id or key. */\n search?: string;\n /** @description If `true`, returns the associated user information. */\n enriched?: boolean;\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n /** @description If set, returns only licenses that are associated with the given source ID. */\n source?: number;\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The licenses collection is retrieved. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n licenses?: components['schemas']['LicenseEnriched'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'licenses/assign': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n /**\n * @description User's email address.\n * @example foo@example.com\n */\n email: string;\n /**\n * @description User's full name.\n * @example John Doe\n */\n name?: string;\n license_key: components['schemas']['License']['secret_key'];\n is_marketing_allowed?: components['schemas']['User']['is_marketing_allowed'];\n };\n };\n };\n responses: {\n /** @description The license is assigned. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['License'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'licenses/deactivate-installs': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Licenses deactivated from all installs. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['License'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'licenses/sync-activations': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: components['parameters']['developer_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description License activations synced. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['License'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'licenses/send-renewal-email': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The license renewal email is sent. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n /** @description Whether the email is sent. */\n sent?: boolean;\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'licenses/resend-keys': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n /**\n * @description The user's email address associated with the license.\n * @example johndoe@example.com\n */\n email: string;\n };\n };\n };\n responses: {\n /** @description The license key has been resent. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content?: never;\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'licenses/resend-upgrade-email': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description License email resent. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content?: never;\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'licenses/retrieve-latest-subscription': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Subscription retrieved. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Subscription'];\n };\n };\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'licenses/cancel-current-subscription': {\n parameters: {\n query?: {\n /** @description Optional cancellation reason IDs. */\n reason_ids?: components['schemas']['Uninstall']['reason_id'][];\n reason?: components['schemas']['Uninstall']['reason_info'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Subscription retrieved. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Subscription'];\n };\n };\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'payments/retrieve': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the payment.\n * @example 1234\n */\n payment_id: components['parameters']['payment_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Retrieve a specific payment. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Payment'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'payments/list': {\n parameters: {\n query?: {\n /** @description Search by `payment_id`, `external_payment_id`, or `user_email`. */\n search?: string;\n /** @description User ID to filter with. */\n search_user_id?: components['schemas']['CommonProperties']['user_id'];\n /** @description Filter by billing cycle. */\n billing_cycle?: components['parameters']['billing_cycle'];\n currency?: components['schemas']['CommonEnums']['Currency'];\n /** @description Filter payments by coupon ID. */\n coupon_id?: components['schemas']['CommonProperties']['id'];\n /** @description Filter payments by different types */\n filter?: 'all' | 'refunds' | 'not_refunded' | 'disputed' | 'won_disputes' | 'chargebacks';\n /** @description If true, loads linked user, plan and subscription. */\n extended?: boolean;\n /**\n * @description The end of the date range in YYYY-MM-DD HH:MM:SS format\n * @example 2025-08-01 00:00:00\n */\n to?: components['parameters']['to'];\n /**\n * @description The start of the date range in YYYY-MM-DD HH:MM:SS format\n * @example 2025-08-01 00:00:00\n */\n from?: components['parameters']['from'];\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The payment collection. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n payments?: (components['schemas']['Payment'] & {\n email?: components['schemas']['User']['email'];\n url?: components['schemas']['Install']['url'];\n billing_cycle?: components['schemas']['Subscription']['billing_cycle'];\n /** @description Name of the plan the payment is associated with. */\n plan_name?: string;\n /** @description If the payment is refunded, this will contain the reason. */\n refund_reason?: string;\n })[];\n discounts?: components['schemas']['Discount'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'payments/download-invoice': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the payment.\n * @example 1234\n */\n payment_id: components['parameters']['payment_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description PDF invoice */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/pdf': unknown;\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/gdpr-compliance-check': {\n parameters: {\n query: {\n /** @description Unique identifier of the caller. The UID must be same when pinging and when activating or deactivating a license. The generation of the UID is a responsibility of the client. */\n uid: components['schemas']['CommonProperties']['uid'];\n /** @description If the call is during a product update. */\n is_update?: boolean;\n /** @description Whether the request is made for testing GDPR compliance from the client of the product. */\n is_gdpr_test?: boolean;\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Response from the product */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n /**\n * @description Just a \"pong\" to annotate the success.\n * @example pong\n * @enum {string}\n */\n api?: 'pong';\n /**\n * @description Whether GDPR compliance is required for the client.\n * @example false\n */\n is_gdpr_required?: boolean;\n /**\n * Format: rfc-2822\n * @description Timestamp in [RFC 2822](http://www.faqs.org/rfcs/rfc2822) or [RFC 5322](http://www.faqs.org/rfcs/rfc5322) format.\n * @example Thu, 21 Jan 2021 12:00:00 +0000\n */\n timestamp?: string;\n /**\n * @description Whether the product is active. Only returned when `is_update` is true in the request.\n * @example true\n */\n is_active?: boolean;\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 404: components['responses']['404'];\n };\n };\n 'plans/list-currencies': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The list of all currencies for all the plans. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n currencies?: components['schemas']['CommonEnums']['Currency'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'plans/list-features': {\n parameters: {\n query?: {\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Feature listing of a plan. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n features?: (components['schemas']['Feature'] & components['schemas']['FeaturePlan'])[];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'plans/retrieve': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Plan listing. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Plan'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'plans/list': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description List of all the plans. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n plans?: components['schemas']['Plan'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'plans/create': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: components['parameters']['developer_id'];\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n name?: components['schemas']['Plan']['name'];\n title?: components['schemas']['Plan']['title'];\n description?: components['schemas']['Plan']['description'];\n is_free_localhost?: components['schemas']['Plan']['is_free_localhost'];\n is_block_features?: components['schemas']['Plan']['is_block_features'];\n is_block_features_monthly?: components['schemas']['Plan']['is_block_features_monthly'];\n license_type?: components['schemas']['Plan']['license_type'];\n trial_period?: components['schemas']['Plan']['trial_period'];\n is_require_subscription?: components['schemas']['Plan']['is_require_subscription'];\n support_forum?: components['schemas']['Plan']['support_forum'];\n support_kb?: components['schemas']['Plan']['support_kb'];\n support_email?: components['schemas']['Plan']['support_email'];\n support_phone?: components['schemas']['Plan']['support_phone'];\n is_success_manager?: components['schemas']['Plan']['is_success_manager'];\n is_featured?: components['schemas']['Plan']['is_featured'];\n };\n };\n };\n responses: {\n /** @description A new plan is created. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Plan'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'plans/clone-pricing-other-currency': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n /**\n * @description The currency of the pricing to be created.\n * @example eur\n * @enum {string}\n */\n to_currency?: 'eur' | 'usd' | 'gbp';\n /**\n * @description The currency of the pricing to clone.\n * @default usd\n * @enum {string}\n */\n from_currency?: 'eur' | 'usd' | 'gbp';\n };\n };\n };\n responses: {\n /** @description New pricing for the currency created. */\n 201: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n pricing?: components['schemas']['Pricing'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'plans/retrieve-pricing': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n /**\n * @description The ID of the Pricing.\n * @example 1234\n */\n pricing_id: components['parameters']['pricing_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The plan pricing. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n pricing?: components['schemas']['Pricing'];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'plans/update-pricing': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: components['parameters']['developer_id'];\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n /**\n * @description The ID of the Pricing.\n * @example 1234\n */\n pricing_id: components['parameters']['pricing_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': components['schemas']['Pricing'];\n };\n };\n responses: {\n /** @description The plan pricing was updated. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n pricing?: components['schemas']['Pricing'];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'plans/delete-s-pricing': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: components['parameters']['developer_id'];\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n /**\n * @description The ID of the Pricing.\n * @example 1234\n */\n pricing_id: components['parameters']['pricing_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The plan pricing was deleted. */\n 204: {\n headers: {\n [name: string]: unknown;\n };\n content?: never;\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'plans/list-s-pricing': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n currency?: components['schemas']['CommonEnums']['Currency'];\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The collection of the plan's pricing. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n pricing?: components['schemas']['Pricing'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'plans/create-pricing': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n currency?: components['schemas']['CommonEnums']['Currency'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n monthly_price?: components['schemas']['Pricing']['monthly_price'];\n annual_price?: components['schemas']['Pricing']['annual_price'];\n lifetime_price?: components['schemas']['Pricing']['lifetime_price'];\n licenses?: components['schemas']['Pricing']['licenses'];\n currency?: unknown;\n };\n };\n };\n responses: {\n /** @description The pricing for the plan has been created. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n pricing?: components['schemas']['Pricing'];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'plans/create-license': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the plan.\n * @example 1234\n */\n plan_id: components['parameters']['plan_id'];\n /**\n * @description The ID of the Pricing.\n * @example 1234\n */\n pricing_id: components['parameters']['pricing_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n is_whitelabeled?: components['schemas']['License']['is_whitelabeled'];\n period?: components['schemas']['Subscription']['billing_cycle'];\n is_block_features?: components['schemas']['License']['is_block_features'];\n expires_at?: components['schemas']['License']['expiration'];\n /** @description (optional) License owner email. */\n email?: string;\n /** @description (optional) If the module type is `bundle` and `existing_install_id` is a valid ID of an install that is using a product of the bundle, a child license will automatically be created and activated for the install. */\n existing_install_id?: string;\n /** @description (optional) Whether to email the license key and download link to the user. */\n send_email?: boolean;\n source?: components['schemas']['License']['source'];\n /** @description (optional) Predefined license key - this can be used when duplicating a license of another product into another product. */\n license_key?: string;\n };\n };\n };\n responses: {\n /** @description The license created successfully. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n license?: components['schemas']['License'];\n };\n };\n };\n };\n };\n 'products/retrieve-pricing-table-data': {\n parameters: {\n query?: {\n /** @description The currency to use for the pricing. */\n currency?: components['schemas']['CommonEnums']['Currency'];\n show_pending?: boolean;\n /** @description Whether to show all plans or only the visible ones. */\n type?: 'all' | 'visible';\n /** @description If set to `true`, the result will be enriched with some of the context plugin's information. */\n is_enriched?: boolean;\n /** @description (optional) (Development Only) The ID of the parent bundle product. When getting the pricing of a product, if the product is part of a bundle, you can set the value here (along with the public key of the bundle). This will be used to determine the trial status of the product in sandbox mode. Our WP SDK uses it internally. */\n bundle_product_id?: string;\n /** @description (optional) (Development Only) Used alongside the `bundle_product_id` parameter. */\n bundle_product_public_key?: string;\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The features and pricing data. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n plugin?: {\n icon?: components['schemas']['Plugin']['icon'];\n slug?: components['schemas']['Plugin']['slug'];\n title?: components['schemas']['Plugin']['title'];\n type?: components['schemas']['Plugin']['type'];\n money_back_period?: components['schemas']['Plugin']['money_back_period'];\n refund_policy?: components['schemas']['Plugin']['refund_policy'];\n public_key?: components['schemas']['Plugin']['public_key'];\n parent_plugin_id?: components['schemas']['Plugin']['parent_plugin_id'];\n /** @description The label used for the selling unit of the product, e.g., 'Credit', 'Activation', etc. The resulting object will have both singular and plural. */\n selling_unit_label?: {\n /**\n * @description The singular form of the selling unit label.\n * @example Credit\n */\n singular?: string;\n /**\n * @description The plural form of the selling unit label.\n * @example Credits\n */\n plural?: string;\n };\n };\n plans?: (components['schemas']['Plan'] & {\n pricing?: components['schemas']['Pricing'][];\n } & {\n features?: components['schemas']['FeatureEnriched'][];\n })[];\n /** @description Verified and featured reviews of the product. */\n reviews?: components['schemas']['PluginReview'][];\n /**\n * @description The estimated number of active installs of the product.\n * @example 10000\n */\n active_installs?: number;\n /**\n * @description The estimated number of downloads of the product.\n * @example 5000\n */\n downloads?: number;\n /**\n * @description Single site pricing for all plans indexed by plan ID\n * @example {\n * \"16633\": {\n * \"monthly_price\": {\n * \"usd\": 9.99,\n * \"gbp\": 7.99,\n * \"eur\": 8.99\n * },\n * \"annual_price\": {\n * \"usd\": 99.99,\n * \"gbp\": 79.99,\n * \"eur\": 89.99\n * },\n * \"lifetime_price\": {\n * \"usd\": 299.99,\n * \"gbp\": 249.99,\n * \"eur\": 279.99\n * }\n * }\n * }\n */\n all_plans_single_site_pricing?: {\n [key: string]: {\n /** @description Monthly pricing in different currencies */\n monthly_price?: {\n /**\n * Format: float\n * @example 9.99\n */\n usd?: number;\n /**\n * Format: float\n * @example 7.99\n */\n gbp?: number;\n /**\n * Format: float\n * @example 8.99\n */\n eur?: number;\n };\n /** @description Annual pricing in different currencies */\n annual_price?: {\n /**\n * Format: float\n * @example 99.99\n */\n usd?: number;\n /**\n * Format: float\n * @example 79.99\n */\n gbp?: number;\n /**\n * Format: float\n * @example 89.99\n */\n eur?: number;\n };\n /** @description Lifetime pricing in different currencies */\n lifetime_price?: {\n /**\n * Format: float\n * @example 299.99\n */\n usd?: number;\n /**\n * Format: float\n * @example 249.99\n */\n gbp?: number;\n /**\n * Format: float\n * @example 279.99\n */\n eur?: number;\n };\n };\n };\n /**\n * @description The URL to the Freemius Checkout. You need to append the product id and plan id as necessary. Please refer to the [Checkout documentation](https://freemius.com/help/documentation/selling-with-freemius/hosted-checkout/) for more information.\n * @example https://checkout.freemius.com\n */\n checkout_url?: string;\n /**\n * @description The URL to the Freemius WP Endpoint. This is internally used by the Freemius SDK.\n * @example https://wp.freemius.com\n */\n fs_wp_endpoint_url?: string;\n /**\n * @description Whenther the product supports trial for the current install/site. This is relevant for WP products only.\n * @example true\n */\n trial_mode?: boolean;\n /**\n * @description Whether the trial has been utilized for the current install/site. This is relevant for WP products only.\n * @example false\n */\n trial_utilized?: boolean;\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'reviews/retrieve': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the review.\n * @example 1234\n */\n review_id: components['parameters']['review_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The retrieved review. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['PluginReview'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'reviews/update': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the review.\n * @example 1234\n */\n review_id: components['parameters']['review_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'multipart/form-data': {\n /**\n * Format: binary\n * @description Reviewer's profile picture. A maximum of 200KB in size and 300px width and 300px height is allowed.\n */\n picture?: string;\n data?: components['schemas']['CommonRequestSchemas']['MultipartJsonData'];\n };\n 'application/json': {\n title?: components['schemas']['PluginReview']['title'];\n text?: components['schemas']['PluginReview']['text'];\n name?: components['schemas']['PluginReview']['name'];\n rate?: components['schemas']['PluginReview']['rate'];\n job_title?: components['schemas']['PluginReview']['job_title'];\n company?: components['schemas']['PluginReview']['company'];\n company_url?: components['schemas']['PluginReview']['company_url'];\n profile_url?: components['schemas']['PluginReview']['profile_url'];\n is_featured?: components['schemas']['PluginReview']['is_featured'];\n };\n };\n };\n responses: {\n /** @description The updated review. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['PluginReview'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'reviews/delete': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the review.\n * @example 1234\n */\n review_id: components['parameters']['review_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n 204: components['responses']['204'];\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'reviews/list': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The reviews collection. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n reviews?: components['schemas']['PluginReview'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'reviews/create': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'multipart/form-data': {\n /**\n * Format: binary\n * @description Reviewer's profile picture. A maximum of 200KB in size and 300px width and 300px height is allowed.\n */\n picture?: string;\n data?: components['schemas']['CommonRequestSchemas']['MultipartJsonData'];\n };\n 'application/json': {\n title?: components['schemas']['PluginReview']['title'];\n text?: components['schemas']['PluginReview']['text'];\n name?: components['schemas']['PluginReview']['name'];\n rate?: components['schemas']['PluginReview']['rate'];\n job_title?: components['schemas']['PluginReview']['job_title'];\n company?: components['schemas']['PluginReview']['company'];\n company_url?: components['schemas']['PluginReview']['company_url'];\n profile_url?: components['schemas']['PluginReview']['profile_url'];\n is_featured?: components['schemas']['PluginReview']['is_featured'];\n /**\n * @description Whether the review is active or not.\n * @default true\n */\n is_active?: boolean;\n };\n };\n };\n responses: {\n /** @description The retrieved review. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['PluginReview'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'reviews/retrieve-summary': {\n parameters: {\n query?: {\n type?: 'all' | 'verified';\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The summary of the review collection. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n reviews?: {\n rate?: components['schemas']['PluginReview']['rate'];\n /**\n * Format: int64\n * @description The total number of reviews that have the same rating for the product.\n * @example 10\n */\n count?: string;\n }[];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/retrieve-setting': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the setting.\n * @example 1234\n */\n setting_id: components['parameters']['setting_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The product setting. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Setting'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/update-setting': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the setting.\n * @example 1234\n */\n setting_id: components['parameters']['setting_id'];\n };\n cookie?: never;\n };\n requestBody?: {\n content: {\n 'application/json': {\n data?: components['schemas']['Setting']['data'];\n };\n };\n };\n responses: {\n /** @description Updated product settings. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Setting'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/delete-setting': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the setting.\n * @example 1234\n */\n setting_id: components['parameters']['setting_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n 204: components['responses']['204'];\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'products/skip-account-connection': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n /** @description MD5 Collection of unique site identifiers. */\n uids?: components['schemas']['CommonProperties']['uid'][];\n uid?: components['schemas']['CommonProperties']['uid'];\n };\n };\n };\n responses: {\n 204: components['responses']['204'];\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'subscriptions/retrieve': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Subscription.\n * @example 1234\n */\n subscription_id: components['parameters']['subscription_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Subscription retrieved. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Subscription'];\n };\n };\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'subscriptions/update': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Subscription.\n * @example 1234\n */\n subscription_id: components['parameters']['subscription_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n /** @description Logs an event that confirms the user requested that the subscription will continue to auto-renew. */\n auto_renew?: boolean;\n /** @description An optional subscription cancellation coupon ID. The coupon must be set as a special \"Cancellation Coupon\" in the Freemius Developer Dashboard. If provided the discount will be applied to the next renewals. */\n coupon_id?: number;\n };\n };\n };\n responses: {\n /** @description Subscription retrieved. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Subscription'] & {\n /**\n * @description Shows whether a subscription cancellation discount was applied to the subscription.\n * @example false\n */\n has_subscription_cancellation_discount?: boolean | null;\n };\n };\n };\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'subscriptions/cancel': {\n parameters: {\n query?: {\n /** @description Optional cancellation reason IDs. */\n reason_ids?: components['schemas']['Uninstall']['reason_id'][];\n reason?: components['schemas']['Uninstall']['reason_info'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Subscription.\n * @example 1234\n */\n subscription_id: components['parameters']['subscription_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Subscription retrieved. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Subscription'];\n };\n };\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'subscriptions/list': {\n parameters: {\n query?: {\n /** @description Optional search: subscription id, external subscription id or user email */\n search?: string;\n /** @description Filter by billing cycle. */\n billing_cycle?: components['parameters']['billing_cycle'];\n /**\n * @description Filter by gateway.\n * @example stripe\n */\n gateway?: components['parameters']['gateway'];\n /** @description Optional filtering based on the status of the subscription. Defaults to `all`. */\n filter?: 'all' | 'active' | 'cancelled';\n /** @description When set to `true` enrich the subscriptions with the plan name, install URL & title, and user email. */\n extended?: boolean;\n /** @description When set to `true` enrich the subscription to include any cancellation discounts applied to the subscriptions. */\n enrich_with_cancellation_discounts?: boolean;\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n /** @description The sort order of the subscriptions. Example: -id. Default: -id. */\n sort?: 'id' | 'next_payment';\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Provides a collection of subscriptions associated with the product. All subscriptions are listed under the `subscriptions` key. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n subscriptions?: (components['schemas']['Subscription'] & {\n /**\n * @description Name of the plan associated with the subscription. (Only available when `extended` is set to `true`.)\n * @example Professional\n */\n plan_name?: string | null;\n /**\n * @description Email of the user associated with the subscription. (Only available when `extended` is set to `true`.)\n * @example foo@freemius.com\n */\n email?: string | null;\n /**\n * @description URL of the installation associated with the subscription. (Only available when `extended` is set to `true`.)\n * @example https://example.com\n */\n url?: string | null;\n /**\n * @description Title of the installation associated with the subscription. (Only available when `extended` is set to `true`.)\n * @example Website title\n */\n title?: string | null;\n /**\n * @description Whether subscription cancellation discount was already applied. (Only available when `enrich_with_cancellation_discounts` is set to `true`.)\n * @example true\n */\n has_subscription_cancellation_discount?: boolean | null;\n })[];\n /** @description The key represents the ID of the subscription */\n discounts?: {\n [key: string]: components['schemas']['Discount'][];\n };\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'subscriptions/list-payments': {\n parameters: {\n query?: {\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Subscription.\n * @example 1234\n */\n subscription_id: components['parameters']['subscription_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Provides a collection of payments associated with the subscription. All payments are listed under the `payments` key. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n payments?: components['schemas']['Payment'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'subscriptions/create-new-migrated-payment': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the Subscription.\n * @example 1234\n */\n subscription_id: components['parameters']['subscription_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n gross?: components['schemas']['Payment']['gross'];\n payment_external_id?: components['schemas']['Payment']['external_id'];\n source?: components['schemas']['Migration']['source_external_id'];\n vat?: components['schemas']['Payment']['vat'];\n gateway_fee?: components['schemas']['Payment']['gateway_fee'];\n processed_at?: components['schemas']['Cart']['completed'];\n /** @description Whether the license should be extended. The default value is `false`. */\n is_extend_license?: boolean;\n next_payment?: components['schemas']['Subscription']['next_payment'];\n };\n };\n };\n responses: {\n /** @description The payment was successfully created. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Payment'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'deployments/update': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the product version.\n * @example 1234\n */\n tag_id: components['parameters']['tag_id'];\n };\n cookie?: never;\n };\n requestBody?: {\n content: {\n 'application/json': {\n release_mode?: components['schemas']['PluginTag']['release_mode'];\n limit?: components['schemas']['PluginTag']['limit'];\n /** @description Instead of `limit`, you can use this property to limit the percentage of license owners that will receive an update. The value must be between 0 and 100. Behind the scenes the system will count the current active license owners and convert it into an absolute value. */\n percentage_limit?: number;\n is_incremental?: components['schemas']['PluginTag']['is_incremental'];\n };\n };\n };\n responses: {\n /** @description The updated deployment. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['PluginTag'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'deployments/download': {\n parameters: {\n query?: {\n /** @description (Optional) Whether to retrieve a premium version of the product or not. For WordPress products (plugins and themes) only. */\n is_premium?: boolean;\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the product version.\n * @example 1234\n */\n tag_id: components['parameters']['tag_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The zip file of the deployed version. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/zip': unknown;\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'deployments/list': {\n parameters: {\n query?: {\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The product version collection. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n tags?: components['schemas']['PluginTag'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'deployments/create': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: {\n content: {\n 'multipart/form-data': {\n /**\n * Format: binary\n * @description The zip file containing the product. For WordPress plugins or themes this must contain the root directory.\n */\n file: string;\n /**\n * Format: json\n * @description The metadata details associated with this specific product version.\n * @example {\"version\": \"1.0.0\", \"requires_platform_version\": \"1.0.0\"}\n */\n data?: string;\n };\n };\n };\n responses: {\n /** @description OK */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['PluginTag'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'deployments/get-latest': {\n parameters: {\n query?: {\n /** @description (Optional) Whether to retrieve a premium version of the product or not. For WordPress products (plugins and themes) only. */\n is_premium?: boolean;\n /** @description Type of the latest deployment to load. If the type provided is `all`, the latest `released`, `beta`, or `pending` version will be returned, whichever has the higher version. */\n type?: 'released' | 'beta' | 'pending' | 'all';\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The latest deployment information. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['PluginTag'] & {\n /** @description URL to download the deployed ZIP file. This is a secure URL and does not need any additional authentication header. Will expire after 24 hours from the time of generation. */\n url?: string;\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'deployments/download-latest': {\n parameters: {\n query?: {\n /** @description (Optional) Whether to retrieve a premium version of the product or not. For WordPress products (plugins and themes) only. */\n is_premium?: boolean;\n /** @description Type of the latest deployment to load. If the type provided is `all`, the latest `released`, `beta`, or `pending` version will be returned, whichever has the higher version. */\n type?: 'released' | 'beta' | 'pending' | 'all';\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The zip file of the deployed version. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/zip': unknown;\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'trials/list': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The start of the date range in YYYY-MM-DD HH:MM:SS format\n * @example 2025-08-01 00:00:00\n */\n from?: components['parameters']['from'];\n /**\n * @description The end of the date range in YYYY-MM-DD HH:MM:SS format\n * @example 2025-08-01 00:00:00\n */\n to?: components['parameters']['to'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Trial collection. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n trials?: components['schemas']['Trial'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'installations/uninstall-from-anonymous-site': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n uid?: components['schemas']['CommonProperties']['uid'];\n reason_id?: components['schemas']['Uninstall']['reason_id'];\n reason?: components['schemas']['Uninstall']['reason_info'];\n };\n };\n };\n responses: {\n /** @description The product is uninstalled. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n /** @example 200 OK */\n 'application/json': string;\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'users/retrieve-billing': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Billing Information retrieved. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Billing'];\n };\n };\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'users/update-or-create-billing': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n business_name?: components['schemas']['Billing']['business_name'];\n first?: components['schemas']['Billing']['first'];\n last?: components['schemas']['Billing']['last'];\n email?: components['schemas']['Billing']['email'];\n phone?: components['schemas']['Billing']['phone'];\n website?: components['schemas']['Billing']['website'];\n tax_id?: components['schemas']['Billing']['tax_id'];\n address_street?: components['schemas']['Billing']['address_street'];\n address_apt?: components['schemas']['Billing']['address_apt'];\n address_city?: components['schemas']['Billing']['address_city'];\n address_country?: components['schemas']['Billing']['address_country'];\n address_country_code?: components['schemas']['Billing']['address_country_code'];\n address_state?: components['schemas']['Billing']['address_state'];\n address_zip?: components['schemas']['Billing']['address_zip'];\n };\n };\n };\n responses: {\n /** @description Billing information updated. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Billing'];\n };\n };\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'users/list-events': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The user's events log. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n events?: components['schemas']['EventLog'][];\n };\n };\n };\n };\n };\n 'users/retrieve': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The product user data. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['User'];\n };\n };\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'users/update': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n /** @description The name of the user (Optional). */\n name?: string;\n first?: components['schemas']['User']['first'];\n last?: components['schemas']['User']['last'];\n is_marketing_allowed?: components['schemas']['User']['is_marketing_allowed'];\n is_beta?: components['schemas']['User']['is_beta'];\n };\n };\n };\n responses: {\n /** @description The product user updated data. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['User'];\n };\n };\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'users/list': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /** @description Search user by email address. */\n email?: string;\n /** @description Filter user by their financial status */\n filter?: 'all' | 'never_paid' | 'paid' | 'paying' | 'beta';\n /** @description Search by user ID, email or name */\n search?: string;\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description OK */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n users?: components['schemas']['User'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'users/create': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n /** @description Valid email address. */\n email?: string;\n /** @description Valid password. Must have at least 8 characters. */\n password?: string;\n /** @description (optional) IPv4 or IPv6 Address */\n ip?: string;\n /** @description (optional) Full name property. If not specified, `first` and `last` must be provided instead. */\n name?: string;\n /** @description (optional) First name. `Required` if no valid `name` was provided. */\n first?: string;\n /** @description (optional) Last name. `Required` if no valid `name` was provided. */\n last?: string;\n /** @description (optional) Profile picture URL. */\n picture?: string;\n /** @description (optional) Tells if person is already verified, defaults to FALSE. */\n is_verified?: boolean;\n /** @description (optional) URL address that the user will be auto forwarded to after email confirmation is clicked. */\n after_email_confirm_url?: string;\n /** @description (optional) Defaults to TRUE. If `false`, email verification message will NOT be sent after registration. */\n send_verification_email?: boolean;\n is_marketing_allowed?: components['schemas']['User']['is_marketing_allowed'];\n /** @description (optional) If `true`, no emails will be sent to users nor events will be logged. */\n is_migration?: string;\n source?: components['schemas']['Migration']['source_external_id'];\n };\n };\n };\n responses: {\n /** @description OK */\n 201: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['User'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n };\n };\n 'users/list-installs': {\n parameters: {\n query?: {\n /**\n * @description Comma-separated install IDs list to filter.\n * @example 1234,2478,2345\n */\n install_ids?: string;\n /** @description License ID filter. If set, return installs that are linked to the specified license. */\n license_id?: number;\n /** @description Plan ID filter. If set, return installs associated with the given plan. */\n plan_id?: number;\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Installs collection */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n installs?: components['schemas']['Install'][];\n };\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'users/list-licenses': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /** @description Retrieve specific license by its key. */\n license_key?: string;\n /** @description Comma-separated license IDs. */\n ids?: string;\n /** @description Retrieve specific multiple license with a comma-separated string of their license keys. */\n license_keys?: string;\n /** @description The type of license. */\n type?: 'all' | 'active' | 'expired';\n /** @description Returns the license's product type. */\n is_enriched?: boolean;\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description License collection. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n licenses?: (components['schemas']['License'] & {\n /** @description The product type of the license. */\n plugin_type?: string;\n /** @description List of IDs of children products in case the product is a bundle. */\n products?: components['schemas']['Plugin']['id'][];\n })[];\n };\n };\n };\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'licenses/get-review-url': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The retrieved review URL. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': unknown;\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'licenses/create-review': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n /**\n * @description The ID of the License.\n * @example 1234\n */\n license_id: components['parameters']['license_id'];\n };\n cookie?: never;\n };\n /** @description Data needed to create a review with an optional picture. When sending `multipart/form-data` the `data` property must be a JSON object with same structure as the JSON payload. */\n requestBody: {\n content: {\n 'multipart/form-data': {\n /**\n * Format: binary\n * @description Reviewer's profile picture. A maximum of 200KB in size and 300px width and 300px height is allowed.\n */\n picture?: string;\n data?: components['schemas']['CommonRequestSchemas']['MultipartJsonData'];\n };\n 'application/json': {\n rate?: components['schemas']['PluginReview']['rate'];\n title?: components['schemas']['PluginReview']['title'];\n text?: components['schemas']['PluginReview']['text'];\n name?: components['schemas']['PluginReview']['name'];\n job_title?: components['schemas']['PluginReview']['job_title'];\n company?: components['schemas']['PluginReview']['company'];\n company_url?: components['schemas']['PluginReview']['company_url'];\n profile_url?: components['schemas']['PluginReview']['profile_url'];\n is_active?: components['schemas']['PluginReview']['is_featured'];\n };\n };\n };\n responses: {\n /** @description The created review. */\n 201: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['PluginReview'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'users/list-payments': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /** @description If `true`, loads linked user, plan and subscription. */\n extended?: boolean;\n /** @description Returns the plugin add-ons' payments as well. */\n include_addons?: boolean;\n /** @description Returns the plugin bundles' payments as well. */\n include_bundles?: boolean;\n /** @description Filter the payments by the status. */\n filter?: 'all' | 'refunds' | 'not_refunded' | 'not_refunded_renewals';\n /** @description Filter by billing cycle. */\n billing_cycle?: components['parameters']['billing_cycle'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Payment collection. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n payments?: (components['schemas']['Payment'] & {\n /**\n * @description 3-char currency code. (Only available when `extended` is set to `true`.)\n * @enum {string}\n */\n currency?: 'usd' | 'eur' | 'gbp';\n /**\n * @description Name of the plan associated with the subscription. (Only available when `extended` is set to `true`.)\n * @example Professional\n */\n plan_name?: string | null;\n /**\n * @description Email of the user associated with the subscription. (Only available when `extended` is set to `true`.)\n * @example foo@freemius.com\n */\n email?: string | null;\n /**\n * @description URL of the installation associated with the subscription. (Only available when `extended` is set to `true`.)\n * @example https://example.com\n */\n url?: string | null;\n /**\n * @description The billing cycle of the subscription in number of months. 1 means monthly, 12 means annually, 0 means lifetime usually when subscriptions are created for lifetime trials. (Only available when `extended` is set to `true`.)\n * @enum {number}\n */\n billing_cycle?: 1 | 12 | 0;\n })[];\n discounts?: components['schemas']['Discount'][];\n };\n };\n };\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'users/list-subscriptions': {\n parameters: {\n query?: {\n /** @description Enrich the subscriptions with the plan name, install URL & title, and user email. */\n extended?: boolean;\n /** @description Filter the subscriptions by the status. */\n filter?: 'all' | 'active' | 'cancelled';\n /** @description Filter by billing cycle. */\n billing_cycle?: 1 | 12;\n /**\n * @description Filter by gateway.\n * @example stripe\n */\n gateway?: components['parameters']['gateway'];\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n /**\n * @description The number of records to skip before starting to return records. Default is 0.\n * @example 10\n */\n offset?: components['parameters']['offset'];\n /**\n * @description The number of records to return.\n * @example 10\n */\n count?: components['parameters']['count'];\n /** @description Filter the subscriptions by the plan ID. */\n plan_id?: string;\n /** @description Sort the subscriptions by the ID or the next payment date. */\n sort?: 'id' | 'next_payment';\n /** @description Search by subscription ID, external subscription ID or user email. */\n search?: string;\n /** @description When set to `true` enrich the subscription to include any cancellation discounts applied to the subscriptions. */\n enrich_with_cancellation_discounts?: boolean;\n };\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description Subscription collection. */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n subscriptions?: (components['schemas']['Subscription'] & {\n /**\n * @description Name of the plan associated with the subscription. (Only available when `extended` is set to `true`.)\n * @example Professional\n */\n plan_name?: string | null;\n /**\n * @description Email of the user associated with the subscription. (Only available when `extended` is set to `true`.)\n * @example foo@freemius.com\n */\n email?: string | null;\n /**\n * @description URL of the installation associated with the subscription. (Only available when `extended` is set to `true`.)\n * @example https://example.com\n */\n url?: string | null;\n /**\n * @description Title of the installation associated with the subscription. (Only available when `extended` is set to `true`.)\n * @example Website title\n */\n title?: string | null;\n /**\n * @description Shows whether a renewal discount was already applied to the subscription.\n * @example false\n */\n has_subscription_cancellation_discount?: boolean | null;\n })[];\n /** @description The key represents the ID of the subscription */\n discounts?: {\n [key: string]: components['schemas']['Discount'][];\n };\n };\n };\n };\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'users/create-checkout-token': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the product.\n * @example 1234\n */\n product_id: components['parameters']['product_id'];\n /**\n * @description The ID of the User.\n * @example 1234\n */\n user_id: components['parameters']['user_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n /** @description The created checkout token. */\n 201: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': {\n /** @example eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjoxLCJwcm9kdWN0X2lkIjozLCJ0b2tlbl9leHBpcmF0aW9uIjoxNTY3ODk4NzYwfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c */\n token?: unknown;\n };\n };\n };\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'plans/update': {\n parameters: {\n query?: {\n /**\n * @description Comma separated list of fields to return in the response. If not specified, all fields are returned.\n * @example id,name,slug\n */\n fields?: components['parameters']['fields'];\n };\n header?: never;\n path: {\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: components['parameters']['developer_id'];\n };\n cookie?: never;\n };\n requestBody: {\n content: {\n 'application/json': {\n name?: components['schemas']['Plan']['name'];\n title?: components['schemas']['Plan']['title'];\n description?: components['schemas']['Plan']['description'];\n is_free_localhost?: components['schemas']['Plan']['is_free_localhost'];\n is_block_features?: components['schemas']['Plan']['is_block_features'];\n is_block_features_monthly?: components['schemas']['Plan']['is_block_features_monthly'];\n license_type?: components['schemas']['Plan']['license_type'];\n trial_period?: components['schemas']['Plan']['trial_period'];\n is_require_subscription?: components['schemas']['Plan']['is_require_subscription'];\n support_forum?: components['schemas']['Plan']['support_forum'];\n support_kb?: components['schemas']['Plan']['support_kb'];\n support_email?: components['schemas']['Plan']['support_email'];\n support_phone?: components['schemas']['Plan']['support_phone'];\n is_success_manager?: components['schemas']['Plan']['is_success_manager'];\n is_featured?: components['schemas']['Plan']['is_featured'];\n is_hidden?: components['schemas']['Plan']['is_hidden'];\n };\n };\n };\n responses: {\n /** @description Plan updated */\n 200: {\n headers: {\n [name: string]: unknown;\n };\n content: {\n 'application/json': components['schemas']['Plan'];\n };\n };\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n 'plans/delete': {\n parameters: {\n query?: never;\n header?: never;\n path: {\n /**\n * @description The ID of the developer.\n * @example 1234\n */\n developer_id: components['parameters']['developer_id'];\n };\n cookie?: never;\n };\n requestBody?: never;\n responses: {\n 204: components['responses']['204'];\n 400: components['responses']['400'];\n 401: components['responses']['401'];\n 402: components['responses']['402'];\n 404: components['responses']['404'];\n };\n };\n}\n"],"mappings":";;;;;;;;;;UAKiBA,KAAAA;EAAAA,gEAAK,EAAA;IAAA,UAAA,EAAA;MAUQC,KAAAA,CAAAA,EAAAA,KAAAA;MAKGA,MAAAA,CAAAA,EAAAA,KAAAA;MAQpBC,IAAAA,EAAAA;QAkBiBD;;;;QA2DFA,YAAAA,EA1FEA,UA0FFA,CAAAA,YAAAA,CAAAA,CAAAA,cAAAA,CAAAA;QAKFA;;;;QAoCAA,eAAAA,EA9HOA,UA8HPA,CAAAA,YAAAA,CAAAA,CAAAA,iBAAAA,CAAAA;MAQbC,CAAAA;MAkBeD,MAAAA,CAAAA,EAAAA,KAAAA;IAKFA,CAAAA;IAKDA;;;;IAuCZC,GAAAA,EAjMAA,UAiMAA,CAAAA,kCAAAA,CAAAA;IAkBeD,GAAAA,CAAAA,EAAAA,KAAAA;IAKHA,IAAAA,CAAAA,EAAAA,KAAAA;IAUZC,MAAAA,CAAAA,EAAAA,KAAAA;IASAA,OAAAA,CAAAA,EAAAA,KAAAA;IAMGA,IAAAA,CAAAA,EAAAA,KAAAA;IAeYD,KAAAA,CAAAA,EAAAA,KAAAA;IAYfC,KAAAA,CAAAA,EAAAA,KAAAA;;yCAuBcD,EAAAA;IAQdC,UAAAA,EAAAA;MAKAA,KAAAA,CAAAA,EAAAA,KAAAA;MAMGA,MAAAA,CAAAA,EAAAA,KAAAA;MAeYD,IAAAA,EAAAA;QAmBfC;;;;QAuCAA,YAAAA,EA7WiBD,UA6WjBC,CAAAA,YAAAA,CAAAA,CAAAA,cAAAA,CAAAA;MAKAA,CAAAA;MAKCA,MAAAA,CAAAA,EAAAA,KAAAA;IAKEA,CAAAA;IAeYD,GAAAA,CAAAA,EAAAA,KAAAA;IAYfC,GAAAA,CAAAA,EAAAA,KAAAA;IAkBeD;;;;;;;;;;;IAuGAA,IAAAA,EA/fdC,UA+fcD,CAAAA,mBAAAA,CAAAA;IAKEA,MAAAA,CAAAA,EAAAA,KAAAA;IAajBC,OAAAA,CAAAA,EAAAA,KAAAA;IAQAA,IAAAA,CAAAA,EAAAA,KAAAA;IAiBeD,KAAAA,CAAAA,EAAAA,KAAAA;IAKFA,KAAAA,CAAAA,EAAAA,KAAAA;;sCA0BEA,EAAAA;IAQfC,UAAAA,EAAAA;MAkBeD,KAAAA,CAAAA,EAAAA,KAAAA;MAKAA,MAAAA,CAAAA,EAAAA,KAAAA;MAQfC,IAAAA,EAAAA;QAKAA;;;;QA+CeD,UAAAA,EAppBAA,UAopBAA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MAQfC,CAAAA;MAKAA,MAAAA,CAAAA,EAAAA,KAAAA;IAiBeD,CAAAA;IAQfC;;;;IAiCYD,GAAAA,EAntBZC,UAmtBYD,CAAAA,sBAAAA,CAAAA;IAQZC,GAAAA,CAAAA,EAAAA,KAAAA;IAkBeD,IAAAA,CAAAA,EAAAA,KAAAA;IAKAA,MAAAA,CAAAA,EAAAA,KAAAA;IAKFA,OAAAA,CAAAA,EAAAA,KAAAA;IASbC,IAAAA,CAAAA,EAAAA,KAAAA;IAiBeD,KAAAA,CAAAA,EAAAA,KAAAA;IAKAA,KAAAA,CAAAA,EAAAA,KAAAA;;0EAgCAA,EAAAA;IAYfC,UAAAA,EAAAA;MAkBeD,KAAAA,CAAAA,EAAAA,KAAAA;MAKAA,MAAAA,CAAAA,EAAAA,KAAAA;MASfC,IAAAA,EAAAA;QAiBeD;;;;QAoCAA,UAAAA,EAr4BAA,UAq4BAA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QAQfC;;;;QAoCAA,QAAAA,EA56BaD,UA46BbC,CAAAA,YAAAA,CAAAA,CAAAA,UAAAA,CAAAA;QAkBeD;;;;QAsCAA,OAAAA,EA/9BHA,UA+9BGA,CAAAA,YAAAA,CAAAA,CAAAA,SAAAA,CAAAA;MAKAA,CAAAA;MAUfC,MAAAA,CAAAA,EAAAA,KAAAA;IAKAA,CAAAA;IAMGA;;;;IAgDYD,GAAAA,EAjiCfC,UAiiCeD,CAAAA,4BAAAA,CAAAA;IAKAA,GAAAA,CAAAA,EAAAA,KAAAA;IAKAA,IAAAA,CAAAA,EAAAA,KAAAA;IAUfC,MAAAA,CAAAA,EAAAA,KAAAA;IAkBeD,OAAAA,CAAAA,EAAAA,KAAAA;IAKAA,IAAAA,CAAAA,EAAAA,KAAAA;IAYfC,KAAAA,CAAAA,EAAAA,KAAAA;IAkBeD,KAAAA,CAAAA,EAAAA,KAAAA;;uDAiBdC,EAAAA;IAgBcD,UAAAA,EAAAA;MAKAA,KAAAA,CAAAA,EAAAA,KAAAA;MAUfC,MAAAA,CAAAA,EAAAA,KAAAA;MAkBeD,IAAAA,EAAAA;QAKAA;;;;QAoCHA,UAAAA,EAnsCGA,UAmsCHA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QAQZC;;;;QAiDeD,QAAAA,EAvvCFA,UAuvCEA,CAAAA,YAAAA,CAAAA,CAAAA,UAAAA,CAAAA;MAKAA,CAAAA;MAKHA,MAAAA,CAAAA,EAAAA,KAAAA;IAKGA,CAAAA;IAYdC;;;;IAoCAA,GAAAA,EA9yCDA,UA8yCCA,CAAAA,mBAAAA,CAAAA;IAgBcD,GAAAA,CAAAA,EAAAA,KAAAA;IAKAA,IAAAA,CAAAA,EAAAA,KAAAA;IAWZC,MAAAA,CAAAA,EAAAA,KAAAA;IAeYD,OAAAA,CAAAA,EAAAA,KAAAA;IAKAA,IAAAA,CAAAA,EAAAA,KAAAA;IAQfC,KAAAA,CAAAA,EAAAA,KAAAA;IAkBeD,KAAAA,CAAAA,EAAAA,KAAAA;;yEAafC,EAAAA;IAkBeD,UAAAA,EAAAA;MAKAA,KAAAA,CAAAA,EAAAA,KAAAA;MAQfC,MAAAA,CAAAA,EAAAA,KAAAA;MAkBeD,IAAAA,EAAAA;QAKAA;;;;QAoCAA,UAAAA,EAj9CAA,UAi9CAA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QAKHA;;;;QAsDGA,QAAAA,EAvgDFA,UAugDEA,CAAAA,YAAAA,CAAAA,CAAAA,UAAAA,CAAAA;QAYdC;;;;QA+CcD,OAAAA,EA7jDHA,UA6jDGA,CAAAA,YAAAA,CAAAA,CAAAA,SAAAA,CAAAA;MAUdC,CAAAA;MAgBcD,MAAAA,CAAAA,EAAAA,KAAAA;IAKAA,CAAAA;IAQfC;;;;IAkCAA,GAAAA,EA9nDAA,UA8nDAA,CAAAA,sBAAAA,CAAAA;IAKAA,GAAAA,CAAAA,EAAAA,KAAAA;IAiBeD,IAAAA,CAAAA,EAAAA,KAAAA;IAKAA,MAAAA,CAAAA,EAAAA,KAAAA;IAWZC,OAAAA,CAAAA,EAAAA,KAAAA;IAeYD,IAAAA,CAAAA,EAAAA,KAAAA;IAKEA,KAAAA,CAAAA,EAAAA,KAAAA;IAKFA,KAAAA,CAAAA,EAAAA,KAAAA;;sDA0BAA,EAAAA;IAKAA,UAAAA,EAAAA;MAUdC,KAAAA,CAAAA,EAAAA,KAAAA;MAgBcD,MAAAA,CAAAA,EAAAA,KAAAA;MAUdC,IAAAA,EAAAA;QAgBcD;;;;QAoCAA,UAAAA,EAlyDAA,UAkyDAA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QAYfC;;;;QAyCAA,OAAAA,EAl1DYD,UAk1DZC,CAAAA,YAAAA,CAAAA,CAAAA,SAAAA,CAAAA;MAkBeD,CAAAA;MAqBfC,MAAAA,CAAAA,EAAAA,KAAAA;IAkBeD,CAAAA;IAKAA;;;;IAoDAA,GAAAA,EA57DfC,UA47DeD,CAAAA,uBAAAA,CAAAA;IAQfC,GAAAA,CAAAA,EAAAA,KAAAA;IAkBeD,IAAAA,CAAAA,EAAAA,KAAAA;IAKHA,MAAAA,CAAAA,EAAAA,KAAAA;IAQZC,OAAAA,CAAAA,EAAAA,KAAAA;IAkBeD,IAAAA,CAAAA,EAAAA,KAAAA;IAKHA,KAAAA,CAAAA,EAAAA,KAAAA;IAQZC,KAAAA,CAAAA,EAAAA,KAAAA;;+CA0BAA,EAAAA;IAkBiBD,UAAAA,EAAAA;MAKFA,KAAAA,CAAAA,EAAAA,KAAAA;MAUdC,MAAAA,CAAAA,EAAAA,KAAAA;MAgBcD,IAAAA,EAAAA;QAKHA;;;;QAoCGA,UAAAA,EApmEAA,UAomEAA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QAQfC;;;;QAiCeD,OAAAA,EAxoEHA,UAwoEGA,CAAAA,YAAAA,CAAAA,CAAAA,SAAAA,CAAAA;MAWfC,CAAAA;MAQGA,MAAAA,CAAAA,EAAAA,KAAAA;IAeYD,CAAAA;IAKHA;;;;;;IA8DAA,GAAAA,EAnuEZC,UAmuEYD,CAAAA,gBAAAA,CAAAA;IAKGA;;;;;;;;IAoFZC,GAAAA,EAnzEHA,UAmzEGA,CAAAA,cAAAA,CAAAA;IAeYD,IAAAA,CAAAA,EAAAA,KAAAA;IAQfC;;;;IAgDeD,MAAAA,EAp3EZC,UAo3EYD,CAAAA,cAAAA,CAAAA;IAKAA,OAAAA,CAAAA,EAAAA,KAAAA;IASfC,IAAAA,CAAAA,EAAAA,KAAAA;IAMAA,KAAAA,CAAAA,EAAAA,KAAAA;IAMGA,KAAAA,CAAAA,EAAAA,KAAAA;;qCAwBHA,EAAAA;IAiBeD,UAAAA,EAAAA;MAKKA,KAAAA,CAAAA,EAAAA,KAAAA;MAQpBC,MAAAA,CAAAA,EAAAA,KAAAA;MAKAA,IAAAA,EAAAA;QAYGA;;;;QAqDiBD,UAAAA,EA3/ELA,UA2/EKA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MAQpBC,CAAAA;MAMCA,MAAAA,CAAAA,EAAAA,KAAAA;IAgBcD,CAAAA;IAKJA;;;;;;;;IAwHIA,GAAAA,EA1oFfC,UA0oFeD,CAAAA,YAAAA,CAAAA;IAQfC,GAAAA,CAAAA,EAAAA,KAAAA;IAkBeD,IAAAA,CAAAA,EAAAA,KAAAA;IAQfC,MAAAA,CAAAA,EAAAA,KAAAA;IAkBeD,OAAAA,CAAAA,EAAAA,KAAAA;IAYfC,IAAAA,CAAAA,EAAAA,KAAAA;IAkBeD,KAAAA,CAAAA,EAAAA,KAAAA;IASfC,KAAAA,CAAAA,EAAAA,KAAAA;;mDAsBYD,EAAAA;IAQZC,UAAAA,EAAAA;MAKAA,KAAAA,CAAAA,EAAAA,KAAAA;MAiBeD,MAAAA,CAAAA,EAAAA,KAAAA;MAKHA,IAAAA,EAAAA;QAQZC;;;;QAoCAA,UAAAA,EAxzFeD,UAwzFfC,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QAiBeD;;;;QA8DHA,SAAAA,EAl4FEA,UAk4FFA,CAAAA,YAAAA,CAAAA,CAAAA,WAAAA,CAAAA;MAUZC,CAAAA;MAkBeD,MAAAA,CAAAA,EAAAA,KAAAA;IAKHA,CAAAA;IAQZC;;;;IAoCAA,GAAAA,EAv8FAA,UAu8FAA,CAAAA,kBAAAA,CAAAA;IAkBeD;;;;IAoCAA,GAAAA,EAx/FfC,UAw/FeD,CAAAA,gBAAAA,CAAAA;IAKHA,IAAAA,CAAAA,EAAAA,KAAAA;IAQZC;;;;IAiDeD,MAAAA,EAhjGZC,UAgjGYD,CAAAA,gBAAAA,CAAAA;IAKHA,OAAAA,CAAAA,EAAAA,KAAAA;IAUXC,IAAAA,CAAAA,EAAAA,KAAAA;IAsBDA,KAAAA,CAAAA,EAAAA,KAAAA;IAMGA,KAAAA,CAAAA,EAAAA,KAAAA;EAAU,CAAA;EAQTD,qCAAU,EAAA;IAAA,UAAA,EAAA;MAwYVA,KAAAA,CAAAA,EAAAA,KAAAA;MACKA,MAAAA,CAAAA,EAAAA,KAAAA;MACAA,IAAAA,EAAAA;QAGIA;;;;QAqCJA,UAAAA,EAtgHMA,UAsgHNA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MACAA,CAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;IACEA,CAAAA;IACCA;;;;;;;;;;;;;;;IAkHEA,GAAAA,EAzmHdC,UAymHcD,CAAAA,cAAAA,CAAAA;IACGA,GAAAA,CAAAA,EAAAA,KAAAA;IACTA;;;;;;;;IA2HAA,IAAAA,EA5tHPC,UA4tHOD,CAAAA,gBAAAA,CAAAA;IAGGA,MAAAA,CAAAA,EAAAA,KAAAA;IAyBPA,OAAAA,CAAAA,EAAAA,KAAAA;IACKA,IAAAA,CAAAA,EAAAA,KAAAA;IACAA,KAAAA,CAAAA,EAAAA,KAAAA;IA8BQA,KAAAA,CAAAA,EAAAA,KAAAA;;wDAEJA,EAAAA;IACHA,UAAAA,EAAAA;MACKA,KAAAA,CAAAA,EAAAA,KAAAA;MACJA,MAAAA,CAAAA,EAAAA,KAAAA;MACYA,IAAAA,EAAAA;QAMnBA;;;;QA6CEA,UAAAA,EAj0HSA,UAi0HTA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QAWFA;;;;QAsCKA,SAAAA,EA72HKA,UA62HLA,CAAAA,YAAAA,CAAAA,CAAAA,WAAAA,CAAAA;MACAA,CAAAA;MAgCLA,MAAAA,CAAAA,EAAAA,KAAAA;IACKA,CAAAA;IACAA;;;;IAqBAA,GAAAA,EA75HTC,UA65HSD,CAAAA,uBAAAA,CAAAA;IACAA;;;;IAgCLA,GAAAA,EAz7HJC,UAy7HID,CAAAA,qBAAAA,CAAAA;IACKA;;;;IAiCLA,IAAAA,EAt9HHC,UAs9HGD,CAAAA,qBAAAA,CAAAA;IACKA;;;;IA4BAA,MAAAA,EA9+HNC,UA8+HMD,CAAAA,qBAAAA,CAAAA;IAOEA,OAAAA,CAAAA,EAAAA,KAAAA;IACFA,IAAAA,CAAAA,EAAAA,KAAAA;IAsBGA,KAAAA,CAAAA,EAAAA,KAAAA;IAaKA,KAAAA,CAAAA,EAAAA,KAAAA;;+CAsCTA,EAAAA;IAqBJA,UAAAA,EAAAA;MACKA,KAAAA,CAAAA,EAAAA,KAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;MACGA,IAAAA,EAAAA;QAqCRA;;;;QAOAA,UAAAA,EApnIWA,UAonIXA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MACKA,CAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;IACEA,CAAAA;IACFA;;;;;;;;IAsHAA,GAAAA,EAluITC,UAkuISD,CAAAA,0BAAAA,CAAAA;IACEA,GAAAA,CAAAA,EAAAA,KAAAA;IAmDRA,IAAAA,CAAAA,EAAAA,KAAAA;IACQA,MAAAA,CAAAA,EAAAA,KAAAA;IASPA,OAAAA,CAAAA,EAAAA,KAAAA;IACKA,IAAAA,CAAAA,EAAAA,KAAAA;IACAA,KAAAA,CAAAA,EAAAA,KAAAA;IAkCAA,KAAAA,CAAAA,EAAAA,KAAAA;;wEAEAA,EAAAA;IACGA,UAAAA,EAAAA;MACAA,KAAAA,CAAAA,EAAAA,KAAAA;MACRA,MAAAA,CAAAA,EAAAA,KAAAA;MACUA,IAAAA,EAAAA;QACGA;;;;QAUNA,UAAAA,EAn0IIA,UAm0IJA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QAQEA;;;;QAIHA,SAAAA,EA10IIA,UA00IJA,CAAAA,YAAAA,CAAAA,CAAAA,WAAAA,CAAAA;QAGOA;;;;QA+BRA,UAAAA,EAv2IMA,UAu2INA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MACAA,CAAAA;MACEA,MAAAA,CAAAA,EAAAA,KAAAA;IAuFPA,CAAAA;IACKA,GAAAA,CAAAA,EAAAA,KAAAA;IACAA;;;;IAyFHA,GAAAA,EAlhJNC,UAkhJMD,CAAAA,wBAAAA,CAAAA;IASFA,IAAAA,CAAAA,EAAAA,KAAAA;IACKA;;;;IAsELA,MAAAA,EA5lJDC,UA4lJCD,CAAAA,wBAAAA,CAAAA;IACKA,OAAAA,CAAAA,EAAAA,KAAAA;IACAA,IAAAA,CAAAA,EAAAA,KAAAA;IACEA,KAAAA,CAAAA,EAAAA,KAAAA;IACNA,KAAAA,CAAAA,EAAAA,KAAAA;;gDAYYA,EAAAA;IAkCbA,UAAAA,EAAAA;MACKA,KAAAA,CAAAA,EAAAA,KAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;MACEA,IAAAA,EAAAA;QAGFA;;;;QAuDLA,UAAAA,EA5rJWA,UA4rJXA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MACKA,CAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;IACEA,CAAAA;IA2EPA;;;;IAwCAA,GAAAA,EA1yJJC,UA0yJID,CAAAA,+BAAAA,CAAAA;IACKA,GAAAA,CAAAA,EAAAA,KAAAA;IACAA,IAAAA,CAAAA,EAAAA,KAAAA;IAoBAA;;;;IAIGA,MAAAA,EA7zJTC,UA6zJSD,CAAAA,iCAAAA,CAAAA;IACRA,OAAAA,CAAAA,EAAAA,KAAAA;IACUA,IAAAA,CAAAA,EAAAA,KAAAA;IACGA,KAAAA,CAAAA,EAAAA,KAAAA;IACTA,KAAAA,CAAAA,EAAAA,KAAAA;;0EAQAA,EAAAA;IACGA,UAAAA,EAAAA;MAQEA,KAAAA,CAAAA,EAAAA,KAAAA;MACTA,MAAAA,CAAAA,EAAAA,KAAAA;MACKA,IAAAA,EAAAA;QACAA;;;;QAuELA,YAAAA,EA74JaA,UA64JbA,CAAAA,YAAAA,CAAAA,CAAAA,cAAAA,CAAAA;QACKA;;;;QAIGA,UAAAA,EA74JGA,UA64JHA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MACKA,CAAAA;MACLA,MAAAA,CAAAA,EAAAA,KAAAA;IAsBCA,CAAAA;IAITA,GAAAA,CAAAA,EAAAA,KAAAA;IACKA;;;;;;IAwFAA,GAAAA,EAv/JTC,UAu/JSD,CAAAA,kCAAAA,CAAAA;IACAA,IAAAA,CAAAA,EAAAA,KAAAA;IAYKA,MAAAA,CAAAA,EAAAA,KAAAA;IAECA,OAAAA,CAAAA,EAAAA,KAAAA;IACJA,IAAAA,CAAAA,EAAAA,KAAAA;IACFA,KAAAA,CAAAA,EAAAA,KAAAA;IAYLA,KAAAA,CAAAA,EAAAA,KAAAA;;2EAEKA,EAAAA;IACAA,UAAAA,EAAAA;MACLA,KAAAA,CAAAA,EAAAA,KAAAA;MAMOA,MAAAA,CAAAA,EAAAA,KAAAA;MA2HwBA,IAAAA,EAAAA;QACIA;;;;QA2ChBA,UAAAA,EAprKRA,UAorKQA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QAwJbA;;AASvB;;QAU8BA,YAAAA,EA11KAA,UA01KAA,CAAAA,YAAAA,CAAAA,CAAAA,cAAAA,CAAAA;QAKGA;QAYOA,QAAAA,EAAAA,MAAAA;MAGvBA,CAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;IACAA,CAAAA;IACAA;;;;;;;IAkEOA,GAAAA,EAt6KXC,UAs6KWD,CAAAA,kCAAAA,CAAAA;IAKCA;;;;;;;IAqCRA,GAAAA,EAx8KJC,UAw8KID,CAAAA,gCAAAA,CAAAA;IAUOA,IAAAA,CAAAA,EAAAA,KAAAA;IAKCA,MAAAA,CAAAA,EAAAA,KAAAA;IAKAA,OAAAA,CAAAA,EAAAA,KAAAA;IAQGA,IAAAA,CAAAA,EAAAA,KAAAA;IAKFA,KAAAA,CAAAA,EAAAA,KAAAA;IAKDA,KAAAA,CAAAA,EAAAA,KAAAA;;iDAiBRA,EAAAA;IACAA,UAAAA,EAAAA;MACAA,KAAAA,CAAAA,EAAAA,KAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;MAUOA,IAAAA,EAAAA;QAKCA;;;;QAmCOA,UAAAA,EAniLJA,UAmiLIA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QAIfA;;;;QAaOA,QAAAA,EA/iLEA,UA+iLFA,CAAAA,YAAAA,CAAAA,CAAAA,UAAAA,CAAAA;MAKCA,CAAAA;MAKAA,MAAAA,CAAAA,EAAAA,KAAAA;IACEA,CAAAA;IAQCA;;;;IA2BXA,GAAAA,EArlLJC,UAqlLID,CAAAA,iBAAAA,CAAAA;IACAA,GAAAA,CAAAA,EAAAA,KAAAA;IACAA,IAAAA,CAAAA,EAAAA,KAAAA;IACAA,MAAAA,CAAAA,EAAAA,KAAAA;IAUQA,OAAAA,CAAAA,EAAAA,KAAAA;IAKDA,IAAAA,CAAAA,EAAAA,KAAAA;IAQIA,KAAAA,CAAAA,EAAAA,KAAAA;IAKHA,KAAAA,CAAAA,EAAAA,KAAAA;;sCAiBRA,EAAAA;IACAA,UAAAA,EAAAA;MACAA,KAAAA,CAAAA,EAAAA,KAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;MAUQA,IAAAA,EAAAA;QAUGA;;;;QAsCXA,UAAAA,EAhrLWA,UAgrLXA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MACAA,CAAAA;MAUQA,MAAAA,CAAAA,EAAAA,KAAAA;IAQGA,CAAAA;IAKHA;;;;IAeOA,GAAAA,EA/sLnBC,UA+sLmBD,CAAAA,aAAAA,CAAAA;IACEA,GAAAA,CAAAA,EAAAA,KAAAA;IACCA,IAAAA,CAAAA,EAAAA,KAAAA;IACNA,MAAAA,CAAAA,EAAAA,KAAAA;IACDA,OAAAA,CAAAA,EAAAA,KAAAA;IACAA,IAAAA,CAAAA,EAAAA,KAAAA;IACDA,KAAAA,CAAAA,EAAAA,KAAAA;IACFA,KAAAA,CAAAA,EAAAA,KAAAA;;qDAcRA,EAAAA;IACAA,UAAAA,EAAAA;MACAA,KAAAA,CAAAA,EAAAA,KAAAA;MAYWA,MAAAA,CAAAA,EAAAA,KAAAA;MAKHA,IAAAA,EAAAA;QAMRA;;;;QAeQA,UAAAA,EA1vLGA,UA0vLHA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QAKAA;;;;QAiDRA,UAAAA,EA3yLWA,UA2yLXA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MACAA,CAAAA;MAYWA,MAAAA,CAAAA,EAAAA,KAAAA;IAKDA,CAAAA;IAYaA;;;;IAMvBA,GAAAA,EAv0LJC,UAu0LID,CAAAA,2BAAAA,CAAAA;IAYWA;;;;IAcSA,GAAAA,EA51LxBC,UA41LwBD,CAAAA,yBAAAA,CAAAA;IACLA,IAAAA,CAAAA,EAAAA,KAAAA;IACLA;;;;IAIIA,MAAAA,EA51LfC,UA41LeD,CAAAA,yBAAAA,CAAAA;IACSA,OAAAA,CAAAA,EAAAA,KAAAA;IACIA,IAAAA,CAAAA,EAAAA,KAAAA;IACFA,KAAAA,CAAAA,EAAAA,KAAAA;IACJA,KAAAA,CAAAA,EAAAA,KAAAA;;wCAYEA,EAAAA;IAGvBA,UAAAA,EAAAA;MACAA,KAAAA,CAAAA,EAAAA,KAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;MACAA,IAAAA,EAAAA;QAYWA;;;;QAaXA,UAAAA,EA53LWA,UA43LXA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MACAA,CAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;IAcOA,CAAAA;IAKCA;;;;IA+BRA,GAAAA,EAx6LJC,UAw6LID,CAAAA,wBAAAA,CAAAA;IACAA,GAAAA,CAAAA,EAAAA,KAAAA;IACAA,IAAAA,CAAAA,EAAAA,KAAAA;IAYWA,MAAAA,CAAAA,EAAAA,KAAAA;IAOAA,OAAAA,CAAAA,EAAAA,KAAAA;IACGA,IAAAA,CAAAA,EAAAA,KAAAA;IACMA,KAAAA,CAAAA,EAAAA,KAAAA;IACLA,KAAAA,CAAAA,EAAAA,KAAAA;;+BAEDA,EAAAA;IACKA,UAAAA,EAAAA;MACHA,KAAAA,CAAAA,EAAAA,KAAAA;MACFA,MAAAA,CAAAA,EAAAA,KAAAA;MACSA,IAAAA,EAAAA;QACIA;;;;QAcJA,UAAAA,EAn8LZA,UAm8LYA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MAGvBA,CAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;IACAA,CAAAA;IAYWA;;;;IAqBXA,GAAAA,EAj+LJC,UAi+LID,CAAAA,mBAAAA,CAAAA;IACAA;;;;IAqCuBA,GAAAA,EAlgM3BC,UAkgM2BD,CAAAA,iBAAAA,CAAAA;IAGvBA,IAAAA,CAAAA,EAAAA,KAAAA;IACAA,MAAAA,CAAAA,EAAAA,KAAAA;IACAA,OAAAA,CAAAA,EAAAA,KAAAA;IACAA,IAAAA,CAAAA,EAAAA,KAAAA;IAYWA,KAAAA,CAAAA,EAAAA,KAAAA;IAKDA,KAAAA,CAAAA,EAAAA,KAAAA;;oCAsBVA,EAAAA;IACAA,UAAAA,EAAAA;MACAA,KAAAA,CAAAA,EAAAA,KAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;MAYWA,IAAAA,EAAAA;QAKDA;;;;QASVA,UAAAA,EA3jMWA,UA2jMXA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MACAA,CAAAA;MAOMA,MAAAA,CAAAA,EAAAA,KAAAA;IAQKA,CAAAA;IAacA;;;;IAOzBA,GAAAA,EAvlMJC,UAulMID,CAAAA,mBAAAA,CAAAA;IAYWA,GAAAA,CAAAA,EAAAA,KAAAA;IAKDA,IAAAA,CAAAA,EAAAA,KAAAA;IAKCA,MAAAA,CAAAA,EAAAA,KAAAA;IAYYA,OAAAA,CAAAA,EAAAA,KAAAA;IAGvBA,IAAAA,CAAAA,EAAAA,KAAAA;IACAA,KAAAA,CAAAA,EAAAA,KAAAA;IACAA,KAAAA,CAAAA,EAAAA,KAAAA;;gGAaWA,EAAAA;IAKDA,UAAAA,EAAAA;MAKCA,KAAAA,CAAAA,EAAAA,KAAAA;MAMXA,MAAAA,CAAAA,EAAAA,KAAAA;MACAA,IAAAA,EAAAA;QACAA;;;;QAoBWA,UAAAA,EA/pMAA,UA+pMAA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QAYYA;;;;QAMvBA,UAAAA,EA5qMWA,UA4qMXA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QAYWA;;;;QAgBXA,QAAAA,EAnsMSA,UAmsMTA,CAAAA,YAAAA,CAAAA,CAAAA,UAAAA,CAAAA;QAYaA;;;;QAuBbA,OAAAA,EAjuMQA,UAiuMRA,CAAAA,YAAAA,CAAAA,CAAAA,SAAAA,CAAAA;MACAA,CAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;IAUQA,CAAAA;IAQGA;;;;IAuBXA,GAAAA,EApwMJC,UAowMID,CAAAA,6CAAAA,CAAAA;IACAA,GAAAA,CAAAA,EAAAA,KAAAA;IACAA,IAAAA,CAAAA,EAAAA,KAAAA;IAUQA,MAAAA,CAAAA,EAAAA,KAAAA;IAQGA,OAAAA,CAAAA,EAAAA,KAAAA;IAKEA,IAAAA,CAAAA,EAAAA,KAAAA;IASAA,KAAAA,CAAAA,EAAAA,KAAAA;IACHA,KAAAA,CAAAA,EAAAA,KAAAA;;uEAYaA,EAAAA;IAGvBA,UAAAA,EAAAA;MACAA,KAAAA,CAAAA,EAAAA,KAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;MACAA,IAAAA,EAAAA;QAUQA;;;;QA4BUA,UAAAA,EA70MPA,UA60MOA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QACGA;;;;QAUrBA,UAAAA,EAn1MWA,UAm1MXA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QACAA;;;;QAgBOA,QAAAA,EA/1MEA,UA+1MFA,CAAAA,YAAAA,CAAAA,CAAAA,UAAAA,CAAAA;MAKCA,CAAAA;MAKAA,MAAAA,CAAAA,EAAAA,KAAAA;IAQGA,CAAAA;IAaKA,GAAAA,CAAAA,EAAAA,KAAAA;IAIhBA;;;;IAaQA,GAAAA,EAt4MZC,UAs4MYD,CAAAA,6BAAAA,CAAAA;IAQGA,IAAAA,CAAAA,EAAAA,KAAAA;IAKAA,MAAAA,CAAAA,EAAAA,KAAAA;IAYYA,OAAAA,CAAAA,EAAAA,KAAAA;IAGvBA,IAAAA,CAAAA,EAAAA,KAAAA;IACAA,KAAAA,CAAAA,EAAAA,KAAAA;IACAA,KAAAA,CAAAA,EAAAA,KAAAA;;4DAaWA,EAAAA;IAKAA,UAAAA,EAAAA;MAOAA,KAAAA,CAAAA,EAAAA,KAAAA;MACMA,MAAAA,CAAAA,EAAAA,KAAAA;MACAA,IAAAA,EAAAA;QAWMA;;;;QAMvBA,UAAAA,EA/7MWA,UA+7MXA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QAYWA;;;;QAaXA,UAAAA,EAn9MWA,UAm9MXA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MACAA,CAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;IAUOA,CAAAA;IAKCA,GAAAA,CAAAA,EAAAA,KAAAA;IAKAA,GAAAA,CAAAA,EAAAA,KAAAA;IAQGA;;;;;;;;;;IAsDXA,IAAAA,EAvhNHC,UAuhNGD,CAAAA,4BAAAA,CAAAA;IACAA,MAAAA,CAAAA,EAAAA,KAAAA;IACAA,OAAAA,CAAAA,EAAAA,KAAAA;IAYWA,IAAAA,CAAAA,EAAAA,KAAAA;IAODA,KAAAA,CAAAA,EAAAA,KAAAA;IACAA,KAAAA,CAAAA,EAAAA,KAAAA;;8CAICA,EAAAA;IACDA,UAAAA,EAAAA;MACCA,KAAAA,CAAAA,EAAAA,KAAAA;MACGA,MAAAA,CAAAA,EAAAA,KAAAA;MACSA,IAAAA,EAAAA;QACJA;;;;QAIEA,UAAAA,EA1iNVA,UA0iNUA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MAoBEA,CAAAA;MAGvBA,MAAAA,CAAAA,EAAAA,KAAAA;IACAA,CAAAA;IACAA;;;;;;;;IAqCAA,GAAAA,EA5lNJC,UA4lNID,CAAAA,uCAAAA,CAAAA;IAUOA,GAAAA,CAAAA,EAAAA,KAAAA;IAKCA,IAAAA,CAAAA,EAAAA,KAAAA;IAKAA,MAAAA,CAAAA,EAAAA,KAAAA;IAQGA,OAAAA,CAAAA,EAAAA,KAAAA;IAKAA,IAAAA,CAAAA,EAAAA,KAAAA;IAKFA,KAAAA,CAAAA,EAAAA,KAAAA;IAKDA,KAAAA,CAAAA,EAAAA,KAAAA;;+DAiBRA,EAAAA;IACAA,UAAAA,EAAAA;MACAA,KAAAA,CAAAA,EAAAA,KAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;MAUQA,IAAAA,EAAAA;QAQGA;;;;QAkBSA,UAAAA,EA7qNTA,UA6qNSA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QAWGA;;;;QAefA,UAAAA,EAlsNGA,UAksNHA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MAQGA,CAAAA;MAKAA,MAAAA,CAAAA,EAAAA,KAAAA;IAsBYA,CAAAA;IAGvBA,GAAAA,CAAAA,EAAAA,KAAAA;IACAA;;;;IAqDWA,GAAAA,EArxNfC,UAqxNeD,CAAAA,sCAAAA,CAAAA;IAKAA,IAAAA,CAAAA,EAAAA,KAAAA;IASKA,MAAAA,CAAAA,EAAAA,KAAAA;IACJA,OAAAA,CAAAA,EAAAA,KAAAA;IAWWA,IAAAA,CAAAA,EAAAA,KAAAA;IAGvBA,KAAAA,CAAAA,EAAAA,KAAAA;IACAA,KAAAA,CAAAA,EAAAA,KAAAA;;4DAEAA,EAAAA;IAUOA,UAAAA,EAAAA;MAKCA,KAAAA,CAAAA,EAAAA,KAAAA;MAKAA,MAAAA,CAAAA,EAAAA,KAAAA;MAUGA,IAAAA,EAAAA;QAKAA;;;;QAmBXA,UAAAA,EA11NWA,UA01NXA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QACAA;;;;QAmCuBA,UAAAA,EAz3NZA,UAy3NYA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MAMvBA,CAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;IACAA,CAAAA;IAYWA;;;;IAcFA,GAAAA,EAn5NbC,UAm5NaD,CAAAA,2BAAAA,CAAAA;IACEA,GAAAA,CAAAA,EAAAA,KAAAA;IACEA,IAAAA,CAAAA,EAAAA,KAAAA;IACIA,MAAAA,CAAAA,EAAAA,KAAAA;IACKA,OAAAA,CAAAA,EAAAA,KAAAA;IACYA,IAAAA,CAAAA,EAAAA,KAAAA;IACrBA,KAAAA,CAAAA,EAAAA,KAAAA;IACMA,KAAAA,CAAAA,EAAAA,KAAAA;;qDAQJA,EAAAA;IACAA,UAAAA,EAAAA;MACMA,KAAAA,CAAAA,EAAAA,KAAAA;MACLA,MAAAA,CAAAA,EAAAA,KAAAA;MACKA,IAAAA,EAAAA;QACNA;;;;QAoCQA,UAAAA,EAz7NZA,UAy7NYA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QAGvBA;;;;QAeWA,UAAAA,EAt8NAA,UAs8NAA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MAKAA,CAAAA;MAMXA,MAAAA,CAAAA,EAAAA,KAAAA;IACAA,CAAAA;IACAA;;;;IA6CQA,GAAAA,EAx/NZC,UAw/NYD,CAAAA,gCAAAA,CAAAA;IAKAA;;;;IA0BRA,GAAAA,EAlhOJC,UAkhOID,CAAAA,8BAAAA,CAAAA;IACAA,IAAAA,CAAAA,EAAAA,KAAAA;IACAA;;;;IAsBWA,MAAAA,EApiOZC,UAoiOYD,CAAAA,8BAAAA,CAAAA;IAKAA,OAAAA,CAAAA,EAAAA,KAAAA;IAYYA,IAAAA,CAAAA,EAAAA,KAAAA;IAGvBA,KAAAA,CAAAA,EAAAA,KAAAA;IACAA,KAAAA,CAAAA,EAAAA,KAAAA;;wCAWQA,EAAAA;IAEIA,UAAAA,EAAAA;MAQDA,KAAAA,CAAAA,EAAAA,KAAAA;MAKAA,MAAAA,CAAAA,EAAAA,KAAAA;MAKAA,IAAAA,EAAAA;QAYYA;;;;QAMvBA,UAAAA,EA3lOWA,UA2lOXA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MAiBWA,CAAAA;MAKAA,MAAAA,CAAAA,EAAAA,KAAAA;IAKAA,CAAAA;IAYYA;;;;;;IA0BZA,GAAAA,EAlpOfC,UAkpOeD,CAAAA,6BAAAA,CAAAA;IAKAA,GAAAA,CAAAA,EAAAA,KAAAA;IAKAA,IAAAA,CAAAA,EAAAA,KAAAA;IAYYA,MAAAA,CAAAA,EAAAA,KAAAA;IAGvBA,OAAAA,CAAAA,EAAAA,KAAAA;IACAA,IAAAA,CAAAA,EAAAA,KAAAA;IACAA,KAAAA,CAAAA,EAAAA,KAAAA;IACAA,KAAAA,CAAAA,EAAAA,KAAAA;;6DAoBWA,EAAAA;IAaOA,UAAAA,EAAAA;MAIlBA,KAAAA,CAAAA,EAAAA,KAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;MACAA,IAAAA,EAAAA;QACAA;;;;QA4BWA,UAAAA,EAhuOAA,UAguOAA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QAKAA;;;;QAuBXA,UAAAA,EAvvOWA,UAuvOXA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MACAA,CAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;IAYWA,CAAAA;IAKAA;;;;;;IAoCAA,GAAAA,EApyOfC,UAoyOeD,CAAAA,8CAAAA,CAAAA;IAOFA,GAAAA,CAAAA,EAAAA,KAAAA;IA6CKA,IAAAA,CAAAA,EAAAA,KAAAA;IACKA,MAAAA,CAAAA,EAAAA,KAAAA;IAInBA,OAAAA,CAAAA,EAAAA,KAAAA;IACAA,IAAAA,CAAAA,EAAAA,KAAAA;IACAA,KAAAA,CAAAA,EAAAA,KAAAA;IACAA,KAAAA,CAAAA,EAAAA,KAAAA;;2EAiBQA,EAAAA;IAKAA,UAAAA,EAAAA;MAQGA,KAAAA,CAAAA,EAAAA,KAAAA;MAKAA,MAAAA,CAAAA,EAAAA,KAAAA;MAaQA,IAAAA,EAAAA;QACAA;;;;QAUnBA,UAAAA,EAz4OWA,UAy4OXA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QACAA;;;;QAmBWA,UAAAA,EAx5OAA,UAw5OAA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QAyBYA;;;;QAMvBA,UAAAA,EAl7OWA,UAk7OXA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MAUQA,CAAAA;MAQGA,MAAAA,CAAAA,EAAAA,KAAAA;IAKAA,CAAAA;IAKHA;;;;;;IA8BAA,GAAAA,EAl+OZC,UAk+OYD,CAAAA,6CAAAA,CAAAA;IAQGA;;;;IAuBXA,GAAAA,EA5/OJC,UA4/OID,CAAAA,gCAAAA,CAAAA;IACAA,IAAAA,CAAAA,EAAAA,KAAAA;IACAA;;;;IA4BQA,MAAAA,EAphPTC,UAohPSD,CAAAA,kCAAAA,CAAAA;IAKGA,OAAAA,CAAAA,EAAAA,KAAAA;IAOYA,IAAAA,CAAAA,EAAAA,KAAAA;IACXA,KAAAA,CAAAA,EAAAA,KAAAA;IACIA,KAAAA,CAAAA,EAAAA,KAAAA;;8DAgBhBA,EAAAA;IACAA,UAAAA,EAAAA;MACAA,KAAAA,CAAAA,EAAAA,KAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;MAUQA,IAAAA,EAAAA;QAQGA;;;;QA4CIA,UAAAA,EApmPJA,UAomPIA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QAIfA;;;;QAUYA,UAAAA,EA7mPDA,UA6mPCA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MACJA,CAAAA;MAKAA,MAAAA,CAAAA,EAAAA,KAAAA;IAQGA,CAAAA;IAKAA;;;;;;IA4BHA,GAAAA,EAlpPZC,UAkpPYD,CAAAA,oCAAAA,CAAAA;IAQGA,GAAAA,CAAAA,EAAAA,KAAAA;IAKAA,IAAAA,CAAAA,EAAAA,KAAAA;IAYYA,MAAAA,CAAAA,EAAAA,KAAAA;IAMvBA,OAAAA,CAAAA,EAAAA,KAAAA;IACAA,IAAAA,CAAAA,EAAAA,KAAAA;IACAA,KAAAA,CAAAA,EAAAA,KAAAA;IAgBOA,KAAAA,CAAAA,EAAAA,KAAAA;;yFAUCA,EAAAA;IAQGA,UAAAA,EAAAA;MAKAA,KAAAA,CAAAA,EAAAA,KAAAA;MAaIA,MAAAA,CAAAA,EAAAA,KAAAA;MACUA,IAAAA,EAAAA;QAUzBA;;;;QA4BWA,UAAAA,EA5vPAA,UA4vPAA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QAYYA;;;;QAYvBA,UAAAA,EA/wPWA,UA+wPXA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QACAA;;;;QAsDAA,UAAAA,EAj0PWA,UAi0PXA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MACAA,CAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;IACAA,CAAAA;IAYWA;;;;;;IAoCXA,GAAAA,EA12PJC,UA02PID,CAAAA,6BAAAA,CAAAA;IAsBWA,GAAAA,CAAAA,EAAAA,KAAAA;IAwBXA,IAAAA,CAAAA,EAAAA,KAAAA;IACAA,MAAAA,CAAAA,EAAAA,KAAAA;IACAA,OAAAA,CAAAA,EAAAA,KAAAA;IACAA,IAAAA,CAAAA,EAAAA,KAAAA;IAYWA,KAAAA,CAAAA,EAAAA,KAAAA;IAOHA,KAAAA,CAAAA,EAAAA,KAAAA;;kEAQkBA,EAAAA;IAoBTA,UAAAA,EAAAA;MACQA,KAAAA,CAAAA,EAAAA,KAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;MACNA,IAAAA,EAAAA;QACQA;;;;QAICA,UAAAA,EAh8PjBA,UAg8PiBA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QAS5BA;;;;QAmBWA,UAAAA,EAv9PAA,UAu9PAA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MAYQA,CAAAA;MAkBIA,MAAAA,CAAAA,EAAAA,KAAAA;IAGvBA,CAAAA;IACAA;;;;;;;;IA4CAA,GAAAA,EAzhQJC,UAyhQID,CAAAA,iCAAAA,CAAAA;IACAA,GAAAA,CAAAA,EAAAA,KAAAA;IACAA,IAAAA,CAAAA,EAAAA,KAAAA;IAUQA,MAAAA,CAAAA,EAAAA,KAAAA;IAQGA,OAAAA,CAAAA,EAAAA,KAAAA;IAKAA,IAAAA,CAAAA,EAAAA,KAAAA;IAYYA,KAAAA,CAAAA,EAAAA,KAAAA;IAGvBA,KAAAA,CAAAA,EAAAA,KAAAA;;sFAEAA,EAAAA;IACAA,UAAAA,EAAAA;MAUQA,KAAAA,CAAAA,EAAAA,KAAAA;MAQGA,MAAAA,CAAAA,EAAAA,KAAAA;MAKAA,IAAAA,EAAAA;QAOAA;;;;QAIYA,UAAAA,EAplQZA,UAolQYA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QACNA;;;;QA+BjBA,UAAAA,EA/mQWA,UA+mQXA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MACAA,CAAAA;MAcQA,MAAAA,CAAAA,EAAAA,KAAAA;IAQGA,CAAAA;IAKAA,GAAAA,CAAAA,EAAAA,KAAAA;IAMXA,GAAAA,CAAAA,EAAAA,KAAAA;IACAA;;;;;;IA2BQA,IAAAA,EAjqQXC,UAiqQWD,CAAAA,4BAAAA,CAAAA;IAKAA,MAAAA,CAAAA,EAAAA,KAAAA;IAUGA,OAAAA,CAAAA,EAAAA,KAAAA;IAaOA,IAAAA,CAAAA,EAAAA,KAAAA;IAIlBA,KAAAA,CAAAA,EAAAA,KAAAA;IACAA,KAAAA,CAAAA,EAAAA,KAAAA;;8DAEAA,EAAAA;IAUQA,UAAAA,EAAAA;MAQGA,KAAAA,CAAAA,EAAAA,KAAAA;MAiBKA,MAAAA,CAAAA,EAAAA,KAAAA;MACUA,IAAAA,EAAAA;QAWHA;;;;QAMvBA,UAAAA,EAzuQWA,UAyuQXA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QAUQA;;;;QA4BRA,UAAAA,EA1wQWA,UA0wQXA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MACAA,CAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;IACAA,CAAAA;IAUQA;;;;;;IAkCRA,GAAAA,EA/yQJC,UA+yQID,CAAAA,6BAAAA,CAAAA;IACAA,GAAAA,CAAAA,EAAAA,KAAAA;IACAA,IAAAA,CAAAA,EAAAA,KAAAA;IAYWA,MAAAA,CAAAA,EAAAA,KAAAA;IAKAA,OAAAA,CAAAA,EAAAA,KAAAA;IAkBXA,IAAAA,CAAAA,EAAAA,KAAAA;IACAA,KAAAA,CAAAA,EAAAA,KAAAA;IACAA,KAAAA,CAAAA,EAAAA,KAAAA;;iEAaWA,EAAAA;IAuBXA,UAAAA,EAAAA;MACAA,KAAAA,CAAAA,EAAAA,KAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;MACAA,IAAAA,EAAAA;QAYWA;;;;QAoBXA,UAAAA,EA34QWA,UA24QXA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QACAA;;;;QAmCuBA,UAAAA,EA16QZA,UA06QYA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MAGvBA,CAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;IACAA,CAAAA;IAOYA,GAAAA,CAAAA,EAAAA,KAAAA;IACJA;;;;IA4BRA,GAAAA,EA18QJC,UA08QID,CAAAA,kCAAAA,CAAAA;IACAA,IAAAA,CAAAA,EAAAA,KAAAA;IACAA,MAAAA,CAAAA,EAAAA,KAAAA;IAUQA,OAAAA,CAAAA,EAAAA,KAAAA;IAQGA,IAAAA,CAAAA,EAAAA,KAAAA;IAKAA,KAAAA,CAAAA,EAAAA,KAAAA;IAYYA,KAAAA,CAAAA,EAAAA,KAAAA;;qEAIvBA,EAAAA;IACAA,UAAAA,EAAAA;MACAA,KAAAA,CAAAA,EAAAA,KAAAA;MASgBA,MAAAA,CAAAA,EAAAA,KAAAA;MAEDA,IAAAA,EAAAA;QACLA;;;;QAqBHA,UAAAA,EArgRIA,UAqgRJA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QAKCA;;;;QA2BWA,UAAAA,EAhiRRA,UAgiRQA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QACFA;;;;QAYjBA,OAAAA,EAxiRQA,UAwiRRA,CAAAA,YAAAA,CAAAA,CAAAA,SAAAA,CAAAA;MACAA,CAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;IAUQA,CAAAA;IAQGA;;;;IAsBXA,GAAAA,EA1kRJC,UA0kRID,CAAAA,6BAAAA,CAAAA;IACAA,GAAAA,CAAAA,EAAAA,KAAAA;IAOIA,IAAAA,CAAAA,EAAAA,KAAAA;IAYOA,MAAAA,CAAAA,EAAAA,KAAAA;IAsCXA,OAAAA,CAAAA,EAAAA,KAAAA;IACAA,IAAAA,CAAAA,EAAAA,KAAAA;IACAA,KAAAA,CAAAA,EAAAA,KAAAA;IAYWA,KAAAA,CAAAA,EAAAA,KAAAA;;2DAiBXA,EAAAA;IACAA,UAAAA,EAAAA;MACAA,KAAAA,CAAAA,EAAAA,KAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;MAUOA,IAAAA,EAAAA;QAKCA;;;;QA+BWA,UAAAA,EAlsRRA,UAksRQA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QAAmCA;;;;QAOtDA,UAAAA,EApsRWA,UAosRXA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MAUQA,CAAAA;MAQGA,MAAAA,CAAAA,EAAAA,KAAAA;IAKHA,CAAAA;IAYeA;;;;IAMvBA,GAAAA,EAruRJC,UAquRID,CAAAA,0BAAAA,CAAAA;IAUQA,GAAAA,CAAAA,EAAAA,KAAAA;IAQGA,IAAAA,CAAAA,EAAAA,KAAAA;IAaIA,MAAAA,CAAAA,EAAAA,KAAAA;IAIfA,OAAAA,CAAAA,EAAAA,KAAAA;IACAA,IAAAA,CAAAA,EAAAA,KAAAA;IACAA,KAAAA,CAAAA,EAAAA,KAAAA;IACAA,KAAAA,CAAAA,EAAAA,KAAAA;;mGAkBaA,EAAAA;IAKFA,UAAAA,EAAAA;MAODA,KAAAA,CAAAA,EAAAA,KAAAA;MACCA,MAAAA,CAAAA,EAAAA,KAAAA;MACMA,IAAAA,EAAAA;QACMA;;;;QAILA,UAAAA,EA9xRPA,UA8xROA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QACWA;;;;QAIVA,UAAAA,EA9xRRA,UA8xRQA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QACKA;;;;QAgBxBA,OAAAA,EA1yRQA,UA0yRRA,CAAAA,YAAAA,CAAAA,CAAAA,SAAAA,CAAAA;QACAA;;;;QAgDiBA,UAAAA,EAt1RNA,UAs1RMA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MAIjBA,CAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;IACAA,CAAAA;IACAA,GAAAA,CAAAA,EAAAA,KAAAA;IAUQA,GAAAA,CAAAA,EAAAA,KAAAA;IAQGA;;;;;;IA6BXA,IAAAA,EAh4RHC,UAg4RGD,CAAAA,kCAAAA,CAAAA;IACAA,MAAAA,CAAAA,EAAAA,KAAAA;IAYaA,OAAAA,CAAAA,EAAAA,KAAAA;IAKFA,IAAAA,CAAAA,EAAAA,KAAAA;IAKHA,KAAAA,CAAAA,EAAAA,KAAAA;IAKGA,KAAAA,CAAAA,EAAAA,KAAAA;;4EAiBMA,EAAAA;IAIjBA,UAAAA,EAAAA;MACAA,KAAAA,CAAAA,EAAAA,KAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;MACAA,IAAAA,EAAAA;QAYaA;;;;QA4BbA,UAAAA,EA58RWA,UA48RXA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QACAA;;;;QAaUA,UAAAA,EAr9RCA,UAq9RDA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QAKHA;;;;QA+BUA,OAAAA,EAp/RTA,UAo/RSA,CAAAA,YAAAA,CAAAA,CAAAA,SAAAA,CAAAA;MAIjBA,CAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;IACAA,CAAAA;IACAA,GAAAA,CAAAA,EAAAA,KAAAA;IAUQA,GAAAA,CAAAA,EAAAA,KAAAA;IACEA;;;;IAqBQA,IAAAA,EAjhSrBC,UAihSqBD,CAAAA,2BAAAA,CAAAA;IACEA,MAAAA,CAAAA,EAAAA,KAAAA;IACNA,OAAAA,CAAAA,EAAAA,KAAAA;IAaGA,IAAAA,CAAAA,EAAAA,KAAAA;IAIjBA,KAAAA,CAAAA,EAAAA,KAAAA;IACAA,KAAAA,CAAAA,EAAAA,KAAAA;;4DAEAA,EAAAA;IAYWA,UAAAA,EAAAA;MAKHA,KAAAA,CAAAA,EAAAA,KAAAA;MAKGA,MAAAA,CAAAA,EAAAA,KAAAA;MAOUA,IAAAA,EAAAA;QACTA;;;;QAuBKA,UAAAA,EA5kSNA,UA4kSMA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QAUPA;;;;QAiCSA,UAAAA,EAlnSRA,UAknSQA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MACDA,CAAAA;MACaA,MAAAA,CAAAA,EAAAA,KAAAA;IACJA,CAAAA;IACHA,GAAAA,CAAAA,EAAAA,KAAAA;IACMA,GAAAA,CAAAA,EAAAA,KAAAA;IAedA,IAAAA,CAAAA,EAAAA,KAAAA;IACKA;;;;IAwHrBA,MAAAA,EApvSDC,UAovSCD,CAAAA,4BAAAA,CAAAA;IACAA,OAAAA,CAAAA,EAAAA,KAAAA;IACAA,IAAAA,CAAAA,EAAAA,KAAAA;IAYWA,KAAAA,CAAAA,EAAAA,KAAAA;IAKDA,KAAAA,CAAAA,EAAAA,KAAAA;;+DAeVA,EAAAA;IACAA,UAAAA,EAAAA;MACAA,KAAAA,CAAAA,EAAAA,KAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;MAUQA,IAAAA,EAAAA;QAQGA;;;;QAqBDA,UAAAA,EAjzSCA,UAizSDA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QACAA;;;;QAIOA,UAAAA,EAjzSNA,UAizSMA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MACAA,CAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;IAWMA,CAAAA;IAGvBA;;;;IAeWA,GAAAA,EAx0SfC,UAw0SeD,CAAAA,0CAAAA,CAAAA;IAKDA,GAAAA,CAAAA,EAAAA,KAAAA;IAMVA,IAAAA,CAAAA,EAAAA,KAAAA;IACAA,MAAAA,CAAAA,EAAAA,KAAAA;IACAA,OAAAA,CAAAA,EAAAA,KAAAA;IACAA,IAAAA,CAAAA,EAAAA,KAAAA;IACAA,KAAAA,CAAAA,EAAAA,KAAAA;IAYWA,KAAAA,CAAAA,EAAAA,KAAAA;;6DAiBXA,EAAAA;IACAA,UAAAA,EAAAA;MACAA,KAAAA,CAAAA,EAAAA,KAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;MAYWA,IAAAA,EAAAA;QAYDA;;;;QAMAA,UAAAA,EAn4SCA,UAm4SDA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QACKA;;;;QAIEA,UAAAA,EAn4SNA,UAm4SMA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MAgBMA,CAAAA;MAGvBA,MAAAA,CAAAA,EAAAA,KAAAA;IACAA,CAAAA;IACAA;;;;IAwCAA,GAAAA,EAx7SJC,UAw7SID,CAAAA,4BAAAA,CAAAA;IACAA,GAAAA,CAAAA,EAAAA,KAAAA;IACAA,IAAAA,CAAAA,EAAAA,KAAAA;IACAA,MAAAA,CAAAA,EAAAA,KAAAA;IAUQA,OAAAA,CAAAA,EAAAA,KAAAA;IAQGA,IAAAA,CAAAA,EAAAA,KAAAA;IAKAA,KAAAA,CAAAA,EAAAA,KAAAA;IAYYA,KAAAA,CAAAA,EAAAA,KAAAA;;oEAIvBA,EAAAA;IACAA,UAAAA,EAAAA;MACAA,KAAAA,CAAAA,EAAAA,KAAAA;MAUQA,MAAAA,CAAAA,EAAAA,KAAAA;MAQGA,IAAAA,EAAAA;QAKAA;;;;QAsBXA,UAAAA,EA//SWA,UA+/SXA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QACAA;;;;QAwBAA,UAAAA,EAnhTWA,UAmhTXA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MACAA,CAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;IACAA,CAAAA;IACAA;;;;IA0BAA,GAAAA,EAziTJC,UAyiTID,CAAAA,sCAAAA,CAAAA;IACAA,GAAAA,CAAAA,EAAAA,KAAAA;IACAA,IAAAA,CAAAA,EAAAA,KAAAA;IACAA,MAAAA,CAAAA,EAAAA,KAAAA;IACAA,OAAAA,CAAAA,EAAAA,KAAAA;IAUQA,IAAAA,CAAAA,EAAAA,KAAAA;IAQGA,KAAAA,CAAAA,EAAAA,KAAAA;IAKKA,KAAAA,CAAAA,EAAAA,KAAAA;;sFAehBA,EAAAA;IACAA,UAAAA,EAAAA;MACAA,KAAAA,CAAAA,EAAAA,KAAAA;MAYWA,MAAAA,CAAAA,EAAAA,KAAAA;MAKKA,IAAAA,EAAAA;QAqBOA;;;;QAkBXA,UAAAA,EA3nTDA,UA2nTCA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QACJA;;;;QA4BRA,UAAAA,EAnpTWA,UAmpTXA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QACAA;;;;QA0BOA,OAAAA,EAzqTCA,UAyqTDA,CAAAA,YAAAA,CAAAA,CAAAA,SAAAA,CAAAA;MAKCA,CAAAA;MAKAA,MAAAA,CAAAA,EAAAA,KAAAA;IAUGA,CAAAA;IAaaA,GAAAA,CAAAA,EAAAA,KAAAA;IA6BEA;;;;IAQ1BA,GAAAA,EAtuTJC,UAsuTID,CAAAA,gCAAAA,CAAAA;IAUOA,IAAAA,CAAAA,EAAAA,KAAAA;IAKCA,MAAAA,CAAAA,EAAAA,KAAAA;IAKAA,OAAAA,CAAAA,EAAAA,KAAAA;IAQGA,IAAAA,CAAAA,EAAAA,KAAAA;IAKKA,KAAAA,CAAAA,EAAAA,KAAAA;IAaEA,KAAAA,CAAAA,EAAAA,KAAAA;;4EAKlBA,EAAAA;IACAA,UAAAA,EAAAA;MACAA,KAAAA,CAAAA,EAAAA,KAAAA;MAYWA,MAAAA,CAAAA,EAAAA,KAAAA;MAKKA,IAAAA,EAAAA;QAOLA;;;;QAIMA,UAAAA,EAtyTNA,UAsyTMA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QACCA;;;;QAkBlBA,UAAAA,EApzTWA,UAozTXA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QACAA;;;;QAyBkBA,OAAAA,EAz0TVA,UAy0TUA,CAAAA,YAAAA,CAAAA,CAAAA,SAAAA,CAAAA;MACPA,CAAAA;MAGSA,MAAAA,CAAAA,EAAAA,KAAAA;IAWGA,CAAAA;IAGvBA,GAAAA,CAAAA,EAAAA,KAAAA;IACAA;;;;;;IAsCAA,GAAAA,EAv3TJC,UAu3TID,CAAAA,uCAAAA,CAAAA;IACAA,IAAAA,CAAAA,EAAAA,KAAAA;IACAA,MAAAA,CAAAA,EAAAA,KAAAA;IAUOA,OAAAA,CAAAA,EAAAA,KAAAA;IAKCA,IAAAA,CAAAA,EAAAA,KAAAA;IAKAA,KAAAA,CAAAA,EAAAA,KAAAA;IAQGA,KAAAA,CAAAA,EAAAA,KAAAA;;yCAiBXA,EAAAA;IACAA,UAAAA,EAAAA;MACAA,KAAAA,CAAAA,EAAAA,KAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;MAYWA,IAAAA,EAAAA;QA4BYA;;;;QAMvBA,UAAAA,EAt8TWA,UAs8TXA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MAiBWA,CAAAA;MAYYA,MAAAA,CAAAA,EAAAA,KAAAA;IAMvBA,CAAAA;IACAA;;;;IAkCAA,GAAAA,EApgUJC,UAogUID,CAAAA,uBAAAA,CAAAA;IACAA,GAAAA,CAAAA,EAAAA,KAAAA;IACAA,IAAAA,CAAAA,EAAAA,KAAAA;IACAA,MAAAA,CAAAA,EAAAA,KAAAA;IAUQA,OAAAA,CAAAA,EAAAA,KAAAA;IAKAA,IAAAA,CAAAA,EAAAA,KAAAA;IAKDA,KAAAA,CAAAA,EAAAA,KAAAA;IAKDA,KAAAA,CAAAA,EAAAA,KAAAA;;iDAaKA,EAAAA;IAaKA,UAAAA,EAAAA;MAIhBA,KAAAA,CAAAA,EAAAA,KAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;MACAA,IAAAA,EAAAA;QACAA;;;;QAqBYA,UAAAA,EApkUDA,UAokUCA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MAeZA,CAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;IACAA,CAAAA;IACAA,GAAAA,CAAAA,EAAAA,KAAAA;IAUQA,GAAAA,CAAAA,EAAAA,KAAAA;IAQGA;;;;;;IAkCAA,IAAAA,EA9nUdC,UA8nUcD,CAAAA,mBAAAA,CAAAA;IAKHA,MAAAA,CAAAA,EAAAA,KAAAA;IAOWA,OAAAA,CAAAA,EAAAA,KAAAA;IACRA,IAAAA,CAAAA,EAAAA,KAAAA;IACDA,KAAAA,CAAAA,EAAAA,KAAAA;IACCA,KAAAA,CAAAA,EAAAA,KAAAA;;mEAEEA,EAAAA;IACDA,UAAAA,EAAAA;MACQA,KAAAA,CAAAA,EAAAA,KAAAA;MACHA,MAAAA,CAAAA,EAAAA,KAAAA;MACCA,IAAAA,EAAAA;QACGA;;;;QAcEA,UAAAA,EAlpUZA,UAkpUYA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QAGvBA;;;;QAiBOA,UAAAA,EAjqUIA,UAiqUJA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MAKCA,CAAAA;MAQGA,MAAAA,CAAAA,EAAAA,KAAAA;IAKHA,CAAAA;IAaQA,GAAAA,CAAAA,EAAAA,KAAAA;IAaRA,GAAAA,CAAAA,EAAAA,KAAAA;IAQGA;;;;IAqBXA,IAAAA,EAhuUHC,UAguUGD,CAAAA,gCAAAA,CAAAA;IACAA,MAAAA,CAAAA,EAAAA,KAAAA;IAUQA,OAAAA,CAAAA,EAAAA,KAAAA;IAQGA,IAAAA,CAAAA,EAAAA,KAAAA;IAKHA,KAAAA,CAAAA,EAAAA,KAAAA;IASGA,KAAAA,CAAAA,EAAAA,KAAAA;;mDAEeA,EAAAA;IACbA,UAAAA,EAAAA;MAWUA,KAAAA,CAAAA,EAAAA,KAAAA;MAGvBA,MAAAA,CAAAA,EAAAA,KAAAA;MACAA,IAAAA,EAAAA;QACAA;;;;QAkCWA,UAAAA,EAtyUAA,UAsyUAA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MAaIA,CAAAA;MAIfA,MAAAA,CAAAA,EAAAA,KAAAA;IACAA,CAAAA;IACAA,GAAAA,CAAAA,EAAAA,KAAAA;IACAA,GAAAA,CAAAA,EAAAA,KAAAA;IAUQA;;;;IAiDeA,IAAAA,EA32U1BC,UA22U0BD,CAAAA,qBAAAA,CAAAA;IAGvBA,MAAAA,CAAAA,EAAAA,KAAAA;IACAA,OAAAA,CAAAA,EAAAA,KAAAA;IACAA,IAAAA,CAAAA,EAAAA,KAAAA;IAmBOA,KAAAA,CAAAA,EAAAA,KAAAA;IAKCA,KAAAA,CAAAA,EAAAA,KAAAA;;qDAaGA,EAAAA;IAKHA,UAAAA,EAAAA;MAaUA,KAAAA,CAAAA,EAAAA,KAAAA;MAIlBA,MAAAA,CAAAA,EAAAA,KAAAA;MACAA,IAAAA,EAAAA;QACAA;;;;QAqBOA,UAAAA,EAl7UIA,UAk7UJA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QAkBIA;;;;QA2BXA,UAAAA,EA19UWA,UA09UXA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MACAA,CAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;IAYWA,CAAAA;IAKHA;;;;IAsBRA,GAAAA,EA3/UJC,UA2/UID,CAAAA,mBAAAA,CAAAA;IACAA;;;;IA4BWA,GAAAA,EAnhVfC,UAmhVeD,CAAAA,iBAAAA,CAAAA;IAaDA,IAAAA,CAAAA,EAAAA,KAAAA;IAGAA;;;;IAIKA,MAAAA,EAjiVhBC,UAiiVgBD,CAAAA,iBAAAA,CAAAA;IACFA,OAAAA,CAAAA,EAAAA,KAAAA;IACIA,IAAAA,CAAAA,EAAAA,KAAAA;IACAA,KAAAA,CAAAA,EAAAA,KAAAA;IACFA,KAAAA,CAAAA,EAAAA,KAAAA;;wCAcfA,EAAAA;IACAA,UAAAA,EAAAA;MACAA,KAAAA,CAAAA,EAAAA,KAAAA;MACAA,MAAAA,CAAAA,EAAAA,KAAAA;MAUQA,IAAAA,EAAAA;QAKAA;;;;QA4BAA,UAAAA,EAllVGA,UAklVHA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MAaWA,CAAAA;MA2BAA,MAAAA,CAAAA,EAAAA,KAAAA;IAInBA,CAAAA;IACAA;;;;IA2BQA,GAAAA,EAlpVZC,UAkpVYD,CAAAA,eAAAA,CAAAA;IAKDA;;;;IA+DmBA,GAAAA,EAjtV9BC,UAitV8BD,CAAAA,iBAAAA,CAAAA;IAK1BA,IAAAA,CAAAA,EAAAA,KAAAA;IACAA,MAAAA,CAAAA,EAAAA,KAAAA;IACAA,OAAAA,CAAAA,EAAAA,KAAAA;IAYWA,IAAAA,CAAAA,EAAAA,KAAAA;IAKHA,KAAAA,CAAAA,EAAAA,KAAAA;IAkBRA,KAAAA,CAAAA,EAAAA,KAAAA;;8DAEAA,EAAAA;IAUQA,UAAAA,EAAAA;MAQKA,KAAAA,CAAAA,EAAAA,KAAAA;MAOHA,MAAAA,CAAAA,EAAAA,KAAAA;MACCA,IAAAA,EAAAA;QACMA;;;;QAICA,UAAAA,EA3wVPA,UA2wVOA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;QACAA;;;;QAICA,UAAAA,EA3wVRA,UA2wVQA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA;MACAA,CAAAA;MACKA,MAAAA,CAAAA,EAAAA,KAAAA;IACPA,CAAAA;IACFA,GAAAA,CAAAA,EAAAA,KAAAA;IAWQA,GAAAA,CAAAA,EAAAA,KAAAA;IAGvBA,IAAAA,CAAAA,EAAAA,KAAAA;IACAA;;;;IAoBAA,MAAAA,EAvyVDC,UAuyVCD,CAAAA,8BAAAA,CAAAA;IACAA,OAAAA,CAAAA,EAAAA,KAAAA;IACAA,IAAAA,CAAAA,EAAAA,KAAAA;IACAA,KAAAA,CAAAA,EAAAA,KAAAA;IACAA,KAAAA,CAAAA,EAAAA,KAAAA;EAAU,CAAA;;;;MC1oZf,MAAA,CAAA,EAAa,KAAA;MAKT,IAAA,EAAA;QAEJ;AACZ;;;QAAwC,UAAA,EDs2DZA,UCt2DY,CAAA,YAAA,CAAA,CAAA,YAAA,CAAA;QAAiB;AACzD;;;QAAqC,YAAA,ED02DPA,UC12DO,CAAA,YAAA,CAAA,CAAA,cAAA,CAAA;QAAW;AAGhD;;;QAAyC,UAAA,ED42DbA,UC52Da,CAAA,YAAA,CAAA,CAAA,YAAA,CAAA;MAAW,CAAA;MAGxC,MAAA,CAAA,EAAA,KAAA;IAA6B,CAAA;IAAG,GAAA,CAAA,EAAA,KAAA;IAC7B,GAAA,CAAA,EAAA,KAAA;IAA0B;AAEzC;AAEA;AAGA;IACY,IAAA,ED02DEC,UC12De,CAAA,2BAAA,CAAA;IAAA,MAAA,CAAA,EAAA,KAAA;IAAqB,OAAA,CAAA,EAAA,KAAA;IAAlB,IAAA,CAAA,EAAA,KAAA;IAAiB,KAAA,CAAA,EAAA,KAAA;IACrC,KAAA,CAAA,EAAA,KAAA;EACA,CAAA;EAA6B,4DAAA,EAAA;IACrC,UAAA,EAAA;MADwC,KAAA,CAAA,EAAA,KAAA;MAAiB,MAAA,CAAA,EAAA,KAAA;MAGjD,IAAA,EAAA;QAAwB;;;;QACxB,UAAA,EDo3DgBD,UCp3DQ,CAAA,YAAA,CAAA,CAAA,YAAA,CAAA;QAAA;;;;QACxB,UAAgB,EDw3DAA,UCx3DG,CAAA,YAAU,CAAA,CAAA,YAAA,CAAA;MAE7B,CAAA;MACA,MAAA,CAAA,EAAA,KAAA;IAAoB,CAAA;IAAqB,GAAA,CAAA,EAAA,KAAA;IAAlB,GAAA,CAAA,EAAA,KAAA;IAAiB;AAEpD;AACA;;IAAqD,IAAA,ED43DvCC,UC53DuC,CAAA,6BAAA,CAAA;IAAlB,MAAA,CAAA,EAAA,KAAA;IAAiB,OAAA,CAAA,EAAA,KAAA;IAExC,IAAA,CAAA,EAAA,KAAa;IAEb,KAAA,CAAA,EAAA,KAAA;IAEA,KAAA,CAAA,EAAA,KAAa;EACb,CAAA;EAEA,6CAA0B,EAAA;IAC1B,UAAA,EAAA;MAGA,KAAA,CAAW,EAAA,KAAA;MACX,MAAA,CAAA,EAAA,KAAkB;MAAA,IAAA,EAAA;QAAqB;;;AAEnD;QAEY,UAAmB,ED03DHD,UC13DM,CAAA,YAAU,CAAA,CAAA,YAAA,CAAA;MAChC,CAAA;MAEA,MAAW,CAAA,EAAA,KAAA;IAAA,CAAA;IAGX,GAAA,CAAA,EAAA,KAAA;IADJ,GAAA,CAAA,EAAA,KAAA;IADJ;;;AAOJ;IAEY,IAAA,EDu3DEC,UCv3DF,CAAA,sBAAkC,CAAA;;;;IClElC,KAAA,CAAA,EAAA,KAAa;IAMR,KAAA,CAAA,EAAA,KAAa;EAKlB,CAAA;EAAiB,0DAAA,EAAA;IAAuB,UAAA,EAAA;MAAZ,KAAA,CAAA,EAAA,KAAA;MAAL,MAAA,CAAA,EAAA,KAAA;MAAI,IAAA,EAAA;QAEnB;AAMpB;AAEA;;QACU,UAAA,EFm7DkBD,UEn7DlB,CAAA,YAAA,CAAA,CAAA,YAAA,CAAA;QAAyB;;;AAMnC;QAAiC,UAAA,EFk7DLA,UEl7DK,CAAA,YAAA,CAAA,CAAA,YAAA,CAAA;MACL,CAAA;MAAmB,MAAA,CAAA,EAAA,KAAA;IAAoB,CAAA;IAAR,GAAA,CAAA,EAAA,KAAA;IAEvC,GAAA,CAAA,EAAA,KAAA;IAAiB;;;;UFy7DvBC;;;IG39DG,IAAA,CAAA,EAAA,KAAY;IAAA,KAAA,CAAA,EAAA,KAAA;IAoCb,KAAA,CAAA,EAAA,KAAA;;kEAqCC,EAAA;IAIH,UAAA,EAAA;MAIK,KAAA,CAAA,EAAA,KAAA;MAIN,MAAA,CAAA,EAAA,KAAA;MAAI,IAAA,EAAA;QAGL;AAMZ;;;QAyBgB,UAAA,EHo3DYD,UGp3DZ,CAAA,YAAA,CAAA,CAAA,YAAA,CAAA;QAID;;;;oBHq3DaA;MI7+DX,CAAA;MAAkB,MAAA,CAAA,EAAA,KAAA;IAQjB,CAAA;IAED;;;;;;;AAejB;IAAuB,GAAA,EJg+DVC,UIh+DU,CAAA,uCAAA,CAAA;IACnB,GAAA,CAAA,EAAA,KAAA;IADsB,IAAA,CAAA,EAAA,KAAA;IAAW;AAIrC;;;;;;AAQA;AAIA;;IACa,MAAA,EJ49DGA,UI59DH,CAAA,sCAAA,CAAA;IACD,OAAA,CAAA,EAAA,KAAA;IACF,IAAA,CAAA,EAAA,KAAA;IAAkB,KAAA,CAAA,EAAA,KAAA;IAGX,KAAA,CAAA,EAAA,KAAU;EAAA,CAAA;qDACjB,EAAA;IAES,UAAA,EAAA;MACN,KAAA,CAAA,EAAA,KAAA;MACC,MAAA,CAAA,EAAA,KAAA;MACH,IAAA,EAAA;QACM;;;;QAIH,UAAA,EJ29DcD,UI39Dd,CAAA,YAAA,CAAA,CAAA,YAAA,CAAA;QAUG;;;;QAKM,UAAA,EJi9DKA,UIj9DL,CAAA,YAAA,CAAA,CAAA,YAAA,CAAA;MAKI,CAAA;MAAkB,MAAA,CAAA,EAAA,KAAA;IAAR,CAAA;IAAO;;;;IC5E3B,GAAA,ELgiEJC,UKhiEI,CAAA,mBAAoB,CAAA;IAAA,GAAA,CAAA,EAAA,KAAA;IA6BrB,IAAA,CAAA,EAAA,KAAA;IAeG,MAAA,CAAA,EAAA,KAAA;IAOL,OAAA,CAAA,EAAA,KAAA;IAgBK,IAAA,CAAA,EAAA,KAAA;IAAa,KAAA,CAAA,EAAA,KAAA;IAuBpB,KAAA,CAAA,EAAA,KAAA;EAKA,CAAA;EAAsB,sCAAA,EAAA;IAMvB,UAAA,EAAA;MAsCC,KAAA,CAAA,EAAA,KAAA;MAAe,MAAA,CAAA,EAAA,KAAA;MAYV,IAAA,EAAA;QAAc;;;;QASM,UAAA,ELk5DTD,UKl5DS,CAAA,YAAA,CAAA,CAAA,YAAA,CAAA;MAAO,CAAA;;;;ACpK5C;;;;;;;;;ACHA;AAIA;;;;ACDA;AAkBA;IAUgB,GAAA,ER+iEHC,UQ/iEa,CAAA,eAAA,CAAA;IAAA,GAAA,CAAA,EAAA,KAAA;IAAM,IAAA,CAAA,EAAA,KAAA;IAAW,MAAA,CAAA,EAAA,KAAA;IAAI,OAAA,CAAA,EAAA,KAAA;IAI/B,IAAA,CAAA,EAAA,KAAA;IAAiB,KAAA,CAAA,EAAA,KAAA;IAAS,KAAA,CAAA,EAAA,KAAA;;EAAmC,0DAAA,EAAA;IAc7D,UAAW,EAAA;MAWX,KAAA,CAAA,EAAa,KAAA;MAwCb,MAAS,CAAA,EAAA,KAAA;MAST,IAAA,EAAA;QAAa;;;;QAab,UAAkB,ERs+DND,UQt+DiC,CAAA,YAAa,CAAA,CAAA,YAAA,CAAA;;;;AC1H1E;QAAyB,UAAA,ETqmEGA,USrmEH,CAAA,YAAA,CAAA,CAAA,YAAA,CAAA;MAWP,CAAA;MAasB,MAAA,CAAA,EAAA,KAAA;IAImB,CAAA;IAIP;;;;IAhCd,GAAA,ET6mEzBC,US7mEyB,CAAA,2BAAA,CAAA;;;;ICEzB,OAAA,CAAA,EAAA,KAAa;IAAA,IAAA,CAAA,EAAA,KAAA;IASR,KAAA,CAAA,EAAA,KAAA;IATgB,KAAA,CAAA,EAAA,KAAA;EAAK,CAAA;;;;MC4BvB,MAAA,CAAA,EAAA,KAAe;MAAA,IAAA,EAAA;QAAsC;;;AAcrE;QAAuB,UAAA,EXmlEKD,UWnlEL,CAAA,YAAA,CAAA,CAAA,YAAA,CAAA;MAAqB,CAAA;MAAlB,MAAA,CAAA,EAAA,KAAA;IAAU,CAAA;;;;AC9BpC;IAA6B,GAAA,EZynEhBC,UYznEgB,CAAA,gCAAA,CAAA;IAAgC,GAAA,CAAA,EAAA,KAAA;IAA0B,IAAA,CAAA,EAAA,KAAA;IAKpD,MAAA,CAAA,EAAA,KAAA;IADhB,OAAA,CAAA,EAAA,KAAA;IACgB,IAAA,CAAA,EAAA,KAAA;IAKT,KAAA,CAAA,EAAA,KAAA;IAAe,KAAA,CAAA,EAAA,KAAA;;gDAEN,EAAA;IAAyB,UAAA,EAAA;MAAwB,KAAA,CAAA,EAAA,KAAA;MAAR,MAAA,CAAA,EAAA,KAAA;MAc3D,IAAA,EAAA;QAEK;;;;QAmCO,UAAA,EZ4kEDD,UY5kEC,CAAA,YAAA,CAAA,CAAA,YAAA,CAAA;MAOK,CAAA;MAAsB,MAAA,CAAA,EAAA,KAAA;;;;AChFxD;;IAAqC,GAAA,Eb6pExBC,Ua7pEwB,CAAA,uBAAA,CAAA;IAAe,GAAA,CAAA,EAAA,KAAA;IACtB,IAAA,CAAA,EAAA,KAAA;;;;;;;;;;MAAI,MAAA,CAAA,EAAA,KAAA;MAiBF,IAAA,EAAA;QAAmC;;;;oBb6pEvCD;;;;;iBAKHA;MalqEuD,CAAA;MAoBtC,MAAA,CAAA,EAAA,KAAA;IAAe,CAAA;IAAR;;;;IAtCb,GAAA,Eb4rEvBC,Ua5rEuB,CAAA,qBAAA,CAAA;;;;ICDvB,OAAQ,CAAA,EAAA,KAAA;IAAA,IAAA,CAAA,EAAA,KAAA;IAAgB,KAAA,CAAA,EAAA,KAAA;IACP,KAAA,CAAA,EAAA,KAAA;;+CAgBI,EAAA;IAAR,UAAA,EAAA;MAIe,KAAA,CAAA,EAAA,KAAA;MAAR,MAAA,CAAA,EAAA,KAAA;MAgB2B,IAAA,EAAA;QAAR;;;;oBd0qExBD;;AevsE5B;;;QAA8D,OAAA,Ef4sErCA,Ue5sEqC,CAAA,YAAA,CAAA,CAAA,SAAA,CAAA;MAC3B,CAAA;;;;;;;SfmtEtBC;;;;;;;;;;;;;MentE0B,IAAA,EAAA;QAiBP;;;;oBfotEJD;;;;;;;;SAQfC;;;;;;;;;+De5tEwE,EAAA;IAqB7D,UAAA,EAAA;MAGT,KAAA,CAAA,EAAA,KAAA;MAAR,MAAA,CAAA,EAAA,KAAA;MAsBiB,IAAA,EAAA;QAEJ;;;;QAlEqB,YAAA,EfgwEXD,UehwEW,CAAA,YAAA,CAAA,CAAA,cAAA,CAAA;;;;ACSzC;QAAkB,UAAA,EhB4vEUA,UgB5vEV,CAAA,YAAA,CAAA,CAAA,YAAA,CAAA;MAAgB,CAAA;MAAY,MAAA,CAAA,EAAA,KAAA;IACnB,CAAA;;;;;;;IAoBK,IAAA,EhBivElBC,UgBjvEkB,CAAA,cAAA,CAAA;IAAgC,MAAA,CAAA,EAAA,KAAA;;;;;;6DAAa,EAAA;IAqB3B,UAAA,EAAA;MAAR,KAAA,CAAA,EAAA,KAAA;MAmBR,MAAA,CAAA,EAAA,KAAA;MAAe,IAAA,EAAA;QAAR;;;;QAqB1B,UAAA,EhBosEaD,UgBpsEb,CAAA,YAAA,CAAA,CAAA,YAAA,CAAA;QAAR;;;;QAoCQ,OAAA,EhBqqEUA,UgBrqEV,CAAA,YAAA,CAAA,CAAA,SAAA,CAAA;MAAR,CAAA;MAsBS,MAAA,CAAA,EAAA,KAAA;IACE,CAAA;IACG,GAAA,CAAA,EAAA,KAAA;IACN,GAAA,CAAA,EAAA,KAAA;IAAR;;;;IAqB+D,IAAA,EhBioExDC,UgBjoEwD,CAAA,oCAAA,CAAA;IApK5C,MAAA,CAAA,EAAA,KAAA;IAAO,OAAA,CAAA,EAAA,KAAA;;;;EChBpB,CAAA;EAAQ,kEAAA,EAAA;IAAgB,UAAA,EAAA;MAAe,KAAA,CAAA,EAAA,KAAA;MACtB,MAAA,CAAA,EAAA,KAAA;MAAe,IAAA,EAAA;QAAR;;;;oBjBo0ETD;;;;;iBAKHA;;;;;oBAKGA;;;;;;;;SAQfC;;;;IiBr0EmE,OAAA,CAAA,EAAA,KAAA;IAoB3C,IAAA,CAAA,EAAA,KAAA;IAAI,KAAA,CAAA,EAAA,KAAA;IAAA,KAAA,CAAA,EAAA,KAAA;;EAtCL,4FAAA,EAAA;;;;MCAvB,IAAA,EAAA;QAAa;;;;sBlBy2EID;;;;;oBAKFA;;;;;iBAKHA;;;;;oBAKGA;;;;;;;;;;;SAWfC;;ImBr3EA;;;;;;IAagB,MAAA,EnBg3EbA,UmBh3Ea,CAAA,wBAAA,CAAA;IAEF,OAAA,CAAA,EAAA,KAAA;IAKR,IAAA,CAAA,EAAA,KAAA;IAwBa,KAAA,CAAA,EAAA,KAAA;IAuCzB,KAAA,CAAA,EAAA,KAAA;EAAa,CAAA;;;;MC3FR,MAAA,CAAA,EAAA,KAAkB;MAMlB,IAAA,EAAA;QASS;;;;QAeiD,UAAA,EpBs3E1CD,UoBt3E0C,CAAA,YAAA,CAAA,CAAA,YAAA,CAAA;QAgBpD;;;;QA8DW,OAAA,EpB6yEJA,UoB7yEI,CAAA,YAAA,CAAA,CAAA,SAAA,CAAA;MASe,CAAA;MASf,MAAA,CAAA,EAAA,KAAA;IAe+B,CAAA;IAiBN;;;;IAmGW,GAAA,EpBgqEpDC,UoBhqEoD,CAAA,sBAAA,CAAA;IAmBzD,GAAA,CAAA,EAAA,KAAA;IA8BD,IAAA,CAAA,EAAA,KAAA;IAiBuD,MAAA,CAAA,EAAA,KAAA;IAkB5B,OAAA,CAAA,EAAA,KAAA;IAcF,IAAA,CAAA,EAAA,KAAA;IAgBgB,KAAA,CAAA,EAAA,KAAA;IAcZ,KAAA,CAAA,EAAA,KAAA;;iFAelB,EAAA;IAkBD,UAAA,EAAA;MAAkB,KAAA,CAAA,EAAA,KAAA;;;;AC/ZnC;;;QAW2B,UAAA,ErBq6ECD,UqBr6ED,CAAA,YAAA,CAAA,CAAA,YAAA,CAAA;QAIJ;;;;QAKoB,OAAA,ErBi6ElBA,UqBj6EkB,CAAA,YAAA,CAAA,CAAA,SAAA,CAAA;MAA6B,CAAA;MA+BrD,MAAA,CAAA,EAAA,KAAA;IAIM,CAAA;IAIX,GAAA,CAAA,EAAA,KAAA;IA2BoB,GAAA,CAAA,EAAA,KAAA;IAAyC;;;;IAtFtC,IAAA,ErB+7EvBC,UqB/7EuB,CAAA,sBAAA,CAAA;IAAY,MAAA,CAAA,EAAA,KAAA;;;;ICNpC,KAAA,CAAA,EAAA,KAAA;EAAe,CAAA;6EACU,EAAA;IAQA,UAAA,EAAA;MAAe,KAAA,CAAA,EAAA,KAAA;MAAR,MAAA,CAAA,EAAA,KAAA;MAwBH,IAAA,EAAA;QAAe;;;;QAUiB,UAAA,EtB06E9CD,UsB16E8C,CAAA,YAAA,CAAA,CAAA,YAAA,CAAA;QAAwB;;;;QA6BpB,OAAA,EtBk5ErDA,UsBl5EqD,CAAA,YAAA,CAAA,CAAA,SAAA,CAAA;QAAwB;;;;QASxB,UAAA,EtB84ElDA,UsB94EkD,CAAA,YAAA,CAAA,CAAA,YAAA,CAAA;MAAwB,CAAA;MAAR,MAAA,CAAA,EAAA,KAAA;IA2ClD,CAAA;IAAmB,GAAA,CAAA,EAAA,KAAA;IAAwB,GAAA,CAAA,EAAA,KAAA;IAAR;;;;;;;;;;;IA0CO,IAAA,EtB00ExEC,UsB10EwE,CAAA,sBAAA,CAAA;;;;ICvKzE,KAAA,CAAA,EAAA,KAAc;IAAA,KAAA,CAAA,EAAA,KAAA;;uCAGM,EAAA;IAAe,UAAA,EAAA;MAAR,KAAA,CAAA,EAAA,KAAA;MAyBd,MAAA,CAAA,EAAA,KAAA;MAAsB,IAAA,EAAA;QAAO;;;;oBvBq+E3BD;MwBpgFf,CAAA;MAAiB,MAAA,CAAA,EAAA,KAAA;IACY,CAAA;IAEnB;;;;IAHkB,GAAA,ExB4gF5BC,UwB5gF4B,CAAA,sCAAA,CAAA;IAAc,GAAA,CAAA,EAAA,KAAA;;;;ICG3C,IAAA,CAAA,EAAA,KAAA;IAAgB,KAAA,CAAA,EAAA,KAAA;IAAc,KAAA,CAAA,EAAA,KAAA;;mDAAiB,EAAA;IAAO,UAAA,EAAA;MAErD,KAAA,CAAA,EAAA,KAAkB;MAAA,MAAA,CAAA,EAAA,KAAA;MAEI,IAAA,EAAA;QACC;;;;QAUO,UAAA,EzB4gFfD,UyB5gFe,CAAA,YAAA,CAAA,CAAA,YAAA,CAAA;QAbD;;;;mBzB8hFfA;M0BjiFd,CAAA;MAAqB,MAAA,CAAA,EAAA,KAAA;IAOlB,CAAA;IAIG;;;;IAwCL,GAAA,E1Bs/EDC,U0Bt/EC,CAAA,kBAAA,CAAA;IAnD+B;;;;;ICAjC,GAAA,E3B+iFCA,U2B/iFe,CAAA,gBAAA,CAAA;IAAA,IAAA,CAAA,EAAA,KAAA;IAAU;;;;IAEzB,MAAA,E3BmjFGA,U2BnjFe,CAAA,gBAAA,CAAA;IAAA,OAAA,CAAA,EAAA,KAAA;IAIK,IAAA,CAAA,EAAA,KAAA;IAIb,KAAA,CAAA,EAAA,KAAA;IAMU,KAAA,CAAA,EAAA,KAAA;;uCAAU,EAAA;IA6BY,UAAA,EAAA;MAAR,KAAA,CAAA,EAAA,KAAA;MA3CL,MAAA,CAAA,EAAA,KAAA;MAAc,IAAA,EAAA;;;;ACExD;QAAiC,UAAA,E5BgkFLD,U4BhkFK,CAAA,YAAA,CAAA,CAAA,YAAA,CAAA;MAShB,CAAA;MAIA,MAAA,CAAA,EAAA,KAAA;IAAgB,CAAA;IAOpB;;;;IAGqB,GAAA,E5BijFrBC,U4BjjFqB,CAAA,cAAA,CAAA;IAIN,GAAA,CAAA,EAAA,KAAA;IAAkC;;;;IAIJ,IAAA,E5B+iF5CA,U4B/iF4C,CAAA,gBAAA,CAAA;IAAkB,MAAA,CAAA,EAAA,KAAA;IAAR,OAAA,CAAA,EAAA,KAAA;IA2DjD,IAAA,CAAA,EAAA,KAAA;IAEX,KAAA,CAAA,EAAA,KAAA;IAIsC,KAAA,CAAA,EAAA,KAAA;;+CAIvB,EAAA;IAhF0B,UAAA,EAAA;MAAgB,KAAA,CAAA,EAAA,KAAA;;;;ACjBjE;;;QAI8B,UAAA,E7BulFFD,U6BvlFE,CAAA,YAAA,CAAA,CAAA,YAAA,CAAA;MACM,CAAA;MAGD,MAAA,CAAA,EAAA,KAAA;IACD,CAAA;IAqCR;;;;IA8DY,GAAA,E7Bu/EzBC,U6Bv/EyB,CAAA,0BAAA,CAAA;IAAR,GAAA,CAAA,EAAA,KAAA;IAgBa,IAAA,CAAA,EAAA,KAAA;IAAe,MAAA,CAAA,EAAA,KAAA;IAAR,OAAA,CAAA,EAAA,KAAA;;IAkCA,KAAA,CAAA,EAAA,KAAA;IAAA,KAAA,CAAA,EAAA,KAAA;;;;MCjKrC,KAAA,CAAW,EAAA,KAAA;MAAA,MAAA,CAAA,EAAA,KAAA;MAKY,IAAA,EAAA;QAkBpB;;;;oB9BimFYD;;A+B5nFD;;;oB/BioFCA;;;;;;;;;SASfC;;;;;;SAMAA;;;;;A+BjoFb;IAA0B,MAAA,E/BuoFVA,U+BvoFU,CAAA,yBAAA,CAAA;IAAoB,OAAA,CAAA,EAAA,KAAA;IAAjB,IAAI,CAAA,EAAA,KAAA;IAAK,KAAA,CAAA,EAAA,KAAA;IAEzB,KAAA,CAAA,EAAA,KAAc;EAAA,CAAA;oCAIG,EAAA;IACC,UAAA,EAAA;MAmBG,KAAA,CAAA,EAAA,KAAA;MAcX,MAAA,CAAA,EAAA,KAAA;MAOU,IAAA,EAAA;QAAkB;;;;oB/BumFvBD;;;IgCpqFf,CAAA;IAAc,GAAA,CAAA,EAAA,KAAA;IAIG;;;;IAyCG,GAAA,EhCgoFpBC,UgChoFoB,CAAA,kCAAA,CAAA;IAAkB,IAAA,CAAA,EAAA,KAAA;IAAR,MAAA,CAAA,EAAA,KAAA;IA7CL,OAAA,CAAA,EAAA,KAAA;IAAY,IAAA,CAAA,EAAA,KAAA;;;;ECE5C,6DAKJ,EAAA;IAAA,UAAA,EAAA;;;;;;;;QALU,UAAA,EjC4rFgBD,UiC5rFhB,CAAA,YAAA,CAAA,CAAA,YAAA,CAAA;QAOA;;;;QAA2C,eAAA,EjC0rFtBA,UiC1rFsB,CAAA,YAAA,CAAA,CAAA,iBAAA,CAAA;MAE1C,CAAA;MAA+B,MAAA,CAAA,EAAA,KAAA;IAId,CAAA;IACC;;;;IAwCE,GAAA,EjCmpFpBC,UiCnpFoB,CAAA,wBAAA,CAAA;IAAkB;;;;SjCwpFtCA;;;AkChtFc;;;;;;AAM3B;;;IAAwC,MAAI,ElCstF5BA,UkCttF4B,CAAA,sBAAA,CAAA;IAAK,OAAA,CAAA,EAAA,KAAA;IAEpC,IAAA,CAAA,EAAA,KAAA;IAAgC,KAAA,CAAA,EAAA,KAAA;IAIf,KAAA,CAAA,EAAA,KAAA;;6CAQiB,EAAA;IAYb,UAAA,EAAA;MAcX,KAAA,CAAA,EAAA,KAAA;MAOU,MAAA,CAAA,EAAA,KAAA;MAAkB,IAAA,EAAA;QAAR;;;;oBlCsrFfD;;MmCzuFf,MAAA,CAAA,EAAA,KAAA;IAA2B,CAAA;IACX;;;;;;;;;;;ICmBxB,GAAA,EpCouFQC,UoCpuFR,CAAA,oBAQkB,CAAA;IAOX,GAAA,CAAA,EAAA,KAAA;IAAgC,IAAA,CAAA,EAAA,KAAA;IAIhC,MAAA,CAAA,EAAA,KAAA;IACR,OAAA,CAAA,EAAA,KAAA;IAAwB,IAAA,CAAA,EAAA,KAAA;IAEhB,KAAA,CAAA,EAAA,KAAA;IAOC,KAAA,CAAA,EAAA,KAAA;EAAoB,CAAA;wEAEH,EAAA;IACG,UAAA,EAAA;MACE,KAAA,CAAA,EAAA,KAAA;MAGS,MAAA,CAAA,EAAA,KAAA;MAA4C,IAAA,EAAA;QAAR;;;;QA+BlE,UAAA,EpCmrFcD,UoCnrFd,CAAA,YAAA,CAAA,CAAA,YAAA,CAAA;QAEa;;;;QA6CN,eAAA,EpCyoFYA,UoCzoFZ,CAAA,YAAA,CAAA,CAAA,iBAAA,CAAA;MACE,CAAA;MACL,MAAA,CAAA,EAAA,KAAA;IACD,CAAA;IACA;;;;IAmBF,GAAA,EpC0nFFC,UoC1nFE,CAAA,6BAAA,CAAA;IACe,GAAA,CAAA,EAAA,KAAA;IAAZ;;;;IAc2C,IAAA,EpCinF/CA,UoCjnF+C,CAAA,2CAAA,CAAA;IAAZ,MAAA,CAAA,EAAA,KAAA;IAWjB,OAAA,CAAA,EAAA,KAAA;IAA+B,IAAA,CAAA,EAAA,KAAA;IAAZ,KAAA,CAAA,EAAA,KAAA;IAY3B,KAAA,CAAA,EAAA,KAAA;;6CAAuD,EAAA;IAQxD,UAAA,EAAA;MACI,KAAA,CAAA,EAAA,KAAA;MAAZ,MAAA,CAAA,EAAA,KAAA;MACe,IAAA,EAAA;QAAZ;;;;QAwFsC,UAAA,EpCwgF5BD,UoCxgF4B,CAAA,YAAA,CAAA,CAAA,YAAA,CAAA;QAAsB;;;;QCvSlE,MAAe,ErCozFHA,UqCpzFG,CAAA,YAAA,CAAA,CAAA,QAAA,CAAA;MAAA,CAAA;MAAe,MAAA,CAAA,EAAA,KAAA;IAA2B,CAAA;IAAR,GAAA,CAAA,EAAA,KAAA;IAAO;;;;ACGpE;;;;;AAQA;;;;;;;;;;;IAcwD,GAAA,EtCozF3CC,UsCpzF2C,CAAA,oBAAA,CAAA;IAAkB,IAAA,CAAA,EAAA,KAAA;IAAR,MAAA,CAAA,EAAA,KAAA;IAdnB,OAAA,CAAA,EAAA,KAAA;IAAgB,IAAA,CAAA,EAAA,KAAA;;;;ECHlD,0CAAqB,EAAA;IAAA,UAAA,EAAA;MAGN,KAAA,CAAA,EAAA,KAAA;MACC,MAAA,CAAA,EAAA,KAAA;MAGC,IAAA,EAAA;QACK;;;;QAcuC,UAAA,EvCg0F9CD,UuCh0F8C,CAAA,YAAA,CAAA,CAAA,YAAA,CAAA;QAAR;;;;QAW1B,MAAA,EvC0zFhBA,UuC1zFgB,CAAA,YAAA,CAAA,CAAA,QAAA,CAAA;MAAiB,CAAA;MAA4B,MAAA,CAAA,EAAA,KAAA;IAAmB,CAAA;IAAO;;;;AC7C/G;;;IAUmB,GAAA,ExCw2FNC,UwCx2FM,CAAA,sBAAA,CAAA;IAaS,GAAA,CAAA,EAAA,KAAA;IAAsB,IAAA,CAAA,EAAA,KAAA;IAatB,MAAA,CAAA,EAAA,KAAA;IAAsB,OAAA,CAAA,EAAA,KAAA;IAgBtB,IAAA,CAAA,EAAA,KAAA;IAAsB,KAAA,CAAA,EAAA,KAAA;IAgB7B,KAAA,CAAA,EAAA,KAAA;;oCAUA,EAAA;IAKF,UAAA,EAAA;MASE,KAAA,CAAA,EAAA,KAAA;MACF,MAAA,CAAA,EAAA,KAAA;MAAgB,IAAA,EAAA;;;;AC7FnC;QAAyC,UAAA,EzCo4FbD,UyCp4Fa,CAAA,YAAA,CAAA,CAAA,YAAA,CAAA;MAGvB,CAAA;MACQ,MAAA,CAAA,EAAA,KAAA;IACL,CAAA;IAKC;;;;IAsBA,GAAA,EzC42FTC,UyC52FS,CAAA,kBAAA,CAAA;IAuBJ,GAAA,CAAA,EAAA,KAAA;IACQ;;;;;;;;;;;ACnD1B;;;;;AAKA;AASA;IAAwB,IAAA,E1C64FVA,U0C74FU,CAAA,oBAAA,CAAA;IAAW,MAAA,CAAA,EAAA,KAAA;IAAmB,OAAA,CAAA,EAAA,KAAA;IAE5C,IAAA,CAAA,EAAA,KAAA;IAGa,KAAA,CAAA,EAAA,KAAA;IAAZ,KAAA,CAAA,EAAA,KAAA;;2CACa,EAAA;IAAC,UAAA,EAAA;MAKb,KAAA,CAAA,EAAA,KAAA;MAAmB,MAAA,CAAA,EAAA,KAAA;MAAW,IAAA,EAAA;QAAyC;;;;oB1Ck5FvDD;;;I2C36FX,CAAA;IAAiB;;;;IAEN,GAAA,E3Ci7FfC,U2Cj7Fe,CAAA,wBAAA,CAAA;IAUf,GAAA,CAAA,EAAA,KAAA;IAAe,IAAA,CAAA,EAAA,KAAA;IAIE,MAAA,CAAA,EAAA,KAAA;IAEwB,OAAA,CAAA,EAAA,KAAA;IACP,IAAA,CAAA,EAAA,KAAA;IAI9B,KAAA,CAAA,EAAA,KAAA;IAAwB,KAAA,CAAA,EAAA,KAAA;;0CAAY,EAAA;IAEpC,UAAA,EAAA;MAAyB,KAAA,CAAA,EAAA,KAAA;MAAkC,MAAA,CAAA,EAAA,KAAA;MAApB,IAAA,EAAA;QAkBtC;;;;QAEA,UAAA,E3Cw5FUD,U2Cx5FV,CAAA,YAAA,CAAA,CAAA,YAAA,CAAA;MAAyB,CAAA;MAAkC,MAAA,CAAA,EAAA,KAAA;IAApB,CAAA;IAwBjC;;;;IAW8B,GAAA,E3C63FzCC,U2C73FyC,CAAA,6BAAA,CAAA;IAUvB,GAAA,CAAA,EAAA,KAAA;IAKL,IAAA,CAAA,EAAA,KAAA;IAAwB,MAAA,CAAA,EAAA,KAAA;IAMzB,OAAA,CAAA,EAAA,KAAA;IAAwB,IAAA,CAAA,EAAA,KAAA;IAAgC,KAAA,CAAA,EAAA,KAAA;IAApB,KAAA,CAAA,EAAA,KAAA;;sCAMX,EAAA;IAA4B,UAAA,EAAA;MAApB,KAAA,CAAA,EAAA,KAAA;MAAJ,MAAA,CAAA,EAAA,KAAA;MAgBhB,IAAA,EAAA;QAkBb;;;;oB3Ck1FGD;;;I4Cl+FhB,CAAA;IAAqB;;;;AAKjC;;;;IAMwD,GAAA,E5Cm+F3CC,U4Cn+F2C,CAAA,aAAA,CAAA;IAMnB,GAAA,CAAA,EAAA,KAAA;IAA4B,IAAA,CAAA,EAAA,KAAA;IAAoB,MAAA,CAAA,EAAA,KAAA;IAAR,OAAA,CAAA,EAAA,KAAA;IA2C5C,IAAA,CAAA,EAAA,KAAA;IAA0B,KAAA,CAAA,EAAA,KAAA;IAAkB,KAAA,CAAA,EAAA,KAAA;;yCA2B3D,EAAA;IAAe,UACL,EAAA;MAAe,KACf,CAAA,EAAA,KAAA;MACrB,MAAA,CAAA,EAAA,KAAA;MAAO,IAAA,EAAA;;;;AC1Fd;QAA+B,UAAA,E7CggGHD,U6ChgGG,CAAA,YAAA,CAAA,CAAA,YAAA,CAAA;MAQP,CAAA;MAAuC,MAAA,CAAA,EAAA,KAAA;IAAa,CAAA;IAoBnD,GAAA,CAAA,EAAA,KAAA;IAAuC;;;;IA+BoB,GAAA,E7C88FvEC,U6C98FuE,CAAA,6CAAA,CAAA;IAAR,IAAA,CAAA,EAAA,KAAA;IAkB3C,MAAA,CAAA,EAAA,KAAA;IA8BD,OAAA,CAAA,EAAA,KAAA;IAAuB,IAAA,CAAA,EAAA,KAAA;;;;ECrG3C,qDACO,EAAA;IAMN,UAAQ,EAAA;MAAA,KAAA,CAAA,EAAA,KAAA;MACI,MAAA,CAAA,EAAA,KAAA;MAEK,IAAA,EAAA;QAEA;;;;QAQC,UAAA,E9CggGHD,U8ChgGG,CAAA,YAAA,CAAA,CAAA,YAAA,CAAA;QAIP;;;;iB9CigGCA;;;;;;;;SAQZC;;;;;SAKAA;;;;;;;;;;;;;;;;;oBAiBeD;;;;;iBAKHA;;;;;;;;SAQZC;;;;;;;;;;;;;;;;;;oBAkBeD;;;;;iBAKHA;;;;;;;;SAQZC;;;;;SAKAA;;;;;;;;;;;;;;;;;oBAiBeD;;;;;;;;;;;;;;;;;;;;;;;;;;SA0BfC;;;;;;;;;;;;;;;UAeCA;;;;;;;;;;;;;;;;oBAgBcD;;;;;iBAKHA;;;;;;;;;;SAUZC;;;;;;;;;;;;;;;;;;oBAkBeD;;;;;iBAKHA;;;;;;;;SAQZC;;;;;;;;;;;;;;;;;;oBAkBeD;;;;;iBAKHA;;;;;oBAKGA;;;;;;;;SAQfC;;;;;;;;;;;;;;;;;;oBAkBeD;;;;;iBAKHA;;;;;oBAKGA;;;;;;;;;;UAUdC;;;;;;;;;;;;;;;;oBAgBcD;;;;;iBAKHA;;;;;;;;SAQZC;;;;;;;;;;;;;;;;;;oBAkBeD;;;;;iBAKHA;;;;;;;;SAQZC;;;;;;;;;;;;;;;;;;oBAkBeD;;;;;iBAKHA;;;;;;;;;;UAUXC;;;;;;;;;;;;;;;;;;;;;;SAsBDA;;;;;;YAMGA;;;;;;;UAQCD,UAAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAwYAA;gBACKA;gBACAA;;;oBAGIA;;;;;;;;;;;;;;;;;6BAiBSA;;;;;0BAKHA;;;;;;;;;;;;;;WAcfA;gBACKA;gBACAA;gBACAA;kBACEA;mBACCA;;;;;;WAMRA;gBACKA;gBACAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BAwDaA;;;;;;;;;;;;;;WAclBA;gBACKA;gBACAA;;;;;;;;;;;;;;;;;uBAyBOA;kBACLA;gBACFA;mBACGA;;;sBAGGA;mBACHA;kBACDA;qBACGA;wBACGA;eACTA;gBACCA;;;;;;;;;;;;;;;;WAgBLA;;;;;;oBAMSA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAgCTA;gBACKA;gBACAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBAmCMA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;eA+BPA;;;oBAGGA;;;;;;;;;;;;;;;;;;;;;;;;;WAyBPA;gBACKA;gBACAA;;;;;;;;;;;;;;;;;;;;;;;;0BA8BQA;aACXA;oBACOA;iBACHA;sBACKA;kBACJA;8BACYA;;;;;;WAMnBA;gBACKA;gBACAA;gBACAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aA0CHA;;;;;;;;;;;WAWFA;gBACKA;gBACAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAmCLA;gBACKA;gBACAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAgCLA;gBACKA;gBACAA;kBACEA;;;;;;;;;;;;;;;;;;cAkBJA;WACHA;gBACKA;gBACAA;;;;;;;;;;;;kBAYEA;gBACFA;mBACGA;;;;;;;;;;;;;;;;;;WAkBRA;gBACKA;gBACAA;;;;;;;;;;;;;;;;;;;;;;;qBAuBGA;;;;;;gBAMHA;;;WAGLA;gBACKA;gBACAA;;;;;;;;;;;;;;;;;;;;;;;;;WAyBLA;gBACKA;gBACAA;;;;;;;kBAOEA;gBACFA;;;;;;;;;;;;;;;;;;;;;;mBAsBGA;;;;;;;;;;;;;wBAaKA;;;;;;;qBAOHA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;eA+BNA;;;;;;;;;;;;;;;;;;;;;WAqBJA;gBACKA;gBACAA;mBACGA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAqCRA;gBACKA;gBACAA;mBACGA;;;;WAIRA;gBACKA;gBACAA;kBACEA;gBACFA;gBACAA;mBACGA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oBAyCCA;eACLA;;;qBAGIA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAqERA;gBACKA;gBACAA;kBACEA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YAmDRA;kBACQA;;;;;;;;;WASPA;gBACKA;gBACAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gBAkCAA;mBACGA;gBACHA;mBACGA;mBACAA;WACRA;qBACUA;wBACGA;eACTA;kBACGA;;;;;;;eAOHA;kBACGA;;;;;;;;oBAQEA;WACTA;gBACKA;gBACAA;iBACCA;;;wBAGOA;;;;;;;;;;;;;;;;;;;;YAoBZA;;;;;;aAMCA;;;;WAIFA;gBACKA;gBACAA;kBACEA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAuFPA;gBACKA;gBACAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oBA6BIA;;;;;;;;;;;;;;;;;;;;;;;sBAuBEA;;;+BAGSA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aAkClBA;;;;;;;;;WASFA;gBACKA;gBACAA;kBACEA;iBACDA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAmENA;gBACKA;gBACAA;kBACEA;YACNA;;;;;;;;;;;mBAWOA;wBACKA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAkCbA;gBACKA;gBACAA;kBACEA;;;gBAGFA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oBA+BIA;gBACJA;;;;;;mBAMGA;;;;;;;;;;;;;;;;;WAiBRA;gBACKA;gBACAA;kBACEA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WA2EPA;gBACKA;gBACAA;iBACCA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAqCNA;gBACKA;gBACAA;;;;;;;;;;;;;;;;;;;;gBAoBAA;mBACGA;gBACHA;mBACGA;mBACAA;WACRA;qBACUA;wBACGA;eACTA;kBACGA;;;;;;;eAOHA;kBACGA;;;;;;;;oBAQEA;WACTA;gBACKA;gBACAA;iBACCA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+BAoCcA;sBACTA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAiCXA;gBACKA;gBACAA;kBACEA;gBACFA;mBACGA;wBACKA;mBACLA;;;;;;;;;;;;;;;;;;;;;;oBAsBCA;;;;WAITA;gBACKA;gBACAA;kBACEA;mBACCA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aAyENA;;;;;;;;;;;WAWFA;gBACKA;gBACAA;;;;;;;;;;;;qBAYKA;;wBAECA;kBACJA;gBACFA;;;;;;;;;;;;WAYLA;gBACKA;gBACAA;gBACAA;WACLA;;;;;;kBAMOA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CA2HwBA;gDACIA;;;;;;;;;;;;;;;;4BAgBhBA;;;;;;;;;4BASAA;;;;;;;;;4BASAA;;;;;;;;;4BASAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAwJbA;;;;;;;;UASNC,UAAAA;;;;;;;;;;sBAUaD;;;;;yBAKGA;;;;;;;;;;;;8BAYOA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;;;sBAYaA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qBAiCGA;;;;;;;;WAQhBA;WACAA;WACAA;WACAA;;;;;;;;;;gBAUOA;;;;;iBAKCA;;;;;iBAKAA;;;;;;;;;;;;oBAYGA;;;;;;;;;;;;;qBAaKA;;;;WAIhBA;WACAA;WACAA;WACAA;;;;;;;;;;gBAUOA;;;;;iBAKCA;;;;;iBAKAA;;;;;;;;oBAQGA;;;;;kBAKFA;;;;;iBAKDA;;;;;;;;;;;;;uBAaUA;;;;WAIlBA;WACAA;WACAA;WACAA;;;;;;;;;;gBAUOA;;;;;iBAKCA;;;;;iBAKAA;;;;;;;;;;;;oBAYGA;;;;;kBAKFA;;;;;;;;;;;;;oBAaMA;;;;WAIfA;WACAA;WACAA;WACAA;;;;;;;;;;gBAUOA;;;;;iBAKCA;;;;;iBAKAA;mBACEA;;;;;;;;oBAQCA;;;;;kBAKFA;;;;;iBAKDA;;;;;;;;;;;;;oBAaOA;;;;WAIfA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;gBAKDA;;;;;;;;oBAQIA;;;;;iBAKHA;;;;;;;;;;;;;qBAaQA;;;;WAIhBA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;;;oBAUGA;;;;;iBAKHA;;;;;;;;;;;;8BAYeA;;;;;;;;;;;;;;;;;;;;WAoBvBA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;oBAQGA;;;;;iBAKHA;;;;;;;;;;;;uBAYQA;2BACIA;0BACDA;sBACJA;wBACEA;yBACCA;mBACNA;kBACDA;kBACAA;iBACDA;eACFA;;;;;;;;;;;8BAWeA;;;WAGvBA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;iBAKHA;;;;;;WAMRA;WACAA;WACAA;WACAA;;;;;;;;;;;;iBAYQA;;;;;iBAKAA;;;;;;;;;;;;;;oBAcGA;;;;;;;;;;;;;qBAaKA;;;;;;;;;;;;;;;;;;;;;WAqBhBA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;mBAKDA;;;;;;;;;;;;8BAYaA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;mBAKDA;;;;;;;kBAOCA;qBACGA;2BACMA;sBACLA;iBACLA;qBACIA;0BACKA;uBACHA;qBACFA;8BACSA;kCACIA;gCACFA;4BACJA;sBACNA;;;;;;;;;;;8BAWQA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;mBAKDA;;;;;;WAMVA;WACAA;WACAA;WACAA;WACAA;;;;;;;;;;;;;;gBAcOA;;;;;iBAKCA;;;;;;;;;;;;oBAYGA;;;;;;;;;;;;;uBAaOA;0BACKG;;;;;WAKvBH;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;;;kBAOAA;qBACGA;2BACMA;sBACLA;iBACLA;qBACIA;0BACKA;uBACHA;qBACFA;8BACSA;kCACIA;gCACFA;4BACJA;sBACNA;;;;;;;;;;;8BAWQA;;;WAGvBA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;mBAKDA;;;;;;;;;;;;8BAYaA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;mBAKDA;;;;;;;;;;;;;;;;;;;8BAmBaA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;mBAKDA;;;;;;;;;;;;;;;;;;;8BAmBaA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;mBAKDA;;;;;;WAMVA;WACAA;WACAA;WACAA;WACAA;;;;;;;eAOMA;;;;;;;;oBAQKA;;;;;;;;;;;;;8BAacA;;;;WAIzBA;WACAA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;mBAKDA;;;;;oBAKCA;;;;;;;;;;;;8BAYYA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;mBAKDA;;;;;oBAKCA;;;;;;WAMXA;WACAA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;oBAQGA;;;;;;;;;;;;8BAYYA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;;;;;;;;;WAaXA;WACAA;WACAA;WACAA;;;;;;;;;;;;sBAYaA;;;;;oBAKFA;;;;;;4BAMQA;;;;;;;;;;;WAWnBA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;oBAQGA;;;;;sBAKEA;;;;;;;;;;;;;;8BAcUA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;oBAQGA;;;;;sBAKEA;;;;;;;;;oBASAA;iBACHA;kBACCA;;;;;;;;;;;8BAWYA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;oBAQGA;;;;;kBAKFA;;;;;;;;;;;;8BAYcA;;;qBAGLA;wBACGA;wBACAA;6BACKA;wBACLA;;;;;;;WAOrBA;WACAA;WACAA;WACAA;;;;;;;;;gBASOA;;;;;gBAKAA;;;;;iBAKCA;;;;;iBAKAA;;;;;;;;oBAQGA;;;;;;;;;;;;;qBAaKA;;;;WAIhBA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;oBAQGA;;;;;oBAKAA;;;;;;;;;;;;8BAYYA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;oBAKAA;;;;;;;kBAOAA;wBACMA;wBACAA;;;;;;;;;;;8BAWMA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;oBAKAA;;;;;;WAMXA;WACAA;WACAA;WACAA;WACAA;;;;;;;;;;gBAUOA;;;;;iBAKCA;;;;;iBAKAA;;;;;;;;oBAQGA;;;;;;;;;;;;;uBAaOA;;;;WAIlBA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;oBAQGA;;;;;;;;;;;;8BAYYA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;;;iBAODA;iBACAA;;;iBAGAA;kBACCA;iBACDA;kBACCA;qBACGA;8BACSA;0BACJA;qCACWA;mCACFA;+BACJA;4BACHA;;;;;;;;;;;;;;;;;;;;8BAoBEA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;oBAQGA;;;;;;;;;;;;8BAYYA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;gBAUOA;;;;;iBAKCA;;;;;iBAKAA;;;;;;;;oBAQGA;;;;;oBAKAA;;;;;kBAKFA;;;;;iBAKDA;;;;;;;;;;;;;uBAaUA;;;;WAIlBA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;oBAQGA;;;;;oBAKAA;;;;;kBAKFA;;;;;;;sBAOMA;2BACKA;;;;;;;;;;;8BAWGA;;;WAGvBA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;oBAQGA;;;;;oBAKAA;;;;;;;;;;;;;;;;;;;;;;8BAsBYA;;;WAGvBA;WACAA;WACAA;;;;;;;;;;;;;;;;;oBAiBWA;;;;;;;;;;;;;;;;;;;;;;;;;;;iBA2BHA;;;;;;;;oBAQGA;;;;;oBAKAA;;;;;;;;;uBASKA;mBACJA;;;;;;;;;;;8BAWWA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;gBAUOA;;;;;iBAKCA;;;;;iBAKAA;;;;;;;;;;oBAUGA;;;;;oBAKAA;;;;;;;;;;;;;qBAaKA;;;;WAIhBA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;oBAQGA;;;;;oBAKAA;;;;;;;;;;;;8BAYYA;;;;;;WAMvBA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;oBAKAA;;;;;;;gBAOFA;wBACQA;gBACRA;kBACEA;oBACEA;wBACIA;6BACKA;yCACYA;oBACrBA;0BACMA;;;;;;;4BAOEA;sBACNA;sBACAA;4BACMA;uBACLA;4BACKA;sBACNA;wBACEA;;;;;oBAKJA;;;2BAGOA;;;;;;;;;;;;;;;;;;;;;;;;;;;8BA2BGA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;oBAKAA;;;;;;WAMXA;WACAA;WACAA;WACAA;WACAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gBAsCOA;;;;;iBAKCA;;;;;iBAKAA;;;;;;;;oBAQGA;;;;;;;;;;;;;uBAaOA;;;;WAIlBA;WACAA;WACAA;WACAA;;;;;;;qBAOYA;;aAERA;;;;;iBAKIA;;;;;;;;oBAQGA;;;;;oBAKAA;;;;;;;;;;;;8BAYYA;;;WAGvBA;WACAA;WACAA;;;;;;;;;;iBAUQA;;qBAEIA;;;;;;;;oBAQDA;;;;;oBAKAA;;;;;oBAKAA;;;;;;;;;;;;8BAYYA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;;;;;;;;oBAiBWA;;;;;oBAKAA;;;;;oBAKAA;;;;;;;;;;;;8BAYYA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;;;iBAYQA;;;;;;;;oBAQGA;;;;;oBAKAA;;;;;oBAKAA;;;;;;;;;;;;8BAYYA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;;;;;;oBAeWA;;;;;oBAKAA;;;;;;;;;;;;;uBAaOA;;;;WAIlBA;WACAA;WACAA;WACAA;;;;;;;;;;gBAUOA;;;;;iBAKCA;;;;;iBAKAA;;;;;;;;oBAQGA;;;;;oBAKAA;;;;;oBAKAA;;;;;;;;;;;;;4BAaYA;;;;WAIvBA;WACAA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;oBAKAA;;;;;;;;;;;;;2BAaWA;;;;WAItBA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;oBAKAA;;;;;;;gBAOFA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBA6CKA;wBACKA;;;;WAInBA;WACAA;WACAA;WACAA;;;;;;;;;;;;gBAYOA;;;;;iBAKCA;;;;;iBAKAA;;;;;;;;oBAQGA;;;;;oBAKAA;;;;;;;;;;;;;wBAaQA;sBACAA;oBACFA;8BACUA;0BACJA;;;;;;;WAOvBA;WACAA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;oBAKAA;;;;;;;;;;;;;;;;;;;;;;;;;8BAyBYA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;oBAQGA;;;;;oBAKAA;;;;;iBAKHA;;;;;;;;;;;;8BAYeA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;;;iBAYQA;;;;;;;;oBAQGA;;;;;oBAKAA;;;;;;;;;;;;;oBAaIA;;;;WAIfA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;oBAQGA;;;;;oBAKAA;;;;;iBAKHA;;;;;oBAKGA;;;;;;;8BAOYA;mBACXA;uBACIA;;;;;;;;;;;;;8BAaOA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;oBAQGA;;;;;oBAKAA;;;;;iBAKHA;;;;;;;;;;;;;kBAaGA;;;;;;;;;;;;;;;;;;;;;oBAqBIA;;;;WAIfA;WACAA;WACAA;WACAA;;;;;;;qBAOYA;iBACJA;;;;;iBAKAA;;;;;;;;oBAQGA;;;;;oBAKAA;;;;;;;;;;;;8BAYYA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;oBAQGA;;;;;oBAKAA;;;;;;;;;;;;8BAYYA;;;;;;WAMvBA;WACAA;WACAA;;;;;;;;;;;;;;;;gBAgBOA;;;;;iBAKCA;;;;;iBAKAA;;;;;;;;oBAQGA;;;;;oBAKAA;;;;;;;;;;;;;oBAaIA;4BACUA;;;;;;;;;;WAUzBA;WACAA;WACAA;;;;;;;;;;;;;;;;;;;;;oBAqBWA;;;;;oBAKAA;;;;;;;;;;;;8BAYYA;0BACFA;;;;;;;;;WASrBA;WACAA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;oBAKAA;;;;;iBAKHA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAgCRA;WACAA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;oBAKAA;;;;;iBAKHA;;;;;;;;;;;;;;;;;;;;;;;WAuBRA;WACAA;WACAA;WACAA;;;;;;;;;;;;;;;;;;;;;;oBAsBWA;;;;;;;;;;;;;;;;;;;;;;;;WAwBXA;WACAA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;;;eAOHA;uBACQA;;;;;;;iCAOUA;;;;;;;;;;;;;;;;;;;;sBAoBTA;8BACQA;8BACAA;wBACNA;gCACQA;mCACGA;yBACVA;iCACQA;iCACAA;;;;;;;;;WAS5BA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;oBAKAA;;;;;;;;;;;;0BAYQA;;;;;;;;;;;;;;;;;;8BAkBIA;;;WAGvBA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;oBAQGA;;;;;;;eAOHA;;;uBAGQA;;;;;;;;;;;8BAWOA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;oBAQGA;;;;;oBAKAA;;;;;;;;;;;;8BAYYA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;oBAQGA;;;;;oBAKAA;;;;;;;kBAOAA;uBACKA;8BACOA;4BACFA;8BACEA;wBACNA;;;;;;;;;;;;;;;;;;;;;;;;;;8BA0BMA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;;;;;iBAcQA;;;;;;;;oBAQGA;;;;;oBAKAA;;;;;;WAMXA;WACAA;WACAA;WACAA;WACAA;WACAA;;;;;;;;;;;;;;;;;;gBAkBOA;;;;;iBAKCA;;;;;iBAKAA;;;;;;;;;;oBAUGA;;;;;;;;;;;;;uBAaOA;;;;WAIlBA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;oBAQGA;;;;;;;;;;;;;;;;;uBAiBKA;iCACUA;;;;;;;;;;;8BAWHA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;oBAQGA;;;;;oBAKAA;;;;;;;;;;;;8BAYYA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;oBAQGA;;;;;sBAKEA;;;;;oBAKFA;;;;;;;;;;;;8BAYYA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;oBAKAA;;;;;;;;;;;;;;;;;;WAkBXA;WACAA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;;;;;;;;;;;;;;;;;;;WAuBXA;WACAA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;oBAKAA;;;;;;;;;;;;;WAaXA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;oBAQGA;;;;;oBAKAA;;;;;;;;;;;;8BAYYA;;;WAGvBA;WACAA;WACAA;;;;;;;qBAOYA;iBACJA;;;;;;;;oBAQGA;;;;;oBAKAA;;;;;;;;;;;;8BAYYA;;;WAGvBA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;oBAQGA;;;;;oBAKAA;;;;;;;;;;;;8BAYYA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;yBASgBA;;wBAEDA;mBACLA;;oBAECA;;;;;;;;;aASPA;;;;;eAKEA;;;;;gBAKCA;;;;;iBAKCA;;;;;iBAKAA;;;;;;;;oBAQGA;;;;;;;;;;;;;wBAaQA;sBACAA;oBACFA;8BACUA;;;;;;wBAMRA;;;;WAInBA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;oBAQGA;;;;;oBAKAA;;;;;;;;;;;;;;;WAeXA;WACAA;WACAA;WACAA;;;;;;;aAOIA;;;;;;;;;;;;oBAYOA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAsCXA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;;;;;;;;;yBAaSA;;;;WAIpBA;WACAA;WACAA;WACAA;;;;;;;;;;gBAUOA;;;;;iBAKCA;;;;;iBAKAA;;;;;;;;oBAQGA;;;;;iBAKHA;;;;;;;;;;;;;wBAaWA,mCAAmCA;;;;WAItDA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;oBAQGA;;;;;iBAKHA;;;;;;;;;;;;8BAYeA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;oBAQGA;;;;;;;;;;;;;oBAaIA;;;;WAIfA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;sBAQKA;;;;;oBAKFA;;;;;;;iBAODA;kBACCA;wBACMA;8BACMA;8BACAA;sCACQA;yBACbA;yBACAA;oCACWA;0BACVA;uBACHA;0BACGA;0BACAA;+BACKA;wBACPA;;;;;;;;;;;8BAWMA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;iBAKHA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBA8BSA;;;;WAIjBA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;oBAQGA;;;;;iBAKHA;;;;;oBAKGA;;;;;;;;;;;;;sBAaMA;;;;WAIjBA;WACAA;WACAA;WACAA;;;;;;;;;;;;sBAYaA;;;;;oBAKFA;;;;;iBAKHA;;;;;oBAKGA;;;;;;4BAMQA;;;;;;;;;;;sBAWFA;;;;WAIjBA;WACAA;WACAA;WACAA;;;;;;;;;;;;sBAYaA;;;;;oBAKFA;;;;;iBAKHA;;;;;oBAKGA;;;;;;;;;;;;;WAaXA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;mBACEA;;;;;gBAKHA;;;;;iBAKCA;;;;;;;;oBAQGA;;;;;iBAKHA;;;;;;;;;;;;;sBAaSA;;;;WAIjBA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;mBACEA;;;;;;;;oBAQCA;;;;;iBAKHA;;;;;;;0BAOWA;yBACDA;2BACEA;qBACNA;;;;;;;;;;;;;sBAaGA;;;;WAIjBA;WACAA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;iBAKHA;;;;;oBAKGA;;;;;;;4BAOUA;mBACTA;8BACWA;uBACPA;;;;;;;mBAOJA;;;;;;;;;;;;;;sBAcKA;;;;;;;;;;mBAUPA;;;;;;;;;;;;;;;;;oBAiBCA;;;;;;;;;;;;;;qBAcOA;qBACAA;sBACCA;qBACDA;kCACaA;8BACJA;2BACHA;iCACMA;;;;;;;;;;;;;;;qBAedA;wBACKA;;yBAECA;;;sBAGLA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAkHjBA;WACAA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;mBAKDA;;;;;;;;;;;;8BAYaA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;oBAQGA;;;;;mBAKDA;;;;;;;;;;;;iBAYAA;;;kBAGCA;iBACDA;iBACAA;iBACAA;sBACKA;oBACFA;wBACIA;wBACAA;wBACAA;;;;;;;;;;;8BAWMA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;mBAKDA;;;;;;WAMVA;WACAA;WACAA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;;;;;;;;;sBAaMA;;;;WAIjBA;WACAA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;;;;;;;;iBAYDA;;;kBAGCA;iBACDA;iBACAA;iBACAA;sBACKA;oBACFA;wBACIA;wBACAA;wBACAA;;;;;;;;;;;;;;;;8BAgBMA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;;;;;oBAcWA;;;;;;;;;;;;;;qBAcOA;;;;;;;;;;;WAWlBA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;oBAQGA;;;;;oBAKAA;;;;;;;;;;;;8BAYYA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;oBAQGA;;;;;oBAKAA;;;;;;;iBAODA;;;;;;;;;;;8BAWaA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;oBAKAA;;;;;;WAMXA;WACAA;WACAA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;;;;iBAQDA;gBACDA;;;;;WAKTA;WACAA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;oBAQGA;;;;;yBAKKA;;;;;;;;;;;;8BAYOA;;;WAGvBA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;yBAKKA;;;;;;;;;;;;;;;;;;;;;8BAqBOA;;;;;;;;;WASvBA;WACAA;WACAA;;;;;;;qBAOYA;iBACJA;;;;;;;;oBAQGA;;;;;yBAKKA;;;;;;;;;;;;8BAYOA;;;WAGvBA;WACAA;WACAA;;;;;;;;;wBASeA;;;;;kBAKNA;;;;;;;;;;;gBAWFA;;;;;iBAKCA;;;;;iBAKAA;;;;;;;;;;oBAUGA;;;;;;;;;;;;;6BAaaA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BA6BEA;;;;;WAK1BA;WACAA;WACAA;WACAA;;;;;;;;;;gBAUOA;;;;;iBAKCA;;;;;iBAKAA;;;;;;;;oBAQGA;;;;;yBAKKA;;;;;;;;;;;;;uBAaEA;;;;WAIlBA;WACAA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;yBAKKA;;;;;;;kBAOLA;gCACcA;mBACbA;gBACHA;wBACQA;yBACCA;;;yBAGAA;;;;;;;;;;;8BAWKA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;gBAKJA;;;;;;;yBAOWA;kBACPA;;;2BAGSA;;;;;;;;;;;8BAWGA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;;;;;;oBAeWA;;;;;gBAKJA;;;;;;;;;;;;;;;WAePA;WACAA;WACAA;WACAA;;;;;;;;;;gBAUOA;;;;;iBAKCA;;;;;iBAKAA;;;;;;;;oBAQGA;;;;;;;;;;;;;mBAaGA;;;;WAIdA;WACAA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;;;;;;;;;;;;;;;;;;;;;;;;8BA4BYA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;;;;;;;;oBAiBWA;;;;;;;;;;;;8BAYYA;;;;;;WAMvBA;WACAA;WACAA;WACAA;;;;;;;;;;;;;;;;;oBAiBWA;;;;;;;;;;;;;;;WAeXA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;iBAKAA;;;;;gBAKDA;;;;;eAKDA;;;;;aAKFA;;;;;;;;oBAQOA;;;;;;;;;;;;;qBAaKA;;;;WAIhBA;WACAA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;;;gBAOFA;sBACMA;mBACHA;;;;;;;;;;;;;;;WAeZA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;oBAQGA;;;;;iBAKHA;;;;;;;;;;;;8BAYeA;;;WAGvBA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;iBAKHA;;;;;;;0BAOWA;kBACRA;iBACDA;kBACCA;kBACAA;oBACEA;mBACDA;2BACQA;wBACHA;yBACCA;4BACGA;iCACKA;0BACPA;wBACFA;;;;;;;;;;;8BAWMA;;;WAGvBA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;gBAKDA;;;;;iBAKCA;;;;;;;;oBAQGA;;;;;iBAKHA;;;;;;;;;;;;;qBAaQA;;;;;;;;;;;;;iBAaRA;;;;;;;;oBAQGA;;;;;iBAKHA;;;;;;;;;;;;8BAYeA;;;WAGvBA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;oBAQGA;;;;;iBAKHA;;;;;;;;;kBASGA;iBACDA;iCACgBA;oBACbA;;;;;;;;;;;8BAWUA;;;WAGvBA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;gBAKDA;;;;;iBAKCA;;;;;;;;;;;;;;oBAcGA;;;;;;;;;;;;;oBAaIA;;;;WAIfA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;oBAQGA;;;;;;;;;;;;;;;;;;;;;;;;;;;iCA2BeA;;;mBAGdA;;;;;;;;;;;8BAWWA;;;WAGvBA;WACAA;WACAA;;;;;;;;;;;;;;;;;;;gBAmBOA;;;;;iBAKCA;;;;;iBAKAA;;;;;;;;oBAQGA;;;;;iBAKHA;;;;;;;;;;;;;uBAaUA;;;;WAIlBA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;iBAKAA;;;;;gBAKDA;;;;;;;;;;;;;;;;;;oBAkBIA;;;;;iBAKHA;;;;;;;;;;;;;wBAaWA;;;;yBAIGA;;;;;WAKtBA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;iBAKHA;;;;;oBAKGA;;;;;;;;;;;;;;;WAeXA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;oBAQGA;;;;;iBAKHA;;;;;oBAKGA;;;;;;;;;;;;;iBAaDA;;;iBAGAA;kBACCA;iBACDA;iBACAA;sBACKA;oBACFA;wBACIA;wBACAA;sBACFA;;;;;;;;;;;8BAWQA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;iBAKAA;;;;;gBAKDA;;;;;;;;;;wBAUQA;;;;;;;;oBAQJA;;;;;iBAKHA;;;;;;;;;;;;;wBAaWA;;;;;;;;;;;;;;;;;;;;;;;;;;;wBA2BAA;;;;WAInBA;WACAA;WACAA;;;;;;;;;;;;;;;;kBAgBSA;;;;;iBAKDA;;;;;iBAKAA;;;;;gBAKDA;;;;;;;;;;;;;;;;oBAgBIA;;;;;iBAKHA;;;;;;;;;;;;;6BAagBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6BA6BEA;;;;;WAK1BA;WACAA;WACAA;;;;;;;;;;;;oBAYWA;;;;;iBAKHA;;;;;;;;;;;;;;;;;;WAkBRA;WACAA;WACAA;;;;;;;;;;iBAUQA;;;;;;;;sBAQKA;;;;;;;iBAOHA;kBACCA;wBACMA;8BACMA;8BACAA;sCACQA;yBACbA;yBACAA;oCACWA;0BACVA;uBACHA;0BACGA;0BACAA;+BACKA;wBACPA;sBACFA;;;;;;;;;;;8BAWQA;;;WAGvBA;WACAA;WACAA;WACAA;;;;;;;;;;;;sBAYaA;;;;;;WAMbA;WACAA;WACAA;WACAA;WACAA;;;;;;KC1oZL,aAAA;;;;ADEKD,KCGL,IAAA,GDHU,MAAA,GAAA,MAAA,GAAA,MAAA;AAAA,KCKV,kBAAA,GAAqB,UDLX,CAAA,SAAA,CAAA,CAAA,cAAA,CAAA;AAUQC,KCJlB,yBAAA,GAA4B,iBDIVA,CCJ4B,UDI5BA,CAAAA,oBAAAA,CAAAA,CAAAA,YAAAA,CAAAA,CAAAA,OAAAA,CAAAA,CAAAA;AAKGA,KCRrB,sBAAA,GAAyB,WDQJA,CCP7B,UDO6BA,CAAAA,0BAAAA,CAAAA,CAAAA,WAAAA,CAAAA,CAAAA,GAAAA,CAAAA,CAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,eAAAA,CAAAA,CAAAA,CAAAA,MAAAA,CAAAA;AAQpBC,KCbD,0BAAA,GAA6B,WDa5BA,CCZT,UDYSA,CAAAA,0BAAAA,CAAAA,CAAAA,WAAAA,CAAAA,CAAAA,GAAAA,CAAAA,CAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,WAAAA,CAAAA,CAAAA,CAAAA,MAAAA,CAAAA,CAAAA,MAAAA,CAAAA;AAkBiBD,KC5BlB,6BAAA,GAAgC,sBD4BdA,GAAAA;WAiBhBC,EC5CC,0BD4CDA,EAAAA;;AAwBDA,KClED,8BAAA,GACR,UDiESA,CAAAA,sBAAAA,CAAAA,CAAAA,WAAAA,CAAAA,CAAAA,GAAAA,CAAAA,CAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA;AAkBeD,KClFhB,+BAAA,GACR,UDiFwBA,CAAAA,sBAAAA,CAAAA,CAAAA,WAAAA,CAAAA,CAAAA,GAAAA,CAAAA,CAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA;AAKFA,KCpFd,UAAA,GAAa,UDoFCA,CAAAA,SAAAA,CAAAA,CAAAA,MAAAA,CAAAA;AAKDA,KCxFb,iBAAA,GAAoB,iBDwFPA,CCxFyB,UDwFzBA,CAAAA,YAAAA,CAAAA,CAAAA,YAAAA,CAAAA,CAAAA,OAAAA,CAAAA,CAAAA;AAQZC,KC/FD,iBAAA,GAAoB,UD+FnBA,CAAAA,SAAAA,CAAAA,CAAAA,SAAAA,CAAAA;AAkBeD,KChHhB,6BAAA,GAAgC,iBDgHhBA,CC/GxB,UD+GwBA,CAAAA,0BAAAA,CAAAA,CAAAA,YAAAA,CAAAA,CAAAA,OAAAA,CAAAA,CAAAA;AAKFA,KClHd,wBAAA,GAA2B,iBDkHbA,CClH+B,UDkH/BA,CAAAA,qBAAAA,CAAAA,CAAAA,YAAAA,CAAAA,CAAAA,OAAAA,CAAAA,CAAAA;AAQbC,KCzHD,wBAAA,GAA2B,iBDyH1BA,CCzH4C,UDyH5CA,CAAAA,qBAAAA,CAAAA,CAAAA,YAAAA,CAAAA,CAAAA,OAAAA,CAAAA,CAAAA;AAkBeD,KC1IhB,gBAAA,GAAmB,UD0IHA,CAAAA,SAAAA,CAAAA,CAAAA,oBAAAA,CAAAA;AAKFA,KC7Id,aAAA,GAAgB,UD6IFA,CAAAA,SAAAA,CAAAA,CAAAA,SAAAA,CAAAA;AAKDA,KCjJb,oBAAA,GAAuB,iBDiJVA,CCjJ4B,UDiJ5BA,CAAAA,eAAAA,CAAAA,CAAAA,YAAAA,CAAAA,CAAAA,OAAAA,CAAAA,CAAAA;AAQZC,KCvJD,aAAA,GAAgB,UDuJfA,CAAAA,SAAAA,CAAAA,CAAAA,SAAAA,CAAAA;AAkBeD,KCxKhB,oBAAA,GAAuB,iBDwKPA,CCxKyB,UDwKzBA,CAAAA,eAAAA,CAAAA,CAAAA,YAAAA,CAAAA,CAAAA,OAAAA,CAAAA,CAAAA;AAKHA,KC3Kb,aAAA,GAAgB,UD2KHA,CAAAA,SAAAA,CAAAA,CAAAA,QAAAA,CAAAA;AAQZC,KCjLD,gBAAA,GACR,UDgLSA,CAAAA,sCAAAA,CAAAA,CAAAA,WAAAA,CAAAA,CAAAA,GAAAA,CAAAA,CAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA;AAkBeD,KCjMhB,aAAA,GAAgB,UDiMAA,CAAAA,SAAAA,CAAAA,CAAAA,SAAAA,CAAAA;AAKHA,KCrMb,UAAA,GAAa,UDqMAA,CAAAA,SAAAA,CAAAA,CAAAA,MAAAA,CAAAA;AAUZC,KC7MD,aAAA,GAAgB,UD6MfA,CAAAA,SAAAA,CAAAA,CAAAA,SAAAA,CAAAA;AASAA,KCrND,oBAAA,GACR,UDoNSA,CAAAA,gCAAAA,CAAAA,CAAAA,aAAAA,CAAAA,CAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA;AAMGA,KCxNJ,WAAA,GAAc,UDwNVA,CAAAA,SAAAA,CAAAA,CAAAA,UAAAA,CAAAA;AAeYD,KCtOhB,kBAAA,GAAqB,iBDsOLA,CCtOuB,UDsOvBA,CAAAA,aAAAA,CAAAA,CAAAA,YAAAA,CAAAA,CAAAA,OAAAA,CAAAA,CAAAA;AAYfC,KChPD,aAAA,GAAgB,UDgPfA,CAAAA,SAAAA,CAAAA,CAAAA,SAAAA,CAAAA;AAkBeD,KChQhB,mBAAA,GAAsB,UDgQNA,CAAAA,SAAAA,CAAAA,CAAAA,aAAAA,CAAAA,CAAAA,cAAAA,CAAAA;AAKDA,KCpQf,eAAA,GAAkB,UDoQHA,CAAAA,SAAAA,CAAAA,CAAAA,aAAAA,CAAAA,CAAAA,UAAAA,CAAAA;AAQdC,KC1QD,WAAA,GAAc,QD0QbA,CCzQT,WDyQSA,CCxQL,WDwQKA,CCvQD,UDuQCA,CAAAA,sCAAAA,CAAAA,CAAAA,WAAAA,CAAAA,CAAAA,KAAAA,CAAAA,CAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,QAAAA,CAAAA,CAAAA,CAAAA,oBAAAA,CAAAA,CAAAA,CAAAA;AAKAA,KCvQD,oBAAA,GAAuB,UDuQtBA,CAAAA,SAAAA,CAAAA,CAAAA,sBAAAA,CAAAA;AAMGA,KC3QJ,kCAAA,GAAqC,UD2QjCA,CAAAA,SAAAA,CAAAA,CAAAA,WAAAA,CAAAA,CAAAA,WAAAA,CAAAA;;;;;;aE7UJ,aAAA;;EFAKF,MAAAA,GAAK,QAAA;EAAA,MAAA,GAAA,QAAA;;AAeWC,UEThB,aAAA,CFSgBA;OAQpBC,CAAAA,EAAAA,MAAAA;QAkBiBD,CAAAA,EAAAA,MAAAA;;AAiCFA,KE/DhB,iBF+DgBA,CAAAA,CAAAA,CAAAA,GE/DO,IF+DPA,CE/DY,WF+DZA,CE/DwB,CF+DxBA,CAAAA,EAAAA,OAAAA,GAAAA,QAAAA,CAAAA;AAQfC,aErED,QAAA;KFuFgBD,GAAAA,KAAAA;KAKFA,GAAAA,KAAAA;KAKDA,GAAAA,KAAAA;;AA0BGA,KErHhB,aAAA,GFqHgBA,MAAAA,GAAAA,QAAAA,GAAAA,OAAAA;AAKFA,KExHd,aAAA,GFwHcA,GAAAA,GExHQ,OFwHRA,CAAAA;MEvHhB,IF+HGC;kBAkBeD,CAAAA,EEjJO,IFiJPA;OAKFA,CAAAA,EAAAA,MAAAA;;OAabC,EAAAA,MAAAA;QAkBeD,CAAAA;;;;AAoCHA,UEnNR,gBFmNQA,CAAAA,MAAAA,CAAAA,CAAAA;iBAUZC,CAAAA,MAAAA,EE5Ne,MF4NfA,CAAAA,EAAAA,CAAAA,OAAAA,EE5NkC,OF4NlCA,EAAAA,GE5N8C,OF4N9CA,CE5NsD,QF4NtDA,CAAAA;SASAA,CAAAA,MAAAA,EEnOO,MFmOPA,EAAAA,OAAAA,EEnOwB,OFmOxBA,CAAAA,EEnOkC,OFmOlCA,CEnO0C,QFmO1CA,CAAAA;;;;UGrQI,YAAA;;;;;EHGAF;;;WAegBC,EAAAA,MAAAA;;;;UA2DLA,EAAAA,MAAAA;;;;QAoCHA,EAAAA,MAAAA;;;;QAuCZC,EAAAA,MAAAA;;;;WAoCAA,EAAAA,MAAAA;;;;;;WAgEAA,EAAAA,MAAAA;;;;;;YAiEcD,EGzRX,IHyRWA,GAAAA,IAAAA;;;;UAkCCA,EAAAA,OAAAA;;;;OAkDDA,EAAAA,MAAAA,GAAAA,IAAAA;;;;;;gBAkDdC,EAAAA,MAAAA,GAAAA,IAAAA;;;;;;;cAkEAA,EG5cK,aH4cLA,GAAAA,IAAAA;;;;UAsCAA,EAAAA,OAAAA;;;;eA2CAA,EAAAA,MAAAA,GAAAA,IAAAA;;;;eAgDeD,EAAAA,MAAAA,GAAAA,IAAAA;;;;aAuCfC,EGpmBI,IHomBJA,GAAAA,IAAAA;;;;UAkCAA,EGloBC,QHkoBDA,GAAAA,IAAAA;;;;eAgDeD,EG9qBT,aH8qBSA,GAAAA,IAAAA;;;;SAoCFA,EG9sBb,IH8sBaA;;AAabC,KGxtBD,uBAAA,GHwtBCA,cAAAA,GAAAA,QAAAA;;;;;AAsDeD,UGxwBX,uBAAA,CHwwBWA;;;;aAiDfC,EAAAA,MAAAA;;;;UAiDeD,EAAAA,MAAAA;;;;aAoCAA,EAAAA,MAAAA;;;;UAkCAA,EAAAA,MAAAA;;;;MA2CfC,EGv8BH,uBHu8BGA;;;;;YA2CAA,EG7+BG,IH6+BHA,GAAAA,IAAAA,GAAAA,MAAAA;;;;WAoCAA,EG7gCE,IH6gCFA,GAAAA,MAAAA;;;;YAsCAA,EAAAA,OAAAA;;;;UI3qCI,kBAAA;;EJAAF,SAAK,EAAA,MAAA;EAAA,MAAA,EAAA,MAAA;WAUQC,EAAAA,MAAAA;WAKGA,EAAAA,MAAAA;eAQpBC,EAAAA,MAAAA;eAkBiBD,EAAAA,MAAAA;cAiBhBC,EIlDI,aJkDJA,GAAAA,IAAAA;UAgBcD,EAAAA,OAAAA;aAQfC,EIxEI,IJwEJA,GAAAA,IAAAA;UAkBeD,EIzFd,QJyFcA;aAKFA,CAAAA,EI7FR,IJ6FQA,GAAAA,IAAAA;WAKDA,EIjGV,IJiGUA;8BAQZC,CAAAA,EAAAA,MAAAA,GAAAA,IAAAA;OAkBeD,EAAAA,MAAAA,GAAAA,IAAAA;eAKFA,EI7HP,aJ6HOA,GAAAA,IAAAA;YAQbC,CAAAA,EAAAA,MAAAA;SAkBeD,EAAAA,OAAAA;WAKFA,EIzJX,IJyJWA,GAAAA,IAAAA;aAKDA,EAAAA,OAAAA;mCAQZC,EAAAA,MAAAA,GAAAA,IAAAA;kBAkBeD,EAAAA,MAAAA;;AAafC,KI/LD,WAAA,GAAc,WJ+LbA,CI9LT,UJ8LSA,CAAAA,sCAAAA,CAAAA,CAAAA,WAAAA,CAAAA,CAAAA,KAAAA,CAAAA,CAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,OAAAA,CAAAA,CAAAA;AAkBeD,KI7MhB,aAAA,GAAgB,aJ6MAA,GAAAA;YAKHA,EAAAA,MAAAA;eAUZC,EI1NM,aJ0NNA;WASAA,EIlOE,IJkOFA;OAMGA,EAAAA,MAAAA,GAAAA,IAAAA;WAeYD,EAAAA,MAAAA;;AA8BAA,KIhRhB,aAAA,GJgRgBA,CIhRC,aJgRDA,GAAAA,IAAAA,CAAAA,GAAAA;WAKDA,EAAAA,MAAAA;;AAadC,KI9RD,mBAAA,GJ8RCA;SAMGA,EInSH,kBJmSGA,GAAAA,IAAAA;QAeYD,EIjThB,kBJiTgBA,EAAAA;MAmBfC,EInUH,kBJmUGA,EAAAA;;AA0BeD,UI1VX,UAAA,CJ0VWA;MAKDA,EI9VjB,UJ8ViBA;UAQdC,EAAAA,MAAAA;eAKAA,EIzWM,mBJyWNA;SAKCA,EI7WD,aJ6WCA;UAKEA,EIjXF,aJiXEA,EAAAA,GAAAA,IAAAA;OAeYD,EI/XjB,WJ+XiBA;aAYfC,EI1YI,WJ0YJA;WAkBeD,EAAAA,MAAAA;iBAKDA,EI/ZN,eJ+ZMA;qBAKCA,EIlalB,IJkakBA,CIjad,oBJiacA,EAAAA,uBAAAA,GAAAA,MAAAA,GAAAA,WAAAA,GAAAA,UAAAA,GAAAA,eAAAA,GAAAA,WAAAA,CAAAA,EAAAA,GAAAA,IAAAA;;;;;AA6CZC,UIrcC,YAAA,CJqcDA;wBAecD,CAAAA,EAAAA,EAAAA,MAAAA,EAAAA,MAAAA,EIndiB,IJmdjBA,EAAAA,QAAAA,EAAAA,MAAAA,CAAAA,EAAAA,MAAAA;sBAKFA,CAAAA,OAAAA,EItdM,OJsdNA,CAAAA,EAAAA,OAAAA;WAWfC,CAAAA,OAAAA,EI/dU,OJ+dVA,CAAAA,EAAAA,OAAAA;;;;eA2CAA,CAAAA,OAAAA,EIrgBc,OJqgBdA,CAAAA,EIrgBwB,OJqgBxBA,CIrgBgC,QJqgBhCA,CAAAA;;;;;;;;AAnlBIF,UKEA,oBAAA,CLFK;EAAA;;;SAuBTE,EAAAA,MAAAA;;;;SA2DAA,EAAAA,MAAAA;;;;OAoCAA,EAAAA,MAAAA;;;;YAiDeD,EAAAA,MAAAA;;;;QAoCAA,EAAAA,uBAAAA,GAAAA,gBAAAA,GAAAA,OAAAA,GAAAA,UAAAA;;;;YAoCHA,EAAAA,MAAAA;;;;YAwCGA,EKxPZ,ILwPYA,GAAAA,IAAAA;;;;OA2CfC,EAAAA,MAAAA,GAAAA,IAAAA;;;;OA6CAA,EAAAA,MAAAA,GAAAA,MAAAA,GAAAA,IAAAA;;;;eAuCAA,EKxWM,ILwWNA,GAAAA,IAAAA;;;;UA8BeD,EK/Xd,QL+XcA;;;;QAwCAA,EAAAA,MAAAA;;;;KAsCfC,EAAAA,MAAAA;;;;iBAsCAA,EAAAA,MAAAA,GAAAA,IAAAA;;;;eA2CAA,EK9gBM,aL8gBNA,GAAAA,IAAAA;;;;YAgDeD,EAAAA,MAAAA,GAAAA,IAAAA;;;;;;;;;;;;;;MAmJAA,EAAAA,cAAAA,GAAAA,SAAAA,GAAAA,IAAAA;;AAUFA,KKpsBd,0BAAA,GLosBcA;OAKDA,EAAAA,MAAAA;WAQZC,CAAAA,EAAAA,MAAAA;UAkBeD,CAAAA,EAAAA,MAAAA;MAKAA,CAAAA,EAAAA,MAAAA;QAKFA,GAAAA,SAAAA;AASbC,KKjvBD,sBAAA,GLivBCA;;;;;;MAoFeD,CAAAA,EK/zBjB,0BL+zBiBA;;;;;;WA8DAA,CAAAA,EAAAA,OAAAA;;;;;;oBAiDfC,CAAAA,EAAAA,OAAAA;;;;OAmDeD,CAAAA,EAAAA,MAAAA;;;;OAyBfC,CAAAA,EAAAA,MAAAA;;;;;QAsDeD,CAAAA,EAAAA,MAAAA;;;;;;OAuDfC,CAAAA,EAAAA,MAAAA;;;;;;;OAoFeD,CAAAA,EKrpChB,eLqpCgBA,CAAAA,OAAAA,CAAAA;;;;;;WAiDfC,CAAAA,EAAAA,MAAAA;;;;;AAsDeD,UKhvCX,cAAA,CLgvCWA;;;;WAsCAA,CAAAA,OAAAA,EKlxCL,OLkxCKA,CAAAA,EAAAA,OAAAA;;;;eAoCAA,CAAAA,OAAAA,EKjzCD,OLizCCA,CAAAA,EKjzCS,OLizCTA,CKjzCiB,QLizCjBA,CAAAA;;;;KMr9ChB,WAAA;;;;ENEKD,KAAAA,EMEN,WNFW;EAAA;;;WAuBTE,CAAAA,EMjBG,WNiBHA,CAAAA,MAAAA,CAAAA,GAAAA,IAAAA;;;;aA2DAA,EMxEI,WNwEJA;;;;KOvFD,uBAAA;;;;;;EPKKF,KAAAA,EAAAA,MAAK;CAAA,CAAA;AAUQC,aOXlB,2BAAA;iBPgBqBA,GAAAA,iBAAAA;KAQpBC,GAAAA,KAAAA;;;;iBQzBG,UAAA,KAAe;iBAkBf,UAAA,KAAe;iBAUf,UAAA,MAAgB,WAAW;iBAI3B,iBAAA,SAA0B,sBAAsB;AR9B/CF,iBQ4CD,WAAA,CR5CM,KAAA,EAAA,OAAA,CAAA,EAAA,MAAA,GAAA,IAAA;AAAA,iBQuDN,aAAA,CRvDM,UAAA,CAAA,EAAA,MAAA,GAAA,IAAA,CAAA,EQuDqC,IRvDrC,GAAA,IAAA;AAUQC,iBQqFd,SAAA,CRrFcA,UAAAA,CAAAA,EAAAA,MAAAA,GAAAA,IAAAA,CAAAA,EQqFyB,IRrFzBA,GAAAA,IAAAA;AAKGA,iBQyFjB,aAAA,CRzFiBA,QAAAA,CAAAA,EQyFQ,eRzFRA,CAAAA,EQyF0B,QRzF1BA,GAAAA,IAAAA;AAQpBC,iBQ8FG,kBAAA,CR9FHA,OAAAA,CAAAA,EAAAA,MAAAA,GAAAA,IAAAA,CAAAA,EQ8FgD,aR9FhDA,GAAAA,IAAAA;;;cS5BA,WAAA,SAAoB,KAAA;;;;gBAWf;sCAasB;ETnBvBF,OAAAA,YAAK,CAAA,OAAA,CAAA,EAAA,MAAA,CAAA,ESuBqC,WTvBrC;EAAA,OAAA,QAAA,CAAA,OAAA,CAAA,EAAA,MAAA,CAAA,ES2B8B,WT3B9B;SAUQC,gBAAAA,CAAAA,OAAAA,EAAAA,MAAAA,EAAAA,gBAAAA,EAAAA,OAAAA,CAAAA,ESqB2C,WTrB3CA;SAKGA,aAAAA,CAAAA,OAAAA,CAAAA,EAAAA,MAAAA,CAAAA,ESoBoC,WTpBpCA;;;;cUlBpB,YAAA,SAAqB,KAAA;;;gBAShB;;;;iBCmBF,eAAA,yCAAqD,YAAA,CAAA,OAAA;KAczD,WAAA,GAAc,kBAAkB;;;AXvCtB,uBYSA,OZTA,CAAA,UAAA,EAAA,mBYSuC,MZTvC,CAAA,MAAA,EAAA,OAAA,CAAA,GYSiE,MZTjE,CAAA,MAAA,EAAA,OAAA,CAAA,CAAA,CAAA;qBAUQA,MAAAA,EYIK,WZJLA;WAKGA,SAAAA,EAAAA,MAAAA;aAQpBC,CAAAA,SAAAA,EYVM,IZUNA,EAAAA,MAAAA,EYTsB,WZStBA;WAkBiBD,QAAAA,CAAAA,EAAAA,EYtBJ,IZsBIA,CAAAA,EYtBG,OZsBHA,CYtBW,UZsBXA,GAAAA,IAAAA,CAAAA;WAiBhBC,YAAAA,CAAAA,MAAAA,CAAAA,EYrCqB,UZqCrBA,EAAAA,UAAAA,CAAAA,EYrC8C,aZqC9CA,CAAAA,EYrC8D,OZqC9DA,CYrCsE,UZqCtEA,EAAAA,CAAAA;;;;;;;;;;;;YAuHWD,CAAAA,MAAAA,CAAAA,EY9IR,UZ8IQA,EAAAA,QAAAA,CAAAA,EAAAA,MAAAA,CAAAA,EY5IlB,cZ4IkBA,CY5IH,UZ4IGA,EAAAA,IAAAA,EAAAA,OAAAA,CAAAA;iBAQZC,CAAAA,MAAAA,CAAAA,EY5He,aZ4HfA,CAAAA,EAAAA;IAkBeD,KAAAA,EAAAA,MAAAA;IAKHA,MAAAA,EAAAA,MAAAA;;cA0BGA,CAAAA,EAAAA,EYtKP,IZsKOA,CAAAA,EAAAA,MAAAA;gBAKHA,CAAAA,QAAAA,EYvKI,QZuKJA,CAAAA,EAAAA,OAAAA;;;;4BAwCGA,CAAAA,CAAAA,EYxMM,sBZwMNA;;;;caxRf,OAAA,SAAgB,QAAQ,eAAe;sBACtB,OAAI;;IbAjBD,OAAK,CAAA,aAAA,SAAA,CAAA,CAAA,kBAAA,CAAA,CAAA,SAAA,CAAA;IAAA,OAAA,CAAA,aAAA,SAAA,CAAA,CAAA,kBAAA,CAAA,CAAA,SAAA,CAAA;IAUQC,SAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,WAAAA,CAAAA;IAKGA,OAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,kBAAAA,CAAAA;IAQpBC,OAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,SAAAA,CAAAA;IAkBiBD,UAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,qBAAAA,CAAAA;IAiBhBC,KAAAA,CAAAA,EAAAA,MAAAA,GAAAA,IAAAA;IAgBcD,SAAAA,CAAAA,EAAAA,MAAAA;IAQfC,eAAAA,CAAAA,EAAAA,MAAAA,GAAAA,IAAAA;IAkBeD,UAAAA,CAAAA,EAAAA,MAAAA,GAAAA,IAAAA;IAKFA,UAAAA,CAAAA,EAAAA,MAAAA;IAKDA,iBAAAA,EAAAA,OAAAA;IAQZC,iBAAAA,EAAAA,OAAAA;IAkBeD,YAAAA,CAAAA,EAAAA,OAAAA;IAKFA,eAAAA,CAAAA,EAAAA,OAAAA;IAQbC,WAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,aAAAA,CAAAA;IAkBeD,MAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,WAAAA,CAAAA,CAAAA,QAAAA,CAAAA;MAKFA,IAAAA,CAAAA;cAKDA,CAAAA,MAAAA,CAAAA,EahKO,oBbgKPA,EAAAA,UAAAA,CAAAA,EahK0C,abgK1CA,CAAAA,EahKuD,ObgKvDA,CAAAA,CAAAA;IAQZC,EAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,IAAAA,CAAAA;IAkBeD,OAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,SAAAA,CAAAA;IAKHA,OAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,SAAAA,CAAAA;IAQZC,SAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,WAAAA,CAAAA;IAkBeD,OAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,kBAAAA,CAAAA;IAKHA,OAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,SAAAA,CAAAA;IAUZC,UAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,qBAAAA,CAAAA;IASAA,KAAAA,CAAAA,EAAAA,MAAAA,GAAAA,IAAAA;IAMGA,SAAAA,CAAAA,EAAAA,MAAAA;IAeYD,eAAAA,CAAAA,EAAAA,MAAAA,GAAAA,IAAAA;IAYfC,UAAAA,CAAAA,EAAAA,MAAAA,GAAAA,IAAAA;IAkBeD,UAAAA,CAAAA,EAAAA,MAAAA;IAKDA,iBAAAA,EAAAA,OAAAA;IAQdC,iBAAAA,EAAAA,OAAAA;IAKAA,YAAAA,CAAAA,EAAAA,OAAAA;IAMGA,eAAAA,CAAAA,EAAAA,OAAAA;IAeYD,WAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,aAAAA,CAAAA;IAmBfC,MAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,WAAAA,CAAAA,CAAAA,QAAAA,CAAAA;MAUCA;IAgBcD,cAAAA,CAAAA,EAAAA,MAAAA;IAKDA,UAAAA,CAAAA,EAAAA,MAAAA;IAQdC,eAAAA,CAAAA,EAAAA,MAAAA;IAKAA,wBAAAA,CAAAA,EAAAA,MAAAA;IAKCA,2BAAAA,CAAAA,EAAAA,MAAAA;IAKEA,oBAAAA,CAAAA,EAAAA,QAAAA,GAAAA,QAAAA,GAAAA,MAAAA;IAeYD,4BAAAA,CAAAA,EAAAA,MAAAA;IAYfC,YAAAA,CAAAA,EAAAA,MAAAA,GAAAA,IAAAA;IAkBeD,iBAAAA,CAAAA,EAAAA,MAAAA;IAKDA,wBAAAA,CAAAA,EAAAA,MAAAA;IAKCA,iBAAAA,CAAAA,EAAAA,MAAAA,GAAAA,IAAAA;IASfC,gBAAAA,CAAAA,EAAAA,MAAAA,GAAAA,IAAAA;MAMGA,CAAAA;sBAeYD,CAAAA,SAAAA,Eardc,IbqddA,CAAAA,EardqB,ObqdrBA,Card6B,kBbqd7BA,GAAAA,IAAAA,CAAAA;sCAQfC,CAAAA,SAAAA,Earc6C,Ibqc7CA,CAAAA,EarcoD,ObqcpDA,CAAAA,MAAAA,GAAAA,IAAAA,CAAAA;;;;ccpgBA,OAAA,SAAgB,QAAQ;cACf,QAAQ;kBAgBJ,QAAQ;yBAID,QAAQ;EdnBxBF,sCAAK,CAAA,CAAA,EcmC8B,OdnC9B,CcmCsC,oBdnCtC,EAAA,GAAA,IAAA,CAAA;;;;ceMT,YAAA,SAAqB,QAAQ,oBAAoB;2BAC3B,OAAI;;IfPtBA,UAAK,CAAA,aAAA,SAAA,CAAA,CAAA,kBAAA,CAAA,CAAA,qBAAA,CAAA;IAAA,OAAA,CAAA,aAAA,SAAA,CAAA,CAAA,kBAAA,CAAA,CAAA,SAAA,CAAA;IAUQC,UAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,qBAAAA,CAAAA;IAKGA,UAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,YAAAA,CAAAA;IAQpBC,EAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,aAAAA,CAAAA;IAkBiBD,YAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,cAAAA,CAAAA;IAiBhBC,eAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,0BAAAA,CAAAA;IAgBcD,MAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,iBAAAA,CAAAA;IAQfC,SAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,oBAAAA,CAAAA;IAkBeD,YAAAA,CAAAA,EAAAA,MAAAA;IAKFA,MAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,WAAAA,CAAAA,CAAAA,QAAAA,CAAAA;IAKDA,SAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,WAAAA,CAAAA;IAQZC,WAAAA,CAAAA,EAAAA,MAAAA;IAkBeD,OAAAA,CAAAA,EAAAA,MAAAA,GAAAA,IAAAA;IAKFA,WAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,aAAAA,CAAAA;IAQbC,EAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,IAAAA,CAAAA;IAkBeD,OAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,SAAAA,CAAAA;IAKFA,OAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,SAAAA,CAAAA;IAKDA,QAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,aAAAA,CAAAA,CAAAA,UAAAA,CAAAA;IAQZC,QAAAA,CAAAA,EAAAA,MAAAA;IAkBeD,WAAAA,CAAAA,EAAAA,MAAAA;IAKHA,gBAAAA,CAAAA,EAAAA,MAAAA;IAQZC,cAAAA,CAAAA,EAAAA,MAAAA;IAkBeD,cAAAA,CAAAA,EAAAA,MAAAA;IAKHA,iBAAAA,CAAAA,EAAAA,MAAAA;IAUZC,sBAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,aAAAA,CAAAA,CAAAA,sBAAAA,CAAAA;IASAA,aAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,aAAAA,CAAAA,CAAAA,cAAAA,CAAAA;IAMGA,mBAAAA,CAAAA,EAAAA,MAAAA;IAeYD,eAAAA,CAAAA,EAAAA,MAAAA;IAYfC,UAAAA,CAAAA,EAAAA,MAAAA,GAAAA,IAAAA;IAkBeD,YAAAA,CAAAA,EAAAA,MAAAA,GAAAA,IAAAA;IAKDA,WAAAA,CAAAA,EAAAA,MAAAA,GAAAA,IAAAA;MAQdC,IAAAA,CAAAA;cAKAA,CAAAA,MAAAA,CAAAA,Ee/SmB,yBf+SnBA,EAAAA,UAAAA,CAAAA,Ee/S2D,af+S3DA,CAAAA,Ee/SwE,Of+SxEA,CAAAA,CAAAA;IAMGA,OAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,SAAAA,CAAAA;IAeYD,UAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,qBAAAA,CAAAA;IAmBfC,OAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,SAAAA,CAAAA;IAUCA,UAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,qBAAAA,CAAAA;IAgBcD,UAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,YAAAA,CAAAA;IAKDA,EAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,aAAAA,CAAAA;IAQdC,YAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,cAAAA,CAAAA;IAKAA,eAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,0BAAAA,CAAAA;IAKCA,MAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,iBAAAA,CAAAA;IAKEA,SAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,oBAAAA,CAAAA;IAeYD,YAAAA,CAAAA,EAAAA,MAAAA;IAYfC,MAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,WAAAA,CAAAA,CAAAA,QAAAA,CAAAA;IAkBeD,SAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,WAAAA,CAAAA;IAKDA,WAAAA,CAAAA,EAAAA,MAAAA;IAKCA,OAAAA,CAAAA,EAAAA,MAAAA,GAAAA,IAAAA;IASfC,WAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,aAAAA,CAAAA;IAMGA,EAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,IAAAA,CAAAA;IAeYD,OAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,SAAAA,CAAAA;IAQfC,OAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,SAAAA,CAAAA;IAOGA,QAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,aAAAA,CAAAA,CAAAA,UAAAA,CAAAA;IAecD,QAAAA,CAAAA,EAAAA,MAAAA;IAKFA,WAAAA,CAAAA,EAAAA,MAAAA;IAWfC,gBAAAA,CAAAA,EAAAA,MAAAA;IAiBeD,cAAAA,CAAAA,EAAAA,MAAAA;IAKEA,cAAAA,CAAAA,EAAAA,MAAAA;IAajBC,iBAAAA,CAAAA,EAAAA,MAAAA;IAQAA,sBAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,aAAAA,CAAAA,CAAAA,sBAAAA,CAAAA;IAiBeD,aAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,aAAAA,CAAAA,CAAAA,cAAAA,CAAAA;IAKFA,mBAAAA,CAAAA,EAAAA,MAAAA;IAQbC,eAAAA,CAAAA,EAAAA,MAAAA;IAkBeD,UAAAA,CAAAA,EAAAA,MAAAA,GAAAA,IAAAA;IAQfC,YAAAA,CAAAA,EAAAA,MAAAA,GAAAA,IAAAA;IAkBeD,WAAAA,CAAAA,EAAAA,MAAAA,GAAAA,IAAAA;MAKAA;IAQfC,SAAAA,CAAAA,EAAAA,MAAAA,GAAAA,IAAAA;IAKAA,KAAAA,CAAAA,EAAAA,MAAAA,GAAAA,IAAAA;IAMGA,GAAAA,CAAAA,EAAAA,MAAAA,GAAAA,IAAAA;IAeYD,KAAAA,CAAAA,EAAAA,MAAAA,GAAAA,IAAAA;IAQfC,sCAAAA,CAAAA,EAAAA,OAAAA,GAAAA,IAAAA;MAkBeD,CAAAA;oBAQfC,CAAAA,cAAAA,EezrBW,IfyrBXA,EAAAA,QAAAA,EAAAA,MAAAA,EAAAA,YAAAA,EAAAA,OAAAA,CAAAA,EetrBN,OfsrBMA,CetrBE,+BfsrBFA,GAAAA,IAAAA,CAAAA;QAKAA,CAAAA,cAAAA,EerqBW,IfqqBXA,EAAAA,QAAAA,CAAAA,EAAAA,MAAAA,EAAAA,SAAAA,CAAAA,EenqBO,kCfmqBPA,EAAAA,CAAAA,EelqBN,OfkqBMA,CelqBE,8BfkqBFA,GAAAA,IAAAA,CAAAA;;;;cgB5tBA,IAAA,SAAa,QAAQ,YAAY;mBACnB,OAAI;;IhBhBdF,oBAAK,CAAA,EAAA,OAAA,GAAA,IAAA;IAAA,OAAA,CAAA,EAAA,OAAA;IAUQC,KAAAA,CAAAA,EAAAA,MAAAA;IAKGA,KAAAA,CAAAA,EAAAA,MAAAA;IAQpBC,IAAAA,CAAAA,EAAAA,MAAAA;IAkBiBD,OAAAA,CAAAA,EAAAA,MAAAA;IAiBhBC,EAAAA,CAAAA,EAAAA,MAAAA,GAAAA,IAAAA;IAgBcD,WAAAA,CAAAA,EAAAA,OAAAA;IAQfC,IAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,aAAAA,CAAAA,CAAAA,oBAAAA,CAAAA;IAkBeD,UAAAA,CAAAA,EAAAA,MAAAA;IAKFA,UAAAA,CAAAA,EAAAA,MAAAA;IAKDA,EAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,IAAAA,CAAAA;IAQZC,OAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,SAAAA,CAAAA;IAkBeD,OAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,SAAAA,CAAAA;IAKFA,KAAAA,CAAAA,EAAAA,MAAAA;IAQbC,aAAAA,CAAAA,EAAAA,MAAAA,GAAAA,IAAAA;IAkBeD,YAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,aAAAA,CAAAA,CAAAA,aAAAA,CAAAA;MAKFA,IAAAA,CAAAA;cAKDA,CAAAA,MAAAA,CAAAA,EgB7IO,iBhB6IPA,EAAAA,UAAAA,CAAAA,EgB7IuC,ahB6IvCA,CAAAA,EgB7IoD,OhB6IpDA,CAAAA;IAQZC,IAAAA,CAAAA,EAAAA,MAAAA;IAkBeD,oBAAAA,CAAAA,EAAAA,OAAAA,GAAAA,IAAAA;IAKHA,OAAAA,CAAAA,EAAAA,OAAAA;IAQZC,KAAAA,CAAAA,EAAAA,MAAAA;IAkBeD,KAAAA,CAAAA,EAAAA,MAAAA;IAKHA,IAAAA,CAAAA,EAAAA,MAAAA;IAUZC,OAAAA,CAAAA,EAAAA,MAAAA;IASAA,EAAAA,CAAAA,EAAAA,MAAAA,GAAAA,IAAAA;IAMGA,WAAAA,CAAAA,EAAAA,OAAAA;IAeYD,IAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,aAAAA,CAAAA,CAAAA,oBAAAA,CAAAA;IAYfC,UAAAA,CAAAA,EAAAA,MAAAA;IAkBeD,UAAAA,CAAAA,EAAAA,MAAAA;IAKDA,EAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,IAAAA,CAAAA;IAQdC,OAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,SAAAA,CAAAA;IAKAA,OAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,SAAAA,CAAAA;IAMGA,KAAAA,CAAAA,EAAAA,MAAAA;IAeYD,aAAAA,CAAAA,EAAAA,MAAAA,GAAAA,IAAAA;IAmBfC,YAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,aAAAA,CAAAA,CAAAA,aAAAA,CAAAA;KAUCA,CAAAA;iBAgBcD,CAAAA,KAAAA,EAAAA,MAAAA,CAAAA,EgBhVc,OhBgVdA,CgBhVsB,UhBgVtBA,GAAAA,IAAAA,CAAAA;iBAKDA,CAAAA,MAAAA,EgBlUO,IhBkUPA,CAAAA,EgBlUc,OhBkUdA,CgBlUsB,iBhBkUtBA,GAAAA,IAAAA,CAAAA;uBAQdC,CAAAA,MAAAA,EgBxTG,IhBwTHA,EAAAA,OAAAA,CAAAA,EgBvTK,6BhBuTLA,EAAAA,UAAAA,CAAAA,EgBtTQ,ahBsTRA,CAAAA,EgBrTN,OhBqTMA,CgBrTE,6BhBqTFA,EAAAA,CAAAA;kBAKAA,CAAAA,MAAAA,EgBzRG,IhByRHA,EAAAA,OAAAA,CAAAA,EgBxRK,wBhBwRLA,EAAAA,UAAAA,CAAAA,EgBvRQ,ahBuRRA,CAAAA,EgBtRN,OhBsRMA,CgBtRE,ahBsRFA,EAAAA,CAAAA;kBAKCA,CAAAA,MAAAA,EgBrQE,IhBqQFA,EAAAA,OAAAA,CAAAA,EgBpQI,wBhBoQJA,EAAAA,UAAAA,CAAAA,EgBnQO,ahBmQPA,CAAAA,EgBlQP,OhBkQOA,CgBlQC,ahBkQDA,EAAAA,CAAAA;eAKEA,CAAAA,MAAAA,EgBlPgB,IhBkPhBA,EAAAA,OAAAA,EgBlP+B,oBhBkP/BA,CAAAA,EgBlPsD,OhBkPtDA,CgBlP8D,iBhBkP9DA,GAAAA,IAAAA,CAAAA;;;;ciBtaH,OAAA,SAAgB,QAAQ,eAAe;sBACtB,OAAO,QAAQ;wBAiBb,mCAAmC,gBAAa;IjBjB/DF,OAAK,CAAA,aAAA,SAAA,CAAA,CAAA,kBAAA,CAAA,CAAA,SAAA,CAAA;IAAA,UAAA,CAAA,aAAA,SAAA,CAAA,CAAA,kBAAA,CAAA,CAAA,qBAAA,CAAA;IAUQC,OAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,SAAAA,CAAAA;IAKGA,UAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,qBAAAA,CAAAA;IAQpBC,UAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,YAAAA,CAAAA;IAkBiBD,EAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,aAAAA,CAAAA;IAiBhBC,YAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,cAAAA,CAAAA;IAgBcD,eAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,0BAAAA,CAAAA;IAQfC,MAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,iBAAAA,CAAAA;IAkBeD,SAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,oBAAAA,CAAAA;IAKFA,YAAAA,CAAAA,EAAAA,MAAAA;IAKDA,MAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,WAAAA,CAAAA,CAAAA,QAAAA,CAAAA;IAQZC,SAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,WAAAA,CAAAA;IAkBeD,WAAAA,CAAAA,EAAAA,MAAAA;IAKFA,OAAAA,CAAAA,EAAAA,MAAAA,GAAAA,IAAAA;IAQbC,WAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,aAAAA,CAAAA;IAkBeD,EAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,IAAAA,CAAAA;IAKFA,OAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,SAAAA,CAAAA;IAKDA,OAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,SAAAA,CAAAA;IAQZC,QAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,aAAAA,CAAAA,CAAAA,UAAAA,CAAAA;IAkBeD,aAAAA,CAAAA,EAAAA,MAAAA,GAAAA,IAAAA;IAKHA,eAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,0BAAAA,CAAAA;IAQZC,KAAAA,CAAAA,EAAAA,MAAAA;IAkBeD,gBAAAA,CAAAA,EAAAA,MAAAA;IAKHA,WAAAA,EAAAA,MAAAA;IAUZC,GAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,KAAAA,CAAAA;IASAA,UAAAA,EAAAA,OAAAA;IAMGA,IAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,aAAAA,CAAAA,CAAAA,aAAAA,CAAAA;MAeYD;IAYfC,KAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,MAAAA,CAAAA,CAAAA,OAAAA,CAAAA;IAkBeD,GAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,SAAAA,CAAAA,CAAAA,KAAAA,CAAAA;IAKDA,aAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,cAAAA,CAAAA,CAAAA,eAAAA,CAAAA;IAQdC,SAAAA,CAAAA,EAAAA,MAAAA;IAKAA,aAAAA,CAAAA,EAAAA,MAAAA;MAMGA,CAAAA;iBAeYD,CAAAA,SAAAA,EiBvTS,IjBuTTA,CAAAA,EiBvTa,OjBuTbA,CiBvTa,IjBuTbA,GAAAA,IAAAA,CAAAA;;;;ckB7Vf,cAAA,SAAqB,QAAQ,aAAa;oBAC3B,OAAI;;IlBAfD,EAAAA,CAAAA,aAAK,SAAA,CAAA,CAAA,kBAAA,CAAA,CAAA,IAAA,CAAA;IAAA,OAAA,CAAA,aAAA,SAAA,CAAA,CAAA,kBAAA,CAAA,CAAA,SAAA,CAAA;IAUQC,OAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,SAAAA,CAAAA;IAKGA,IAAAA,CAAAA,EAAAA,MAAAA;IAQpBC,YAAAA,CAAAA,EAAAA,MAAAA;IAkBiBD,SAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,oBAAAA,CAAAA;IAiBhBC,OAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,kBAAAA,CAAAA;IAgBcD,UAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,qBAAAA,CAAAA;IAQfC,IAAAA,CAAAA,EAAAA,OAAAA;IAkBeD,aAAAA,CAAAA,EAAAA,QAAAA,GAAAA,WAAAA,GAAAA,QAAAA,GAAAA,MAAAA,GAAAA,SAAAA;IAKFA,YAAAA,CAAAA,EAAAA,MAAAA,GAAAA,IAAAA;MAKDA;IAQZC,OAAAA,CAAAA,EAAAA;MAkBeD,IAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,oBAAAA,CAAAA,GAAAA,IAAAA;MAKFA,OAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,SAAAA,CAAAA,GAAAA,IAAAA;MAQbC,OAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,SAAAA,CAAAA,GAAAA,IAAAA;MAkBeD,YAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,cAAAA,CAAAA,GAAAA,IAAAA;MAKFA,OAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,SAAAA,CAAAA,GAAAA,IAAAA;IAKDA,CAAAA,GAAAA;MAQZC,CAAAA,GAAAA,EAAAA,MAAAA,CAAAA,EAAAA,OAAAA;IAkBeD,CAAAA;OAKHA,IAAAA,CAAAA;cAQZC,CAAAA,MAAAA,CAAAA,EkBvMmB,kBlBuMnBA,EAAAA,UAAAA,CAAAA,EkBvMoD,alBuMpDA,CAAAA,EkBvMiE,OlBuMjEA,CAAAA;IAkBeD,KAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,aAAAA,CAAAA,CAAAA,eAAAA,CAAAA;IAKHA,EAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,IAAAA,CAAAA;IAUZC,OAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,SAAAA,CAAAA;IASAA,OAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,SAAAA,CAAAA;IAMGA,IAAAA,CAAAA,EAAAA,MAAAA;IAeYD,YAAAA,CAAAA,EAAAA,MAAAA;IAYfC,SAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,oBAAAA,CAAAA;IAkBeD,OAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,kBAAAA,CAAAA;IAKDA,UAAAA,CAAAA,aAAAA,SAAAA,CAAAA,CAAAA,kBAAAA,CAAAA,CAAAA,qBAAAA,CAAAA;IAQdC,IAAAA,CAAAA,EAAAA,OAAAA;IAKAA,aAAAA,CAAAA,EAAAA,QAAAA,GAAAA,WAAAA,GAAAA,QAAAA,GAAAA,MAAAA,GAAAA,SAAAA;IAMGA,YAAAA,CAAAA,EAAAA,MAAAA,GAAAA,IAAAA;KAeYD,CAAAA;;;;;;;AAnTEA,cmB5BjB,UAAA,CnB4BiBA;mBAiBhBC,SAAAA;mBAgBcD,SAAAA;mBAQfC,MAAAA;WAkBeD,SAAAA,EAAAA,MAAAA;WAKFA,IAAAA,EmBvFA,InBuFAA;WAKDA,OAAAA,EmB1FI,OnB0FJA;WAQZC,OAAAA,EmBhGgB,OnBgGhBA;WAkBeD,YAAAA,EmBhHM,YnBgHNA;WAKFA,OAAAA,EmBnHG,OnBmHHA;WAQbC,KAAAA,EmBzHc,cnByHdA;WAkBeD,OAAAA,EAAAA,MAAAA;aAKFA,CAAAA,SAAAA,EmB3IP,InB2IOA,EAAAA,MAAAA,EAAAA,MAAAA,EAAAA,SAAAA,EAAAA,MAAAA,EAAAA,SAAAA,EAAAA,MAAAA;;;;;;;MAmEDA,oBAAAA,CAAAA,CAAAA,EmBtLO,WnBsLPA;iBAUZC,CAAAA,IAAAA,EAAAA,MAAAA,CAAAA,EAAAA,MAAAA;WASAA,CAAAA,IAAAA,EAAAA,MAAAA,CAAAA,EAAAA,MAAAA;;;;cAmDeD,CAAAA,OAAAA,EAAAA,MAAAA,CAAAA,EAAAA,MAAAA;;;;6BAwBZC,CAAAA,YAAAA,EAAAA,MAAAA,EAAAA,MAAAA,CAAAA,EAAAA,MAAAA,GAAAA,KAAAA,GAAAA,KAAAA,GAAAA,QAAAA,EAAAA,iBAAAA,CAAAA,EAAAA,MAAAA,EAAAA,WAAAA,CAAAA,EAAAA,MAAAA,CAAAA,EmB7OT,anB6OSA;;;;;;;UA8EHA,eAAAA;UAKCA,gBAAAA;;;;KoB3ZF,kBAAA;WACC;;EpBNIF,OAAAA,EAAK,MAAA;CAAA;AAUQC,KoBClB,4BAAA,GpBDkBA;WAKGA,EoBJuB,IpBIvBA;eAQpBC,EAAAA,MAAAA;;;;;;;;;AAiHeD,coBpHf,QAAA,CpBoHeA;mBAKFA,SAAAA;mBAQbC,SAAAA;mBAkBeD,SAAAA;UAKFA,OAAAA;aAKDA,CAAAA,SAAAA,EAAAA,MAAAA,EAAAA,SAAAA,EAAAA,MAAAA,EAAAA,SAAAA,EAAAA,MAAAA;;;;;YAyDGA,CAAAA,OAAAA,EoBvMJ,WpBuMIA,CoBvMQ,mBpBuMRA,CAAAA,SAAAA,CAAAA,CAAAA,CAAAA,EoBvM0C,QpBuM1CA;;;;;;;;SAgFDA,CAAAA,IAAAA,EoBvQT,0BpBuQSA,EAAAA,QAAAA,CAAAA,EAAAA,OAAAA,CAAAA,EoBvQ8C,QpBuQ9CA;;;;;;oBA+DbC,CAAAA,CAAAA,EoBxSY,QpBwSZA;;;;;;SA4CEA,CAAAA,MAAAA,EAAAA,MAAAA,GAAAA,MAAAA,CAAAA,EoBlUsB,QpBkUtBA;;;;;;UAgEHA,CAAAA,KAAAA,EAAAA,MAAAA,CAAAA,EoBpXgB,QpBoXhBA;YAMGA,CAAAA,SAAAA,EAAAA,MAAAA,GAAAA,MAAAA,CAAAA,EoBjX4B,QpBiX5BA;UAeYD,CAAAA,KAAAA,EAAAA,MAAAA,CAAAA,EoBvXC,QpBuXDA;;;;;;;WAoEEA,CAAAA,OAAAA,EAAAA;IAajBC,IAAAA,EAAAA,MAAAA;IAQAA,MAAAA,CAAAA,EAAAA,OAAAA;MoBjc+C,QpBkdhCD;;;;;;UA8DAA,CAAAA,IAAAA,CAAAA,EAAAA,MAAAA,GAAAA,MAAAA,GAAAA,OAAAA,CAAAA,EoB/f0B,QpB+f1BA;;;;;;eA4DAA,CAAAA,OAAAA,EAAAA;IAQfC,MAAAA,CAAAA,EAAAA,UAAAA,GAAAA,YAAAA,GAAAA,IAAAA;IAKAA,YAAAA,CAAAA,EAAAA,MAAAA,GAAAA,OAAAA;IAiBeD,UAAAA,CAAAA,EAAAA,OAAAA;IAQfC,UAAAA,CAAAA,EAAAA,MAAAA;IAkBeD,EAAAA,CAAAA,EAAAA,MAAAA;MoB/lBpB,QpBomBoBA;;;;;;cA8CFA,CAAAA,OAAAA,EAAAA;IASbC,MAAAA,CAAAA,EAAAA,OAAAA;IAiBeD,SAAAA,CAAAA,EAAAA,OAAAA,GAAAA,MAAAA;IAKAA,MAAAA,CAAAA,EAAAA,OAAAA,GAAAA,UAAAA;IAgBdC,iBAAAA,CAAAA,EAAAA,OAAAA;MoBhqBN,QpBgrBoBD;;;;;;;iBA0EfC,CAAAA,YAAAA,EAAAA,SAAAA,GAAAA,QAAAA,GAAAA,UAAAA,EAAAA,QAAAA,CAAAA,EAAAA,MAAAA,GAAAA,iBAAAA,GAAAA,UAAAA,CAAAA,EoB9tBN,QpB8tBMA;;;;;;aAyDeD,CAAAA,MAAAA,CAAAA,EAAAA,MAAAA,GAAAA,WAAAA,GAAAA,MAAAA,CAAAA,EoBrwBqC,QpBqwBrCA;;;;;;mBAkEAA,CAAAA,OAAAA,EAAAA;IAKAA,WAAAA,CAAAA,EAAAA,OAAAA;IAUfC,QAAAA,CAAAA,EAAAA,MAAAA;IAKAA,eAAAA,CAAAA,EAAAA,OAAAA;IAMGA,oBAAAA,CAAAA,EAAAA,YAAAA,GAAAA,iBAAAA,GAAAA,SAAAA;MoB90BR,QpB61BoBD;;;;;;;;aA4EAA,CAAAA,QAAAA,EAAAA,KAAAA,GAAAA,KAAAA,GAAAA,KAAAA,GAAAA,MAAAA,EAAAA,eAAAA,CAAAA,EAAAA,KAAAA,GAAAA,KAAAA,GAAAA,KAAAA,EAAAA,kBAAAA,CAAAA,EAAAA,OAAAA,CAAAA,EoB34BrB,QpB24BqBA;;;;;;;iBA8EfC,CAAAA,SAAAA,CAAAA,EAAAA,MAAAA,EAAAA,UAAAA,CAAAA,EAAAA,MAAAA,CAAAA,EoBx8BiD,QpBw8BjDA;;;;;;cA2DYD,CAAAA,MAAAA,EAAAA,MAAAA,CAAAA,EoBj/BS,QpBi/BTA;;;;;;UA8DGA,CAAAA,QAAAA,EAAAA,MAAAA,CAAAA,EoBjiCI,QpBiiCJA;;;;;;;;wBA0EAA,CAAAA,UAAAA,EAAAA,MAAAA,CAAAA,EoB3lCoB,QpB2lCpBA;;;;;;yBA8DAA,CAAAA,MAAAA,EoB3oCQ,4BpB2oCRA,CAAAA,EoB3oCuC,QpB2oCvCA;;;;;;YA8DAA,CAAAA,CAAAA,EoB1rCV,epB0rCUA;;;;SAoCAA,CAAAA,CAAAA,EAAAA,MAAAA;WAKAA,CAAAA,CAAAA,EoBjtCX,kBpBitCWA;UAKHA,UAAAA;;;;cqBrnDZ,YAAA,YAAwB;;;ErBRpBD,SAAK,QAAA,EAAA,MAAA;EAAA,SAAA,MAAA,EAAA,MAAA;WAUQC,MAAAA,EAAAA,MAAAA;WAKGA,SAAAA,EAAAA,MAAAA;WAQpBC,SAAAA,EAAAA,MAAAA;WAkBiBD,UAAAA,EqBzBL,IrByBKA,GAAAA,IAAAA;WAiBhBC,QAAAA,EAAAA,OAAAA;WAgBcD,cAAAA,EAAAA,MAAAA,GAAAA,IAAAA;WAQfC,YAAAA,EqB/Dc,arB+DdA,GAAAA,IAAAA;WAkBeD,KAAAA,EAAAA,MAAAA,GAAAA,IAAAA;WAKFA,aAAAA,EAAAA,MAAAA,GAAAA,IAAAA;WAKDA,aAAAA,EAAAA,MAAAA,GAAAA,IAAAA;WAQZC,QAAAA,EqB/FU,QrB+FVA,GAAAA,IAAAA;WAkBeD,WAAAA,EqBhHF,IrBgHEA,GAAAA,IAAAA;WAKFA,aAAAA,EAAAA,MAAAA,GAAAA,QAAAA,GAAAA,OAAAA,GAAAA,IAAAA;WAQbC,OAAAA,EqB3HS,IrB2HTA;aAkBeD,CAAAA,IAAAA,EqB3IN,UrB2IMA,EAAAA,OAAAA,EqB3Ie,arB2IfA,EAAAA,YAAAA,EqB3I4C,kBrB2I5CA,GAAAA,IAAAA;QAKFA,CAAAA,MAAAA,EqBjHP,IrBiHOA,CAAAA,EAAAA,OAAAA;aAKDA,CAAAA,OAAAA,EqBlHA,IrBkHAA,EAAAA,CAAAA,EAAAA,OAAAA;QAQZC,CAAAA,CAAAA,EqBtHC,YrBsHDA;;;;qBAiDeD,CAAAA,UqB5IM,MrB4INA,CAAAA,MAAAA,EAAAA,OAAAA,CAAAA,CAAAA,CAAAA,cAAAA,CAAAA,EqB5I+C,CrB4I/CA,CAAAA,EqB5I6D,uBrB4I7DA,GqB5IuF,CrB4IvFA;MAKHA,QAAAA,CAAAA,CAAAA,EAAAA,OAAAA;gBAUZC,CAAAA,CAAAA,EAAAA,OAAAA;UASAA,CAAAA,CAAAA,EAAAA,OAAAA;WAMGA,CAAAA,CAAAA,EAAAA,OAAAA;UAeYD,CAAAA,CAAAA,EAAAA,OAAAA;cAYfC,CAAAA,WAAAA,EqB3JiB,gBrB2JjBA,GAAAA,IAAAA,CAAAA,EAAAA,MAAAA;;;;csBjSA,eAAA;EtBFIF,iBAAK,GAAA;EAAA,WAAA,CAAA,GAAA,EsBGgB,UtBHhB;;;;;;;kBAkFTE,CAAAA,SAAAA,EsBvEyB,ItBuEzBA,CAAAA,EsBvEgC,OtBuEhCA,CsBvEwC,YtBuExCA,GAAAA,IAAAA,CAAAA;;;;;;sBA2DaD,CAAAA,SAAAA,EsB1GgB,ItB0GhBA,CAAAA,EsB1GuB,OtB0GvBA,CsB1G+B,YtB0G/BA,GAAAA,IAAAA,CAAAA;mBAQbC,CAAAA,YAAAA,EsBxG6B,ItBwG7BA,GsBxGoC,UtBwGpCA,EAAAA,UAAAA,CAAAA,EsBxG6D,atBwG7DA,CAAAA,EsBxG6E,OtBwG7EA,CsBxGqF,YtBwGrFA,EAAAA,CAAAA;uBAkBeD,CAAAA,YAAAA,EsB7FkB,ItB6FlBA,GsB7FyB,UtB6FzBA,EAAAA,UAAAA,CAAAA,EsB7FkD,atB6FlDA,CAAAA,EsB7FkE,OtB6FlEA,CsB7F0E,YtB6F1EA,EAAAA,CAAAA;;;;uBAoCAA,CAAAA,YAAAA,EsBxHkB,ItBwHlBA,GsBxHyB,UtBwHzBA,EAAAA,UAAAA,CAAAA,EsBxHkD,atBwHlDA,CAAAA,EsBxHkE,OtBwHlEA,CsBxH0E,YtBwH1EA,EAAAA,CAAAA;;;;;;2BAuDfC,CAAAA,MAAAA,EsBpI+B,ItBoI/BA,EAAAA,UAAAA,CAAAA,EsBpIkD,atBoIlDA,CAAAA,EsBpIkE,OtBoIlEA,CsBpI0E,YtBoI1EA,EAAAA,CAAAA;wBAMGA,CAAAA,YAAAA,EsBnIM,kBtBmINA,EAAAA,gBAAAA,CAAAA,EsBlIW,UtBkIXA,CAAAA,EsBjIT,OtBiISA,CsBjID,YtBiICA,GAAAA,IAAAA,CAAAA;8BAeYD,CAAAA,KAAAA,EAAAA,MAAAA,EAAAA,UAAAA,CAAAA,EsBzHuC,atByHvCA,CAAAA,EsBzHuD,OtByHvDA,CsBzH+D,YtByH/DA,EAAAA,CAAAA;0BAYfC,CAAAA,KAAAA,EAAAA,MAAAA,EAAAA,UAAAA,CAAAA,EsB3HkD,atB2HlDA,CAAAA,EsB3HkE,OtB2HlEA,CsB3H0E,YtB2H1EA,EAAAA,CAAAA;;;;cuBlSA,cAAA;;EvBDIF,WAAK,CAAA,GAAA,EuBEgB,UvBFhB;EAAA,QAAA,CAAA,WAAA,CAAA,EuBIW,IvBJX,CAAA,EuBIkB,OvBJlB,CuBI0B,WvBJ1B,CAAA;eAUQC,CAAAA,KAAAA,CAAAA,EuBmBJ,WvBnBIA,EAAAA,MAAAA,CAAAA,EuBmBkB,IvBnBlBA,CAAAA,EuBmByB,WvBnBzBA,CAAAA,MAAAA,CAAAA,GAAAA,IAAAA;UAKGA,cAAAA;;;;cwBjBpB,gBAAA,YAA4B;;uBACC;qBAEnB;ExBDND,aAAK,CAAA,OAAA,EwBQW,OxBRX,CAAA,EwBQqB,OxBRrB,CwBQ6B,QxBR7B,CAAA;;;;KyBCV,gBAAA,cAA8B,iBAAiB,QAAQ;cAEtD,iBAAA,YAA6B;;EzBHzBA,iBAAK,QAAA;EAAA,WAAA,CAAA,QAAA,EyBKa,ezBLb,EAAA,QAAA,CAAA,EyBMc,gBzBNd,GAAA,SAAA;WAUQC,CAAAA,OAAAA,EyBDP,OzBCOA,CAAAA,EAAAA,OAAAA;eAKGA,CAAAA,OAAAA,EyBCA,OzBDAA,CAAAA,EyBCU,OzBDVA,CyBCkB,QzBDlBA,CAAAA;;;;c0BfpB,oBAAA,YAAgC;;;;E1BA5BD,UAAK,EAAA,MAAA;EAAA,MAAA,EAAA,uBAAA,GAAA,gBAAA,GAAA,OAAA,GAAA,UAAA;YAUQC,EAAAA,MAAAA;YAKGA,E0BRjB,I1BQiBA,GAAAA,IAAAA;OAQpBC,EAAAA,MAAAA,GAAAA,IAAAA;OAkBiBD,EAAAA,MAAAA,GAAAA,MAAAA,GAAAA,IAAAA;eAiBhBC,E0B/CK,I1B+CLA,GAAAA,IAAAA;UAgBcD,E0B7Dd,Q1B6DcA;QAQfC,EAAAA,MAAAA;KAkBeD,EAAAA,MAAAA;MAKFA,EAAAA,cAAAA,GAAAA,SAAAA,GAAAA,IAAAA;iBAKDA,EAAAA,MAAAA,GAAAA,IAAAA;eAQZC,E0BpGM,a1BoGNA,GAAAA,IAAAA;YAkBeD,EAAAA,MAAAA,GAAAA,IAAAA;aAKFA,CAAAA,IAAAA,E0BvHJ,M1BuHIA,CAAAA,MAAAA,EAAAA,OAAAA,CAAAA;gBAQbC,CAAAA,CAAAA,EAAAA,OAAAA;QAkBeD,CAAAA,CAAAA,E0BpHd,oB1BoHcA;;;;K2BvKhB,gBAAA,UAA0B,yBAAyB,QAAQ;cAE1D,iBAAA,YAA6B;;;E3BFzBD,iBAAK,QAAA;EAAA,iBAAA,eAAA;aAUQC,CAAAA,SAAAA,EAAAA,MAAAA,EAAAA,QAAAA,CAAAA,EAAAA,MAAAA,GAAAA,SAAAA,EAAAA,QAAAA,CAAAA,E2BJM,gB3BINA,GAAAA,SAAAA,EAAAA,eAAAA,CAAAA,EAAAA,MAAAA,GAAAA,SAAAA;WAKGA,CAAAA,OAAAA,E2BLV,O3BKUA,CAAAA,EAAAA,OAAAA;eAQpBC,CAAAA,OAAAA,E2BPoB,O3BOpBA,CAAAA,E2BP8B,O3BO9BA,C2BPsC,Q3BOtCA,CAAAA;iBAkBiBD,CAAAA,UAAAA,EAAAA,MAAAA,CAAAA,E2BIiB,O3BJjBA,C2BIyB,oB3BJzBA,GAAAA,IAAAA,CAAAA;aAiBhBC,CAAAA,GAAAA,EAAAA,MAAAA,CAAAA,EAAAA,MAAAA;;;;AA1DGF,K4BIL,qBAAA,G5BJU;EAAA;;;;UAyCQC,CAAAA,EAAAA,MAAAA;;;;YA2DFA,CAAAA,E4BvFX,gB5BuFWA;;;;YAoCAA,CAAAA,E4BvHX,gB5BuHWA;;;;iBAoCFA,CAAAA,EAAAA,MAAAA;;AAabC,c4BjKA,wBAAA,YAAoC,gB5BiKpCA,C4BjKqD,qB5BiKrDA,CAAAA,CAAAA;mBAkBeD,QAAAA;mBAKHA,OAAAA;mBAQZC,SAAAA;aAkBeD,CAAAA,QAAAA,E4BhNO,e5BgNPA,EAAAA,OAAAA,E4B/MM,c5B+MNA,EAAAA,SAAAA,EAAAA,MAAAA;iBAKHA,CAAAA,MAAAA,E4BhNG,qB5BgNHA,CAAAA,EAAAA,CAAAA,OAAAA,E4BhNqC,O5BgNrCA,EAAAA,G4BhNiD,O5BgNjDA,C4BhNyD,Q5BgNzDA,CAAAA;SAUZC,CAAAA,MAAAA,E4BtNa,qB5BsNbA,EAAAA,OAAAA,E4BtN6C,O5BsN7CA,CAAAA,E4BtNuD,O5BsNvDA,C4BtN+D,Q5BsN/DA,CAAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBA+RiBD,CAAAA,MAAAA,EAAAA;IAKFA,QAAAA,CAAAA,EAAAA,MAAAA,GAAAA,SAAAA;IAWfC,QAAAA,CAAAA,E4B1cM,gB5B0cNA,GAAAA,SAAAA;IAiBeD,eAAAA,CAAAA,EAAAA,MAAAA,GAAAA,SAAAA;M4BzdpB,iB5B8dsBA;sBAajBC,CAAAA,MAAAA,EAAAA;IAQAA,QAAAA,CAAAA,E4B/eiC,gB5B+ejCA,GAAAA,SAAAA;M4B/ekE,iB5BggBnDD;qBAKFA,CAAAA,CAAAA,E4BjgBH,gB5BigBGA;;;;AA/lBIA,c6BHjB,eAAA,C7BGiBA;mBAKGA,GAAAA;mBAQpBC,SAAAA;mBAkBiBD,SAAAA;mBAiBhBC,SAAAA;mBAgBcD,QAAAA;mBAQfC,OAAAA;WAkBeD,OAAAA,E6B5FC,wB7B4FDA;aAKFA,CAAAA,GAAAA,E6B9FI,U7B8FJA,EAAAA,SAAAA,E6B7FU,I7B6FVA,EAAAA,SAAAA,EAAAA,MAAAA,EAAAA,SAAAA,EAAAA,MAAAA,EAAAA,QAAAA,E6B1FS,e7B0FTA,EAAAA,OAAAA,E6BzFQ,c7ByFRA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QA4TVC,CAAAA,OAAAA,CAAAA,E6BhXU,sB7BgXVA,CAAAA,E6BhXwC,O7BgXxCA,C6BhXgD,Q7BgXhDA,CAAAA;;;;;;;;kBAqFYD,CAAAA,CAAAA,E6BvYE,O7BuYFA,C6BvYU,W7BuYVA,C6BvYsB,mB7BuYtBA,CAAAA,SAAAA,CAAAA,CAAAA,CAAAA;;;;;;uBA+DAA,CAAAA,SAAAA,E6Btbe,I7BsbfA,CAAAA,E6BtbsB,O7BsbtBA,C6Btb8B,4B7Bsb9BA,CAAAA;;;;;;;;;;;;;;;;;;;;;;iBAkOAA,CAAAA,GAAAA,EAAAA,MAAAA,EAAAA,QAAAA,CAAAA,EAAAA,MAAAA,CAAAA,E6BtnBsB,O7BsnBtBA,wBAAAA,IAAAA,CAAAA;;;;c8BvxBf,WAAA;E9BJID,iBAAK,SAAA;EAAA,iBAAA,SAAA;0BAUQC,eAAAA;0BAKGA,sBAAAA;aAQpBC,CAAAA,SAAAA,E8BduB,I9BcvBA,EAAAA,SAAAA,EAAAA,MAAAA;;;;;;;;;mBAiHeD,CAAAA,MAAAA,EAAAA,MAAAA,EAAAA,MAAAA,E8B7GZ,I9B6GYA,EAAAA,aAAAA,CAAAA,EAAAA,MAAAA,CAAAA,EAAAA,MAAAA;;;;;;;;;mBAgFfC,CAAAA,KAAAA,EAAAA,MAAAA,EAAAA,MAAAA,EAAAA,MAAAA,EAAAA,MAAAA,E8BjKgD,I9BiKhDA,CAAAA,EAAAA,OAAAA;UAkBeD,kBAAAA;UAKHA,kBAAAA;UAUZC,QAAAA;UASAA,iBAAAA;;;;c+B/PP,UAAM,GAAA,CAAA;;E/BHKF,MAAAA,iBAAK,cAAA,CAAA;EAAA,KAAA,iBAAA,cAAA,CAAA;aAUQC,iBAAAA,cAAAA,CAAAA;gBAKGA,iBAAAA,cAAAA,CAAAA;cAQpBC,iBAAAA,cAAAA,CAAAA;eAkBiBD,iBAAAA,cAAAA,CAAAA;sBAiBhBC,iBAAAA,cAAAA,CAAAA;aAgBcD,iBAAAA,cAAAA,CAAAA;oBAQfC,CAAAA;AAkBeD,K+BrFhB,cAAA,GAAiB,GAAA,CAAI,K/BqFLA,CAAAA,O+BrFkB,Q/BqFlBA,CAAAA;AAKFA,c+BxFb,aAAA,YAAyB,Y/BwFZA,CAAAA;mBAKDA,GAAAA;mBAQZC,IAAAA;mBAkBeD,UAAAA;aAKFA,CAAAA,GAAAA,E+BxHI,U/BwHJA,EAAAA,IAAAA,E+BvHK,W/BuHLA;UAQbC,YAAAA;wBAkBeD,CAAAA,EAAAA,EAAAA,MAAAA,EAAAA,MAAAA,EAAAA,MAAAA,EAAAA,QAAAA,EAAAA,MAAAA,CAAAA,EAAAA,MAAAA;sBAKFA,CAAAA,OAAAA,E+BnIQ,O/BmIRA,CAAAA,EAAAA,OAAAA;WAKDA,CAAAA,OAAAA,E+B1HF,O/B0HEA,CAAAA,EAAAA,OAAAA;eAQZC,CAAAA,OAAAA,E+B3HoB,O/B2HpBA,CAAAA,E+B3H8B,O/B2H9BA,C+B3HsC,Q/B2HtCA,CAAAA;;;;cgCxLA,aAAA,YAAyB;;;EhCDrBF,iBAAK,UAAA;EAAA,WAAA,CAAA,GAAA,EgCKQ,UhCLR,EAAA,IAAA,EgCMS,WhCNT;UAUQC,YAAAA;wBAKGA,CAAAA,EAAAA,EAAAA,MAAAA,EAAAA,MAAAA,EAAAA,MAAAA,EAAAA,QAAAA,EAAAA,MAAAA,CAAAA,EAAAA,MAAAA;sBAQpBC,CAAAA,OAAAA,EgCEqB,OhCFrBA,CAAAA,EAAAA,OAAAA;WAkBiBD,CAAAA,OAAAA,EgCFP,OhCEOA,CAAAA,EAAAA,OAAAA;eAiBhBC,CAAAA,OAAAA,EgCZmB,OhCYnBA,CAAAA,EgCZ6B,OhCY7BA,CgCZqC,QhCYrCA,CAAAA;;;;ciCvDR,UAAM,GAAA,CAAA;EjCHKF,QAAK,iBAAA,cAAA,CAAA;EAAA,UAAA,iBAAA,aAAA,YAAA,CAAA;IAUQC,CAAAA,EAAAA,GAAAA;IAKGA,CAAAA,EAAAA,GAAAA;IAQpBC,CAAAA,EAAAA,GAAAA;IAkBiBD,CAAAA,EAAAA,GAAAA;IAiBhBC,CAAAA,EAAAA,GAAAA;IAgBcD,CAAAA,EAAAA,GAAAA;IAQfC,CAAAA,EAAAA,GAAAA;IAkBeD,CAAAA,EAAAA,GAAAA;IAKFA,CAAAA,EAAAA,GAAAA;IAKDA,EAAAA,EAAAA,IAAAA;IAQZC,EAAAA,EAAAA,IAAAA;IAkBeD,EAAAA,EAAAA,IAAAA;IAKFA,EAAAA,EAAAA,IAAAA;IAQbC,EAAAA,EAAAA,IAAAA;IAkBeD,EAAAA,EAAAA,IAAAA;KAKFA,CAAAA;oBAKDA,CAAAA;AAQZC,KiC/KD,+BAAA,GAAkC,GAAA,CAAI,KjC+KrCA,CAAAA,OiC/KkD,QjC+KlDA,CAAAA;AAkBeD,ciC/Lf,8BAAA,YAA0C,YjC+L3BA,CAAAA;mBAKHA,GAAAA;mBAQZC,IAAAA;mBAkBeD,UAAAA;aAKHA,CAAAA,GAAAA,EiC/NK,UjC+NLA,EAAAA,IAAAA,EiC9NM,WjC8NNA;UAUZC,YAAAA;wBASAA,CAAAA,EAAAA,EAAAA,MAAAA,EAAAA,MAAAA,EiC1OkC,IjC0OlCA,EAAAA,QAAAA,EAAAA,MAAAA,CAAAA,EAAAA,MAAAA;sBAMGA,CAAAA,OAAAA,EiCpOkB,OjCoOlBA,CAAAA,EAAAA,OAAAA;WAeYD,CAAAA,OAAAA,EiCrOL,OjCqOKA,CAAAA,EAAAA,OAAAA;eAYfC,CAAAA,OAAAA,EiC1OoB,OjC0OpBA,CAAAA,EiC1O8B,OjC0O9BA,CiC1OsC,QjC0OtCA,CAAAA;;;;ckChSP,QAAM,GAAA,CAAA;ElCHKF,QAAK,eAAA;CAAA,mBAAA,CAAA;AAUQC,KkCHlB,yBAAA,GAA4B,GAAA,CAAI,KlCGdA,CAAAA,OkCH2B,MlCG3BA,CAAAA;AAKGA,ckCNpB,+BAAA,YAA2C,YlCMvBA,CAAAA;mBAQpBC,GAAAA;mBAkBiBD,IAAAA;mBAiBhBC,UAAAA;aAgBcD,CAAAA,GAAAA,EkC7DE,UlC6DFA,EAAAA,IAAAA,EkC5DG,WlC4DHA;UAQfC,YAAAA;wBAkBeD,CAAAA,EAAAA,EAAAA,MAAAA,EAAAA,MAAAA,EkC/EmB,IlC+EnBA,EAAAA,QAAAA,EAAAA,MAAAA,CAAAA,EAAAA,MAAAA;sBAKFA,CAAAA,OAAAA,EkCxEQ,OlCwERA,CAAAA,EAAAA,OAAAA;WAKDA,CAAAA,OAAAA,EkC/DF,OlC+DEA,CAAAA,EAAAA,OAAAA;eAQZC,CAAAA,OAAAA,EkChEoB,OlCgEpBA,CAAAA,EkChE8B,OlCgE9BA,CkChEsC,QlCgEtCA,CAAAA;;;;AAtHS,cmCGT,2BAAA,CnCHS;mBAUQD,GAAAA;mBAKGA,WAAAA;WAQpBC,OAAAA,EmCnBgB,anCmBhBA;WAkBiBD,OAAAA,EmCpCD,anCoCCA;WAiBhBC,aAAAA,EmCpDqB,+BnCoDrBA;WAgBcD,aAAAA,EmCnEO,8BnCmEPA;aAQfC,CAAAA,GAAAA,EmCxEiB,UnCwEjBA,EAAAA,WAAAA,EmCvEyB,WnCuEzBA;gBAkBeD,CAAAA,CAAAA,EmCjFN,YnCiFMA,EAAAA;;;;KoC7EvB,wBAAA;EpCvBYD;;;UAegBC,EAAAA,MAAAA;;;;kBA2DLA,CAAAA,EoC3CL,IpC2CKA,GAAAA,IAAAA;;;;SAoCHA,CAAAA,EAAAA,OAAAA;;AA0BGA,KoClGhB,gCAAA,GpCkGgBA;;;;QAoCFA,EoClId,IpCkIcA;IoCjItB,wBpCsIqBA;AAQZC,KoC5ID,iCAAA,GpC4ICA;;;;OAiDeD,EAAAA,MAAAA;IoCxLxB,wBpC6LqBA;AAUZC,coCrMA,oBAAA,CpCqMAA;mBASAA,GAAAA;mBAMGA,MAAAA;mBAeYD,QAAAA;aAYfC,CAAAA,GAAAA,EoC7OiB,UpC6OjBA,EAAAA,MAAAA,EoC5OoB,2BpC4OpBA,EAAAA,QAAAA,EoC3OsB,epC2OtBA;2BAkBeD,CAAAA,MAAAA,EoC1PgB,iCpC0PhBA,CAAAA,EoC1PoD,OpC0PpDA,CoC1P4D,UpC0P5DA,GAAAA,IAAAA,CAAAA;4BAKDA,CAAAA,MAAAA,EoChPkB,gCpCgPlBA,CAAAA,EoChPqD,OpCgPrDA,CoChP6D,UpCgP7DA,GAAAA,IAAAA,CAAAA;oBAQdC,CAAAA,MAAAA,EAAAA;IAKAA,IAAAA,EoC7OC,UpC6ODA;IAMGA,QAAAA,EAAAA,MAAAA;IAeYD,gBAAAA,CAAAA,EoChQD,IpCgQCA,GAAAA,IAAAA;IAmBfC,OAAAA,CAAAA,EAAAA,OAAAA;MoCjRL,OpC2RMA,CoC3RE,UpC2RFA,GAAAA,IAAAA,CAAAA;iBAgBcD,CAAAA,MAAAA,EoCjQM,IpCiQNA,CAAAA,EoCjQa,OpCiQbA,CAAAA;IAKDA,WAAAA,EoCrQN,gBpCqQMA;IAQdC,aAAAA,EoC5QU,sBpC4QVA,EAAAA;IAKAA,QAAAA,EoChRK,apCgRLA,EAAAA;IAKCA,OAAAA,EoCpRG,apCoRHA,GAAAA,IAAAA;IAKEA,OAAAA,EoCxRC,oBpCwRDA,EAAAA,GAAAA,IAAAA;MAeYD,IAAAA,CAAAA;aAYfC,CAAAA,QAAAA,EoCjSK,apCiSLA,EAAAA,EAAAA,KAAAA,EoChSE,GpCgSFA,CAAAA,MAAAA,EoChSc,UpCgSdA,CAAAA,EAAAA,QAAAA,EoC/RK,GpC+RLA,CAAAA,MAAAA,EoC/RiB,apC+RjBA,CAAAA,EAAAA,MAAAA,EoC9RG,IpC8RHA,EAAAA,QAAAA,EAAAA,MAAAA,CAAAA,EoC5RN,apC4RMA,EAAAA;cAkBeD,CAAAA,WAAAA,EoCnSE,gBpCmSFA,CAAAA,EoCnSqB,GpCmSrBA,CAAAA,MAAAA,EoCnSiC,UpCmSjCA,CAAAA;gBAKDA,CAAAA,WAAAA,EoC7RK,gBpC6RLA,CAAAA,EoC7RwB,GpC6RxBA,CAAAA,MAAAA,EoC7RoC,apC6RpCA,CAAAA;YAKCA,CAAAA,OAAAA,EoCtRJ,apCsRIA,GAAAA,IAAAA,EAAAA,MAAAA,EoCtR0B,IpCsR1BA,EAAAA,QAAAA,EAAAA,MAAAA,CAAAA,EoCtRmD,apCsRnDA;kBASfC,CAAAA,aAAAA,EoCvRU,sBpCuRVA,EAAAA,EAAAA,KAAAA,EoCtRE,GpCsRFA,CAAAA,MAAAA,EoCtRc,UpCsRdA,CAAAA,EAAAA,QAAAA,EoCrRK,GpCqRLA,CAAAA,MAAAA,EoCrRiB,apCqRjBA,CAAAA,EAAAA,gBAAAA,EAAAA,CoCpRa,IpCoRbA,GAAAA,IAAAA,CAAAA,GAAAA,SAAAA,EAAAA,QAAAA,EAAAA,MAAAA,CAAAA,EoClRN,OpCkRMA,CoClRE,mBpCkRFA,CAAAA;;;;;;;;;;;uCA8GAA,CAAAA,YAAAA,EoC3S2C,sBpC2S3CA,CAAAA,EAAAA,OAAAA;;;;KqCllBD,eAAA,eAA8B,mBAAmB,QAAQ;;;KCGzD,mBAAA;EtCJKF,OAAAA,EsCKJ,atCLS;EAAA,SAAA,CAAA,EsCMN,etCNM;0BAUQC,CAAAA,EAAAA,OAAAA;WAKGA,CAAAA,EAAAA,OAAAA;gBAQpBC,EAAAA,MAAAA;;AAmCCA,csC9CD,sBAAA,YAAkC,gBtC8CjCA,CsC9CkD,mBtC8ClDA,CAAAA,CAAAA;mBAgBcD,UAAAA;mBAQfC,MAAAA;mBAkBeD,QAAAA;aAKFA,CAAAA,UAAAA,EsC3FW,oBtC2FXA,EAAAA,MAAAA,EsC1FO,2BtC0FPA,EAAAA,QAAAA,EsCzFS,etCyFTA;iBAKDA,CAAAA,MAAAA,EsC3FG,mBtC2FHA,CAAAA,EAAAA,CAAAA,OAAAA,EsC3FmC,OtC2FnCA,EAAAA,GsC3F+C,OtC2F/CA,CsC3FuD,QtC2FvDA,CAAAA;;;;SAuCZC,CAAAA,MAAAA,EsC3Ha,mBtC2HbA,EAAAA,OAAAA,EsC3H2C,OtC2H3CA,CAAAA,EsC3HqD,OtC2HrDA,CsC3H6D,QtC2H7DA,CAAAA;;;;AAtIoBD,cuCNpB,qBAAA,CvCMoBA;mBAQpBC,GAAAA;mBAkBiBD,QAAAA;mBAiBhBC,WAAAA;mBAgBcD,QAAAA;mBAQfC,UAAAA;WAkBeD,MAAAA,EuCxFA,2BvCwFAA;WAKFA,OAAAA,EuC5FG,sBvC4FHA;aAKDA,CAAAA,GAAAA,EuC9FK,UvC8FLA,EAAAA,QAAAA,EuC7FU,evC6FVA,EAAAA,WAAAA,EuC5Fa,WvC4FbA,EAAAA,QAAAA,EuC3FU,evC2FVA;;;;cAuCZC,CAAAA,MAAAA,EuCtHkB,gCvCsHlBA,CAAAA,EuCtHqD,OvCsHrDA,CuCtH6D,UvCsH7DA,GAAAA,IAAAA,CAAAA;qBAkBeD,CAAAA,MAAAA,EuCpIU,iCvCoIVA,CAAAA,EuCpI8C,OvCoI9CA,CuCpIsD,UvCoItDA,GAAAA,IAAAA,CAAAA;;;;gBAoCAA,CAAAA,QAAAA,EAAAA,CAAAA,QAAAA,EuCjKY,YvCiKZA,EAAAA,GuCjK6B,OvCiK7BA,CAAAA,IAAAA,CAAAA,CAAAA,EAAAA,CAAAA,SAAAA,EuCjKyD,YvCiKzDA,EAAAA,EAAAA,GuCjK4E,OvCiK5EA,CAAAA,IAAAA,CAAAA;;;;UwC9MX,mBAAA;;;;;IxCGAD,OAAK,EAAA;MAAA,OAAA,EwCGD,axCHC;MAUQC;;;MA+BAA,IAAAA,CAAAA,EwClCX,gBxCkCWA;IAiBhBC,CAAAA;IAgBcD,IAAAA,EAAAA;MAQfC;MAkBeD,UAAAA,EAAAA,MAAAA;MAKFA;MAKDA,UAAAA,EAAAA,MAAAA;IAQZC,CAAAA;;;;;oBAsDaD,EAAAA;IAKDA,OAAAA,EAAAA;MAQZC,OAAAA,EwCrKe,axCqKfA;MAkBeD,IAAAA,CAAAA,EwCvLsB,gBxCuLtBA;IAKHA,CAAAA;IAQZC,IAAAA,EAAAA;MAkBeD;MAKHA,IAAAA,EAAAA,MAAAA;MAUZC;MASAA,EAAAA,EAAAA,MAAAA;MAMGA;MAeYD,UAAAA,EAAAA,MAAAA;MAYfC;MAkBeD,UAAAA,CAAAA,EAAAA,OAAAA;IAKDA,CAAAA;;qBAadC,EAAAA;IAMGA,OAAAA,EAAAA;MAeYD,OAAAA,EwC3TA,axC2TAA;MAmBfC,IAAAA,CAAAA,EwC9UqC,gBxC8UrCA;IAUCA,CAAAA;IAgBcD,IAAAA,EAAAA;MAKDA;MAQdC,IAAAA,EAAAA,MAAAA;MAKAA;MAKCA,EAAAA,EAAAA,MAAAA;MAKEA;MAeYD,UAAAA,EAAAA,MAAAA;IAYfC,CAAAA;;;;;;;wBAkEAA,EAAAA;IAOGA,OAAAA,EAAAA;MAecD,OAAAA,EwCveF,axCueEA;MAKFA,IAAAA,CAAAA,EwC5esB,gBxC4etBA;IAWfC,CAAAA;IAiBeD,IAAAA,EAAAA;MAKEA;MAajBC,YAAAA,EAAAA,MAAAA;MAQAA;MAiBeD,UAAAA,EAAAA,MAAAA;MAKFA;MAQbC,eAAAA,EAAAA,MAAAA;MAkBeD;MAQfC,aAAAA,EAAAA,MAAAA;MAkBeD;MAKAA,UAAAA,EAAAA,MAAAA;IAQfC,CAAAA;;mBAWGA,EAAAA;IAeYD,OAAAA,EAAAA;MAQfC,OAAAA,EwC3oBQ,axC2oBRA;MAkBeD;;;;MAsCfC,IAAAA,CAAAA,EwC9rBM,gBxC8rBNA;IAkBeD,CAAAA;;mBAUFA,EAAAA;IAKDA,OAAAA,EAAAA;MAQZC,OAAAA,EwCluBQ,axCkuBRA;MAkBeD;;;;MAoCAA,IAAAA,CAAAA,EwCnxBT,gBxCmxBSA;IAKAA,CAAAA;IAgBdC,IAAAA,EAAAA;MAgBcD;MAYfC,UAAAA,EAAAA,MAAAA;IAkBeD,CAAAA;;qBAcfC,EAAAA;IAiBeD,OAAAA,EAAAA;MAKAA,OAAAA,EwCj3BP,axCi3BOA;MAQfC,IAAAA,CAAAA,EwCx3BM,gBxCw3BNA;IAkBeD,CAAAA;IAKAA,IAAAA,EAAAA;MAQfC;MAKAA,UAAAA,EAAAA,MAAAA;IAMGA,CAAAA;;mBAyBHA,EAAAA;IAkBeD,OAAAA,EAAAA;MAKAA;;;MAiCAA,OAAAA,EAAAA,KAAAA;IAKAA,CAAAA;IAUfC,IAAAA,EAAAA;MAKAA;MAMGA,UAAAA,EAAAA,MAAAA;IAeYD,CAAAA;;;;;UyCznCX,wBAAA;;;YAGC;oBACQ;MzCDJ,OAAA,EyCED,azCFC;MAAA;;;;MAyCQA,OAAAA,CAAAA,EyClCR,azCkCQA;IAiBhBC,CAAAA;IAgBcD,IAAAA,EAAAA;MAQfC;;;MA4BYD,eAAAA,EAAAA,MAAAA;MAQZC;;;MA+BAA,UAAAA,EAAAA,MAAAA;IAkBeD,CAAAA;;0BAUHA,EAAAA;IAQZC,OAAAA,EAAAA;MAkBeD,IAAAA,EyCrLV,gBzCqLUA;MAKHA,YAAAA,EyCzLC,kBzCyLDA;MAQZC,OAAAA,EyChMQ,azCgMRA;MAkBeD;;;;MA8BZC,OAAAA,CAAAA,EyC3OM,azC2ONA;IAeYD,CAAAA;IAYfC,IAAAA,EAAAA;MAkBeD;;;MAkBfC,eAAAA,EAAAA,MAAAA;MAMGA;;;MA4CFA,UAAAA,EAAAA,MAAAA;MAgBcD;;;MAkBfC,UAAAA,EAAAA,MAAAA,EAAAA;MAKCA;;;MAgCDA,MAAAA,EAAAA,MAAAA;IAkBeD,CAAAA;;+BAUAA,EAAAA;IASfC,OAAAA,EAAAA;MAMGA,IAAAA,EyCvbE,gBzCubFA;MAeYD,YAAAA,EyCrcF,kBzCqcEA;MAQfC,OAAAA,EyC5cQ,azC4cRA;MAOGA;;;;MAgDYD,OAAAA,CAAAA,EyC9fN,azC8fMA;IAKEA,CAAAA;;oCAqBjBC,EAAAA;IAiBeD,OAAAA,EAAAA;MAKFA,IAAAA,EyCziBR,gBzCyiBQA;MAQbC,YAAAA,EyChjBa,kBzCgjBbA;MAkBeD,OAAAA,EyCjkBP,azCikBOA;MAQfC;;;;MAoCAA,OAAAA,CAAAA,EyCxmBS,azCwmBTA;IAMGA,CAAAA;;;;;;;;AArrBCF,U0CEA,mBAAA,SAA4B,mB1CFvB,E0CE4C,wB1CF5C,CAAA;;;;AAyCQC,K0ClClB,gBAAA,G1CkCkBA,M0ClCO,mB1CkCPA;;;;;;;;AA+FFA,K0CxHhB,Y1CwHgBA,CAAAA,U0CxHO,gB1CwHPA,G0CxH0B,gB1CwH1BA,CAAAA,GAAAA;MAKFA,MAAAA;MAQbC,E0CnIH,C1CmIGA;SAkBeD,EAAAA,MAAAA;SAKFA,EAAAA,MAAAA,GAAAA,IAAAA;OAKDA,E0C5Jd,W1C4JcA,C0C5JF,W1C4JEA,CAAAA,OAAAA,CAAAA,CAAAA;I0C3JrB,mB1CmKSC,C0CnKW,C1CmKXA,CAAAA;;;;AAiDeD,K0C/MhB,mB1C+MgBA,CAAAA,U0C/Mc,gB1C+MdA,CAAAA,GAAAA,CAAAA,KAAAA,E0C/M0C,Y1C+M1CA,C0C/MuD,C1C+MvDA,CAAAA,EAAAA,G0C/M8D,O1C+M9DA,CAAAA,IAAAA,CAAAA;;;U2CxOX,iBAAA;WACJ,gDAAgD;oBACvC;A3CJtB;AAAsB,c2CcT,eAAA,C3CdS;mBAUQA,GAAAA;mBAKGA,SAAAA;mBAQpBC,OAAAA;mBAkBiBD,oBAAAA;UAiBhBC,aAAAA;aAgBcD,CAAAA,GAAAA,E2CxDE,U3CwDFA,EAAAA,SAAAA,EAAAA,MAAAA,EAAAA,OAAAA,CAAAA,EAAAA,CAAAA,KAAAA,EAAAA,OAAAA,EAAAA,G2CtD0B,O3CsD1BA,CAAAA,IAAAA,CAAAA,EAAAA,oBAAAA,CAAAA,E2CrDmB,2B3CqDnBA;KAQfC,U2CzDI,gB3CyDJA,CAAAA,CAAAA,IAAAA,E2CzD4B,C3CyD5BA,EAAAA,OAAAA,E2CzDwC,mB3CyDxCA,C2CzD4D,C3CyD5DA,CAAAA,CAAAA,EAAAA,IAAAA;KAkBeD,U2CzEX,gB3CyEWA,CAAAA,CAAAA,KAAAA,E2CzEc,C3CyEdA,EAAAA,EAAAA,OAAAA,E2CzE4B,mB3CyE5BA,C2CzEgD,C3CyEhDA,CAAAA,CAAAA,EAAAA,IAAAA;KAKFA,CAAAA,U2C5DR,gB3C4DQA,CAAAA,CAAAA,IAAAA,E2C5DgB,C3C4DhBA,EAAAA,OAAAA,E2C5D4B,mB3C4D5BA,C2C5DgD,C3C4DhDA,CAAAA,CAAAA,EAAAA,IAAAA;KAKDA,CAAAA,U2C/DP,gB3C+DOA,CAAAA,CAAAA,KAAAA,E2C/DkB,C3C+DlBA,EAAAA,EAAAA,OAAAA,E2C/DgC,mB3C+DhCA,C2C/DoD,C3C+DpDA,CAAAA,CAAAA,EAAAA,IAAAA;WAQZC,CAAAA,U2C/CW,gB3C+CXA,CAAAA,CAAAA,WAAAA,E2C/C0C,C3C+C1CA,G2C/C8C,C3C+C9CA,EAAAA,CAAAA,EAAAA,IAAAA;iBAkBeD,CAAAA,U2CtDE,gB3CsDFA,CAAAA,CAAAA,IAAAA,E2CtD0B,C3CsD1BA,CAAAA,EAAAA,MAAAA;mBAKFA,CAAAA,CAAAA,EAAAA,MAAAA;yBAQbC,CAAAA,CAAAA,E2CzDkB,gB3CyDlBA,EAAAA;aAkBeD,CAAAA,U2CtEF,gB3CsEEA,CAAAA,CAAAA,IAAAA,E2CtEsB,C3CsEtBA,CAAAA,EAAAA,OAAAA;YAKFA,CAAAA,U2CrED,gB3CqECA,CAAAA,CAAAA,IAAAA,E2CrEuB,C3CqEvBA,EAAAA,OAAAA,E2CrEmC,mB3CqEnCA,C2CrEuD,C3CqEvDA,CAAAA,CAAAA,EAAAA,OAAAA;aAKDA,CAAAA,U2CpEC,gB3CoEDA,CAAAA,CAAAA,IAAAA,E2CpEyB,C3CoEzBA,CAAAA,E2CpE6B,G3CoE7BA,C2CpEiC,mB3CoEjCA,C2CpEqD,gB3CoErDA,CAAAA,CAAAA;sBAQZC,CAAAA,CAAAA,EAAAA,MAAAA;;;;iBAiDeD,CAAAA,OAAAA,EAAAA,MAAAA,G2C7GU,M3C6GVA,EAAAA,SAAAA,EAAAA,MAAAA,GAAAA,IAAAA,CAAAA,EAAAA,OAAAA;;;;;SA6CAA,CAAAA,KAAAA,E2CxIH,iB3CwIGA,CAAAA,E2CxIiB,O3CwIjBA,C2CxIyB,uB3CwIzBA,CAAAA;UAYfC,gCAAAA;UAkBeD,8BAAAA;UAKDA,mBAAAA;UAQdC,YAAAA;UAKAA,SAAAA;;;;K4CxUD,qBAAA;gCACsB;yBACP;A5CD3B,CAAA;AAAsB,c4CIT,cAAA,C5CJS;mBAUQD,GAAAA;mBAKGA,SAAAA;aAQpBC,CAAAA,GAAAA,E4CjBiB,U5CiBjBA,EAAAA,SAAAA,EAAAA,MAAAA;gBAkBiBD,CAAAA,MAAAA,CAAAA,E4C/BH,qB5C+BGA,CAAAA,E4C/B0B,e5C+B1BA;wBAiBhBC,CAAAA,QAAAA,E4C1CuB,e5C0CvBA,CAAAA,EAAAA,CAAAA,OAAAA,E4C1CmD,O5C0CnDA,EAAAA,G4C1C+D,O5C0C/DA,C4C1CuE,Q5C0CvEA,CAAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAwZcD,CAAAA,QAAAA,E4CvZK,e5CuZLA,EAAAA,OAAAA,E4CvZ+B,O5CuZ/BA,CAAAA,E4CvZyC,O5CuZzCA,C4CvZiD,Q5CuZjDA,CAAAA;;;;;;;;;;;;;;;;;iBA+JfC,CAAAA,QAAAA,E4C3hBK,e5C2hBLA,EAAAA,GAAAA,E4C3hBoB,KAAA,CACL,e5C0hBfA,EAAAA,GAAAA,E4C1hB8B,KAAA,CACf,c5CyhBfA,CAAAA,E4CxhBN,O5CwhBMA,CAAAA,IAAAA,CAAAA;;;;c6ClnBA,kBAAA;;;;A7CCb;;;;WAuBaA,CAAAA,U6ChBW,uB7CgBXA,CAAAA,CAAAA,YAAAA,E6ChBkD,C7CgBlDA,EAAAA,GAAAA,IAAAA,CAAAA,E6ChB+D,C7CgB/DA,GAAAA,IAAAA;;;;;;;YAuFYD,CAAAA,U6CnFA,uB7CmFAA,CAAAA,CAAAA,YAAAA,E6CnFuC,C7CmFvCA,EAAAA,GAAAA,IAAAA,CAAAA,E6CnFoD,C7CmFpDA,EAAAA,GAAAA,IAAAA;WAQZC,CAAAA,WAAAA,E6C5Dc,uB7C4DdA,GAAAA,IAAAA,EAAAA,KAAAA,CAAAA,EAAAA,MAAAA,CAAAA,E6C5D+D,O7C4D/DA,C6C5DuE,U7C4DvEA,C6C5DkF,a7C4DlFA,CAAAA,CAAAA;;;;;;;iBAmEAA,CAAAA,WAAAA,E6C7GoB,uB7C6GpBA,GAAAA,IAAAA,CAAAA,EAAAA,MAAAA;;;;;;;gBAyEAA,CAAAA,WAAAA,E6CxJmB,uB7CwJnBA,GAAAA,IAAAA,CAAAA,EAAAA,MAAAA;;;;AAxPiBD,K8CLlB,cAAA,G9CKkBA;WAKGA,E8CTlB,I9CSkBA;QAQpBC,EAAAA,MAAAA;WAkBiBD,EAAAA,MAAAA;WAiBhBC,EAAAA,MAAAA;;AAwBDA,c8CtEA,QAAA,C9CsEAA;WAkBeD,GAAAA,E8CvFH,U9CuFGA;WAKFA,QAAAA,E8C1FI,e9C0FJA;WAKDA,QAAAA,E8C7FK,e9C6FLA;WAQZC,cAAAA,E8CnGuB,qB9CmGvBA;WAkBeD,OAAAA,E8CnHC,c9CmHDA;WAKFA,OAAAA,E8CtHG,c9CsHHA;WAQbC,WAAAA,E8C5HkB,kB9C4HlBA;mBAkBeD,IAAAA;aAKFA,CAAAA,MAAAA,E8C/IF,c9C+IEA"}