diff --git a/.apigentools-info b/.apigentools-info index 67f5fb43..d2c81aab 100644 --- a/.apigentools-info +++ b/.apigentools-info @@ -4,7 +4,7 @@ "spec_versions": { "v1": { "apigentools_version": "1.6.6", - "regenerated": "2025-08-15 15:40:42.082026", + "regenerated": "2025-08-20 21:46:33.845847", "spec_repo_commit": null } } diff --git a/README.md b/README.md index f6289431..a8c72ffa 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.10 --save +npm install @pollination-solutions/pollination-sdk@1.8.11 --save ``` _unPublished (not recommended):_ diff --git a/api.ts b/api.ts index 33f87d2d..59ead3f6 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 64cdb56d..34bfad3c 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 45f9b858..c9aa888b 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 e10bc6a9..bfc5cdf0 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 5f9f40aa..5c5cf40a 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 543fd88e..849f6195 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.10 + * The version of the OpenAPI document: 1.8.11 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). @@ -459,6 +459,47 @@ export const BillingApiAxiosParamCreator = function (configuration?: Configurati options: localVarRequestOptions, }; }, + /** + * Uncancel a subscription directly via Paddle Billing API + * @summary Uncancel a Paddle Billing subscription + * @param {string} subscriptionId + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + uncancelBillingSubscription: async (subscriptionId: string, options: RawAxiosRequestConfig = {}): Promise => { + // verify required parameter 'subscriptionId' is not null or undefined + assertParamExists('uncancelBillingSubscription', 'subscriptionId', subscriptionId) + const localVarPath = `/billing/subscriptions/{subscription_id}/uncancel` + .replace(`{${"subscription_id"}}`, encodeURIComponent(String(subscriptionId))); + // use dummy base URL string because the URL constructor only accepts absolute URLs. + const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); + let baseOptions; + if (configuration) { + baseOptions = configuration.baseOptions; + } + + const localVarRequestOptions = { method: '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) + + + + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers}; + + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, /** * Update a subscription directly via Paddle Billing API * @summary Update a Paddle Billing subscription @@ -688,6 +729,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); }, + /** + * Uncancel a subscription directly via Paddle Billing API + * @summary Uncancel a Paddle Billing subscription + * @param {string} subscriptionId + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + async uncancelBillingSubscription(subscriptionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise> { + const localVarAxiosArgs = await localVarAxiosParamCreator.uncancelBillingSubscription(subscriptionId, options); + const localVarOperationServerIndex = configuration?.serverIndex ?? 0; + const localVarOperationServerBasePath = operationServerMap['BillingApi.uncancelBillingSubscription']?.[localVarOperationServerIndex]?.url; + return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); + }, /** * Update a subscription directly via Paddle Billing API * @summary Update a Paddle Billing subscription @@ -824,6 +878,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)); }, + /** + * Uncancel a subscription directly via Paddle Billing API + * @summary Uncancel a Paddle Billing subscription + * @param {BillingApiUncancelBillingSubscriptionRequest} requestParameters Request parameters. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + */ + uncancelBillingSubscription(requestParameters: BillingApiUncancelBillingSubscriptionRequest, options?: RawAxiosRequestConfig): AxiosPromise { + return localVarFp.uncancelBillingSubscription(requestParameters.subscriptionId, options).then((request) => request(axios, basePath)); + }, /** * Update a subscription directly via Paddle Billing API * @summary Update a Paddle Billing subscription @@ -987,6 +1051,20 @@ export interface BillingApiPreviewBillingSubscriptionRequest { readonly billingSubscriptionUpdate: BillingSubscriptionUpdate } +/** + * Request parameters for uncancelBillingSubscription operation in BillingApi. + * @export + * @interface BillingApiUncancelBillingSubscriptionRequest + */ +export interface BillingApiUncancelBillingSubscriptionRequest { + /** + * + * @type {string} + * @memberof BillingApiUncancelBillingSubscription + */ + readonly subscriptionId: string +} + /** * Request parameters for updateBillingSubscription operation in BillingApi. * @export @@ -1148,6 +1226,18 @@ export class BillingApi extends BaseAPI { return BillingApiFp(this.configuration).previewBillingSubscription(requestParameters.subscriptionId, requestParameters.billingSubscriptionUpdate, options).then((request) => request(this.axios, this.basePath)); } + /** + * Uncancel a subscription directly via Paddle Billing API + * @summary Uncancel a Paddle Billing subscription + * @param {BillingApiUncancelBillingSubscriptionRequest} requestParameters Request parameters. + * @param {*} [options] Override http request option. + * @throws {RequiredError} + * @memberof BillingApi + */ + public uncancelBillingSubscription(requestParameters: BillingApiUncancelBillingSubscriptionRequest, options?: RawAxiosRequestConfig) { + return BillingApiFp(this.configuration).uncancelBillingSubscription(requestParameters.subscriptionId, options).then((request) => request(this.axios, this.basePath)); + } + /** * Update a subscription directly via Paddle Billing API * @summary Update a Paddle Billing subscription diff --git a/api/jobs-api.ts b/api/jobs-api.ts index f337c762..fe44b184 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 52f6f60e..efb76e2f 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 4a524f30..e34cff75 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 ea2bbe74..4597816d 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 01e55c7c..87d0d462 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 277c2748..8d209991 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 c541b279..ad27ad1d 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 50c5b216..d320a8e4 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 b4c5ae6d..feaa45d4 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 80b4b7b1..e55ef784 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 914d4e29..68c9deda 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 33797fc9..6c1c895c 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 e022e87f..b497b585 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 d7dc286d..7f2987ea 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 10bf74a1..59a226f3 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 a977b796..1b847753 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 969d8a2a..6a0bfee6 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 6c48e804..a294317c 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 4718ef05..07f09a98 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 ce4e1fd6..0483ede4 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 cb79d745..70b40886 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 e2cf5496..1e178559 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 14fea6d0..fe6229da 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 4baf2307..aab14c46 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 5935a9ef..d26eca00 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 8844113a..d6382d15 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 4ddc113c..d8e3f0de 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 e62e4540..f8104a2e 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 63e63119..ceed753c 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 4453f75b..a6040dc8 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 28f99805..6b0cf735 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 e8e736ad..fdb0704d 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 04142eb7..10b6f0f9 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 14cf1640..c2e5e07d 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 320c59f1..a89e825b 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 bfa232ad..4ede5d60 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 0f1ff39c..af09cd62 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 3c441f05..8062ff1b 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 fd87bffa..32af6b28 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 fbbbe263..02616929 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 0143a352..aa6cd11b 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 06426714..3dc72211 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 6d6ad829..f5e2fd23 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 d83ce11c..7d3cd0d3 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.10 + * The version of the OpenAPI document: 1.8.11 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/billing-option.ts b/models/billing-option.ts index c44b3453..7c88e3d2 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 07d67d03..8c9bd67a 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 a35e5183..d63d6f3c 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 3e6564d5..f710d4b5 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 2d34b517..ab95ea95 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 f7241438..30c0843f 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 a75cb0f4..f61a725f 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 cadec42b..c892d729 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 ffbd23fe..4cbcd638 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 233691d2..85329d2a 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 7400d738..d2a18acf 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 862338b4..054657e4 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 ec3c7315..6d5a1906 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 9649beb5..2b4834a3 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 51b8f75f..3e70fed8 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 54a22058..c2d2f1b4 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 43084860..8f60a0ab 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.10 + * The version of the OpenAPI document: 1.8.11 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/created-content.ts b/models/created-content.ts index 2d883a27..0771086f 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 e0eeddf6..57be0a9e 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 9acd167c..5688fe64 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 2fb42be8..eb9a8852 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 a182dc65..2e5d56cc 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 9ef59424..fc85f211 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 c232b8ba..92e47818 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 d38f9358..b068325b 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 51c1e571..41644bbb 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 bbf633f3..a4ffce74 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 d91db4cb..0881cfa7 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 7d5ad02a..d0404988 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 00eddd6d..431b3a1f 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 f0966c90..4a3801da 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 ef586c0f..e072d51b 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 e06b2eb6..38ea192b 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 a325dbd9..751858de 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 8ce46c05..04df9e39 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 6bdde4c5..a0f1d39b 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 8d10001e..9f163dd2 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 8542ede7..9ec3081f 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 7946c615..c6d3f989 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 4de70bbc..c2eee9c3 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 60897449..629482f2 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 453d1936..3d5e1166 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 ffeef87f..b52820dd 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 737e5fa6..5703d68d 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 dcc4a676..d34c81f3 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 430d974b..e93300ff 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 a78d7467..a9263df4 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 9cde6573..98b74674 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 ace1f646..645fd77f 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 25c7eb89..157c5e84 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 33457aa6..9b410c19 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 21d6fc65..614a1c2e 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 59f20179..a3a7e45d 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 1dc20637..5b6e9ea3 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 6d72607b..177c3198 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 bcf0776a..4570bfb4 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 a6ef2f13..9a3ea06d 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 ed5d747e..6d0a4bfb 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 7a499f7d..26d991eb 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 49783e96..b6fc6e34 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 a15d730e..39994b68 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 2932e2ef..79c2a9b7 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 a02ec0cb..1af4bdb8 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 290182ee..e8ef003c 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 0e24a180..45439c44 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 4b0a500b..e3e0e105 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 827d3862..ea13702e 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 0a60cdb7..48d7e742 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 95fa756e..00e7b908 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 32bfcfd9..fd886a64 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 b9603366..53cefab6 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 5176c560..0552acda 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 e73d8c9f..7def3c9a 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 602d7b6f..2ca75657 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 768c8c08..165c5299 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 c67879ea..865685ce 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 e45f9896..49097307 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 07809df9..7a3e2002 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 30b036bc..786ca2a4 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 f425cc76..6207494e 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 eee9842a..729e1d65 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 2cabd6fc..79e27580 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 7d1f9471..350db186 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 725a1f10..da954019 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 e1d12ea9..80ac73dc 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 be53b3ce..dc035e0c 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 f97c71d1..8b054d38 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 c1787d0f..9366f12e 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 b157a992..3cedea59 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 69f6d6a6..84c33587 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 c01f075e..45b7ec4e 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 0220f96d..b5cc7bf7 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 febfc58e..053faf8c 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 a338183d..0bd1aca5 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 e5f52527..a8cf5380 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 65afe99a..3927e584 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 b2cb2b40..d9ec7d40 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 19213d16..e4008b88 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 84bdee09..fa226813 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 d3f44d6d..8637695d 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 949a3c00..d72e63ef 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 c745e7af..e671dc26 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 da110998..964e32d7 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 a7fe40f6..ac281cdb 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 326e05a5..33ed4203 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 0fe9a57a..c84bd5dd 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 85c796f5..1c01e1b3 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 eb12cf33..aebd5609 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 d74446f1..c474c2d1 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 b19ef460..a644aa40 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.10 + * The version of the OpenAPI document: 1.8.11 * Contact: info@pollination.solutions * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/models/input-file-reference.ts b/models/input-file-reference.ts index caf115c8..c3ea20e7 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 f8df676a..8db76e96 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 4e98ad66..c4031033 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 b5614c2a..4625a08f 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 755e3cbc..89506f16 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 d3151aad..17c47d46 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 dee14543..2c7388dc 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 83fc11bf..c408a664 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 b1465501..3e54f286 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 2c41e92d..ffe1383a 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 86bb341f..b7593046 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 a76b6a42..8c6ef6cc 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 eb43b556..540d8018 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 7738f1e1..4ede30ba 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 802165d2..0f1dfb57 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 56f01cdb..107097f2 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 30a34340..6fe3089d 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 cdf2bf9e..58350e21 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 63903e78..6c6c0424 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 ed0c4e2d..b039cc3b 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 e4e1c09c..7678589b 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 7d20fd58..b5648939 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 a39423f8..1e86d2cb 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 54fcce41..d3fa1a7b 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 963538f6..a91fab1a 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 f2d4002c..1872417f 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 c66cdfa4..7eb8a1f9 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 856de455..a5b9407f 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 45930439..578848ae 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 6c5e24da..eb9d3fcf 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 01aa9dd3..65c6fef0 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 09db4142..6d786353 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 38cad7fc..2f9e4361 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 ab06eda8..641047e3 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 97639199..27c94c8b 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 b0dc1e99..c4cb4f11 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 9fca47bf..e9a921ce 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 7738bd47..822a9e7d 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 01ff4962..da98e792 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 d210f51f..0467c3c3 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 be85af9f..b7140dd2 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 de73af62..bbe078ec 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 da057898..dd2710a3 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 6ab49765..9a502a04 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 852ea954..df9a2de0 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 448c9c0d..62f52823 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 87ddf9a2..d40ecf5f 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 c887801d..e4092a69 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 bc5a75eb..c426a3d6 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 692ac53a..45a5ec63 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 e476ca05..1208e765 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 2c433223..af5ce587 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 b73e5205..3656406f 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 99b7fefb..0913e400 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 7b49f088..79113763 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 33d2ed56..bff6df15 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 8d672289..54cea9d7 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 486a679e..dcb323aa 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 74d3b550..6520580b 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 a4f2a203..42d441fa 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 866acce4..ad636b9e 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 b56c5eca..89b557e7 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 bef337fd..12dcdc26 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 3580df21..d0319e03 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 88aa0508..4427d02a 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 275fbc67..ec348f8f 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 57a511b3..76912e56 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 38cc4368..69289b5f 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 8a90b556..0b140d7e 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 90eb151d..1721e619 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 07c20ee5..2f0b9990 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 f6a97615..64d9b8b2 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 1f137802..279abd71 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 52887298..f87f5a43 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 f26cb70f..5112a98a 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 d0246557..0cfdbba1 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 9892e146..9a367a8d 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 37c0050e..80519921 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 da3f9ba5..7e405ab0 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 e60a4368..92545efb 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 68b3b8a3..58860672 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 e65a31c0..667d47fa 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 fd23bae3..11c0d769 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 05818aef..a3a3516c 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 3ce8751c..41d0bd84 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 2647aea8..9dfa1858 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 b191b958..577715ef 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 2e2a6e57..721b7333 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 8e55c6dc..4bb84b18 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 76395af1..c0c0aca1 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 b5d627bc..a701779e 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 ecd4f169..a2c7e2ce 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 e10a06e2..eb84b35b 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 8435f458..3da785c4 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 b5d593fc..3ab25cad 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 67d97f3b..6faf5cc3 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 d6e5dee0..ed48b9a3 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 969292f9..312b3b45 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 75ccaee5..8514ab18 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 8e76bfd7..f80bf7ad 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 4ca5fceb..71074789 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 225974e4..ad9d3ab6 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 5b209dcf..329d6e84 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 c01b97f2..87ee9eff 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 b01808ec..861c8721 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 bd474792..0d49fd8a 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 73509c7c..42076bd2 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 74da4387..1d921e15 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 86b6cce0..a5a9b02d 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 69057ffe..ce01a994 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 2b7426c5..0b8e3ff8 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 6780c660..68e106fa 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 0714f009..8aac3c6d 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 39d9cee1..273f55ef 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 93349655..89aca7d5 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 b444979c..db7e4182 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 90d96991..1dd98a1b 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 cf68ec64..e383dcb0 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 4178abcd..0e38d2e4 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 780613ee..f0a370cc 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 c6c2fdff..d6e4606e 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 e552f98b..4ba42a35 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 9a7ff5f9..5643c4d7 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 74fd317d..2bbd3a1b 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 2fa315dc..95813b58 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 f9dd0af2..e8e52996 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 3a8993ab..1f4e177b 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 3f523fc2..0b9ede9f 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 0c3a7088..164c4087 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 3bb4ad72..4705264b 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 de6ce38b..34c4373e 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 f0abe5ce..f0764ccf 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 14a0ebc3..56ae14ed 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 86c355f8..2a2e1e8f 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 16072f76..7c6ca3d8 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 26bf88cc..8ad2ac17 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 5fe889f0..6d235707 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 ea4f67b1..a48cbcf2 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 07ab7163..187a190d 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 f224d64a..2f0465a9 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 d0ee93d4..c3692bfe 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 1fbd9713..fd2022aa 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 85a44f2e..ff89cb3f 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 42c066fb..5d2dfd7c 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 a31caa73..2c911828 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 b4384199..c0739f9a 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 dfef88f3..27f508ff 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 d66f4dac..3cf7c31f 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 31601435..0c07174f 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 52b3b1b4..41e79b8a 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 3489d7e5..bcd2686b 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 c20a64b2..8398b3ac 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 057930ea..b6c17f0e 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 eea91d5d..1825f8a5 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 c40a2ee5..c8f4616f 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 071eb888..a7db2bb4 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 6a3ac32b..9d5091f8 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 d338a16d..2b7bded1 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 7ef25313..1d2c113e 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 76377312..cc6297b4 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 e4cac41e..dcac0620 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 3be414b0..6ae56643 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 47a73c28..dcc1fb91 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 dac52cf5..25d50ff8 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 fb117165..65b66050 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 dbc59cc6..c0e74adc 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 630ddb41..11d4d12f 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 4f86044b..022764fd 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 647bb7ed..980eb20d 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 d898a4bd..7d68f57c 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 1edffffd..474aaab2 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 f126ba65..9f53a44f 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 748e0f9c..1efdbad7 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 796deb23..92b01a88 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 9dc006b5..a7df09b1 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 c7a11470..de3dea65 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 6ba4248e..2def6404 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 70fff84e..c96d6f10 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 588e2cb2..ffe13f7d 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 a3aee0be..481ae3b3 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 ad5f8548..2fec6f65 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 1f60e442..61bdfa07 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 9b40e2a2..726269f3 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 0c1c020d..aa0588ef 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 d3986c67..4c37f1e2 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 dc412712..cca411fd 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 5f0299d2..dc885c24 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 7eb54246..d05b9956 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 8f4c712d..dccfc139 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 b1d36f86..43233b05 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 f2b7988c..74968c99 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 efd0bc1a..2c51eea9 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 69e23a22..6922fde0 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.10 + * The version of the OpenAPI document: 1.8.11 * 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 13c68eaa..ffc0a3a5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@pollination-solutions/pollination-sdk", - "version": "1.8.10", + "version": "1.8.11", "description": "OpenAPI client for @pollination-solutions/pollination-sdk", "author": "OpenAPI-Generator Contributors", "repository": {