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-20 21:46:33.845847",
"regenerated": "2025-08-24 21:00:51.452360",
"spec_repo_commit": null
}
}
Expand Down
2 changes: 2 additions & 0 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ models/baked-recipe-templates-inner.ts
models/baked-recipe.ts
models/billing-details.ts
models/billing-info.ts
models/billing-invoice-request-create.ts
models/billing-option.ts
models/billing-payment-method.ts
models/billing-period.ts
Expand All @@ -70,6 +71,7 @@ models/cadlicense-usage.ts
models/card-type.ts
models/cloud-job-list.ts
models/cloud-job.ts
models/country-choice.ts
models/created-content.ts
models/dag.ts
models/dagarray-input-alias-inner.ts
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.11 --save
npm install @pollination-solutions/pollination-sdk@1.9.0 --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.11
* The version of the OpenAPI document: 1.9.0
* 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.11
* The version of the OpenAPI document: 1.9.0
* 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.11
* The version of the OpenAPI document: 1.9.0
* 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.11
* The version of the OpenAPI document: 1.9.0
* 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.11
* The version of the OpenAPI document: 1.9.0
* Contact: info@pollination.solutions
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
96 changes: 95 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.11
* The version of the OpenAPI document: 1.9.0
* Contact: info@pollination.solutions
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand All @@ -24,6 +24,8 @@ import { BASE_PATH, COLLECTION_FORMATS, type RequestArgs, BaseAPI, RequiredError
// @ts-ignore
import type { AppServerRestBillingDtoPayLink } from '../models';
// @ts-ignore
import type { BillingInvoiceRequestCreate } from '../models';
// @ts-ignore
import type { BillingPaymentMethod } from '../models';
// @ts-ignore
import type { BillingProduct } from '../models';
Expand Down Expand Up @@ -459,6 +461,49 @@ export const BillingApiAxiosParamCreator = function (configuration?: Configurati
options: localVarRequestOptions,
};
},
/**
* Send an invoice request confirmation email with customer and product details
* @summary Send invoice request confirmation email
* @param {BillingInvoiceRequestCreate} billingInvoiceRequestCreate
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
sendInvoiceRequestConfirmation: async (billingInvoiceRequestCreate: BillingInvoiceRequestCreate, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
// verify required parameter 'billingInvoiceRequestCreate' is not null or undefined
assertParamExists('sendInvoiceRequestConfirmation', 'billingInvoiceRequestCreate', billingInvoiceRequestCreate)
const localVarPath = `/billing/invoice-request`;
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
let baseOptions;
if (configuration) {
baseOptions = configuration.baseOptions;
}

const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
const localVarHeaderParameter = {} as any;
const localVarQueryParameter = {} as any;

// authentication JWTAuth required
// http bearer authentication required
await setBearerAuthToObject(localVarHeaderParameter, configuration)

// authentication APIKeyAuth required
await setApiKeyToObject(localVarHeaderParameter, "x-pollination-token", configuration)



localVarHeaderParameter['Content-Type'] = 'application/json';

setSearchParams(localVarUrlObj, localVarQueryParameter);
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
localVarRequestOptions.data = serializeDataIfNeeded(billingInvoiceRequestCreate, localVarRequestOptions, configuration)

return {
url: toPathString(localVarUrlObj),
options: localVarRequestOptions,
};
},
/**
* Uncancel a subscription directly via Paddle Billing API
* @summary Uncancel a Paddle Billing subscription
Expand Down Expand Up @@ -729,6 +774,19 @@ export const BillingApiFp = function(configuration?: Configuration) {
const localVarOperationServerBasePath = operationServerMap['BillingApi.previewBillingSubscription']?.[localVarOperationServerIndex]?.url;
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
},
/**
* Send an invoice request confirmation email with customer and product details
* @summary Send invoice request confirmation email
* @param {BillingInvoiceRequestCreate} billingInvoiceRequestCreate
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
async sendInvoiceRequestConfirmation(billingInvoiceRequestCreate: BillingInvoiceRequestCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
const localVarAxiosArgs = await localVarAxiosParamCreator.sendInvoiceRequestConfirmation(billingInvoiceRequestCreate, options);
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
const localVarOperationServerBasePath = operationServerMap['BillingApi.sendInvoiceRequestConfirmation']?.[localVarOperationServerIndex]?.url;
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
},
/**
* Uncancel a subscription directly via Paddle Billing API
* @summary Uncancel a Paddle Billing subscription
Expand Down Expand Up @@ -878,6 +936,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));
},
/**
* Send an invoice request confirmation email with customer and product details
* @summary Send invoice request confirmation email
* @param {BillingApiSendInvoiceRequestConfirmationRequest} requestParameters Request parameters.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
*/
sendInvoiceRequestConfirmation(requestParameters: BillingApiSendInvoiceRequestConfirmationRequest, options?: RawAxiosRequestConfig): AxiosPromise<void> {
return localVarFp.sendInvoiceRequestConfirmation(requestParameters.billingInvoiceRequestCreate, options).then((request) => request(axios, basePath));
},
/**
* Uncancel a subscription directly via Paddle Billing API
* @summary Uncancel a Paddle Billing subscription
Expand Down Expand Up @@ -1051,6 +1119,20 @@ export interface BillingApiPreviewBillingSubscriptionRequest {
readonly billingSubscriptionUpdate: BillingSubscriptionUpdate
}

/**
* Request parameters for sendInvoiceRequestConfirmation operation in BillingApi.
* @export
* @interface BillingApiSendInvoiceRequestConfirmationRequest
*/
export interface BillingApiSendInvoiceRequestConfirmationRequest {
/**
*
* @type {BillingInvoiceRequestCreate}
* @memberof BillingApiSendInvoiceRequestConfirmation
*/
readonly billingInvoiceRequestCreate: BillingInvoiceRequestCreate
}

