diff --git a/.apigentools-info b/.apigentools-info index e9202ca0..d9af217a 100644 --- a/.apigentools-info +++ b/.apigentools-info @@ -4,7 +4,7 @@ "spec_versions": { "v1": { "apigentools_version": "1.6.6", - "regenerated": "2025-08-05 08:10:45.512160", + "regenerated": "2025-08-05 18:24:03.101986", "spec_repo_commit": null } } diff --git a/.openapi-generator/FILES b/.openapi-generator/FILES index 5c48e478..6a557f8c 100644 --- a/.openapi-generator/FILES +++ b/.openapi-generator/FILES @@ -53,11 +53,13 @@ models/baked-recipe-templates-inner.ts models/baked-recipe.ts models/billing-info.ts models/billing-option.ts +models/billing-period.ts models/billing-price.ts models/billing-product.ts models/billing-subscription-create.ts models/billing-subscription-item.ts models/billing-subscription-update.ts +models/billing-subscription.ts models/billing-transaction-preview.ts models/billing-transaction.ts models/build-status-enum.ts @@ -125,6 +127,7 @@ models/dependency.ts models/deployment-config-update.ts models/deployment-config.ts models/docker-config.ts +models/duration.ts models/file-meta-list.ts models/file-meta.ts models/file-reference.ts @@ -190,6 +193,7 @@ models/maintainer.ts models/manifest.ts models/meta-data.ts models/metadata.ts +models/money-amount.ts models/new-application-version.ts models/new-plugin-package.ts models/new-recipe-package.ts @@ -205,6 +209,10 @@ models/organization-update.ts models/organization.ts models/package-sort-key.ts models/package-version.ts +models/paddle-billing-price.ts +models/paddle-billing-product.ts +models/paddle-billing-subscription-item.ts +models/paddle-billing-subscription-status.ts models/paused-reason.ts models/payment-method-enum.ts models/payment-method.ts @@ -228,6 +236,7 @@ models/project-sort-key.ts models/project-update.ts models/project.ts models/public-account-list.ts +models/quantity-constraints.ts models/quota-list.ts models/quota-plan.ts models/quota-type.ts diff --git a/README.md b/README.md index 25fe99d4..fa5f8b96 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ navigate to the folder of your consuming project and run one of the following co _published:_ ``` -npm install @pollination-solutions/pollination-sdk@1.8.0 --save +npm install @pollination-solutions/pollination-sdk@1.8.1 --save ``` _unPublished (not recommended):_ diff --git a/api.ts b/api.ts index 29e74f8c..d84381cf 100644 --- a/api.ts +++ b/api.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/api/accounts-api.ts b/api/accounts-api.ts index 89a7b8a5..2e1c8fd0 100644 --- a/api/accounts-api.ts +++ b/api/accounts-api.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/api/apitokens-api.ts b/api/apitokens-api.ts index fb2170f7..b3a29e40 100644 --- a/api/apitokens-api.ts +++ b/api/apitokens-api.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/api/applications-api.ts b/api/applications-api.ts index 8789abb1..a9948c8e 100644 --- a/api/applications-api.ts +++ b/api/applications-api.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/api/artifacts-api.ts b/api/artifacts-api.ts index e76702c9..069a4fee 100644 --- a/api/artifacts-api.ts +++ b/api/artifacts-api.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/api/billing-api.ts b/api/billing-api.ts index 94694be6..a2175b67 100644 --- a/api/billing-api.ts +++ b/api/billing-api.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -26,6 +26,8 @@ import type { AppServerRestBillingDtoPayLink } from '../models'; // @ts-ignore import type { BillingProduct } from '../models'; // @ts-ignore +import type { BillingSubscription } from '../models'; +// @ts-ignore import type { BillingSubscriptionCreate } from '../models'; // @ts-ignore import type { BillingSubscriptionUpdate } from '../models'; @@ -168,6 +170,47 @@ export const BillingApiAxiosParamCreator = function (configuration?: Configurati options: localVarRequestOptions, }; }, + /** + * Get a Paddle Billing subscription by its ID + * @summary Get a Paddle Billing subscription by ID + * @param {string} subscriptionId + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + getBillingSubscription: async (subscriptionId: string, options: RawAxiosRequestConfig = {}): Promise => { + // verify required parameter 'subscriptionId' is not null or undefined + assertParamExists('getBillingSubscription', 'subscriptionId', subscriptionId) + const localVarPath = `/billing/subscriptions/{subscription_id}` + .replace(`{${"subscription_id"}}`, encodeURIComponent(String(subscriptionId))); + // use dummy base URL string because the URL constructor only accepts absolute URLs. + const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); + let baseOptions; + if (configuration) { + baseOptions = configuration.baseOptions; + } + + const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options}; + const localVarHeaderParameter = {} as any; + const localVarQueryParameter = {} as any; + + // authentication JWTAuth required + // http bearer authentication required + await setBearerAuthToObject(localVarHeaderParameter, configuration) + + // authentication APIKeyAuth required + await setApiKeyToObject(localVarHeaderParameter, "x-pollination-token", configuration) + + + + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; + + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, /** * List all available products from Paddle Billing API * @summary List available Paddle Billing products @@ -237,6 +280,48 @@ export const BillingApiAxiosParamCreator = function (configuration?: Configurati + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; + + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, + /** + * List all Paddle Billing subscriptions + * @summary List all Paddle Billing subscriptions + * @param {string} [account] + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + listBillingSubscriptions: async (account?: string, options: RawAxiosRequestConfig = {}): Promise => { + const localVarPath = `/billing/subscriptions`; + // use dummy base URL string because the URL constructor only accepts absolute URLs. + const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); + let baseOptions; + if (configuration) { + baseOptions = configuration.baseOptions; + } + + const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options}; + const localVarHeaderParameter = {} as any; + const localVarQueryParameter = {} as any; + + // authentication JWTAuth required + // http bearer authentication required + await setBearerAuthToObject(localVarHeaderParameter, configuration) + + // authentication APIKeyAuth required + await setApiKeyToObject(localVarHeaderParameter, "x-pollination-token", configuration) + + if (account !== undefined) { + localVarQueryParameter['account'] = account; + } + + + setSearchParams(localVarUrlObj, localVarQueryParameter); let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; @@ -389,6 +474,19 @@ export const BillingApiFp = function(configuration?: Configuration) { const localVarOperationServerBasePath = operationServerMap['BillingApi.createBillingSubscriptionTransaction']?.[localVarOperationServerIndex]?.url; return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }, + /** + * Get a Paddle Billing subscription by its ID + * @summary Get a Paddle Billing subscription by ID + * @param {string} subscriptionId + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + async getBillingSubscription(subscriptionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + const localVarAxiosArgs = await localVarAxiosParamCreator.getBillingSubscription(subscriptionId, options); + const localVarOperationServerIndex = configuration?.serverIndex ?? 0; + const localVarOperationServerBasePath = operationServerMap['BillingApi.getBillingSubscription']?.[localVarOperationServerIndex]?.url; + return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); + }, /** * List all available products from Paddle Billing API * @summary List available Paddle Billing products @@ -414,6 +512,19 @@ export const BillingApiFp = function(configuration?: Configuration) { const localVarOperationServerBasePath = operationServerMap['BillingApi.listBillingSubscriptionTransactions']?.[localVarOperationServerIndex]?.url; return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }, + /** + * List all Paddle Billing subscriptions + * @summary List all Paddle Billing subscriptions + * @param {string} [account] + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + async listBillingSubscriptions(account?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>> { + const localVarAxiosArgs = await localVarAxiosParamCreator.listBillingSubscriptions(account, options); + const localVarOperationServerIndex = configuration?.serverIndex ?? 0; + const localVarOperationServerBasePath = operationServerMap['BillingApi.listBillingSubscriptions']?.[localVarOperationServerIndex]?.url; + return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); + }, /** * Preview the cost and details of a Billing subscription before creation * @summary Preview a Paddle Billing subscription transaction @@ -482,6 +593,16 @@ export const BillingApiFactory = function (configuration?: Configuration, basePa createBillingSubscriptionTransaction(requestParameters: BillingApiCreateBillingSubscriptionTransactionRequest, options?: RawAxiosRequestConfig): AxiosPromise { return localVarFp.createBillingSubscriptionTransaction(requestParameters.billingSubscriptionCreate, options).then((request) => request(axios, basePath)); }, + /** + * Get a Paddle Billing subscription by its ID + * @summary Get a Paddle Billing subscription by ID + * @param {BillingApiGetBillingSubscriptionRequest} requestParameters Request parameters. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + getBillingSubscription(requestParameters: BillingApiGetBillingSubscriptionRequest, options?: RawAxiosRequestConfig): AxiosPromise { + return localVarFp.getBillingSubscription(requestParameters.subscriptionId, options).then((request) => request(axios, basePath)); + }, /** * List all available products from Paddle Billing API * @summary List available Paddle Billing products @@ -501,6 +622,16 @@ export const BillingApiFactory = function (configuration?: Configuration, basePa listBillingSubscriptionTransactions(requestParameters: BillingApiListBillingSubscriptionTransactionsRequest, options?: RawAxiosRequestConfig): AxiosPromise> { return localVarFp.listBillingSubscriptionTransactions(requestParameters.subscriptionId, options).then((request) => request(axios, basePath)); }, + /** + * List all Paddle Billing subscriptions + * @summary List all Paddle Billing subscriptions + * @param {BillingApiListBillingSubscriptionsRequest} requestParameters Request parameters. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + listBillingSubscriptions(requestParameters: BillingApiListBillingSubscriptionsRequest = {}, options?: RawAxiosRequestConfig): AxiosPromise> { + return localVarFp.listBillingSubscriptions(requestParameters.account, options).then((request) => request(axios, basePath)); + }, /** * Preview the cost and details of a Billing subscription before creation * @summary Preview a Paddle Billing subscription transaction @@ -566,6 +697,20 @@ export interface BillingApiCreateBillingSubscriptionTransactionRequest { readonly billingSubscriptionCreate: BillingSubscriptionCreate } +/** + * Request parameters for getBillingSubscription operation in BillingApi. + * @export + * @interface BillingApiGetBillingSubscriptionRequest + */ +export interface BillingApiGetBillingSubscriptionRequest { + /** + * + * @type {string} + * @memberof BillingApiGetBillingSubscription + */ + readonly subscriptionId: string +} + /** * Request parameters for listBillingSubscriptionTransactions operation in BillingApi. * @export @@ -580,6 +725,20 @@ export interface BillingApiListBillingSubscriptionTransactionsRequest { readonly subscriptionId: string } +/** + * Request parameters for listBillingSubscriptions operation in BillingApi. + * @export + * @interface BillingApiListBillingSubscriptionsRequest + */ +export interface BillingApiListBillingSubscriptionsRequest { + /** + * + * @type {string} + * @memberof BillingApiListBillingSubscriptions + */ + readonly account?: string +} + /** * Request parameters for previewBillingSubscription operation in BillingApi. * @export @@ -665,6 +824,18 @@ export class BillingApi extends BaseAPI { return BillingApiFp(this.configuration).createBillingSubscriptionTransaction(requestParameters.billingSubscriptionCreate, options).then((request) => request(this.axios, this.basePath)); } + /** + * Get a Paddle Billing subscription by its ID + * @summary Get a Paddle Billing subscription by ID + * @param {BillingApiGetBillingSubscriptionRequest} requestParameters Request parameters. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof BillingApi + */ + public getBillingSubscription(requestParameters: BillingApiGetBillingSubscriptionRequest, options?: RawAxiosRequestConfig) { + return BillingApiFp(this.configuration).getBillingSubscription(requestParameters.subscriptionId, options).then((request) => request(this.axios, this.basePath)); + } + /** * List all available products from Paddle Billing API * @summary List available Paddle Billing products @@ -688,6 +859,18 @@ export class BillingApi extends BaseAPI { return BillingApiFp(this.configuration).listBillingSubscriptionTransactions(requestParameters.subscriptionId, options).then((request) => request(this.axios, this.basePath)); } + /** + * List all Paddle Billing subscriptions + * @summary List all Paddle Billing subscriptions + * @param {BillingApiListBillingSubscriptionsRequest} requestParameters Request parameters. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof BillingApi + */ + public listBillingSubscriptions(requestParameters: BillingApiListBillingSubscriptionsRequest = {}, options?: RawAxiosRequestConfig) { + return BillingApiFp(this.configuration).listBillingSubscriptions(requestParameters.account, options).then((request) => request(this.axios, this.basePath)); + } + /** * Preview the cost and details of a Billing subscription before creation * @summary Preview a Paddle Billing subscription transaction diff --git a/api/jobs-api.ts b/api/jobs-api.ts index e1811bf1..f9b5e4d4 100644 --- a/api/jobs-api.ts +++ b/api/jobs-api.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/api/licenses-api.ts b/api/licenses-api.ts index 572f6160..d003391e 100644 --- a/api/licenses-api.ts +++ b/api/licenses-api.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/api/orgs-api.ts b/api/orgs-api.ts index fe680b13..78db7a85 100644 --- a/api/orgs-api.ts +++ b/api/orgs-api.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/api/plugins-api.ts b/api/plugins-api.ts index 9e472aaa..ed082ec8 100644 --- a/api/plugins-api.ts +++ b/api/plugins-api.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/api/projects-api.ts b/api/projects-api.ts index a4dd93f1..1d12af74 100644 --- a/api/projects-api.ts +++ b/api/projects-api.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/api/recipes-api.ts b/api/recipes-api.ts index 7f02f21c..c5629c25 100644 --- a/api/recipes-api.ts +++ b/api/recipes-api.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/api/registries-api.ts b/api/registries-api.ts index d3f6f3e8..230bc857 100644 --- a/api/registries-api.ts +++ b/api/registries-api.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/api/reports-api.ts b/api/reports-api.ts index af8d9938..56170392 100644 --- a/api/reports-api.ts +++ b/api/reports-api.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/api/runs-api.ts b/api/runs-api.ts index 97e81cad..576f3103 100644 --- a/api/runs-api.ts +++ b/api/runs-api.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/api/subscription-plans-api.ts b/api/subscription-plans-api.ts index 9df9ae7b..5a5a55cb 100644 --- a/api/subscription-plans-api.ts +++ b/api/subscription-plans-api.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/api/subscriptions-api.ts b/api/subscriptions-api.ts index 3bcb2c64..9bc21da3 100644 --- a/api/subscriptions-api.ts +++ b/api/subscriptions-api.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/api/teams-api.ts b/api/teams-api.ts index d981aaca..9a42d69a 100644 --- a/api/teams-api.ts +++ b/api/teams-api.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/api/user-api.ts b/api/user-api.ts index 89011075..4e8a91cd 100644 --- a/api/user-api.ts +++ b/api/user-api.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/api/users-api.ts b/api/users-api.ts index 6f9a60a5..4c9077ee 100644 --- a/api/users-api.ts +++ b/api/users-api.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/base.ts b/base.ts index 71e806d7..2394337b 100644 --- a/base.ts +++ b/base.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/common.ts b/common.ts index 4149e7a2..9d1935e0 100644 --- a/common.ts +++ b/common.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/configuration.ts b/configuration.ts index 39062fdb..8d308d48 100644 --- a/configuration.ts +++ b/configuration.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/index.ts b/index.ts index 0e1a6f77..d42aba71 100644 --- a/index.ts +++ b/index.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/accessor.ts b/models/accessor.ts index 8c37a003..e3cddc0d 100644 --- a/models/accessor.ts +++ b/models/accessor.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/account-public.ts b/models/account-public.ts index 8024272d..ab8bab50 100644 --- a/models/account-public.ts +++ b/models/account-public.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/account-type.ts b/models/account-type.ts index bc7c1072..b7707840 100644 --- a/models/account-type.ts +++ b/models/account-type.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/activation-list.ts b/models/activation-list.ts index cec0b077..fc23e7d3 100644 --- a/models/activation-list.ts +++ b/models/activation-list.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/activation.ts b/models/activation.ts index 2312e814..8202563e 100644 --- a/models/activation.ts +++ b/models/activation.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/apitoken-create.ts b/models/apitoken-create.ts index 01436479..2a42e3d5 100644 --- a/models/apitoken-create.ts +++ b/models/apitoken-create.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/apitoken-list.ts b/models/apitoken-list.ts index afb659c1..c3c98579 100644 --- a/models/apitoken-list.ts +++ b/models/apitoken-list.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/apitoken-private.ts b/models/apitoken-private.ts index 95f3eea4..58f7a6b5 100644 --- a/models/apitoken-private.ts +++ b/models/apitoken-private.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/apitoken.ts b/models/apitoken.ts index f5cec346..eba0fc64 100644 --- a/models/apitoken.ts +++ b/models/apitoken.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/app-server-rest-billing-dto-pay-link.ts b/models/app-server-rest-billing-dto-pay-link.ts index 9de42303..49781100 100644 --- a/models/app-server-rest-billing-dto-pay-link.ts +++ b/models/app-server-rest-billing-dto-pay-link.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/app-server-rest-subscriptions-dto-pay-link.ts b/models/app-server-rest-subscriptions-dto-pay-link.ts index ead7f0d2..7b5f4ba5 100644 --- a/models/app-server-rest-subscriptions-dto-pay-link.ts +++ b/models/app-server-rest-subscriptions-dto-pay-link.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/application-access-policy-list.ts b/models/application-access-policy-list.ts index 0b5f1766..99004325 100644 --- a/models/application-access-policy-list.ts +++ b/models/application-access-policy-list.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/application-access-policy.ts b/models/application-access-policy.ts index 5803af08..f8fae051 100644 --- a/models/application-access-policy.ts +++ b/models/application-access-policy.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/application-create.ts b/models/application-create.ts index 22d461b9..baf325f8 100644 --- a/models/application-create.ts +++ b/models/application-create.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/application-deployment.ts b/models/application-deployment.ts index a46ac03a..6f9a05a0 100644 --- a/models/application-deployment.ts +++ b/models/application-deployment.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/application-list.ts b/models/application-list.ts index 6a75e66f..99d4abb4 100644 --- a/models/application-list.ts +++ b/models/application-list.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/application-policy-subject.ts b/models/application-policy-subject.ts index a5590ba7..08a5a317 100644 --- a/models/application-policy-subject.ts +++ b/models/application-policy-subject.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/application-sort-key.ts b/models/application-sort-key.ts index 9403ed56..7bc8c231 100644 --- a/models/application-sort-key.ts +++ b/models/application-sort-key.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/application-update.ts b/models/application-update.ts index 68727ecd..f6b83063 100644 --- a/models/application-update.ts +++ b/models/application-update.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/application-version-list.ts b/models/application-version-list.ts index 8e3cfefb..1a40b29e 100644 --- a/models/application-version-list.ts +++ b/models/application-version-list.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/application-version.ts b/models/application-version.ts index 4d1d2a57..954e57d3 100644 --- a/models/application-version.ts +++ b/models/application-version.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/application.ts b/models/application.ts index f1bf25ce..121fd7bc 100644 --- a/models/application.ts +++ b/models/application.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/baked-recipe-templates-inner.ts b/models/baked-recipe-templates-inner.ts index b0431753..67958dff 100644 --- a/models/baked-recipe-templates-inner.ts +++ b/models/baked-recipe-templates-inner.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/baked-recipe.ts b/models/baked-recipe.ts index 81ccac2b..6ea127e2 100644 --- a/models/baked-recipe.ts +++ b/models/baked-recipe.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/billing-info.ts b/models/billing-info.ts index cc24d20d..5dd78377 100644 --- a/models/billing-info.ts +++ b/models/billing-info.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/billing-option.ts b/models/billing-option.ts index 853c0129..7645568c 100644 --- a/models/billing-option.ts +++ b/models/billing-option.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/billing-period.ts b/models/billing-period.ts new file mode 100644 index 00000000..8d26a74f --- /dev/null +++ b/models/billing-period.ts @@ -0,0 +1,36 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * pollination-server + * Pollination Server OpenAPI Definition + * + * The version of the OpenAPI document: 1.8.1 + * Contact: info@pollination.solutions + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + + +/** + * + * @export + * @interface BillingPeriod + */ +export interface BillingPeriod { + /** + * + * @type {string} + * @memberof BillingPeriod + */ + 'ends_at': string; + /** + * + * @type {string} + * @memberof BillingPeriod + */ + 'starts_at': string; +} + diff --git a/models/billing-price.ts b/models/billing-price.ts index 1d79fa0f..cce3bcc5 100644 --- a/models/billing-price.ts +++ b/models/billing-price.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/billing-product.ts b/models/billing-product.ts index 129c2502..0daf848f 100644 --- a/models/billing-product.ts +++ b/models/billing-product.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/billing-subscription-create.ts b/models/billing-subscription-create.ts index 723cefd5..02ed97fe 100644 --- a/models/billing-subscription-create.ts +++ b/models/billing-subscription-create.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/billing-subscription-item.ts b/models/billing-subscription-item.ts index b65c049a..b5d19c15 100644 --- a/models/billing-subscription-item.ts +++ b/models/billing-subscription-item.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/billing-subscription-update.ts b/models/billing-subscription-update.ts index ccc54328..c067b875 100644 --- a/models/billing-subscription-update.ts +++ b/models/billing-subscription-update.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/billing-subscription.ts b/models/billing-subscription.ts new file mode 100644 index 00000000..6e2107e0 --- /dev/null +++ b/models/billing-subscription.ts @@ -0,0 +1,152 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * pollination-server + * Pollination Server OpenAPI Definition + * + * The version of the OpenAPI document: 1.8.1 + * Contact: info@pollination.solutions + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +// May contain unused imports in some cases +// @ts-ignore +import type { BillingPeriod } from './billing-period'; +// May contain unused imports in some cases +// @ts-ignore +import type { Duration } from './duration'; +// May contain unused imports in some cases +// @ts-ignore +import type { PaddleBillingSubscriptionItem } from './paddle-billing-subscription-item'; +// May contain unused imports in some cases +// @ts-ignore +import type { PaddleBillingSubscriptionStatus } from './paddle-billing-subscription-status'; + +/** + * DTO for Paddle Billing Subscription + * @export + * @interface BillingSubscription + */ +export interface BillingSubscription { + /** + * + * @type {Duration} + * @memberof BillingSubscription + */ + 'billing_cycle'?: Duration; + /** + * + * @type {object} + * @memberof BillingSubscription + */ + 'billing_details'?: object; + /** + * + * @type {string} + * @memberof BillingSubscription + */ + 'canceled_at'?: string; + /** + * + * @type {string} + * @memberof BillingSubscription + */ + 'collection_mode'?: string; + /** + * + * @type {string} + * @memberof BillingSubscription + */ + 'created_at': string; + /** + * + * @type {string} + * @memberof BillingSubscription + */ + 'currency_code': string; + /** + * + * @type {BillingPeriod} + * @memberof BillingSubscription + */ + 'current_billing_period'?: BillingPeriod; + /** + * + * @type {object} + * @memberof BillingSubscription + */ + 'custom_data'?: object; + /** + * + * @type {string} + * @memberof BillingSubscription + */ + 'customer_id': string; + /** + * + * @type {object} + * @memberof BillingSubscription + */ + 'discount'?: object; + /** + * + * @type {string} + * @memberof BillingSubscription + */ + 'first_billed_at'?: string; + /** + * + * @type {string} + * @memberof BillingSubscription + */ + 'id': string; + /** + * + * @type {Array} + * @memberof BillingSubscription + */ + 'items': Array; + /** + * + * @type {string} + * @memberof BillingSubscription + */ + 'next_billed_at'?: string; + /** + * + * @type {string} + * @memberof BillingSubscription + */ + 'paused_at'?: string; + /** + * + * @type {object} + * @memberof BillingSubscription + */ + 'scheduled_change'?: object; + /** + * + * @type {string} + * @memberof BillingSubscription + */ + 'started_at'?: string; + /** + * + * @type {PaddleBillingSubscriptionStatus} + * @memberof BillingSubscription + */ + 'status': PaddleBillingSubscriptionStatus; + /** + * + * @type {string} + * @memberof BillingSubscription + */ + 'updated_at': string; +} + + + diff --git a/models/billing-transaction-preview.ts b/models/billing-transaction-preview.ts index e43b1db5..52ebde3a 100644 --- a/models/billing-transaction-preview.ts +++ b/models/billing-transaction-preview.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/billing-transaction.ts b/models/billing-transaction.ts index 53417f1a..6df8ca51 100644 --- a/models/billing-transaction.ts +++ b/models/billing-transaction.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/build-status-enum.ts b/models/build-status-enum.ts index 021446a7..f058bace 100644 --- a/models/build-status-enum.ts +++ b/models/build-status-enum.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/build-status.ts b/models/build-status.ts index 4d8db6a6..5724eb35 100644 --- a/models/build-status.ts +++ b/models/build-status.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/cadlicense-usage.ts b/models/cadlicense-usage.ts index 4c510c1e..3f18282c 100644 --- a/models/cadlicense-usage.ts +++ b/models/cadlicense-usage.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/card-type.ts b/models/card-type.ts index d816c951..41bc9595 100644 --- a/models/card-type.ts +++ b/models/card-type.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/cloud-job-list.ts b/models/cloud-job-list.ts index cc9b74c1..26d40719 100644 --- a/models/cloud-job-list.ts +++ b/models/cloud-job-list.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/cloud-job.ts b/models/cloud-job.ts index ac6e68b4..e726cac9 100644 --- a/models/cloud-job.ts +++ b/models/cloud-job.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/created-content.ts b/models/created-content.ts index d9eb1088..947368a3 100644 --- a/models/created-content.ts +++ b/models/created-content.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dag.ts b/models/dag.ts index d726eccb..b7dc8fce 100644 --- a/models/dag.ts +++ b/models/dag.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagarray-input-alias-inner.ts b/models/dagarray-input-alias-inner.ts index a124909f..07797d17 100644 --- a/models/dagarray-input-alias-inner.ts +++ b/models/dagarray-input-alias-inner.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagarray-input-alias.ts b/models/dagarray-input-alias.ts index 805e9d6f..49db08c4 100644 --- a/models/dagarray-input-alias.ts +++ b/models/dagarray-input-alias.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagarray-input.ts b/models/dagarray-input.ts index 179502d2..5e871613 100644 --- a/models/dagarray-input.ts +++ b/models/dagarray-input.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagarray-output-alias-inner.ts b/models/dagarray-output-alias-inner.ts index 8b2def96..188604b7 100644 --- a/models/dagarray-output-alias-inner.ts +++ b/models/dagarray-output-alias-inner.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagarray-output-alias.ts b/models/dagarray-output-alias.ts index 8722bf5c..6e4a52d1 100644 --- a/models/dagarray-output-alias.ts +++ b/models/dagarray-output-alias.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagarray-output.ts b/models/dagarray-output.ts index f949b60c..df6dd523 100644 --- a/models/dagarray-output.ts +++ b/models/dagarray-output.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagboolean-input-alias.ts b/models/dagboolean-input-alias.ts index 9ac0fa31..7c07e45c 100644 --- a/models/dagboolean-input-alias.ts +++ b/models/dagboolean-input-alias.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagboolean-input.ts b/models/dagboolean-input.ts index 7eef7920..3609a35b 100644 --- a/models/dagboolean-input.ts +++ b/models/dagboolean-input.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagboolean-output-alias.ts b/models/dagboolean-output-alias.ts index 68c3398f..01de70b7 100644 --- a/models/dagboolean-output-alias.ts +++ b/models/dagboolean-output-alias.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagboolean-output.ts b/models/dagboolean-output.ts index 813bc786..563cb009 100644 --- a/models/dagboolean-output.ts +++ b/models/dagboolean-output.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagfile-input-alias.ts b/models/dagfile-input-alias.ts index 7df2edde..4424de15 100644 --- a/models/dagfile-input-alias.ts +++ b/models/dagfile-input-alias.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagfile-input.ts b/models/dagfile-input.ts index 973c0d19..aa2ba247 100644 --- a/models/dagfile-input.ts +++ b/models/dagfile-input.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagfile-output-alias.ts b/models/dagfile-output-alias.ts index cf22cd74..5fd789af 100644 --- a/models/dagfile-output-alias.ts +++ b/models/dagfile-output-alias.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagfile-output.ts b/models/dagfile-output.ts index 37668766..b0f2dc36 100644 --- a/models/dagfile-output.ts +++ b/models/dagfile-output.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagfolder-input-alias.ts b/models/dagfolder-input-alias.ts index 1dd1ff50..48493943 100644 --- a/models/dagfolder-input-alias.ts +++ b/models/dagfolder-input-alias.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagfolder-input.ts b/models/dagfolder-input.ts index a96cc07a..5944f85a 100644 --- a/models/dagfolder-input.ts +++ b/models/dagfolder-input.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagfolder-output-alias.ts b/models/dagfolder-output-alias.ts index 9d6b2b21..94acd1b7 100644 --- a/models/dagfolder-output-alias.ts +++ b/models/dagfolder-output-alias.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagfolder-output.ts b/models/dagfolder-output.ts index dee505ad..91015c63 100644 --- a/models/dagfolder-output.ts +++ b/models/dagfolder-output.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/daggeneric-input-alias.ts b/models/daggeneric-input-alias.ts index f758df61..74ff0333 100644 --- a/models/daggeneric-input-alias.ts +++ b/models/daggeneric-input-alias.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/daggeneric-input.ts b/models/daggeneric-input.ts index 064fb33e..0c16b729 100644 --- a/models/daggeneric-input.ts +++ b/models/daggeneric-input.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/daggeneric-output-alias.ts b/models/daggeneric-output-alias.ts index c2df3c27..f30997e6 100644 --- a/models/daggeneric-output-alias.ts +++ b/models/daggeneric-output-alias.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/daggeneric-output.ts b/models/daggeneric-output.ts index c5701e44..cdb59c9e 100644 --- a/models/daggeneric-output.ts +++ b/models/daggeneric-output.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/daginputs-inner.ts b/models/daginputs-inner.ts index b43c0610..c9f469c4 100644 --- a/models/daginputs-inner.ts +++ b/models/daginputs-inner.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/daginteger-input-alias.ts b/models/daginteger-input-alias.ts index 41c3769b..c69f197e 100644 --- a/models/daginteger-input-alias.ts +++ b/models/daginteger-input-alias.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/daginteger-input.ts b/models/daginteger-input.ts index a34dc2e1..5996ede3 100644 --- a/models/daginteger-input.ts +++ b/models/daginteger-input.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/daginteger-output-alias.ts b/models/daginteger-output-alias.ts index 63f9f696..a602ecbd 100644 --- a/models/daginteger-output-alias.ts +++ b/models/daginteger-output-alias.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/daginteger-output.ts b/models/daginteger-output.ts index bb6b9e7c..9d1a3301 100644 --- a/models/daginteger-output.ts +++ b/models/daginteger-output.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagjsonobject-input-alias.ts b/models/dagjsonobject-input-alias.ts index b9a0b8f9..ae74819c 100644 --- a/models/dagjsonobject-input-alias.ts +++ b/models/dagjsonobject-input-alias.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagjsonobject-input.ts b/models/dagjsonobject-input.ts index ff9cac71..4d5b7b25 100644 --- a/models/dagjsonobject-input.ts +++ b/models/dagjsonobject-input.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagjsonobject-output-alias.ts b/models/dagjsonobject-output-alias.ts index 22e15daf..41a8ee00 100644 --- a/models/dagjsonobject-output-alias.ts +++ b/models/dagjsonobject-output-alias.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagjsonobject-output.ts b/models/dagjsonobject-output.ts index 8ce0caa4..fda6fac0 100644 --- a/models/dagjsonobject-output.ts +++ b/models/dagjsonobject-output.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/daglinked-input-alias.ts b/models/daglinked-input-alias.ts index f9c984e0..8657d311 100644 --- a/models/daglinked-input-alias.ts +++ b/models/daglinked-input-alias.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/daglinked-output-alias.ts b/models/daglinked-output-alias.ts index d5bfd538..89802501 100644 --- a/models/daglinked-output-alias.ts +++ b/models/daglinked-output-alias.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagnumber-input-alias.ts b/models/dagnumber-input-alias.ts index 1bbe6e93..01fe0696 100644 --- a/models/dagnumber-input-alias.ts +++ b/models/dagnumber-input-alias.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagnumber-input.ts b/models/dagnumber-input.ts index a54cffb5..ac36782c 100644 --- a/models/dagnumber-input.ts +++ b/models/dagnumber-input.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagnumber-output-alias.ts b/models/dagnumber-output-alias.ts index 97b5eb6c..25a67c0f 100644 --- a/models/dagnumber-output-alias.ts +++ b/models/dagnumber-output-alias.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagnumber-output.ts b/models/dagnumber-output.ts index 686c36cd..3aef1672 100644 --- a/models/dagnumber-output.ts +++ b/models/dagnumber-output.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagoutputs-inner.ts b/models/dagoutputs-inner.ts index 7ea3e96b..56ad1bed 100644 --- a/models/dagoutputs-inner.ts +++ b/models/dagoutputs-inner.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagpath-input-alias.ts b/models/dagpath-input-alias.ts index a69c389e..3009cf4e 100644 --- a/models/dagpath-input-alias.ts +++ b/models/dagpath-input-alias.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagpath-input.ts b/models/dagpath-input.ts index 1e1dfecd..0bfcfa98 100644 --- a/models/dagpath-input.ts +++ b/models/dagpath-input.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagpath-output-alias.ts b/models/dagpath-output-alias.ts index 7b3b85c6..6644c0f3 100644 --- a/models/dagpath-output-alias.ts +++ b/models/dagpath-output-alias.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagpath-output.ts b/models/dagpath-output.ts index a72e8ca3..53453980 100644 --- a/models/dagpath-output.ts +++ b/models/dagpath-output.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagstring-input-alias.ts b/models/dagstring-input-alias.ts index eabd7858..f9b13853 100644 --- a/models/dagstring-input-alias.ts +++ b/models/dagstring-input-alias.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagstring-input.ts b/models/dagstring-input.ts index 5e89c510..a9144144 100644 --- a/models/dagstring-input.ts +++ b/models/dagstring-input.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagstring-output-alias.ts b/models/dagstring-output-alias.ts index f3bc00f6..37af315a 100644 --- a/models/dagstring-output-alias.ts +++ b/models/dagstring-output-alias.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagstring-output.ts b/models/dagstring-output.ts index 35e97bfa..084d285f 100644 --- a/models/dagstring-output.ts +++ b/models/dagstring-output.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagtask-arguments-inner.ts b/models/dagtask-arguments-inner.ts index 082a2523..99407549 100644 --- a/models/dagtask-arguments-inner.ts +++ b/models/dagtask-arguments-inner.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagtask-loop.ts b/models/dagtask-loop.ts index 4524f495..997aa85a 100644 --- a/models/dagtask-loop.ts +++ b/models/dagtask-loop.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagtask-returns-inner.ts b/models/dagtask-returns-inner.ts index 1a86014c..4ac31145 100644 --- a/models/dagtask-returns-inner.ts +++ b/models/dagtask-returns-inner.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dagtask.ts b/models/dagtask.ts index de7f17ee..6d43875f 100644 --- a/models/dagtask.ts +++ b/models/dagtask.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/daily-usage.ts b/models/daily-usage.ts index d9d19067..3e3970d4 100644 --- a/models/daily-usage.ts +++ b/models/daily-usage.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/default.ts b/models/default.ts index 0d73d476..3105a194 100644 --- a/models/default.ts +++ b/models/default.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dependency-kind.ts b/models/dependency-kind.ts index 88a43ec0..159b2ea8 100644 --- a/models/dependency-kind.ts +++ b/models/dependency-kind.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/dependency.ts b/models/dependency.ts index d096d9a9..0cb10085 100644 --- a/models/dependency.ts +++ b/models/dependency.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/deployment-config-update.ts b/models/deployment-config-update.ts index 8b9fcbcd..33016af1 100644 --- a/models/deployment-config-update.ts +++ b/models/deployment-config-update.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/deployment-config.ts b/models/deployment-config.ts index a57f72ff..56f32abc 100644 --- a/models/deployment-config.ts +++ b/models/deployment-config.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/docker-config.ts b/models/docker-config.ts index a593e11e..7d0ca696 100644 --- a/models/docker-config.ts +++ b/models/docker-config.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/duration.ts b/models/duration.ts new file mode 100644 index 00000000..baba2833 --- /dev/null +++ b/models/duration.ts @@ -0,0 +1,36 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * pollination-server + * Pollination Server OpenAPI Definition + * + * The version of the OpenAPI document: 1.8.1 + * Contact: info@pollination.solutions + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + + +/** + * + * @export + * @interface Duration + */ +export interface Duration { + /** + * + * @type {number} + * @memberof Duration + */ + 'frequency': number; + /** + * + * @type {string} + * @memberof Duration + */ + 'interval': string; +} + diff --git a/models/file-meta-list.ts b/models/file-meta-list.ts index c88eebfc..bff5c3b8 100644 --- a/models/file-meta-list.ts +++ b/models/file-meta-list.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/file-meta.ts b/models/file-meta.ts index a588c4d6..ab6a3181 100644 --- a/models/file-meta.ts +++ b/models/file-meta.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/file-reference.ts b/models/file-reference.ts index 9cfb6bb7..fe2f3c54 100644 --- a/models/file-reference.ts +++ b/models/file-reference.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/folder-reference.ts b/models/folder-reference.ts index 26820782..2466ed68 100644 --- a/models/folder-reference.ts +++ b/models/folder-reference.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/from.ts b/models/from.ts index 77fd626e..bb413f8b 100644 --- a/models/from.ts +++ b/models/from.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/from1.ts b/models/from1.ts index c2637ed1..5689aec7 100644 --- a/models/from1.ts +++ b/models/from1.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/from2.ts b/models/from2.ts index e0d2e78c..601f71f5 100644 --- a/models/from2.ts +++ b/models/from2.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/from3.ts b/models/from3.ts index eba6b88a..a39df3ad 100644 --- a/models/from3.ts +++ b/models/from3.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/from4.ts b/models/from4.ts index 11ae01e8..946707bb 100644 --- a/models/from4.ts +++ b/models/from4.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/from5.ts b/models/from5.ts index d5bbce82..fad7d908 100644 --- a/models/from5.ts +++ b/models/from5.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/function-array-input.ts b/models/function-array-input.ts index 6b8cbf4d..d9b36665 100644 --- a/models/function-array-input.ts +++ b/models/function-array-input.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/function-array-output.ts b/models/function-array-output.ts index 8c490d29..811e0a64 100644 --- a/models/function-array-output.ts +++ b/models/function-array-output.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/function-boolean-input.ts b/models/function-boolean-input.ts index 7e6006dd..38041447 100644 --- a/models/function-boolean-input.ts +++ b/models/function-boolean-input.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/function-boolean-output.ts b/models/function-boolean-output.ts index d91a230a..b82d16d4 100644 --- a/models/function-boolean-output.ts +++ b/models/function-boolean-output.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/function-file-input.ts b/models/function-file-input.ts index c8233aab..37f4b2ab 100644 --- a/models/function-file-input.ts +++ b/models/function-file-input.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/function-file-output.ts b/models/function-file-output.ts index 8317b9da..2a7482ec 100644 --- a/models/function-file-output.ts +++ b/models/function-file-output.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/function-folder-input.ts b/models/function-folder-input.ts index 9903d642..e2a56b18 100644 --- a/models/function-folder-input.ts +++ b/models/function-folder-input.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/function-folder-output.ts b/models/function-folder-output.ts index a47d7c43..20d1a7d8 100644 --- a/models/function-folder-output.ts +++ b/models/function-folder-output.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/function-inputs-inner.ts b/models/function-inputs-inner.ts index 7c5a8478..45c3307e 100644 --- a/models/function-inputs-inner.ts +++ b/models/function-inputs-inner.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/function-integer-input.ts b/models/function-integer-input.ts index 342528ac..3dd8a65e 100644 --- a/models/function-integer-input.ts +++ b/models/function-integer-input.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/function-integer-output.ts b/models/function-integer-output.ts index 2b0710b9..5474d2f0 100644 --- a/models/function-integer-output.ts +++ b/models/function-integer-output.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/function-jsonobject-input.ts b/models/function-jsonobject-input.ts index 86b5b2cb..d96d9702 100644 --- a/models/function-jsonobject-input.ts +++ b/models/function-jsonobject-input.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/function-jsonobject-output.ts b/models/function-jsonobject-output.ts index 6167160c..d37e4d9b 100644 --- a/models/function-jsonobject-output.ts +++ b/models/function-jsonobject-output.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/function-number-input.ts b/models/function-number-input.ts index 8c0fc4e8..297df924 100644 --- a/models/function-number-input.ts +++ b/models/function-number-input.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/function-number-output.ts b/models/function-number-output.ts index 09548ba7..2a1d5d6e 100644 --- a/models/function-number-output.ts +++ b/models/function-number-output.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/function-outputs-inner.ts b/models/function-outputs-inner.ts index 420a90e8..98f96efb 100644 --- a/models/function-outputs-inner.ts +++ b/models/function-outputs-inner.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/function-path-input.ts b/models/function-path-input.ts index 1e13a59d..a369885d 100644 --- a/models/function-path-input.ts +++ b/models/function-path-input.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/function-path-output.ts b/models/function-path-output.ts index 153cd5ec..70830a51 100644 --- a/models/function-path-output.ts +++ b/models/function-path-output.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/function-string-input.ts b/models/function-string-input.ts index c9a55bdd..1195d1e3 100644 --- a/models/function-string-input.ts +++ b/models/function-string-input.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/function-string-output.ts b/models/function-string-output.ts index 74c0e3b3..68f45152 100644 --- a/models/function-string-output.ts +++ b/models/function-string-output.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/function.ts b/models/function.ts index a4536980..ed9f61ac 100644 --- a/models/function.ts +++ b/models/function.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/http.ts b/models/http.ts index 99164e0c..be534102 100644 --- a/models/http.ts +++ b/models/http.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/httpvalidation-error.ts b/models/httpvalidation-error.ts index 6e218961..e4a5eaf9 100644 --- a/models/httpvalidation-error.ts +++ b/models/httpvalidation-error.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/index.ts b/models/index.ts index 1439f8c5..b13d5559 100644 --- a/models/index.ts +++ b/models/index.ts @@ -24,8 +24,10 @@ export * from './baked-recipe'; export * from './baked-recipe-templates-inner'; export * from './billing-info'; export * from './billing-option'; +export * from './billing-period'; export * from './billing-price'; export * from './billing-product'; +export * from './billing-subscription'; export * from './billing-subscription-create'; export * from './billing-subscription-item'; export * from './billing-subscription-update'; @@ -96,6 +98,7 @@ export * from './dependency-kind'; export * from './deployment-config'; export * from './deployment-config-update'; export * from './docker-config'; +export * from './duration'; export * from './file-meta'; export * from './file-meta-list'; export * from './file-reference'; @@ -160,6 +163,7 @@ export * from './maintainer'; export * from './manifest'; export * from './meta-data'; export * from './metadata'; +export * from './money-amount'; export * from './new-application-version'; export * from './new-plugin-package'; export * from './new-recipe-package'; @@ -175,6 +179,10 @@ export * from './organization-role-enum'; export * from './organization-update'; export * from './package-sort-key'; export * from './package-version'; +export * from './paddle-billing-price'; +export * from './paddle-billing-product'; +export * from './paddle-billing-subscription-item'; +export * from './paddle-billing-subscription-status'; export * from './paused-reason'; export * from './payment'; export * from './payment-method'; @@ -198,6 +206,7 @@ export * from './project-recipe-filter-list'; export * from './project-sort-key'; export * from './project-update'; export * from './public-account-list'; +export * from './quantity-constraints'; export * from './quota'; export * from './quota-list'; export * from './quota-plan'; diff --git a/models/input-file-reference.ts b/models/input-file-reference.ts index eddb4f59..e67cdd2a 100644 --- a/models/input-file-reference.ts +++ b/models/input-file-reference.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/input-folder-reference.ts b/models/input-folder-reference.ts index 206dca4b..b2374664 100644 --- a/models/input-folder-reference.ts +++ b/models/input-folder-reference.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/input-path-reference.ts b/models/input-path-reference.ts index f8b10caa..5dfe493b 100644 --- a/models/input-path-reference.ts +++ b/models/input-path-reference.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/input-reference.ts b/models/input-reference.ts index eb306050..153a294b 100644 --- a/models/input-reference.ts +++ b/models/input-reference.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/ioalias-handler.ts b/models/ioalias-handler.ts index e916777c..415431f1 100644 --- a/models/ioalias-handler.ts +++ b/models/ioalias-handler.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/item-reference.ts b/models/item-reference.ts index b22229e3..704a1847 100644 --- a/models/item-reference.ts +++ b/models/item-reference.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/item-type.ts b/models/item-type.ts index 3bfb490c..aca58a00 100644 --- a/models/item-type.ts +++ b/models/item-type.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/job-argument.ts b/models/job-argument.ts index ac458108..a092193b 100644 --- a/models/job-argument.ts +++ b/models/job-argument.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/job-arguments-inner-inner.ts b/models/job-arguments-inner-inner.ts index 2e2753d6..7bc01831 100644 --- a/models/job-arguments-inner-inner.ts +++ b/models/job-arguments-inner-inner.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/job-compute-usage.ts b/models/job-compute-usage.ts index ea2d43e8..e6ebc363 100644 --- a/models/job-compute-usage.ts +++ b/models/job-compute-usage.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/job-path-argument.ts b/models/job-path-argument.ts index 471eebf8..0c26402d 100644 --- a/models/job-path-argument.ts +++ b/models/job-path-argument.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/job-status-enum.ts b/models/job-status-enum.ts index 215d695a..819c2cdb 100644 --- a/models/job-status-enum.ts +++ b/models/job-status-enum.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/job-status.ts b/models/job-status.ts index 83bc314f..bd19eabe 100644 --- a/models/job-status.ts +++ b/models/job-status.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/job.ts b/models/job.ts index 2e45699e..3f676e56 100644 --- a/models/job.ts +++ b/models/job.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/key-request.ts b/models/key-request.ts index 1b9e1a5f..44d98c82 100644 --- a/models/key-request.ts +++ b/models/key-request.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/license-pool-access-policy-list.ts b/models/license-pool-access-policy-list.ts index 172347b6..bb7a59a4 100644 --- a/models/license-pool-access-policy-list.ts +++ b/models/license-pool-access-policy-list.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/license-pool-access-policy.ts b/models/license-pool-access-policy.ts index 176c6a36..a1984ea3 100644 --- a/models/license-pool-access-policy.ts +++ b/models/license-pool-access-policy.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/license-pool-list.ts b/models/license-pool-list.ts index 617fa7eb..07d0230a 100644 --- a/models/license-pool-list.ts +++ b/models/license-pool-list.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/license-pool-policy-subject-list.ts b/models/license-pool-policy-subject-list.ts index 8678fde7..96dc77bb 100644 --- a/models/license-pool-policy-subject-list.ts +++ b/models/license-pool-policy-subject-list.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/license-pool-policy-subject.ts b/models/license-pool-policy-subject.ts index f6946b0f..a7b25dd3 100644 --- a/models/license-pool-policy-subject.ts +++ b/models/license-pool-policy-subject.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/license-pool-public.ts b/models/license-pool-public.ts index 2a161f99..3340eb64 100644 --- a/models/license-pool-public.ts +++ b/models/license-pool-public.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/license-pool-update.ts b/models/license-pool-update.ts index 9458f14e..289badb4 100644 --- a/models/license-pool-update.ts +++ b/models/license-pool-update.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/license-public.ts b/models/license-public.ts index 01244d5c..6da504fb 100644 --- a/models/license-public.ts +++ b/models/license-public.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/license-type.ts b/models/license-type.ts index ae779f57..28057149 100644 --- a/models/license-type.ts +++ b/models/license-type.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/license.ts b/models/license.ts index ca6fa580..faeb77aa 100644 --- a/models/license.ts +++ b/models/license.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/local-config.ts b/models/local-config.ts index 63de0e57..80970ce2 100644 --- a/models/local-config.ts +++ b/models/local-config.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/location.ts b/models/location.ts index f09de30a..f27d05c5 100644 --- a/models/location.ts +++ b/models/location.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/maintainer.ts b/models/maintainer.ts index baee6cdb..826a24ba 100644 --- a/models/maintainer.ts +++ b/models/maintainer.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/manifest.ts b/models/manifest.ts index 0b637ab4..1c251ba0 100644 --- a/models/manifest.ts +++ b/models/manifest.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/meta-data.ts b/models/meta-data.ts index 2d7fe854..e91b4427 100644 --- a/models/meta-data.ts +++ b/models/meta-data.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/metadata.ts b/models/metadata.ts index 404b336f..0196d809 100644 --- a/models/metadata.ts +++ b/models/metadata.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/money-amount.ts b/models/money-amount.ts new file mode 100644 index 00000000..d81a2665 --- /dev/null +++ b/models/money-amount.ts @@ -0,0 +1,36 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * pollination-server + * Pollination Server OpenAPI Definition + * + * The version of the OpenAPI document: 1.8.1 + * Contact: info@pollination.solutions + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + + +/** + * + * @export + * @interface MoneyAmount + */ +export interface MoneyAmount { + /** + * + * @type {string} + * @memberof MoneyAmount + */ + 'amount': string; + /** + * + * @type {string} + * @memberof MoneyAmount + */ + 'currency_code': string; +} + diff --git a/models/new-application-version.ts b/models/new-application-version.ts index 7d8ba349..f67f199a 100644 --- a/models/new-application-version.ts +++ b/models/new-application-version.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/new-plugin-package.ts b/models/new-plugin-package.ts index 0225256e..ba11b314 100644 --- a/models/new-plugin-package.ts +++ b/models/new-plugin-package.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/new-recipe-package.ts b/models/new-recipe-package.ts index ec4d6973..e4fd8ce5 100644 --- a/models/new-recipe-package.ts +++ b/models/new-recipe-package.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/organization-create.ts b/models/organization-create.ts index 13a4c1f5..fc0f037f 100644 --- a/models/organization-create.ts +++ b/models/organization-create.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/organization-list.ts b/models/organization-list.ts index d04d6066..e0ff31a4 100644 --- a/models/organization-list.ts +++ b/models/organization-list.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/organization-member-list.ts b/models/organization-member-list.ts index 371d4624..2a08b111 100644 --- a/models/organization-member-list.ts +++ b/models/organization-member-list.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/organization-member-usage.ts b/models/organization-member-usage.ts index ff64fcda..418a8ed1 100644 --- a/models/organization-member-usage.ts +++ b/models/organization-member-usage.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/organization-member.ts b/models/organization-member.ts index 4bf81a54..c10e1286 100644 --- a/models/organization-member.ts +++ b/models/organization-member.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/organization-role-binding.ts b/models/organization-role-binding.ts index b38d4699..e1096f3a 100644 --- a/models/organization-role-binding.ts +++ b/models/organization-role-binding.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/organization-role-enum.ts b/models/organization-role-enum.ts index ef51a42b..0897efff 100644 --- a/models/organization-role-enum.ts +++ b/models/organization-role-enum.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/organization-role.ts b/models/organization-role.ts index 7117c677..a6776f5e 100644 --- a/models/organization-role.ts +++ b/models/organization-role.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/organization-update.ts b/models/organization-update.ts index dc471735..2b7f3684 100644 --- a/models/organization-update.ts +++ b/models/organization-update.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/organization.ts b/models/organization.ts index 0ae33746..f1ba9f80 100644 --- a/models/organization.ts +++ b/models/organization.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/package-sort-key.ts b/models/package-sort-key.ts index fa7f8553..1671f2b6 100644 --- a/models/package-sort-key.ts +++ b/models/package-sort-key.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/package-version.ts b/models/package-version.ts index 9f33e154..ef61fcd1 100644 --- a/models/package-version.ts +++ b/models/package-version.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/paddle-billing-price.ts b/models/paddle-billing-price.ts new file mode 100644 index 00000000..91510820 --- /dev/null +++ b/models/paddle-billing-price.ts @@ -0,0 +1,129 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * pollination-server + * Pollination Server OpenAPI Definition + * + * The version of the OpenAPI document: 1.8.1 + * Contact: info@pollination.solutions + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +// May contain unused imports in some cases +// @ts-ignore +import type { Duration } from './duration'; +// May contain unused imports in some cases +// @ts-ignore +import type { MoneyAmount } from './money-amount'; +// May contain unused imports in some cases +// @ts-ignore +import type { QuantityConstraints } from './quantity-constraints'; + +/** + * + * @export + * @interface PaddleBillingPrice + */ +export interface PaddleBillingPrice { + /** + * + * @type {Duration} + * @memberof PaddleBillingPrice + */ + 'billing_cycle'?: Duration; + /** + * + * @type {string} + * @memberof PaddleBillingPrice + */ + 'created_at'?: string; + /** + * + * @type {object} + * @memberof PaddleBillingPrice + */ + 'custom_data'?: object; + /** + * + * @type {string} + * @memberof PaddleBillingPrice + */ + 'description'?: string; + /** + * + * @type {string} + * @memberof PaddleBillingPrice + */ + 'id': string; + /** + * + * @type {object} + * @memberof PaddleBillingPrice + */ + 'import_meta'?: object; + /** + * + * @type {string} + * @memberof PaddleBillingPrice + */ + 'name'?: string; + /** + * + * @type {string} + * @memberof PaddleBillingPrice + */ + 'product_id': string; + /** + * + * @type {QuantityConstraints} + * @memberof PaddleBillingPrice + */ + 'quantity'?: QuantityConstraints; + /** + * + * @type {string} + * @memberof PaddleBillingPrice + */ + 'status': string; + /** + * + * @type {string} + * @memberof PaddleBillingPrice + */ + 'tax_mode'?: string; + /** + * + * @type {Duration} + * @memberof PaddleBillingPrice + */ + 'trial_period'?: Duration; + /** + * + * @type {string} + * @memberof PaddleBillingPrice + */ + 'type'?: string; + /** + * + * @type {MoneyAmount} + * @memberof PaddleBillingPrice + */ + 'unit_price': MoneyAmount; + /** + * + * @type {Array} + * @memberof PaddleBillingPrice + */ + 'unit_price_overrides'?: Array; + /** + * + * @type {string} + * @memberof PaddleBillingPrice + */ + 'updated_at'?: string; +} + diff --git a/models/paddle-billing-product.ts b/models/paddle-billing-product.ts new file mode 100644 index 00000000..5cc8b0ec --- /dev/null +++ b/models/paddle-billing-product.ts @@ -0,0 +1,90 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * pollination-server + * Pollination Server OpenAPI Definition + * + * The version of the OpenAPI document: 1.8.1 + * Contact: info@pollination.solutions + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + + +/** + * + * @export + * @interface PaddleBillingProduct + */ +export interface PaddleBillingProduct { + /** + * + * @type {string} + * @memberof PaddleBillingProduct + */ + 'created_at'?: string; + /** + * + * @type {object} + * @memberof PaddleBillingProduct + */ + 'custom_data'?: object; + /** + * + * @type {string} + * @memberof PaddleBillingProduct + */ + 'description'?: string; + /** + * + * @type {string} + * @memberof PaddleBillingProduct + */ + 'id': string; + /** + * + * @type {string} + * @memberof PaddleBillingProduct + */ + 'image_url'?: string; + /** + * + * @type {object} + * @memberof PaddleBillingProduct + */ + 'import_meta'?: object; + /** + * + * @type {string} + * @memberof PaddleBillingProduct + */ + 'name': string; + /** + * + * @type {string} + * @memberof PaddleBillingProduct + */ + 'status': string; + /** + * + * @type {string} + * @memberof PaddleBillingProduct + */ + 'tax_category'?: string; + /** + * + * @type {string} + * @memberof PaddleBillingProduct + */ + 'type'?: string; + /** + * + * @type {string} + * @memberof PaddleBillingProduct + */ + 'updated_at'?: string; +} + diff --git a/models/paddle-billing-subscription-item.ts b/models/paddle-billing-subscription-item.ts new file mode 100644 index 00000000..2b9a1891 --- /dev/null +++ b/models/paddle-billing-subscription-item.ts @@ -0,0 +1,90 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * pollination-server + * Pollination Server OpenAPI Definition + * + * The version of the OpenAPI document: 1.8.1 + * Contact: info@pollination.solutions + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +// May contain unused imports in some cases +// @ts-ignore +import type { PaddleBillingPrice } from './paddle-billing-price'; +// May contain unused imports in some cases +// @ts-ignore +import type { PaddleBillingProduct } from './paddle-billing-product'; + +/** + * + * @export + * @interface PaddleBillingSubscriptionItem + */ +export interface PaddleBillingSubscriptionItem { + /** + * + * @type {string} + * @memberof PaddleBillingSubscriptionItem + */ + 'created_at'?: string; + /** + * + * @type {string} + * @memberof PaddleBillingSubscriptionItem + */ + 'next_billed_at'?: string; + /** + * + * @type {string} + * @memberof PaddleBillingSubscriptionItem + */ + 'previously_billed_at'?: string; + /** + * + * @type {PaddleBillingPrice} + * @memberof PaddleBillingSubscriptionItem + */ + 'price': PaddleBillingPrice; + /** + * + * @type {PaddleBillingProduct} + * @memberof PaddleBillingSubscriptionItem + */ + 'product': PaddleBillingProduct; + /** + * + * @type {number} + * @memberof PaddleBillingSubscriptionItem + */ + 'quantity': number; + /** + * + * @type {boolean} + * @memberof PaddleBillingSubscriptionItem + */ + 'recurring'?: boolean; + /** + * + * @type {string} + * @memberof PaddleBillingSubscriptionItem + */ + 'status': string; + /** + * + * @type {object} + * @memberof PaddleBillingSubscriptionItem + */ + 'trial_dates'?: object; + /** + * + * @type {string} + * @memberof PaddleBillingSubscriptionItem + */ + 'updated_at'?: string; +} + diff --git a/models/paddle-billing-subscription-status.ts b/models/paddle-billing-subscription-status.ts new file mode 100644 index 00000000..6ba4764a --- /dev/null +++ b/models/paddle-billing-subscription-status.ts @@ -0,0 +1,34 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * pollination-server + * Pollination Server OpenAPI Definition + * + * The version of the OpenAPI document: 1.8.1 + * Contact: info@pollination.solutions + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + + +/** + * An enumeration. + * @export + * @enum {string} + */ + +export const PaddleBillingSubscriptionStatus = { + Active: 'active', + Canceled: 'canceled', + PastDue: 'past_due', + Paused: 'paused', + Trialing: 'trialing' +} as const; + +export type PaddleBillingSubscriptionStatus = typeof PaddleBillingSubscriptionStatus[keyof typeof PaddleBillingSubscriptionStatus]; + + + diff --git a/models/paused-reason.ts b/models/paused-reason.ts index 3eda04c9..24ef7e7e 100644 --- a/models/paused-reason.ts +++ b/models/paused-reason.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/payment-method-enum.ts b/models/payment-method-enum.ts index b8ec8ea5..8631fad0 100644 --- a/models/payment-method-enum.ts +++ b/models/payment-method-enum.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/payment-method.ts b/models/payment-method.ts index 35f6a165..b5571bd6 100644 --- a/models/payment-method.ts +++ b/models/payment-method.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/payment.ts b/models/payment.ts index cc0bb29b..ccd4369b 100644 --- a/models/payment.ts +++ b/models/payment.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/permission.ts b/models/permission.ts index f1b58246..633758ab 100644 --- a/models/permission.ts +++ b/models/permission.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/plan-type.ts b/models/plan-type.ts index 31e9ded1..f426a957 100644 --- a/models/plan-type.ts +++ b/models/plan-type.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/plugin-config.ts b/models/plugin-config.ts index fe9b879d..f339df32 100644 --- a/models/plugin-config.ts +++ b/models/plugin-config.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/plugin-package-list.ts b/models/plugin-package-list.ts index 7c141c26..53875826 100644 --- a/models/plugin-package-list.ts +++ b/models/plugin-package-list.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/plugin-package.ts b/models/plugin-package.ts index 09316b2d..a8d9a48a 100644 --- a/models/plugin-package.ts +++ b/models/plugin-package.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/plugin.ts b/models/plugin.ts index c90a241f..a3fbb2f4 100644 --- a/models/plugin.ts +++ b/models/plugin.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/policy-subject.ts b/models/policy-subject.ts index ac34b2f9..babe0526 100644 --- a/models/policy-subject.ts +++ b/models/policy-subject.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/project-access-policy-list.ts b/models/project-access-policy-list.ts index 9c700630..b0e1e15a 100644 --- a/models/project-access-policy-list.ts +++ b/models/project-access-policy-list.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/project-access-policy.ts b/models/project-access-policy.ts index c0925098..591f777b 100644 --- a/models/project-access-policy.ts +++ b/models/project-access-policy.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/project-create.ts b/models/project-create.ts index 56f5fb8b..3f79f8c4 100644 --- a/models/project-create.ts +++ b/models/project-create.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/project-folder.ts b/models/project-folder.ts index 41ca4f51..805c299f 100644 --- a/models/project-folder.ts +++ b/models/project-folder.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/project-list.ts b/models/project-list.ts index da1988a3..f6e4f1d3 100644 --- a/models/project-list.ts +++ b/models/project-list.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/project-policy-subject.ts b/models/project-policy-subject.ts index 296941c7..6477fdd5 100644 --- a/models/project-policy-subject.ts +++ b/models/project-policy-subject.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/project-recipe-filter-list.ts b/models/project-recipe-filter-list.ts index 232ad00f..f1ae5028 100644 --- a/models/project-recipe-filter-list.ts +++ b/models/project-recipe-filter-list.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/project-recipe-filter.ts b/models/project-recipe-filter.ts index a3bace3f..0655efa0 100644 --- a/models/project-recipe-filter.ts +++ b/models/project-recipe-filter.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/project-sort-key.ts b/models/project-sort-key.ts index 89dc42c8..0926fb2c 100644 --- a/models/project-sort-key.ts +++ b/models/project-sort-key.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/project-update.ts b/models/project-update.ts index d327c1bc..ec597177 100644 --- a/models/project-update.ts +++ b/models/project-update.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/project.ts b/models/project.ts index 94b511de..7ac2fbe0 100644 --- a/models/project.ts +++ b/models/project.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/public-account-list.ts b/models/public-account-list.ts index 62f36f7a..c8408d3b 100644 --- a/models/public-account-list.ts +++ b/models/public-account-list.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/quantity-constraints.ts b/models/quantity-constraints.ts new file mode 100644 index 00000000..9dcbb6a8 --- /dev/null +++ b/models/quantity-constraints.ts @@ -0,0 +1,36 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * pollination-server + * Pollination Server OpenAPI Definition + * + * The version of the OpenAPI document: 1.8.1 + * Contact: info@pollination.solutions + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + + +/** + * + * @export + * @interface QuantityConstraints + */ +export interface QuantityConstraints { + /** + * + * @type {number} + * @memberof QuantityConstraints + */ + 'maximum': number; + /** + * + * @type {number} + * @memberof QuantityConstraints + */ + 'minimum': number; +} + diff --git a/models/quota-list.ts b/models/quota-list.ts index 4da05655..2298ee76 100644 --- a/models/quota-list.ts +++ b/models/quota-list.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/quota-plan.ts b/models/quota-plan.ts index c3343c4b..56b52a30 100644 --- a/models/quota-plan.ts +++ b/models/quota-plan.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/quota-type.ts b/models/quota-type.ts index 6aa05f4d..79864bc1 100644 --- a/models/quota-type.ts +++ b/models/quota-type.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/quota.ts b/models/quota.ts index 3e8eae64..a1c1134c 100644 --- a/models/quota.ts +++ b/models/quota.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/recipe-interface-list.ts b/models/recipe-interface-list.ts index 093b220a..0f191a50 100644 --- a/models/recipe-interface-list.ts +++ b/models/recipe-interface-list.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/recipe-interface.ts b/models/recipe-interface.ts index a4b7362a..f87fa6bf 100644 --- a/models/recipe-interface.ts +++ b/models/recipe-interface.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/recipe-package-list.ts b/models/recipe-package-list.ts index 9054590c..5101beca 100644 --- a/models/recipe-package-list.ts +++ b/models/recipe-package-list.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/recipe-package.ts b/models/recipe-package.ts index dc262bbc..9194a9fd 100644 --- a/models/recipe-package.ts +++ b/models/recipe-package.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/recipe.ts b/models/recipe.ts index d0810cf4..4025c2e4 100644 --- a/models/recipe.ts +++ b/models/recipe.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/report-cadlicense-usage.ts b/models/report-cadlicense-usage.ts index 61831b53..82802a77 100644 --- a/models/report-cadlicense-usage.ts +++ b/models/report-cadlicense-usage.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/report-compute-usage.ts b/models/report-compute-usage.ts index 4dc1e1d2..012ab4f4 100644 --- a/models/report-compute-usage.ts +++ b/models/report-compute-usage.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/report-organization-member-usage.ts b/models/report-organization-member-usage.ts index e06aec3a..565388b9 100644 --- a/models/report-organization-member-usage.ts +++ b/models/report-organization-member-usage.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/repository-access-policy-list.ts b/models/repository-access-policy-list.ts index 781ad035..f011d28d 100644 --- a/models/repository-access-policy-list.ts +++ b/models/repository-access-policy-list.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/repository-access-policy.ts b/models/repository-access-policy.ts index 21ce0033..97567a9c 100644 --- a/models/repository-access-policy.ts +++ b/models/repository-access-policy.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/repository-create.ts b/models/repository-create.ts index 4bf34093..2aae04b8 100644 --- a/models/repository-create.ts +++ b/models/repository-create.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/repository-index.ts b/models/repository-index.ts index 264bad84..540fb9da 100644 --- a/models/repository-index.ts +++ b/models/repository-index.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/repository-list.ts b/models/repository-list.ts index abe6be81..9a1b3320 100644 --- a/models/repository-list.ts +++ b/models/repository-list.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/repository-metadata.ts b/models/repository-metadata.ts index f54b9375..11690480 100644 --- a/models/repository-metadata.ts +++ b/models/repository-metadata.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/repository-policy-subject.ts b/models/repository-policy-subject.ts index b19fd041..80d8ace3 100644 --- a/models/repository-policy-subject.ts +++ b/models/repository-policy-subject.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/repository-sort-key.ts b/models/repository-sort-key.ts index 5c3d44fb..7119935d 100644 --- a/models/repository-sort-key.ts +++ b/models/repository-sort-key.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/repository-update.ts b/models/repository-update.ts index c4718729..32e5dee5 100644 --- a/models/repository-update.ts +++ b/models/repository-update.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/repository-user-permissions.ts b/models/repository-user-permissions.ts index e64c979a..ddfd34a5 100644 --- a/models/repository-user-permissions.ts +++ b/models/repository-user-permissions.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/repository.ts b/models/repository.ts index 51bb4f11..5dd47201 100644 --- a/models/repository.ts +++ b/models/repository.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/resources-duration.ts b/models/resources-duration.ts index e6f1afbd..7732a03f 100644 --- a/models/resources-duration.ts +++ b/models/resources-duration.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/response-get-package-json.ts b/models/response-get-package-json.ts index 34e93612..0420f904 100644 --- a/models/response-get-package-json.ts +++ b/models/response-get-package-json.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/retry-config.ts b/models/retry-config.ts index aca2707c..620bf18d 100644 --- a/models/retry-config.ts +++ b/models/retry-config.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/role-enum.ts b/models/role-enum.ts index e84003f5..1d8631cc 100644 --- a/models/role-enum.ts +++ b/models/role-enum.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/run-list.ts b/models/run-list.ts index c1916dd3..6ce36cb9 100644 --- a/models/run-list.ts +++ b/models/run-list.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/run-meta.ts b/models/run-meta.ts index fdbaed0f..39e23ed0 100644 --- a/models/run-meta.ts +++ b/models/run-meta.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/run-progress.ts b/models/run-progress.ts index 87fb43f9..6496b3a8 100644 --- a/models/run-progress.ts +++ b/models/run-progress.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/run-result-list-resources-inner-inner.ts b/models/run-result-list-resources-inner-inner.ts index 0bc896f3..0571f55f 100644 --- a/models/run-result-list-resources-inner-inner.ts +++ b/models/run-result-list-resources-inner-inner.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/run-result-list.ts b/models/run-result-list.ts index 687be484..9eb9dcea 100644 --- a/models/run-result-list.ts +++ b/models/run-result-list.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/run-status-enum.ts b/models/run-status-enum.ts index 4a083bf8..aa1c79cc 100644 --- a/models/run-status-enum.ts +++ b/models/run-status-enum.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/run-status-inputs-inner.ts b/models/run-status-inputs-inner.ts index 61eeaf57..cd5d8c33 100644 --- a/models/run-status-inputs-inner.ts +++ b/models/run-status-inputs-inner.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/run-status-outputs-inner.ts b/models/run-status-outputs-inner.ts index 6b927533..d10295a4 100644 --- a/models/run-status-outputs-inner.ts +++ b/models/run-status-outputs-inner.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/run-status.ts b/models/run-status.ts index fd7256c2..03e5a84a 100644 --- a/models/run-status.ts +++ b/models/run-status.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/run.ts b/models/run.ts index 9d2b1954..eebb7fec 100644 --- a/models/run.ts +++ b/models/run.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/s3-upload-request.ts b/models/s3-upload-request.ts index edfeb10f..3a5fada7 100644 --- a/models/s3-upload-request.ts +++ b/models/s3-upload-request.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/s3.ts b/models/s3.ts index fbf60e3c..52dc049c 100644 --- a/models/s3.ts +++ b/models/s3.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/scripting-languages.ts b/models/scripting-languages.ts index 5810ef5b..7a8cb5a2 100644 --- a/models/scripting-languages.ts +++ b/models/scripting-languages.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/sdkenum.ts b/models/sdkenum.ts index e75f9594..f641c895 100644 --- a/models/sdkenum.ts +++ b/models/sdkenum.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/sort-enum.ts b/models/sort-enum.ts index 965945bb..432cec46 100644 --- a/models/sort-enum.ts +++ b/models/sort-enum.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/source.ts b/models/source.ts index 52661801..e231a457 100644 --- a/models/source.ts +++ b/models/source.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/status-type.ts b/models/status-type.ts index 44f18f92..492567a3 100644 --- a/models/status-type.ts +++ b/models/status-type.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/step-array-input.ts b/models/step-array-input.ts index d4a27a3c..233aba24 100644 --- a/models/step-array-input.ts +++ b/models/step-array-input.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/step-array-output.ts b/models/step-array-output.ts index 4c5225e5..eda03f99 100644 --- a/models/step-array-output.ts +++ b/models/step-array-output.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/step-boolean-input.ts b/models/step-boolean-input.ts index 45aee220..8ecbe052 100644 --- a/models/step-boolean-input.ts +++ b/models/step-boolean-input.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/step-boolean-output.ts b/models/step-boolean-output.ts index 25db7494..0c6aa9a0 100644 --- a/models/step-boolean-output.ts +++ b/models/step-boolean-output.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/step-file-input.ts b/models/step-file-input.ts index ce649959..7b641d50 100644 --- a/models/step-file-input.ts +++ b/models/step-file-input.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/step-file-output.ts b/models/step-file-output.ts index d7236a6a..0275bd43 100644 --- a/models/step-file-output.ts +++ b/models/step-file-output.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/step-folder-input.ts b/models/step-folder-input.ts index 759aa6e7..93a7be86 100644 --- a/models/step-folder-input.ts +++ b/models/step-folder-input.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/step-folder-output.ts b/models/step-folder-output.ts index 1cba411c..b032d5fe 100644 --- a/models/step-folder-output.ts +++ b/models/step-folder-output.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/step-integer-input.ts b/models/step-integer-input.ts index 0a456ecc..09c2ba38 100644 --- a/models/step-integer-input.ts +++ b/models/step-integer-input.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/step-integer-output.ts b/models/step-integer-output.ts index 33a86dce..ab820000 100644 --- a/models/step-integer-output.ts +++ b/models/step-integer-output.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/step-jsonobject-input.ts b/models/step-jsonobject-input.ts index bf1549d4..69a78a24 100644 --- a/models/step-jsonobject-input.ts +++ b/models/step-jsonobject-input.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/step-jsonobject-output.ts b/models/step-jsonobject-output.ts index 84364348..1ab18c67 100644 --- a/models/step-jsonobject-output.ts +++ b/models/step-jsonobject-output.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/step-list.ts b/models/step-list.ts index 16708798..727aa18e 100644 --- a/models/step-list.ts +++ b/models/step-list.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/step-number-input.ts b/models/step-number-input.ts index df63b3ba..594038d8 100644 --- a/models/step-number-input.ts +++ b/models/step-number-input.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/step-number-output.ts b/models/step-number-output.ts index 00fe04e0..a651c21f 100644 --- a/models/step-number-output.ts +++ b/models/step-number-output.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/step-path-input.ts b/models/step-path-input.ts index 5a9e35be..a4572d7f 100644 --- a/models/step-path-input.ts +++ b/models/step-path-input.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/step-path-output.ts b/models/step-path-output.ts index 2815a961..3b9e1af2 100644 --- a/models/step-path-output.ts +++ b/models/step-path-output.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/step-status-enum.ts b/models/step-status-enum.ts index 211581a8..66c300dc 100644 --- a/models/step-status-enum.ts +++ b/models/step-status-enum.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/step-status.ts b/models/step-status.ts index 8e90db45..a76d4f46 100644 --- a/models/step-status.ts +++ b/models/step-status.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/step-string-input.ts b/models/step-string-input.ts index a9642e43..d5b728d7 100644 --- a/models/step-string-input.ts +++ b/models/step-string-input.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/step-string-output.ts b/models/step-string-output.ts index 9ae853db..d13fe7d5 100644 --- a/models/step-string-output.ts +++ b/models/step-string-output.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/subject-type.ts b/models/subject-type.ts index 8a0c1f16..59f6840d 100644 --- a/models/subject-type.ts +++ b/models/subject-type.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/subject.ts b/models/subject.ts index 206ab32b..4014f04c 100644 --- a/models/subject.ts +++ b/models/subject.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/subscription-create.ts b/models/subscription-create.ts index deeb1e87..ee790cf4 100644 --- a/models/subscription-create.ts +++ b/models/subscription-create.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/subscription-payment.ts b/models/subscription-payment.ts index d2b44bc3..90a6e945 100644 --- a/models/subscription-payment.ts +++ b/models/subscription-payment.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/subscription-plan.ts b/models/subscription-plan.ts index 8a7fda98..01022409 100644 --- a/models/subscription-plan.ts +++ b/models/subscription-plan.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/subscription-update-dry-run.ts b/models/subscription-update-dry-run.ts index 119781d2..b5fe2f07 100644 --- a/models/subscription-update-dry-run.ts +++ b/models/subscription-update-dry-run.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/subscription-update.ts b/models/subscription-update.ts index 20512a75..16cd707a 100644 --- a/models/subscription-update.ts +++ b/models/subscription-update.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/subscription.ts b/models/subscription.ts index f721f478..1a480927 100644 --- a/models/subscription.ts +++ b/models/subscription.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/task-argument.ts b/models/task-argument.ts index 0e5d31c2..7be27e5d 100644 --- a/models/task-argument.ts +++ b/models/task-argument.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/task-file-reference.ts b/models/task-file-reference.ts index d4deb518..508b29c1 100644 --- a/models/task-file-reference.ts +++ b/models/task-file-reference.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/task-folder-reference.ts b/models/task-folder-reference.ts index b14d3423..984870eb 100644 --- a/models/task-folder-reference.ts +++ b/models/task-folder-reference.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/task-path-argument.ts b/models/task-path-argument.ts index 4264e01b..995ef81b 100644 --- a/models/task-path-argument.ts +++ b/models/task-path-argument.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/task-path-reference.ts b/models/task-path-reference.ts index a4e5529b..0fb918a4 100644 --- a/models/task-path-reference.ts +++ b/models/task-path-reference.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/task-path-return.ts b/models/task-path-return.ts index 2658639d..8af83d9d 100644 --- a/models/task-path-return.ts +++ b/models/task-path-return.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/task-reference.ts b/models/task-reference.ts index 0ed98bb3..f86845c0 100644 --- a/models/task-reference.ts +++ b/models/task-reference.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/task-return.ts b/models/task-return.ts index 358a8e3d..bfd3fffa 100644 --- a/models/task-return.ts +++ b/models/task-return.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/team-create.ts b/models/team-create.ts index ff20d2e7..e850bdd0 100644 --- a/models/team-create.ts +++ b/models/team-create.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/team-list.ts b/models/team-list.ts index 3dc357ac..82ad52af 100644 --- a/models/team-list.ts +++ b/models/team-list.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/team-member-list.ts b/models/team-member-list.ts index 9e48dad5..4563b612 100644 --- a/models/team-member-list.ts +++ b/models/team-member-list.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/team-member.ts b/models/team-member.ts index c8095c20..a125e4ee 100644 --- a/models/team-member.ts +++ b/models/team-member.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/team-role-enum.ts b/models/team-role-enum.ts index c8bac7d8..07b10b8c 100644 --- a/models/team-role-enum.ts +++ b/models/team-role-enum.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/team-update.ts b/models/team-update.ts index f0b686c3..f4cd52e0 100644 --- a/models/team-update.ts +++ b/models/team-update.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/team.ts b/models/team.ts index 2d1b2be7..a89f1fd5 100644 --- a/models/team.ts +++ b/models/team.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/template-function.ts b/models/template-function.ts index a78bd453..b21c34b5 100644 --- a/models/template-function.ts +++ b/models/template-function.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/update-accepted.ts b/models/update-accepted.ts index 53a98e55..5a796df8 100644 --- a/models/update-accepted.ts +++ b/models/update-accepted.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/usage.ts b/models/usage.ts index 28cbbbe8..e4554b83 100644 --- a/models/usage.ts +++ b/models/usage.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/user-create.ts b/models/user-create.ts index 120e318a..001dc791 100644 --- a/models/user-create.ts +++ b/models/user-create.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/user-permission.ts b/models/user-permission.ts index 52e8d146..da53aff9 100644 --- a/models/user-permission.ts +++ b/models/user-permission.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/user-private.ts b/models/user-private.ts index d4b83f50..0495b096 100644 --- a/models/user-private.ts +++ b/models/user-private.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/user-public-list.ts b/models/user-public-list.ts index cb6f3fcc..4eaa7529 100644 --- a/models/user-public-list.ts +++ b/models/user-public-list.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/user-public.ts b/models/user-public.ts index 37722f5c..eb77acbc 100644 --- a/models/user-public.ts +++ b/models/user-public.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/user-update.ts b/models/user-update.ts index b43613f4..8e653a61 100644 --- a/models/user-update.ts +++ b/models/user-update.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/validation-error-loc-inner.ts b/models/validation-error-loc-inner.ts index 1adf6102..7676e568 100644 --- a/models/validation-error-loc-inner.ts +++ b/models/validation-error-loc-inner.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/validation-error.ts b/models/validation-error.ts index cf354c2a..214e97c2 100644 --- a/models/validation-error.ts +++ b/models/validation-error.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/value-file-reference.ts b/models/value-file-reference.ts index 04713240..5b5e0d89 100644 --- a/models/value-file-reference.ts +++ b/models/value-file-reference.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/value-folder-reference.ts b/models/value-folder-reference.ts index a073f5f8..1f87a374 100644 --- a/models/value-folder-reference.ts +++ b/models/value-folder-reference.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/value-list-reference.ts b/models/value-list-reference.ts index f6316a99..e9506a4d 100644 --- a/models/value-list-reference.ts +++ b/models/value-list-reference.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/value-reference.ts b/models/value-reference.ts index 50be9bab..311b462d 100644 --- a/models/value-reference.ts +++ b/models/value-reference.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.0 + * The version of the OpenAPI document: 1.8.1 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/package.json b/package.json index 930dff89..9c899e98 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@pollination-solutions/pollination-sdk", - "version": "1.8.0", + "version": "1.8.1", "description": "OpenAPI client for @pollination-solutions/pollination-sdk", "author": "OpenAPI-Generator Contributors", "repository": {