diff --git a/.apigentools-info b/.apigentools-info index d2c81aab..e3e975bb 100644 --- a/.apigentools-info +++ b/.apigentools-info @@ -4,7 +4,7 @@ "spec_versions": { "v1": { "apigentools_version": "1.6.6", - "regenerated": "2025-08-20 21:46:33.845847", + "regenerated": "2025-08-24 21:00:51.452360", "spec_repo_commit": null } } diff --git a/.openapi-generator/FILES b/.openapi-generator/FILES index db345724..899f8c57 100644 --- a/.openapi-generator/FILES +++ b/.openapi-generator/FILES @@ -53,6 +53,7 @@ models/baked-recipe-templates-inner.ts models/baked-recipe.ts models/billing-details.ts models/billing-info.ts +models/billing-invoice-request-create.ts models/billing-option.ts models/billing-payment-method.ts models/billing-period.ts @@ -70,6 +71,7 @@ models/cadlicense-usage.ts models/card-type.ts models/cloud-job-list.ts models/cloud-job.ts +models/country-choice.ts models/created-content.ts models/dag.ts models/dagarray-input-alias-inner.ts diff --git a/README.md b/README.md index a8c72ffa..c3c2ae16 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.11 --save +npm install @pollination-solutions/pollination-sdk@1.9.0 --save ``` _unPublished (not recommended):_ diff --git a/api.ts b/api.ts index 59ead3f6..e5e6ddad 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 34bfad3c..9d6fb534 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 c9aa888b..4b012ea1 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 bfc5cdf0..7ad245e0 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 5c5cf40a..bcb19c9a 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 849f6195..2f06d65d 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.11 + * The version of the OpenAPI document: 1.9.0 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -24,6 +24,8 @@ import { BASE_PATH, COLLECTION_FORMATS, type RequestArgs, BaseAPI, RequiredError // @ts-ignore import type { AppServerRestBillingDtoPayLink } from '../models'; // @ts-ignore +import type { BillingInvoiceRequestCreate } from '../models'; +// @ts-ignore import type { BillingPaymentMethod } from '../models'; // @ts-ignore import type { BillingProduct } from '../models'; @@ -459,6 +461,49 @@ export const BillingApiAxiosParamCreator = function (configuration?: Configurati options: localVarRequestOptions, }; }, + /** + * Send an invoice request confirmation email with customer and product details + * @summary Send invoice request confirmation email + * @param {BillingInvoiceRequestCreate} billingInvoiceRequestCreate + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + sendInvoiceRequestConfirmation: async (billingInvoiceRequestCreate: BillingInvoiceRequestCreate, options: RawAxiosRequestConfig = {}): Promise => { + // verify required parameter 'billingInvoiceRequestCreate' is not null or undefined + assertParamExists('sendInvoiceRequestConfirmation', 'billingInvoiceRequestCreate', billingInvoiceRequestCreate) + const localVarPath = `/billing/invoice-request`; + // 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: 'POST', ...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) + + + + localVarHeaderParameter['Content-Type'] = 'application/json'; + + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; + localVarRequestOptions.data = serializeDataIfNeeded(billingInvoiceRequestCreate, localVarRequestOptions, configuration) + + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, /** * Uncancel a subscription directly via Paddle Billing API * @summary Uncancel a Paddle Billing subscription @@ -729,6 +774,19 @@ export const BillingApiFp = function(configuration?: Configuration) { const localVarOperationServerBasePath = operationServerMap['BillingApi.previewBillingSubscription']?.[localVarOperationServerIndex]?.url; return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }, + /** + * Send an invoice request confirmation email with customer and product details + * @summary Send invoice request confirmation email + * @param {BillingInvoiceRequestCreate} billingInvoiceRequestCreate + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + async sendInvoiceRequestConfirmation(billingInvoiceRequestCreate: BillingInvoiceRequestCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + const localVarAxiosArgs = await localVarAxiosParamCreator.sendInvoiceRequestConfirmation(billingInvoiceRequestCreate, options); + const localVarOperationServerIndex = configuration?.serverIndex ?? 0; + const localVarOperationServerBasePath = operationServerMap['BillingApi.sendInvoiceRequestConfirmation']?.[localVarOperationServerIndex]?.url; + return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); + }, /** * Uncancel a subscription directly via Paddle Billing API * @summary Uncancel a Paddle Billing subscription @@ -878,6 +936,16 @@ export const BillingApiFactory = function (configuration?: Configuration, basePa previewBillingSubscription(requestParameters: BillingApiPreviewBillingSubscriptionRequest, options?: RawAxiosRequestConfig): AxiosPromise { return localVarFp.previewBillingSubscription(requestParameters.subscriptionId, requestParameters.billingSubscriptionUpdate, options).then((request) => request(axios, basePath)); }, + /** + * Send an invoice request confirmation email with customer and product details + * @summary Send invoice request confirmation email + * @param {BillingApiSendInvoiceRequestConfirmationRequest} requestParameters Request parameters. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + sendInvoiceRequestConfirmation(requestParameters: BillingApiSendInvoiceRequestConfirmationRequest, options?: RawAxiosRequestConfig): AxiosPromise { + return localVarFp.sendInvoiceRequestConfirmation(requestParameters.billingInvoiceRequestCreate, options).then((request) => request(axios, basePath)); + }, /** * Uncancel a subscription directly via Paddle Billing API * @summary Uncancel a Paddle Billing subscription @@ -1051,6 +1119,20 @@ export interface BillingApiPreviewBillingSubscriptionRequest { readonly billingSubscriptionUpdate: BillingSubscriptionUpdate } +/** + * Request parameters for sendInvoiceRequestConfirmation operation in BillingApi. + * @export + * @interface BillingApiSendInvoiceRequestConfirmationRequest + */ +export interface BillingApiSendInvoiceRequestConfirmationRequest { + /** + * + * @type {BillingInvoiceRequestCreate} + * @memberof BillingApiSendInvoiceRequestConfirmation + */ + readonly billingInvoiceRequestCreate: BillingInvoiceRequestCreate +} + /** * Request parameters for uncancelBillingSubscription operation in BillingApi. * @export @@ -1226,6 +1308,18 @@ export class BillingApi extends BaseAPI { return BillingApiFp(this.configuration).previewBillingSubscription(requestParameters.subscriptionId, requestParameters.billingSubscriptionUpdate, options).then((request) => request(this.axios, this.basePath)); } + /** + * Send an invoice request confirmation email with customer and product details + * @summary Send invoice request confirmation email + * @param {BillingApiSendInvoiceRequestConfirmationRequest} requestParameters Request parameters. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof BillingApi + */ + public sendInvoiceRequestConfirmation(requestParameters: BillingApiSendInvoiceRequestConfirmationRequest, options?: RawAxiosRequestConfig) { + return BillingApiFp(this.configuration).sendInvoiceRequestConfirmation(requestParameters.billingInvoiceRequestCreate, options).then((request) => request(this.axios, this.basePath)); + } + /** * Uncancel a subscription directly via Paddle Billing API * @summary Uncancel a Paddle Billing subscription diff --git a/api/jobs-api.ts b/api/jobs-api.ts index fe44b184..41000323 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 efb76e2f..42e2c0c7 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 e34cff75..1f71436c 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 4597816d..7085f707 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 87d0d462..ea8ba067 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 8d209991..31d434ba 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 ad27ad1d..3d044088 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 d320a8e4..dec1b686 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 feaa45d4..72d6cadf 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 e55ef784..3749a171 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 68c9deda..779a7292 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 6c1c895c..e46d5d89 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 b497b585..dacf0f5e 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 7f2987ea..4cb90393 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 59a226f3..3b06f6ee 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 1b847753..b3191152 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 6a0bfee6..f1732be5 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 a294317c..077d61bb 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 07f09a98..bbede3a1 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 0483ede4..0276f1d7 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 70b40886..a6d71208 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 1e178559..ae9610b7 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 fe6229da..dc5ad177 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 aab14c46..8225d555 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 d26eca00..58a4b014 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 d6382d15..486a8c89 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 d8e3f0de..46baf30c 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 f8104a2e..ba7f5ca9 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 ceed753c..57c8728a 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 a6040dc8..004d6555 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 6b0cf735..f4afe119 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 fdb0704d..4c463b6d 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 10b6f0f9..0a61645b 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 c2e5e07d..2962c70f 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 a89e825b..94a038c0 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 4ede5d60..0171ef9d 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 af09cd62..5e6c0e7b 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 8062ff1b..f3ac4f22 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 32af6b28..13b23657 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 02616929..cb3d65f4 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 aa6cd11b..05f7a4e7 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 3dc72211..848d4454 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.11 + * The version of the OpenAPI document: 1.9.0 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/billing-details.ts b/models/billing-details.ts index f5e2fd23..a4adc593 100644 --- a/models/billing-details.ts +++ b/models/billing-details.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.11 + * The version of the OpenAPI document: 1.9.0 * 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 7d3cd0d3..8427009a 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.11 + * The version of the OpenAPI document: 1.9.0 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/billing-invoice-request-create.ts b/models/billing-invoice-request-create.ts new file mode 100644 index 00000000..c9212153 --- /dev/null +++ b/models/billing-invoice-request-create.ts @@ -0,0 +1,86 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * pollination-server + * Pollination Server OpenAPI Definition + * + * The version of the OpenAPI document: 1.9.0 + * 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 { BillingSubscriptionItem } from './billing-subscription-item'; +// May contain unused imports in some cases +// @ts-ignore +import type { CountryChoice } from './country-choice'; + +/** + * DTO for creating an invoice request with customer billing information + * @export + * @interface BillingInvoiceRequestCreate + */ +export interface BillingInvoiceRequestCreate { + /** + * + * @type {string} + * @memberof BillingInvoiceRequestCreate + */ + 'account': string; + /** + * Additional email addresses to send the invoice to + * @type {Array} + * @memberof BillingInvoiceRequestCreate + */ + 'additional_emails'?: Array; + /** + * First line of address + * @type {string} + * @memberof BillingInvoiceRequestCreate + */ + 'address_line1': string; + /** + * Second line of address (optional) + * @type {string} + * @memberof BillingInvoiceRequestCreate + */ + 'address_line2'?: string; + /** + * City + * @type {string} + * @memberof BillingInvoiceRequestCreate + */ + 'city': string; + /** + * Country (human-readable name) + * @type {CountryChoice} + * @memberof BillingInvoiceRequestCreate + */ + 'country': CountryChoice; + /** + * + * @type {Array} + * @memberof BillingInvoiceRequestCreate + */ + 'items': Array; + /** + * Postal/Zip code + * @type {string} + * @memberof BillingInvoiceRequestCreate + */ + 'postal_code': string; + /** + * Region/State + * @type {string} + * @memberof BillingInvoiceRequestCreate + */ + 'region': string; +} + + + diff --git a/models/billing-option.ts b/models/billing-option.ts index 7c88e3d2..72ee5831 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.11 + * The version of the OpenAPI document: 1.9.0 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/billing-payment-method.ts b/models/billing-payment-method.ts index 8c9bd67a..5a391d7a 100644 --- a/models/billing-payment-method.ts +++ b/models/billing-payment-method.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.11 + * The version of the OpenAPI document: 1.9.0 * 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 index d63d6f3c..ef7b082e 100644 --- a/models/billing-period.ts +++ b/models/billing-period.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.11 + * The version of the OpenAPI document: 1.9.0 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/billing-price.ts b/models/billing-price.ts index f710d4b5..0fd44067 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 ab95ea95..7c7e2925 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 30c0843f..6e89c55b 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 f61a725f..b529e42b 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 c892d729..b636691e 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 index 4cbcd638..87b54b1d 100644 --- a/models/billing-subscription.ts +++ b/models/billing-subscription.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.11 + * The version of the OpenAPI document: 1.9.0 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/billing-transaction-preview.ts b/models/billing-transaction-preview.ts index 85329d2a..e22afa4d 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 d2a18acf..1950b8a5 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 054657e4..3d9eb199 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 6d5a1906..9f32bdf2 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 2b4834a3..a6b5d3d3 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 3e70fed8..51f545c4 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 c2d2f1b4..5aa1e9c6 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 8f60a0ab..ddbe4258 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.11 + * The version of the OpenAPI document: 1.9.0 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/country-choice.ts b/models/country-choice.ts new file mode 100644 index 00000000..5695ff30 --- /dev/null +++ b/models/country-choice.ts @@ -0,0 +1,258 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * pollination-server + * Pollination Server OpenAPI Definition + * + * The version of the OpenAPI document: 1.9.0 + * 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. + */ + + + +/** + * Human-readable country names mapped to ISO 3166-1 alpha-2 codes for Paddle Billing The enum values are human-readable country names that can be used in API requests. Each value maps to the corresponding ISO code for Paddle Billing. Includes all countries supported by the Paddle Billing SDK. + * @export + * @enum {string} + */ + +export const CountryChoice = { + Andorra: 'Andorra', + UnitedArabEmirates: 'United Arab Emirates', + AntiguaAndBarbuda: 'Antigua and Barbuda', + Anguilla: 'Anguilla', + Albania: 'Albania', + Armenia: 'Armenia', + Angola: 'Angola', + Argentina: 'Argentina', + AmericanSamoa: 'American Samoa', + Austria: 'Austria', + Australia: 'Australia', + Aruba: 'Aruba', + LandIslands: 'Åland Islands', + Azerbaijan: 'Azerbaijan', + BosniaAndHerzegovina: 'Bosnia and Herzegovina', + Barbados: 'Barbados', + Bangladesh: 'Bangladesh', + Belgium: 'Belgium', + BurkinaFaso: 'Burkina Faso', + Bulgaria: 'Bulgaria', + Bahrain: 'Bahrain', + Burundi: 'Burundi', + Benin: 'Benin', + SaintBarthlemy: 'Saint Barthélemy', + Bermuda: 'Bermuda', + Brunei: 'Brunei', + Bolivia: 'Bolivia', + CaribbeanNetherlands: 'Caribbean Netherlands', + Brazil: 'Brazil', + Bahamas: 'Bahamas', + Bhutan: 'Bhutan', + BouvetIsland: 'Bouvet Island', + Botswana: 'Botswana', + Belize: 'Belize', + Canada: 'Canada', + CocosKeelingIslands: 'Cocos (Keeling) Islands', + RepublicOfTheCongo: 'Republic of the Congo', + Switzerland: 'Switzerland', + CteDIvoire: 'Côte d\'Ivoire', + CookIslands: 'Cook Islands', + Chile: 'Chile', + Cameroon: 'Cameroon', + China: 'China', + Colombia: 'Colombia', + CostaRica: 'Costa Rica', + CapeVerde: 'Cape Verde', + Curaao: 'Curaçao', + ChristmasIsland: 'Christmas Island', + Cyprus: 'Cyprus', + CzechRepublic: 'Czech Republic', + Germany: 'Germany', + Djibouti: 'Djibouti', + Denmark: 'Denmark', + Dominica: 'Dominica', + DominicanRepublic: 'Dominican Republic', + Algeria: 'Algeria', + Ecuador: 'Ecuador', + Estonia: 'Estonia', + Egypt: 'Egypt', + WesternSahara: 'Western Sahara', + Eritrea: 'Eritrea', + Spain: 'Spain', + Ethiopia: 'Ethiopia', + Finland: 'Finland', + Fiji: 'Fiji', + FalklandIslands: 'Falkland Islands', + Micronesia: 'Micronesia', + FaroeIslands: 'Faroe Islands', + France: 'France', + Gabon: 'Gabon', + UnitedKingdom: 'United Kingdom', + Grenada: 'Grenada', + Georgia: 'Georgia', + FrenchGuiana: 'French Guiana', + Guernsey: 'Guernsey', + Ghana: 'Ghana', + Gibraltar: 'Gibraltar', + Greenland: 'Greenland', + Gambia: 'Gambia', + Guinea: 'Guinea', + Guadeloupe: 'Guadeloupe', + EquatorialGuinea: 'Equatorial Guinea', + Greece: 'Greece', + SouthGeorgiaAndTheSouthSandwichIslands: 'South Georgia and the South Sandwich Islands', + Guatemala: 'Guatemala', + Guam: 'Guam', + GuineaBissau: 'Guinea-Bissau', + Guyana: 'Guyana', + HongKong: 'Hong Kong', + HeardIslandAndMcDonaldIslands: 'Heard Island and McDonald Islands', + Honduras: 'Honduras', + Croatia: 'Croatia', + Hungary: 'Hungary', + Indonesia: 'Indonesia', + Ireland: 'Ireland', + Israel: 'Israel', + IsleOfMan: 'Isle of Man', + India: 'India', + BritishIndianOceanTerritory: 'British Indian Ocean Territory', + Iraq: 'Iraq', + Iceland: 'Iceland', + Italy: 'Italy', + Jersey: 'Jersey', + Jamaica: 'Jamaica', + Jordan: 'Jordan', + Japan: 'Japan', + Kenya: 'Kenya', + Kyrgyzstan: 'Kyrgyzstan', + Cambodia: 'Cambodia', + Kiribati: 'Kiribati', + Comoros: 'Comoros', + SaintKittsAndNevis: 'Saint Kitts and Nevis', + SouthKorea: 'South Korea', + Kuwait: 'Kuwait', + CaymanIslands: 'Cayman Islands', + Kazakhstan: 'Kazakhstan', + Laos: 'Laos', + Lebanon: 'Lebanon', + SaintLucia: 'Saint Lucia', + Liechtenstein: 'Liechtenstein', + SriLanka: 'Sri Lanka', + Liberia: 'Liberia', + Lesotho: 'Lesotho', + Lithuania: 'Lithuania', + Luxembourg: 'Luxembourg', + Latvia: 'Latvia', + Morocco: 'Morocco', + Monaco: 'Monaco', + Moldova: 'Moldova', + Montenegro: 'Montenegro', + SaintMartin: 'Saint Martin', + Madagascar: 'Madagascar', + MarshallIslands: 'Marshall Islands', + NorthMacedonia: 'North Macedonia', + Mongolia: 'Mongolia', + Macao: 'Macao', + NorthernMarianaIslands: 'Northern Mariana Islands', + Martinique: 'Martinique', + Mauritania: 'Mauritania', + Montserrat: 'Montserrat', + Malta: 'Malta', + Mauritius: 'Mauritius', + Maldives: 'Maldives', + Malawi: 'Malawi', + Mexico: 'Mexico', + Malaysia: 'Malaysia', + Mozambique: 'Mozambique', + Namibia: 'Namibia', + NewCaledonia: 'New Caledonia', + Niger: 'Niger', + NorfolkIsland: 'Norfolk Island', + Nigeria: 'Nigeria', + Netherlands: 'Netherlands', + Norway: 'Norway', + Nepal: 'Nepal', + Nauru: 'Nauru', + Niue: 'Niue', + NewZealand: 'New Zealand', + Oman: 'Oman', + Panama: 'Panama', + Peru: 'Peru', + FrenchPolynesia: 'French Polynesia', + PapuaNewGuinea: 'Papua New Guinea', + Philippines: 'Philippines', + Pakistan: 'Pakistan', + Poland: 'Poland', + SaintPierreAndMiquelon: 'Saint Pierre and Miquelon', + PitcairnIslands: 'Pitcairn Islands', + PuertoRico: 'Puerto Rico', + Palestine: 'Palestine', + Portugal: 'Portugal', + Palau: 'Palau', + Paraguay: 'Paraguay', + Qatar: 'Qatar', + Runion: 'Réunion', + Romania: 'Romania', + Serbia: 'Serbia', + Rwanda: 'Rwanda', + SaudiArabia: 'Saudi Arabia', + SolomonIslands: 'Solomon Islands', + Seychelles: 'Seychelles', + Sweden: 'Sweden', + Singapore: 'Singapore', + SaintHelenaAscensionAndTristanDaCunha: 'Saint Helena, Ascension and Tristan da Cunha', + Slovenia: 'Slovenia', + SvalbardAndJanMayen: 'Svalbard and Jan Mayen', + Slovakia: 'Slovakia', + SierraLeone: 'Sierra Leone', + SanMarino: 'San Marino', + Senegal: 'Senegal', + Suriname: 'Suriname', + SoTomAndPrncipe: 'São Tomé and Príncipe', + ElSalvador: 'El Salvador', + SintMaarten: 'Sint Maarten', + Eswatini: 'Eswatini', + TurksAndCaicosIslands: 'Turks and Caicos Islands', + Chad: 'Chad', + FrenchSouthernAndAntarcticLands: 'French Southern and Antarctic Lands', + Togo: 'Togo', + Thailand: 'Thailand', + Tajikistan: 'Tajikistan', + Tokelau: 'Tokelau', + TimorLeste: 'Timor-Leste', + Turkmenistan: 'Turkmenistan', + Tunisia: 'Tunisia', + Tonga: 'Tonga', + Turkey: 'Turkey', + TrinidadAndTobago: 'Trinidad and Tobago', + Tuvalu: 'Tuvalu', + Taiwan: 'Taiwan', + Tanzania: 'Tanzania', + Ukraine: 'Ukraine', + Uganda: 'Uganda', + UnitedStatesMinorOutlyingIslands: 'United States Minor Outlying Islands', + UnitedStates: 'United States', + Uruguay: 'Uruguay', + Uzbekistan: 'Uzbekistan', + VaticanCity: 'Vatican City', + SaintVincentAndTheGrenadines: 'Saint Vincent and the Grenadines', + BritishVirginIslands: 'British Virgin Islands', + UnitedStatesVirginIslands: 'United States Virgin Islands', + Vietnam: 'Vietnam', + Vanuatu: 'Vanuatu', + WallisAndFutuna: 'Wallis and Futuna', + Samoa: 'Samoa', + Kosovo: 'Kosovo', + Mayotte: 'Mayotte', + SouthAfrica: 'South Africa', + Zambia: 'Zambia' +} as const; + +export type CountryChoice = typeof CountryChoice[keyof typeof CountryChoice]; + + + diff --git a/models/created-content.ts b/models/created-content.ts index 0771086f..479a56c6 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 57be0a9e..59e19466 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 5688fe64..6c3670ce 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 eb9a8852..b229c276 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 2e5d56cc..074f8821 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 fc85f211..9dab5e43 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 92e47818..e2c7a78d 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 b068325b..1e4d1d31 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 41644bbb..797cead6 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 a4ffce74..a0397334 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 0881cfa7..24be8362 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 d0404988..cb17d919 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 431b3a1f..134ec484 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 4a3801da..2bdfd408 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 e072d51b..40f5260c 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 38ea192b..90d9128b 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 751858de..38d6fff7 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 04df9e39..f56f6ed5 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 a0f1d39b..0aa4739c 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 9f163dd2..5cea3893 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 9ec3081f..8c11f858 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 c6d3f989..0a227cf6 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 c2eee9c3..9983d802 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 629482f2..4c1f9650 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 3d5e1166..c5fb0aa3 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 b52820dd..bc09686b 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 5703d68d..f582b14c 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 d34c81f3..64b5a2b9 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 e93300ff..79ce7a96 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 a9263df4..e4826ec6 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 98b74674..e8caf229 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 645fd77f..24f7f609 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 157c5e84..1d111658 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 9b410c19..fea7e6b6 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 614a1c2e..98e02e11 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 a3a7e45d..e544f8bb 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 5b6e9ea3..88157801 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 177c3198..25d27db2 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 4570bfb4..c60905ab 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 9a3ea06d..2ccfde88 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 6d0a4bfb..d710cf81 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 26d991eb..28df6dd7 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 b6fc6e34..3eb276f5 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 39994b68..88334926 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 79c2a9b7..04913d1e 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 1af4bdb8..d860bd5b 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 e8ef003c..d5973d2b 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 45439c44..643347c1 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 e3e0e105..cc158329 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 ea13702e..de83e2fb 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 48d7e742..ee1a4177 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 00e7b908..4b3e34e1 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 fd886a64..c1511e81 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 53cefab6..9e6b61e8 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 0552acda..1bebd993 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 7def3c9a..ec557d8a 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 2ca75657..c7db8e48 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 165c5299..17c79ea1 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 865685ce..b41b3f61 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 index 49097307..9b3aeb65 100644 --- a/models/duration.ts +++ b/models/duration.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.11 + * The version of the OpenAPI document: 1.9.0 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/file-meta-list.ts b/models/file-meta-list.ts index 7a3e2002..abb136dd 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 786ca2a4..025f8cb2 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 6207494e..ce6344e5 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 729e1d65..02d0a0f0 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 79e27580..8e73f522 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 350db186..db5bf82a 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 da954019..42a3ce98 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 80ac73dc..b0fb089e 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 dc035e0c..0950e746 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 8b054d38..668abb99 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 9366f12e..41796382 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 3cedea59..988d43d1 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 84c33587..33aab144 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 45b7ec4e..511ac135 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 b5cc7bf7..08440671 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 053faf8c..de882f23 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 0bd1aca5..fd8a360c 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 a8cf5380..5a61b454 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 3927e584..b601df22 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 d9ec7d40..61b67c87 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 e4008b88..8f4ea1fd 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 fa226813..2a362db3 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 8637695d..44308f32 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 d72e63ef..5b9e52ab 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 e671dc26..6de63b45 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 964e32d7..6502dc41 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 ac281cdb..f230e3a6 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 33ed4203..872759f9 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 c84bd5dd..d9ebd389 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 1c01e1b3..1939a08a 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 aebd5609..a8fde2bc 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 c474c2d1..89ebedee 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 a644aa40..93d52849 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 8a167c33..51aa4c03 100644 --- a/models/index.ts +++ b/models/index.ts @@ -24,6 +24,7 @@ export * from './baked-recipe'; export * from './baked-recipe-templates-inner'; export * from './billing-details'; export * from './billing-info'; +export * from './billing-invoice-request-create'; export * from './billing-option'; export * from './billing-payment-method'; export * from './billing-period'; @@ -41,6 +42,7 @@ export * from './cadlicense-usage'; export * from './card-type'; export * from './cloud-job'; export * from './cloud-job-list'; +export * from './country-choice'; export * from './created-content'; export * from './dag'; export * from './dagarray-input'; diff --git a/models/input-file-reference.ts b/models/input-file-reference.ts index c3ea20e7..0b91fbd4 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 8db76e96..20c0255e 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 c4031033..805766dd 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 4625a08f..e663f07c 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 89506f16..fbf8cd26 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 17c47d46..04526ddf 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 2c7388dc..0c86f247 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 c408a664..2fbefcf0 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 3e54f286..73b990f4 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 ffe1383a..a1372e45 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 b7593046..5098787c 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 8c6ef6cc..bbce3674 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 540d8018..ff6e98c0 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 4ede30ba..d7e7e12c 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 0f1dfb57..7ab0e75b 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 107097f2..156e93a2 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 6fe3089d..456c4b3a 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 58350e21..9b0062ec 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 6c6c0424..7ded7ac9 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 b039cc3b..cfb67909 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 7678589b..68b1fb72 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 b5648939..a58d4885 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 1e86d2cb..89283b79 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 d3fa1a7b..cb2d831f 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 a91fab1a..45f08126 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 1872417f..4023faf8 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 7eb8a1f9..2550a0fe 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 a5b9407f..57b4411e 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 578848ae..40d352a7 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 eb9d3fcf..a97b3526 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 65c6fef0..96eee9ce 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 index 6d786353..4fba8682 100644 --- a/models/money-amount.ts +++ b/models/money-amount.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.11 + * The version of the OpenAPI document: 1.9.0 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/new-application-version.ts b/models/new-application-version.ts index 2f9e4361..315825e0 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 641047e3..0b048d03 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 27c94c8b..9786d9b8 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 c4cb4f11..bc5c9b0c 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 e9a921ce..4ee0acb7 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 822a9e7d..27edd414 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 da98e792..c7f3f747 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 0467c3c3..9b76733b 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 b7140dd2..ce79e66b 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 bbe078ec..85d194b0 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 dd2710a3..b16adcc1 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 9a502a04..7d20aff5 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 df9a2de0..80cad2f8 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 62f52823..94f6b976 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 d40ecf5f..ef8121ea 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.11 + * The version of the OpenAPI document: 1.9.0 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/paddle-billing-checkout.ts b/models/paddle-billing-checkout.ts index e4092a69..c17561bf 100644 --- a/models/paddle-billing-checkout.ts +++ b/models/paddle-billing-checkout.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.11 + * The version of the OpenAPI document: 1.9.0 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/paddle-billing-payment-method-card.ts b/models/paddle-billing-payment-method-card.ts index c426a3d6..701ec802 100644 --- a/models/paddle-billing-payment-method-card.ts +++ b/models/paddle-billing-payment-method-card.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.11 + * The version of the OpenAPI document: 1.9.0 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/paddle-billing-payment-method-paypal.ts b/models/paddle-billing-payment-method-paypal.ts index 45a5ec63..42ac2d61 100644 --- a/models/paddle-billing-payment-method-paypal.ts +++ b/models/paddle-billing-payment-method-paypal.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.11 + * The version of the OpenAPI document: 1.9.0 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/paddle-billing-payment-method-type.ts b/models/paddle-billing-payment-method-type.ts index 1208e765..d4f1e586 100644 --- a/models/paddle-billing-payment-method-type.ts +++ b/models/paddle-billing-payment-method-type.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.11 + * The version of the OpenAPI document: 1.9.0 * 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 index af5ce587..88373e85 100644 --- a/models/paddle-billing-price.ts +++ b/models/paddle-billing-price.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.11 + * The version of the OpenAPI document: 1.9.0 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/paddle-billing-product.ts b/models/paddle-billing-product.ts index 3656406f..91ad76a0 100644 --- a/models/paddle-billing-product.ts +++ b/models/paddle-billing-product.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.11 + * The version of the OpenAPI document: 1.9.0 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/paddle-billing-subscription-item.ts b/models/paddle-billing-subscription-item.ts index 0913e400..6b0e0d38 100644 --- a/models/paddle-billing-subscription-item.ts +++ b/models/paddle-billing-subscription-item.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.11 + * The version of the OpenAPI document: 1.9.0 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/paddle-billing-subscription-status.ts b/models/paddle-billing-subscription-status.ts index 79113763..dd14d8d8 100644 --- a/models/paddle-billing-subscription-status.ts +++ b/models/paddle-billing-subscription-status.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.11 + * The version of the OpenAPI document: 1.9.0 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/paddle-billing-transaction-details.ts b/models/paddle-billing-transaction-details.ts index bff6df15..a00b13ce 100644 --- a/models/paddle-billing-transaction-details.ts +++ b/models/paddle-billing-transaction-details.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.11 + * The version of the OpenAPI document: 1.9.0 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/paddle-billing-transaction-item.ts b/models/paddle-billing-transaction-item.ts index 54cea9d7..5c57b8b0 100644 --- a/models/paddle-billing-transaction-item.ts +++ b/models/paddle-billing-transaction-item.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.11 + * The version of the OpenAPI document: 1.9.0 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/paddle-billing-transaction-line-item.ts b/models/paddle-billing-transaction-line-item.ts index dcb323aa..3a5d182f 100644 --- a/models/paddle-billing-transaction-line-item.ts +++ b/models/paddle-billing-transaction-line-item.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.11 + * The version of the OpenAPI document: 1.9.0 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/paddle-billing-transaction-product.ts b/models/paddle-billing-transaction-product.ts index 6520580b..4bc01088 100644 --- a/models/paddle-billing-transaction-product.ts +++ b/models/paddle-billing-transaction-product.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.11 + * The version of the OpenAPI document: 1.9.0 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/paused-reason.ts b/models/paused-reason.ts index 42d441fa..d91198b6 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.11 + * The version of the OpenAPI document: 1.9.0 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/payment-method-details.ts b/models/payment-method-details.ts index ad636b9e..ffef1577 100644 --- a/models/payment-method-details.ts +++ b/models/payment-method-details.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.11 + * The version of the OpenAPI document: 1.9.0 * 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 89b557e7..7caa9d63 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 12dcdc26..de104931 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.11 + * The version of the OpenAPI document: 1.9.0 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/payment-terms.ts b/models/payment-terms.ts index d0319e03..fb5537fa 100644 --- a/models/payment-terms.ts +++ b/models/payment-terms.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.11 + * The version of the OpenAPI document: 1.9.0 * 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 4427d02a..386a7f30 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 ec348f8f..a24061c3 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 76912e56..9aeebbee 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 69289b5f..cf9f5c02 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 0b140d7e..57591f7a 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 1721e619..9f03b3b9 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 2f0b9990..41e5388f 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 64d9b8b2..f2d2b4ef 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 279abd71..14a7d4bc 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 f87f5a43..5c25f760 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 5112a98a..b474c8d8 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 0cfdbba1..fe4929b6 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 9a367a8d..70d62d15 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 80519921..3ae49783 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 7e405ab0..15f24cab 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 92545efb..07ec9ae2 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 58860672..8e746892 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 667d47fa..bd7a7497 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 11c0d769..ef216598 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.11 + * The version of the OpenAPI document: 1.9.0 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/proration.ts b/models/proration.ts index a3a3516c..d9bd2f7e 100644 --- a/models/proration.ts +++ b/models/proration.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.11 + * The version of the OpenAPI document: 1.9.0 * 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 41d0bd84..7d2c28ae 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 index 9dfa1858..f0e489be 100644 --- a/models/quantity-constraints.ts +++ b/models/quantity-constraints.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.11 + * The version of the OpenAPI document: 1.9.0 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/quota-list.ts b/models/quota-list.ts index 577715ef..7072a2a1 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 721b7333..73d0d1f0 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 4bb84b18..30f3ca97 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 c0c0aca1..315bdaac 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 a701779e..04795a42 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 a2c7e2ce..9f6fb49a 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 eb84b35b..d4fae88d 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 3da785c4..bf0d0474 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 3ab25cad..2e2105ab 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 6faf5cc3..b6a92a72 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 ed48b9a3..fde22ee7 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 312b3b45..d44a1555 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 8514ab18..1a80c7a8 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 f80bf7ad..81af2b25 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 71074789..7142c093 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 ad9d3ab6..e5df3694 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 329d6e84..3994391b 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 87ee9eff..ee1627d6 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 861c8721..4a2a7db6 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 0d49fd8a..72a768c3 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 42076bd2..4247cf3c 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 1d921e15..d22aa398 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 a5a9b02d..3922670d 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 ce01a994..d23aeeeb 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 0b8e3ff8..7a56fe8d 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 68e106fa..b7a4faf2 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 8aac3c6d..a85ed23b 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 273f55ef..1dc548b3 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 89aca7d5..736caedd 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 db7e4182..7da5a9b4 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 1dd98a1b..a24a60fb 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 e383dcb0..fa52630f 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 0e38d2e4..85b964c6 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 f0a370cc..674c424e 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 d6e4606e..d397da00 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 4ba42a35..0e2e1c9d 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 5643c4d7..aae2f3e8 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 2bbd3a1b..8a358ff3 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 95813b58..0e1e4060 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 e8e52996..6822b589 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 1f4e177b..2f59dcfc 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 0b9ede9f..7354ff01 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 164c4087..d7bc3319 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 4705264b..bdf8a6fc 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 34c4373e..afe52e44 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 f0764ccf..a4494d17 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 56ae14ed..424897d1 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 2a2e1e8f..b2c2eefa 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 7c6ca3d8..d05b826d 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 8ad2ac17..2ee00f0b 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 6d235707..7e48488c 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 a48cbcf2..63d4cf13 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 187a190d..123e5ad3 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 2f0465a9..75923363 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 c3692bfe..864e11a1 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 fd2022aa..59bc487d 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 ff89cb3f..6940fd11 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 5d2dfd7c..47f6daec 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 2c911828..6cb9e469 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 c0739f9a..27f46757 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 27f508ff..196f1400 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 3cf7c31f..a9b03d5f 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 0c07174f..12ec4521 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 41e79b8a..dfc43a2e 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 bcd2686b..2d92f0dd 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 8398b3ac..b2c0ed2b 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 b6c17f0e..d49fca9a 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 1825f8a5..b523f937 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 c8f4616f..991af7c3 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 a7db2bb4..de50816e 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 9d5091f8..7523531d 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.11 + * The version of the OpenAPI document: 1.9.0 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/subscription-update-transaction.ts b/models/subscription-update-transaction.ts index 2b7bded1..b0074390 100644 --- a/models/subscription-update-transaction.ts +++ b/models/subscription-update-transaction.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.11 + * The version of the OpenAPI document: 1.9.0 * 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 1d2c113e..a41cc4b7 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 cc6297b4..ebae52ed 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 dcac0620..6a30aad9 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 6ae56643..0f6868b2 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 dcc1fb91..078cdbf2 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 25d50ff8..ef9989b7 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 65b66050..9b9a2b06 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 c0e74adc..da7a0d24 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 11d4d12f..7f49cc86 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 022764fd..7debc7a0 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 980eb20d..ba5be785 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 7d68f57c..1408df07 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 474aaab2..a794e142 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 9f53a44f..86b345ee 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 1efdbad7..4cb2efa0 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 92b01a88..85f569ff 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 a7df09b1..ac17e5ec 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 de3dea65..42804551 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.11 + * The version of the OpenAPI document: 1.9.0 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/transaction-item-totals.ts b/models/transaction-item-totals.ts index 2def6404..5b19f99f 100644 --- a/models/transaction-item-totals.ts +++ b/models/transaction-item-totals.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.11 + * The version of the OpenAPI document: 1.9.0 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/transaction-payment.ts b/models/transaction-payment.ts index c96d6f10..807e7d0b 100644 --- a/models/transaction-payment.ts +++ b/models/transaction-payment.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.11 + * The version of the OpenAPI document: 1.9.0 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/transaction-totals.ts b/models/transaction-totals.ts index ffe13f7d..80c10dc4 100644 --- a/models/transaction-totals.ts +++ b/models/transaction-totals.ts @@ -4,7 +4,7 @@ * pollination-server * Pollination Server OpenAPI Definition * - * The version of the OpenAPI document: 1.8.11 + * The version of the OpenAPI document: 1.9.0 * 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 481ae3b3..75483f24 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 2fec6f65..d401d26b 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 61bdfa07..c57a116d 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 726269f3..c252c674 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 aa0588ef..74dde828 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 4c37f1e2..5d8565b6 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 cca411fd..1081ad8b 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 dc885c24..180c0ce1 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 d05b9956..3fcb9aa9 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 dccfc139..56c49777 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 43233b05..72332a79 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 74968c99..73921b35 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 2c51eea9..b1dad8c8 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 6922fde0..5edaa538 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.11 + * The version of the OpenAPI document: 1.9.0 * 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 ffc0a3a5..3267e56d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@pollination-solutions/pollination-sdk", - "version": "1.8.11", + "version": "1.9.0", "description": "OpenAPI client for @pollination-solutions/pollination-sdk", "author": "OpenAPI-Generator Contributors", "repository": {