/**
* Request parameters for uncancelBillingSubscription operation in BillingApi.
* @export
Expand Down Expand Up @@ -1226,6 +1308,18 @@ export class BillingApi extends BaseAPI {
return BillingApiFp(this.configuration).previewBillingSubscription(requestParameters.subscriptionId, requestParameters.billingSubscriptionUpdate, options).then((request) => request(this.axios, this.basePath));
}

/**
* Send an invoice request confirmation email with customer and product details
* @summary Send invoice request confirmation email
* @param {BillingApiSendInvoiceRequestConfirmationRequest} requestParameters Request parameters.
* @param {*} [options] Override http request option.
* @throws {RequiredError}
* @memberof BillingApi
*/
public sendInvoiceRequestConfirmation(requestParameters: BillingApiSendInvoiceRequestConfirmationRequest, options?: RawAxiosRequestConfig) {
return BillingApiFp(this.configuration).sendInvoiceRequestConfirmation(requestParameters.billingInvoiceRequestCreate, options).then((request) => request(this.axios, this.basePath));
}

/**
* Uncancel a subscription directly via Paddle Billing API
* @summary Uncancel a Paddle Billing subscription
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.11
* The version of the OpenAPI document: 1.9.0
* 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.11
* The version of the OpenAPI document: 1.9.0
* 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.11
* The version of the OpenAPI document: 1.9.0
* 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.11
* The version of the OpenAPI document: 1.9.0
* 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.11
* The version of the OpenAPI document: 1.9.0
* 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.11
* The version of the OpenAPI document: 1.9.0
* 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.11
* The version of the OpenAPI document: 1.9.0
* 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.11
* The version of the OpenAPI document: 1.9.0
* 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.11
* The version of the OpenAPI document: 1.9.0
* 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.11
* The version of the OpenAPI document: 1.9.0
* 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.11
* The version of the OpenAPI document: 1.9.0
* 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.11
* The version of the OpenAPI document: 1.9.0
* 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.11
* The version of the OpenAPI document: 1.9.0
* 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.11
* The version of the OpenAPI document: 1.9.0
* 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.11
* The version of the OpenAPI document: 1.9.0
* 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.11
* The version of the OpenAPI document: 1.9.0
* 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.11
* The version of the OpenAPI document: 1.9.0
* 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.11
* The version of the OpenAPI document: 1.9.0
* 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.11
* The version of the OpenAPI document: 1.9.0
* Contact: info@pollination.solutions
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
Loading
Loading