Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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):_
Expand Down
2 changes: 1 addition & 1 deletion api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* pollination-server
* Pollination Server OpenAPI Definition
*
* The version of the OpenAPI document: 1.8.10
* The version of the OpenAPI document: 1.8.11
* Contact: info@pollination.solutions
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion api/accounts-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* pollination-server
* Pollination Server OpenAPI Definition
*
* The version of the OpenAPI document: 1.8.10
* The version of the OpenAPI document: 1.8.11
* Contact: info@pollination.solutions
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion api/apitokens-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* pollination-server
* Pollination Server OpenAPI Definition
*
* The version of the OpenAPI document: 1.8.10
* The version of the OpenAPI document: 1.8.11
* Contact: info@pollination.solutions
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion api/applications-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* pollination-server
* Pollination Server OpenAPI Definition
*
* The version of the OpenAPI document: 1.8.10
* The version of the OpenAPI document: 1.8.11
* Contact: info@pollination.solutions
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion api/artifacts-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* pollination-server
* Pollination Server OpenAPI Definition
*
* The version of the OpenAPI document: 1.8.10
* The version of the OpenAPI document: 1.8.11
* Contact: info@pollination.solutions
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
92 changes: 91 additions & 1 deletion api/billing-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* pollination-server
* Pollination Server OpenAPI Definition
*
* The version of the OpenAPI document: 1.8.10
* The version of the OpenAPI document: 1.8.11
* Contact: info@pollination.solutions
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down Expand Up @@ -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<RequestArgs> => {
// 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
Expand Down Expand Up @@ -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<BillingSubscription>> {
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
Expand Down Expand Up @@ -824,6 +878,16 @@ export const BillingApiFactory = function (configuration?: Configuration, basePa
previewBillingSubscription(requestParameters: BillingApiPreviewBillingSubscriptionRequest, options?: RawAxiosRequestConfig): AxiosPromise<BillingTransactionPreview> {
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<BillingSubscription> {
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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion api/jobs-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* pollination-server
* Pollination Server OpenAPI Definition
*
* The version of the OpenAPI document: 1.8.10
* The version of the OpenAPI document: 1.8.11
* Contact: info@pollination.solutions
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion api/licenses-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* pollination-server
* Pollination Server OpenAPI Definition
*
* The version of the OpenAPI document: 1.8.10
* The version of the OpenAPI document: 1.8.11
* Contact: info@pollination.solutions
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion api/orgs-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* pollination-server
* Pollination Server OpenAPI Definition
*
* The version of the OpenAPI document: 1.8.10
* The version of the OpenAPI document: 1.8.11
* Contact: info@pollination.solutions
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion api/plugins-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* pollination-server
* Pollination Server OpenAPI Definition
*
* The version of the OpenAPI document: 1.8.10
* The version of the OpenAPI document: 1.8.11
* Contact: info@pollination.solutions
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion api/projects-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* pollination-server
* Pollination Server OpenAPI Definition
*
* The version of the OpenAPI document: 1.8.10
* The version of the OpenAPI document: 1.8.11
* Contact: info@pollination.solutions
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion api/recipes-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* pollination-server
* Pollination Server OpenAPI Definition
*
* The version of the OpenAPI document: 1.8.10
* The version of the OpenAPI document: 1.8.11
* Contact: info@pollination.solutions
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion api/registries-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* pollination-server
* Pollination Server OpenAPI Definition
*
* The version of the OpenAPI document: 1.8.10
* The version of the OpenAPI document: 1.8.11
* Contact: info@pollination.solutions
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion api/reports-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* pollination-server
* Pollination Server OpenAPI Definition
*
* The version of the OpenAPI document: 1.8.10
* The version of the OpenAPI document: 1.8.11
* Contact: info@pollination.solutions
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion api/runs-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* pollination-server
* Pollination Server OpenAPI Definition
*
* The version of the OpenAPI document: 1.8.10
* The version of the OpenAPI document: 1.8.11
* Contact: info@pollination.solutions
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion api/subscription-plans-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* pollination-server
* Pollination Server OpenAPI Definition
*
* The version of the OpenAPI document: 1.8.10
* The version of the OpenAPI document: 1.8.11
* Contact: info@pollination.solutions
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion api/subscriptions-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* pollination-server
* Pollination Server OpenAPI Definition
*
* The version of the OpenAPI document: 1.8.10
* The version of the OpenAPI document: 1.8.11
* Contact: info@pollination.solutions
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion api/teams-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* pollination-server
* Pollination Server OpenAPI Definition
*
* The version of the OpenAPI document: 1.8.10
* The version of the OpenAPI document: 1.8.11
* Contact: info@pollination.solutions
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion api/user-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* pollination-server
* Pollination Server OpenAPI Definition
*
* The version of the OpenAPI document: 1.8.10
* The version of the OpenAPI document: 1.8.11
* Contact: info@pollination.solutions
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion api/users-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* pollination-server
* Pollination Server OpenAPI Definition
*
* The version of the OpenAPI document: 1.8.10
* The version of the OpenAPI document: 1.8.11
* Contact: info@pollination.solutions
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* pollination-server
* Pollination Server OpenAPI Definition
*
* The version of the OpenAPI document: 1.8.10
* The version of the OpenAPI document: 1.8.11
* Contact: info@pollination.solutions
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* pollination-server
* Pollination Server OpenAPI Definition
*
* The version of the OpenAPI document: 1.8.10
* The version of the OpenAPI document: 1.8.11
* Contact: info@pollination.solutions
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion configuration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* pollination-server
* Pollination Server OpenAPI Definition
*
* The version of the OpenAPI document: 1.8.10
* The version of the OpenAPI document: 1.8.11
* Contact: info@pollination.solutions
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* pollination-server
* Pollination Server OpenAPI Definition
*
* The version of the OpenAPI document: 1.8.10
* The version of the OpenAPI document: 1.8.11
* Contact: info@pollination.solutions
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion models/accessor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* pollination-server
* Pollination Server OpenAPI Definition
*
* The version of the OpenAPI document: 1.8.10
* The version of the OpenAPI document: 1.8.11
* Contact: info@pollination.solutions
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion models/account-public.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* pollination-server
* Pollination Server OpenAPI Definition
*
* The version of the OpenAPI document: 1.8.10
* The version of the OpenAPI document: 1.8.11
* Contact: info@pollination.solutions
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion models/account-type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* pollination-server
* Pollination Server OpenAPI Definition
*
* The version of the OpenAPI document: 1.8.10
* The version of the OpenAPI document: 1.8.11
* Contact: info@pollination.solutions
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion models/activation-list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* pollination-server
* Pollination Server OpenAPI Definition
*
* The version of the OpenAPI document: 1.8.10
* The version of the OpenAPI document: 1.8.11
* Contact: info@pollination.solutions
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
Loading
Loading