diff --git a/CHANGELOG.md b/CHANGELOG.md index 01f190b9..19dad7e8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ The file format of it is based on [Keep a Changelog](http://keepachangelog.com/e For public Changelog covering all changes done to Pipedrive’s API, webhooks and app extensions platforms, see [public Changelog](https://pipedrive.readme.io/docs/changelog) with discussion area in [Developers Community](https://devcommunity.pipedrive.com/c/documentation/changelog/19). ## [Unreleased] +### Added +- Added `GET /v2/deals/installments` endpoint to fetch all installments added to a list of deals with cursor pagination +- Added `POST /v2/deals/{id}/installments` endpoint to add an installment to a deal +- Added `PATCH /v2/deals/{id}/installments/{installment_id}` endpoint to edit an installment +- Added `DELETE /v2/deals/{id}/installments/{installment_id}` endpoint to delete an installment +- Added AdditionalData to v2 modals ## [24.1.1] - 2025-02-11 ### Fixed diff --git a/docs/v2.md b/docs/v2.md index 06f5920e..c50383d6 100644 --- a/docs/v2.md +++ b/docs/v2.md @@ -18,6 +18,7 @@ BetaApi | deleteActivity | **DELETE** /activities/{id} | Delete an activity BetaApi | deleteAdditionalDiscount | **DELETE** /deals/{id}/discounts/{discount_id} | Delete a discount from a deal BetaApi | deleteDeal | **DELETE** /deals/{id} | Delete a deal BetaApi | deleteDealProduct | **DELETE** /deals/{id}/products/{product_attachment_id} | Delete an attached product from a deal +BetaApi | deleteInstallment | **DELETE** /deals/{id}/installments/{installment_id} | Delete an installment from a deal BetaApi | deleteOrganization | **DELETE** /organizations/{id} | Delete a organization BetaApi | deletePerson | **DELETE** /persons/{id} | Delete a person BetaApi | getActivities | **GET** /activities | Get all activities @@ -27,11 +28,13 @@ BetaApi | getDeal | **GET** /deals/{id} | Get details of a deal BetaApi | getDealProducts | **GET** /deals/{id}/products | List products attached to a deal BetaApi | getDeals | **GET** /deals | Get all deals BetaApi | getDealsProducts | **GET** /deals/products | Get deal products of several deals +BetaApi | getInstallments | **GET** /deals/installments | List installments added to a list of deals BetaApi | getOrganization | **GET** /organizations/{id} | Get details of a organization BetaApi | getOrganizations | **GET** /organizations | Get all organizations BetaApi | getPerson | **GET** /persons/{id} | Get details of a person BetaApi | getPersons | **GET** /persons | Get all persons BetaApi | postAdditionalDiscount | **POST** /deals/{id}/discounts | Add a discount to a deal +BetaApi | postInstallment | **POST** /deals/{id}/installments | Add an installment to a deal BetaApi | searchDeals | **GET** /deals/search | Search deals BetaApi | searchItem | **GET** /itemSearch | Perform a search from multiple item types BetaApi | searchItemByField | **GET** /itemSearch/field | Perform a search using a specific field from an item type @@ -42,6 +45,7 @@ BetaApi | updateActivity | **PATCH** /activities/{id} | Update an activity BetaApi | updateAdditionalDiscount | **PATCH** /deals/{id}/discounts/{discount_id} | Update a discount added to a deal BetaApi | updateDeal | **PATCH** /deals/{id} | Update a deal BetaApi | updateDealProduct | **PATCH** /deals/{id}/products/{product_attachment_id} | Update the product attached to a deal +BetaApi | updateInstallment | **PATCH** /deals/{id}/installments/{installment_id} | Update an installment added to a deal BetaApi | updateOrganization | **PATCH** /organizations/{id} | Update a organization BetaApi | updatePerson | **PATCH** /persons/{id} | Update a person DealsApi | addDeal | **POST** /deals | Add a new deal @@ -49,16 +53,20 @@ DealsApi | addDealProduct | **POST** /deals/{id}/products | Add a product to a d DealsApi | deleteAdditionalDiscount | **DELETE** /deals/{id}/discounts/{discount_id} | Delete a discount from a deal DealsApi | deleteDeal | **DELETE** /deals/{id} | Delete a deal DealsApi | deleteDealProduct | **DELETE** /deals/{id}/products/{product_attachment_id} | Delete an attached product from a deal +DealsApi | deleteInstallment | **DELETE** /deals/{id}/installments/{installment_id} | Delete an installment from a deal DealsApi | getAdditionalDiscounts | **GET** /deals/{id}/discounts | List discounts added to a deal DealsApi | getDeal | **GET** /deals/{id} | Get details of a deal DealsApi | getDealProducts | **GET** /deals/{id}/products | List products attached to a deal DealsApi | getDeals | **GET** /deals | Get all deals DealsApi | getDealsProducts | **GET** /deals/products | Get deal products of several deals +DealsApi | getInstallments | **GET** /deals/installments | List installments added to a list of deals DealsApi | postAdditionalDiscount | **POST** /deals/{id}/discounts | Add a discount to a deal +DealsApi | postInstallment | **POST** /deals/{id}/installments | Add an installment to a deal DealsApi | searchDeals | **GET** /deals/search | Search deals DealsApi | updateAdditionalDiscount | **PATCH** /deals/{id}/discounts/{discount_id} | Update a discount added to a deal DealsApi | updateDeal | **PATCH** /deals/{id} | Update a deal DealsApi | updateDealProduct | **PATCH** /deals/{id}/products/{product_attachment_id} | Update the product attached to a deal +DealsApi | updateInstallment | **PATCH** /deals/{id}/installments/{installment_id} | Update an installment added to a deal ItemSearchApi | searchItem | **GET** /itemSearch | Perform a search from multiple item types ItemSearchApi | searchItemByField | **GET** /itemSearch/field | Perform a search using a specific field from an item type LeadsApi | searchLeads | **GET** /leads/search | Search leads diff --git a/src/versions/v1/models/additional-data.ts b/src/versions/v1/models/additional-data.ts new file mode 100644 index 00000000..b1ae2aea --- /dev/null +++ b/src/versions/v1/models/additional-data.ts @@ -0,0 +1,44 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Pipedrive API v1 + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + * + * The version of the OpenAPI document: 1.0.0 + * + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + + +/** +* The pagination details of the list +* @export +* @interface AdditionalData +*/ +export interface AdditionalData { + /** + * Next pagination start + * @type {number} + */ + 'next_start'?: number; + /** + * Pagination start + * @type {number} + */ + 'start'?: number; + /** + * Items shown per page + * @type {number} + */ + 'limit'?: number; + /** + * If there are more list items in the collection than displayed or not + * @type {boolean} + */ + 'more_items_in_collection'?: boolean; +} + diff --git a/src/versions/v1/models/get-notes-response-additional-data.ts b/src/versions/v1/models/get-notes-response-additional-data.ts index 984d737e..cd1e856b 100644 --- a/src/versions/v1/models/get-notes-response-additional-data.ts +++ b/src/versions/v1/models/get-notes-response-additional-data.ts @@ -15,7 +15,7 @@ // May contain unused imports in some cases // @ts-ignore -import { GetNotesResponseAdditionalDataPagination } from './get-notes-response-additional-data-pagination'; +import { AdditionalData } from './additional-data'; /** * @@ -25,8 +25,8 @@ import { GetNotesResponseAdditionalDataPagination } from './get-notes-response-a export interface GetNotesResponseAdditionalData { /** * - * @type {GetNotesResponseAdditionalDataPagination} + * @type {AdditionalData} */ - 'pagination'?: GetNotesResponseAdditionalDataPagination; + 'pagination'?: AdditionalData; } diff --git a/src/versions/v1/models/index.ts b/src/versions/v1/models/index.ts index eb1d7770..7520530b 100644 --- a/src/versions/v1/models/index.ts +++ b/src/versions/v1/models/index.ts @@ -99,6 +99,7 @@ export * from './add-user-provider-link-request'; export * from './add-user-request'; export * from './add-webhook-request'; export * from './additional-base-organization-item-info'; +export * from './additional-data'; export * from './additional-merge-person-info'; export * from './additional-person-info'; export * from './base-deal'; @@ -411,7 +412,6 @@ export * from './get-note-fields-response-all-of-data-inner-all-of'; export * from './get-note-fields-response-all-of-data-inner-all-of-options-inner'; export * from './get-notes-response'; export * from './get-notes-response-additional-data'; -export * from './get-notes-response-additional-data-pagination'; export * from './get-organization-item'; export * from './get-organization-item-all-of'; export * from './get-organization-relationship-response'; diff --git a/src/versions/v2/api/activities-api.ts b/src/versions/v2/api/activities-api.ts index 097dc15f..312e7cf6 100644 --- a/src/versions/v2/api/activities-api.ts +++ b/src/versions/v2/api/activities-api.ts @@ -123,6 +123,10 @@ export const ActivitiesApiAxiosParamCreator = function (configuration?: Configur * @param {number} [filter_id] If supplied, only activities matching the specified filter are returned * @param {string} [ids] Optional comma separated string array of up to 100 entity ids to fetch. If filter_id is provided, this is ignored. If any of the requested entities do not exist or are not visible, they are not included in the response. * @param {number} [owner_id] If supplied, only activities owned by the specified user are returned. If filter_id is provided, this is ignored. + * @param {number} [deal_id] If supplied, only activities linked to the specified deal are returned. If filter_id is provided, this is ignored. + * @param {string} [lead_id] If supplied, only activities linked to the specified lead are returned. If filter_id is provided, this is ignored. + * @param {number} [person_id] If supplied, only activities whose primary participant is the given person are returned. If filter_id is provided, this is ignored. + * @param {number} [org_id] If supplied, only activities linked to the specified organization are returned. If filter_id is provided, this is ignored. * @param {string} [updated_since] If set, only activities with an `update_time` later than or equal to this time are returned. In RFC3339 format, e.g. 2025-01-01T10:20:00Z. * @param {string} [updated_until] If set, only activities with an `update_time` earlier than this time are returned. In RFC3339 format, e.g. 2025-01-01T10:20:00Z. * @param {'id' | 'update_time' | 'add_time'} [sort_by] The field to sort by. Supported fields: `id`, `update_time`, `add_time`. @@ -133,7 +137,7 @@ export const ActivitiesApiAxiosParamCreator = function (configuration?: Configur * @throws {RequiredError} */ - getActivities: async (filter_id?: number, ids?: string, owner_id?: number, updated_since?: string, updated_until?: string, sort_by?: 'id' | 'update_time' | 'add_time', sort_direction?: 'asc' | 'desc', include_fields?: 'attendees', limit?: number, cursor?: string, ): Promise => { + getActivities: async (filter_id?: number, ids?: string, owner_id?: number, deal_id?: number, lead_id?: string, person_id?: number, org_id?: number, updated_since?: string, updated_until?: string, sort_by?: 'id' | 'update_time' | 'add_time', sort_direction?: 'asc' | 'desc', include_fields?: 'attendees', limit?: number, cursor?: string, ): Promise => { const localVarPath = `/activities`; // use dummy base URL string because the URL constructor only accepts absolute URLs. const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); @@ -165,6 +169,22 @@ export const ActivitiesApiAxiosParamCreator = function (configuration?: Configur localVarQueryParameter['owner_id'] = owner_id; } + if (deal_id !== undefined) { + localVarQueryParameter['deal_id'] = deal_id; + } + + if (lead_id !== undefined) { + localVarQueryParameter['lead_id'] = lead_id; + } + + if (person_id !== undefined) { + localVarQueryParameter['person_id'] = person_id; + } + + if (org_id !== undefined) { + localVarQueryParameter['org_id'] = org_id; + } + if (updated_since !== undefined) { localVarQueryParameter['updated_since'] = updated_since; } @@ -334,6 +354,10 @@ export const ActivitiesApiFp = function(configuration?: Configuration) { * @param {number} [filter_id] If supplied, only activities matching the specified filter are returned * @param {string} [ids] Optional comma separated string array of up to 100 entity ids to fetch. If filter_id is provided, this is ignored. If any of the requested entities do not exist or are not visible, they are not included in the response. * @param {number} [owner_id] If supplied, only activities owned by the specified user are returned. If filter_id is provided, this is ignored. + * @param {number} [deal_id] If supplied, only activities linked to the specified deal are returned. If filter_id is provided, this is ignored. + * @param {string} [lead_id] If supplied, only activities linked to the specified lead are returned. If filter_id is provided, this is ignored. + * @param {number} [person_id] If supplied, only activities whose primary participant is the given person are returned. If filter_id is provided, this is ignored. + * @param {number} [org_id] If supplied, only activities linked to the specified organization are returned. If filter_id is provided, this is ignored. * @param {string} [updated_since] If set, only activities with an `update_time` later than or equal to this time are returned. In RFC3339 format, e.g. 2025-01-01T10:20:00Z. * @param {string} [updated_until] If set, only activities with an `update_time` earlier than this time are returned. In RFC3339 format, e.g. 2025-01-01T10:20:00Z. * @param {'id' | 'update_time' | 'add_time'} [sort_by] The field to sort by. Supported fields: `id`, `update_time`, `add_time`. @@ -344,8 +368,8 @@ export const ActivitiesApiFp = function(configuration?: Configuration) { * @throws {RequiredError} */ - async getActivities(filter_id?: number, ids?: string, owner_id?: number, updated_since?: string, updated_until?: string, sort_by?: 'id' | 'update_time' | 'add_time', sort_direction?: 'asc' | 'desc', include_fields?: 'attendees', limit?: number, cursor?: string, ): Promise<(axios?: AxiosInstance, basePath?: string) => Promise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getActivities(filter_id, ids, owner_id, updated_since, updated_until, sort_by, sort_direction, include_fields, limit, cursor, ); + async getActivities(filter_id?: number, ids?: string, owner_id?: number, deal_id?: number, lead_id?: string, person_id?: number, org_id?: number, updated_since?: string, updated_until?: string, sort_by?: 'id' | 'update_time' | 'add_time', sort_direction?: 'asc' | 'desc', include_fields?: 'attendees', limit?: number, cursor?: string, ): Promise<(axios?: AxiosInstance, basePath?: string) => Promise> { + const localVarAxiosArgs = await localVarAxiosParamCreator.getActivities(filter_id, ids, owner_id, deal_id, lead_id, person_id, org_id, updated_since, updated_until, sort_by, sort_direction, include_fields, limit, cursor, ); return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); }, /** @@ -410,7 +434,7 @@ export const ActivitiesApiFactory = function (configuration?: Configuration, bas * @throws {RequiredError} */ getActivities(requestParameters: ActivitiesApiGetActivitiesRequest = {}, ): Promise { - return localVarFp.getActivities(requestParameters.filter_id, requestParameters.ids, requestParameters.owner_id, requestParameters.updated_since, requestParameters.updated_until, requestParameters.sort_by, requestParameters.sort_direction, requestParameters.include_fields, requestParameters.limit, requestParameters.cursor, ).then((request) => request(axios, basePath)); + return localVarFp.getActivities(requestParameters.filter_id, requestParameters.ids, requestParameters.owner_id, requestParameters.deal_id, requestParameters.lead_id, requestParameters.person_id, requestParameters.org_id, requestParameters.updated_since, requestParameters.updated_until, requestParameters.sort_by, requestParameters.sort_direction, requestParameters.include_fields, requestParameters.limit, requestParameters.cursor, ).then((request) => request(axios, basePath)); }, /** * Returns the details of a specific activity. @@ -490,6 +514,34 @@ export interface ActivitiesApiGetActivitiesRequest { */ readonly owner_id?: number + /** + * If supplied, only activities linked to the specified deal are returned. If filter_id is provided, this is ignored. + * @type {number} + * @memberof ActivitiesApiGetActivities + */ + readonly deal_id?: number + + /** + * If supplied, only activities linked to the specified lead are returned. If filter_id is provided, this is ignored. + * @type {string} + * @memberof ActivitiesApiGetActivities + */ + readonly lead_id?: string + + /** + * If supplied, only activities whose primary participant is the given person are returned. If filter_id is provided, this is ignored. + * @type {number} + * @memberof ActivitiesApiGetActivities + */ + readonly person_id?: number + + /** + * If supplied, only activities linked to the specified organization are returned. If filter_id is provided, this is ignored. + * @type {number} + * @memberof ActivitiesApiGetActivities + */ + readonly org_id?: number + /** * If set, only activities with an `update_time` later than or equal to this time are returned. In RFC3339 format, e.g. 2025-01-01T10:20:00Z. * @type {string} @@ -622,7 +674,7 @@ export class ActivitiesApi extends BaseAPI { * @memberof ActivitiesApi */ public getActivities(requestParameters: ActivitiesApiGetActivitiesRequest = {}, ) { - return ActivitiesApiFp(this.configuration).getActivities(requestParameters.filter_id, requestParameters.ids, requestParameters.owner_id, requestParameters.updated_since, requestParameters.updated_until, requestParameters.sort_by, requestParameters.sort_direction, requestParameters.include_fields, requestParameters.limit, requestParameters.cursor, ).then((request) => request(this.axios, this.basePath)); + return ActivitiesApiFp(this.configuration).getActivities(requestParameters.filter_id, requestParameters.ids, requestParameters.owner_id, requestParameters.deal_id, requestParameters.lead_id, requestParameters.person_id, requestParameters.org_id, requestParameters.updated_since, requestParameters.updated_until, requestParameters.sort_by, requestParameters.sort_direction, requestParameters.include_fields, requestParameters.limit, requestParameters.cursor, ).then((request) => request(this.axios, this.basePath)); } /** diff --git a/src/versions/v2/api/beta-api.ts b/src/versions/v2/api/beta-api.ts index 47f4b1e0..fcacc30a 100644 --- a/src/versions/v2/api/beta-api.ts +++ b/src/versions/v2/api/beta-api.ts @@ -22,6 +22,8 @@ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObj // @ts-ignore import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base'; // @ts-ignore +import { AddAInstallmentResponse } from '../models'; +// @ts-ignore import { AddActivityRequest } from '../models'; // @ts-ignore import { AddAdditionalDiscountRequestBody } from '../models'; @@ -34,6 +36,8 @@ import { AddDealProductResponse } from '../models'; // @ts-ignore import { AddDealRequest } from '../models'; // @ts-ignore +import { AddInstallmentRequestBody } from '../models'; +// @ts-ignore import { AddOrganizationRequest } from '../models'; // @ts-ignore import { AddPersonRequest } from '../models'; @@ -46,6 +50,8 @@ import { DeleteDealProductResponse } from '../models'; // @ts-ignore import { DeleteDealResponse } from '../models'; // @ts-ignore +import { DeleteInstallmentResponse } from '../models'; +// @ts-ignore import { DeleteOrganizationResponse } from '../models'; // @ts-ignore import { DeletePersonResponse } from '../models'; @@ -60,6 +66,8 @@ import { GetDealsProductsResponse } from '../models'; // @ts-ignore import { GetDealsResponse } from '../models'; // @ts-ignore +import { GetInstallmentsResponse } from '../models'; +// @ts-ignore import { GetItemSearchFieldResponse } from '../models'; // @ts-ignore import { GetItemSearchResponse } from '../models'; @@ -82,6 +90,10 @@ import { UpdateDealProductRequest } from '../models'; // @ts-ignore import { UpdateDealRequest } from '../models'; // @ts-ignore +import { UpdateInstallmentRequestBody } from '../models'; +// @ts-ignore +import { UpdateInstallmentResponse } from '../models'; +// @ts-ignore import { UpdateOrganizationRequest } from '../models'; // @ts-ignore import { UpdatePersonRequest } from '../models'; @@ -471,6 +483,51 @@ export const BetaApiAxiosParamCreator = function (configuration?: Configuration) + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, }; + + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, + /** + * Removes an installment from a deal. Only available in Advanced and above plans. + * @summary Delete an installment from a deal + * @param {number} id The ID of the deal + * @param {number} installment_id The ID of the installment + + * @throws {RequiredError} + */ + deleteInstallment: async (id: number, installment_id: number, ): Promise => { + // verify required parameter 'id' is not null or undefined + assertParamExists('deleteInstallment', 'id', id) + // verify required parameter 'installment_id' is not null or undefined + assertParamExists('deleteInstallment', 'installment_id', installment_id) + const localVarPath = `/deals/{id}/installments/{installment_id}` + .replace(`{${"id"}}`, encodeURIComponent(String(id))) + .replace(`{${"installment_id"}}`, encodeURIComponent(String(installment_id))); + // 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: 'DELETE', ...baseOptions }; + const localVarHeaderParameter = {} as any; + const localVarQueryParameter = {} as any; + + // authentication api_key required + await setApiKeyToObject(localVarQueryParameter, "api_token", configuration) + + // authentication oauth2 required + // oauth required + await setOAuthToObject(localVarHeaderParameter, "oauth2", ["deals:read", "deals:full"], configuration) + + + setSearchParams(localVarUrlObj, localVarQueryParameter); let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, }; @@ -568,6 +625,10 @@ export const BetaApiAxiosParamCreator = function (configuration?: Configuration) * @param {number} [filter_id] If supplied, only activities matching the specified filter are returned * @param {string} [ids] Optional comma separated string array of up to 100 entity ids to fetch. If filter_id is provided, this is ignored. If any of the requested entities do not exist or are not visible, they are not included in the response. * @param {number} [owner_id] If supplied, only activities owned by the specified user are returned. If filter_id is provided, this is ignored. + * @param {number} [deal_id] If supplied, only activities linked to the specified deal are returned. If filter_id is provided, this is ignored. + * @param {string} [lead_id] If supplied, only activities linked to the specified lead are returned. If filter_id is provided, this is ignored. + * @param {number} [person_id] If supplied, only activities whose primary participant is the given person are returned. If filter_id is provided, this is ignored. + * @param {number} [org_id] If supplied, only activities linked to the specified organization are returned. If filter_id is provided, this is ignored. * @param {string} [updated_since] If set, only activities with an `update_time` later than or equal to this time are returned. In RFC3339 format, e.g. 2025-01-01T10:20:00Z. * @param {string} [updated_until] If set, only activities with an `update_time` earlier than this time are returned. In RFC3339 format, e.g. 2025-01-01T10:20:00Z. * @param {'id' | 'update_time' | 'add_time'} [sort_by] The field to sort by. Supported fields: `id`, `update_time`, `add_time`. @@ -578,7 +639,7 @@ export const BetaApiAxiosParamCreator = function (configuration?: Configuration) * @throws {RequiredError} */ - getActivities: async (filter_id?: number, ids?: string, owner_id?: number, updated_since?: string, updated_until?: string, sort_by?: 'id' | 'update_time' | 'add_time', sort_direction?: 'asc' | 'desc', include_fields?: 'attendees', limit?: number, cursor?: string, ): Promise => { + getActivities: async (filter_id?: number, ids?: string, owner_id?: number, deal_id?: number, lead_id?: string, person_id?: number, org_id?: number, updated_since?: string, updated_until?: string, sort_by?: 'id' | 'update_time' | 'add_time', sort_direction?: 'asc' | 'desc', include_fields?: 'attendees', limit?: number, cursor?: string, ): Promise => { const localVarPath = `/activities`; // use dummy base URL string because the URL constructor only accepts absolute URLs. const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); @@ -610,6 +671,22 @@ export const BetaApiAxiosParamCreator = function (configuration?: Configuration) localVarQueryParameter['owner_id'] = owner_id; } + if (deal_id !== undefined) { + localVarQueryParameter['deal_id'] = deal_id; + } + + if (lead_id !== undefined) { + localVarQueryParameter['lead_id'] = lead_id; + } + + if (person_id !== undefined) { + localVarQueryParameter['person_id'] = person_id; + } + + if (org_id !== undefined) { + localVarQueryParameter['org_id'] = org_id; + } + if (updated_since !== undefined) { localVarQueryParameter['updated_since'] = updated_since; } @@ -1020,6 +1097,70 @@ export const BetaApiAxiosParamCreator = function (configuration?: Configuration) + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, }; + + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, + /** + * Lists installments attached to a list of deals. Only available in Advanced and above plans. + * @summary List installments added to a list of deals + * @param {Array} deal_ids An array of integers with the IDs of the deals for which the attached installments will be returned. A maximum of 100 deal IDs can be provided. + * @param {string} [cursor] For pagination, the marker (an opaque string value) representing the first item on the next page + * @param {number} [limit] For pagination, the limit of entries to be returned. If not provided, 100 items will be returned. Please note that a maximum value of 500 is allowed. + * @param {'id' | 'billing_date' | 'deal_id'} [sort_by] The field to sort by. Supported fields: `id`, `billing_date`, `deal_id`. + * @param {'asc' | 'desc'} [sort_direction] The sorting direction. Supported values: `asc`, `desc`. + + * @throws {RequiredError} + */ + getInstallments: async (deal_ids: Array, cursor?: string, limit?: number, sort_by?: 'id' | 'billing_date' | 'deal_id', sort_direction?: 'asc' | 'desc', ): Promise => { + // verify required parameter 'deal_ids' is not null or undefined + assertParamExists('getInstallments', 'deal_ids', deal_ids) + const localVarPath = `/deals/installments`; + // use dummy base URL string because the URL constructor only accepts absolute URLs. + const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); + let baseOptions; + if (configuration) { + baseOptions = configuration.baseOptions; + } + + const localVarRequestOptions = { method: 'GET', ...baseOptions }; + const localVarHeaderParameter = {} as any; + const localVarQueryParameter = {} as any; + + // authentication api_key required + await setApiKeyToObject(localVarQueryParameter, "api_token", configuration) + + // authentication oauth2 required + // oauth required + await setOAuthToObject(localVarHeaderParameter, "oauth2", ["deals:read", "deals:full"], configuration) + + if (deal_ids) { + localVarQueryParameter['deal_ids'] = deal_ids; + } + + if (cursor !== undefined) { + localVarQueryParameter['cursor'] = cursor; + } + + if (limit !== undefined) { + localVarQueryParameter['limit'] = limit; + } + + if (sort_by !== undefined) { + localVarQueryParameter['sort_by'] = sort_by; + } + + if (sort_direction !== undefined) { + localVarQueryParameter['sort_direction'] = sort_direction; + } + + + setSearchParams(localVarUrlObj, localVarQueryParameter); let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, }; @@ -1365,6 +1506,51 @@ export const BetaApiAxiosParamCreator = function (configuration?: Configuration) options: localVarRequestOptions, }; }, + /** + * Adds an installment to a deal. An installment can only be added if the deal includes at least one one-time product. If the deal contains at least one recurring product, adding installments is not allowed. Only available in Advanced and above plans. + * @summary Add an installment to a deal + * @param {number} id The ID of the deal + * @param {AddInstallmentRequestBody} [AddInstallmentRequestBody] + + * @throws {RequiredError} + */ + postInstallment: async (id: number, AddInstallmentRequestBody?: AddInstallmentRequestBody, ): Promise => { + // verify required parameter 'id' is not null or undefined + assertParamExists('postInstallment', 'id', id) + const localVarPath = `/deals/{id}/installments` + .replace(`{${"id"}}`, encodeURIComponent(String(id))); + // 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 }; + const localVarHeaderParameter = {} as any; + const localVarQueryParameter = {} as any; + + // authentication api_key required + await setApiKeyToObject(localVarQueryParameter, "api_token", configuration) + + // authentication oauth2 required + // oauth required + await setOAuthToObject(localVarHeaderParameter, "oauth2", ["deals:read", "deals:full"], configuration) + + + + localVarHeaderParameter['Content-Type'] = 'application/json'; + + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, }; + localVarRequestOptions.data = serializeDataIfNeeded(AddInstallmentRequestBody, localVarRequestOptions, configuration) + + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, /** * Searches all deals by title, notes and/or custom fields. This endpoint is a wrapper of /v1/itemSearch with a narrower OAuth scope. Found deals can be filtered by the person ID and the organization ID. * @summary Search deals @@ -2006,6 +2192,55 @@ export const BetaApiAxiosParamCreator = function (configuration?: Configuration) options: localVarRequestOptions, }; }, + /** + * Edits an installment added to a deal. Only available in Advanced and above plans. + * @summary Update an installment added to a deal + * @param {number} id The ID of the deal + * @param {number} installment_id The ID of the installment + * @param {UpdateInstallmentRequestBody} [UpdateInstallmentRequestBody] + + * @throws {RequiredError} + */ + updateInstallment: async (id: number, installment_id: number, UpdateInstallmentRequestBody?: UpdateInstallmentRequestBody, ): Promise => { + // verify required parameter 'id' is not null or undefined + assertParamExists('updateInstallment', 'id', id) + // verify required parameter 'installment_id' is not null or undefined + assertParamExists('updateInstallment', 'installment_id', installment_id) + const localVarPath = `/deals/{id}/installments/{installment_id}` + .replace(`{${"id"}}`, encodeURIComponent(String(id))) + .replace(`{${"installment_id"}}`, encodeURIComponent(String(installment_id))); + // 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: 'PATCH', ...baseOptions }; + const localVarHeaderParameter = {} as any; + const localVarQueryParameter = {} as any; + + // authentication api_key required + await setApiKeyToObject(localVarQueryParameter, "api_token", configuration) + + // authentication oauth2 required + // oauth required + await setOAuthToObject(localVarHeaderParameter, "oauth2", ["deals:read", "deals:full"], configuration) + + + + localVarHeaderParameter['Content-Type'] = 'application/json'; + + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, }; + localVarRequestOptions.data = serializeDataIfNeeded(UpdateInstallmentRequestBody, localVarRequestOptions, configuration) + + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, /** * Updates the properties of a organization. * @summary Update a organization @@ -2209,6 +2444,18 @@ export const BetaApiFp = function(configuration?: Configuration) { const localVarAxiosArgs = await localVarAxiosParamCreator.deleteDealProduct(id, product_attachment_id, ); return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); }, + /** + * Removes an installment from a deal. Only available in Advanced and above plans. + * @summary Delete an installment from a deal + * @param {number} id The ID of the deal + * @param {number} installment_id The ID of the installment + + * @throws {RequiredError} + */ + async deleteInstallment(id: number, installment_id: number, ): Promise<(axios?: AxiosInstance, basePath?: string) => Promise> { + const localVarAxiosArgs = await localVarAxiosParamCreator.deleteInstallment(id, installment_id, ); + return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); + }, /** * Marks a organization as deleted. After 30 days, the organization will be permanently deleted. * @summary Delete a organization @@ -2237,6 +2484,10 @@ export const BetaApiFp = function(configuration?: Configuration) { * @param {number} [filter_id] If supplied, only activities matching the specified filter are returned * @param {string} [ids] Optional comma separated string array of up to 100 entity ids to fetch. If filter_id is provided, this is ignored. If any of the requested entities do not exist or are not visible, they are not included in the response. * @param {number} [owner_id] If supplied, only activities owned by the specified user are returned. If filter_id is provided, this is ignored. + * @param {number} [deal_id] If supplied, only activities linked to the specified deal are returned. If filter_id is provided, this is ignored. + * @param {string} [lead_id] If supplied, only activities linked to the specified lead are returned. If filter_id is provided, this is ignored. + * @param {number} [person_id] If supplied, only activities whose primary participant is the given person are returned. If filter_id is provided, this is ignored. + * @param {number} [org_id] If supplied, only activities linked to the specified organization are returned. If filter_id is provided, this is ignored. * @param {string} [updated_since] If set, only activities with an `update_time` later than or equal to this time are returned. In RFC3339 format, e.g. 2025-01-01T10:20:00Z. * @param {string} [updated_until] If set, only activities with an `update_time` earlier than this time are returned. In RFC3339 format, e.g. 2025-01-01T10:20:00Z. * @param {'id' | 'update_time' | 'add_time'} [sort_by] The field to sort by. Supported fields: `id`, `update_time`, `add_time`. @@ -2247,8 +2498,8 @@ export const BetaApiFp = function(configuration?: Configuration) { * @throws {RequiredError} */ - async getActivities(filter_id?: number, ids?: string, owner_id?: number, updated_since?: string, updated_until?: string, sort_by?: 'id' | 'update_time' | 'add_time', sort_direction?: 'asc' | 'desc', include_fields?: 'attendees', limit?: number, cursor?: string, ): Promise<(axios?: AxiosInstance, basePath?: string) => Promise> { - const localVarAxiosArgs = await localVarAxiosParamCreator.getActivities(filter_id, ids, owner_id, updated_since, updated_until, sort_by, sort_direction, include_fields, limit, cursor, ); + async getActivities(filter_id?: number, ids?: string, owner_id?: number, deal_id?: number, lead_id?: string, person_id?: number, org_id?: number, updated_since?: string, updated_until?: string, sort_by?: 'id' | 'update_time' | 'add_time', sort_direction?: 'asc' | 'desc', include_fields?: 'attendees', limit?: number, cursor?: string, ): Promise<(axios?: AxiosInstance, basePath?: string) => Promise> { + const localVarAxiosArgs = await localVarAxiosParamCreator.getActivities(filter_id, ids, owner_id, deal_id, lead_id, person_id, org_id, updated_since, updated_until, sort_by, sort_direction, include_fields, limit, cursor, ); return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); }, /** @@ -2343,6 +2594,21 @@ export const BetaApiFp = function(configuration?: Configuration) { const localVarAxiosArgs = await localVarAxiosParamCreator.getDealsProducts(deal_ids, cursor, limit, sort_by, sort_direction, ); return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); }, + /** + * Lists installments attached to a list of deals. Only available in Advanced and above plans. + * @summary List installments added to a list of deals + * @param {Array} deal_ids An array of integers with the IDs of the deals for which the attached installments will be returned. A maximum of 100 deal IDs can be provided. + * @param {string} [cursor] For pagination, the marker (an opaque string value) representing the first item on the next page + * @param {number} [limit] For pagination, the limit of entries to be returned. If not provided, 100 items will be returned. Please note that a maximum value of 500 is allowed. + * @param {'id' | 'billing_date' | 'deal_id'} [sort_by] The field to sort by. Supported fields: `id`, `billing_date`, `deal_id`. + * @param {'asc' | 'desc'} [sort_direction] The sorting direction. Supported values: `asc`, `desc`. + + * @throws {RequiredError} + */ + async getInstallments(deal_ids: Array, cursor?: string, limit?: number, sort_by?: 'id' | 'billing_date' | 'deal_id', sort_direction?: 'asc' | 'desc', ): Promise<(axios?: AxiosInstance, basePath?: string) => Promise> { + const localVarAxiosArgs = await localVarAxiosParamCreator.getInstallments(deal_ids, cursor, limit, sort_by, sort_direction, ); + return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); + }, /** * Returns the details of a specific organization. * @summary Get details of a organization @@ -2424,6 +2690,18 @@ export const BetaApiFp = function(configuration?: Configuration) { const localVarAxiosArgs = await localVarAxiosParamCreator.postAdditionalDiscount(id, AddAdditionalDiscountRequestBody, ); return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); }, + /** + * Adds an installment to a deal. An installment can only be added if the deal includes at least one one-time product. If the deal contains at least one recurring product, adding installments is not allowed. Only available in Advanced and above plans. + * @summary Add an installment to a deal + * @param {number} id The ID of the deal + * @param {AddInstallmentRequestBody} [AddInstallmentRequestBody] + + * @throws {RequiredError} + */ + async postInstallment(id: number, AddInstallmentRequestBody?: AddInstallmentRequestBody, ): Promise<(axios?: AxiosInstance, basePath?: string) => Promise> { + const localVarAxiosArgs = await localVarAxiosParamCreator.postInstallment(id, AddInstallmentRequestBody, ); + return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); + }, /** * Searches all deals by title, notes and/or custom fields. This endpoint is a wrapper of /v1/itemSearch with a narrower OAuth scope. Found deals can be filtered by the person ID and the organization ID. * @summary Search deals @@ -2577,6 +2855,19 @@ export const BetaApiFp = function(configuration?: Configuration) { const localVarAxiosArgs = await localVarAxiosParamCreator.updateDealProduct(id, product_attachment_id, UpdateDealProductRequest, ); return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); }, + /** + * Edits an installment added to a deal. Only available in Advanced and above plans. + * @summary Update an installment added to a deal + * @param {number} id The ID of the deal + * @param {number} installment_id The ID of the installment + * @param {UpdateInstallmentRequestBody} [UpdateInstallmentRequestBody] + + * @throws {RequiredError} + */ + async updateInstallment(id: number, installment_id: number, UpdateInstallmentRequestBody?: UpdateInstallmentRequestBody, ): Promise<(axios?: AxiosInstance, basePath?: string) => Promise> { + const localVarAxiosArgs = await localVarAxiosParamCreator.updateInstallment(id, installment_id, UpdateInstallmentRequestBody, ); + return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); + }, /** * Updates the properties of a organization. * @summary Update a organization @@ -2701,6 +2992,16 @@ export const BetaApiFactory = function (configuration?: Configuration, basePath? deleteDealProduct(requestParameters: BetaApiDeleteDealProductRequest, ): Promise { return localVarFp.deleteDealProduct(requestParameters.id, requestParameters.product_attachment_id, ).then((request) => request(axios, basePath)); }, + /** + * Removes an installment from a deal. Only available in Advanced and above plans. + * @summary Delete an installment from a deal + * @param {BetaApiDeleteInstallmentRequest} requestParameters Request parameters. + + * @throws {RequiredError} + */ + deleteInstallment(requestParameters: BetaApiDeleteInstallmentRequest, ): Promise { + return localVarFp.deleteInstallment(requestParameters.id, requestParameters.installment_id, ).then((request) => request(axios, basePath)); + }, /** * Marks a organization as deleted. After 30 days, the organization will be permanently deleted. * @summary Delete a organization @@ -2729,7 +3030,7 @@ export const BetaApiFactory = function (configuration?: Configuration, basePath? * @throws {RequiredError} */ getActivities(requestParameters: BetaApiGetActivitiesRequest = {}, ): Promise { - return localVarFp.getActivities(requestParameters.filter_id, requestParameters.ids, requestParameters.owner_id, requestParameters.updated_since, requestParameters.updated_until, requestParameters.sort_by, requestParameters.sort_direction, requestParameters.include_fields, requestParameters.limit, requestParameters.cursor, ).then((request) => request(axios, basePath)); + return localVarFp.getActivities(requestParameters.filter_id, requestParameters.ids, requestParameters.owner_id, requestParameters.deal_id, requestParameters.lead_id, requestParameters.person_id, requestParameters.org_id, requestParameters.updated_since, requestParameters.updated_until, requestParameters.sort_by, requestParameters.sort_direction, requestParameters.include_fields, requestParameters.limit, requestParameters.cursor, ).then((request) => request(axios, basePath)); }, /** * Returns the details of a specific activity. @@ -2791,6 +3092,16 @@ export const BetaApiFactory = function (configuration?: Configuration, basePath? getDealsProducts(requestParameters: BetaApiGetDealsProductsRequest, ): Promise { return localVarFp.getDealsProducts(requestParameters.deal_ids, requestParameters.cursor, requestParameters.limit, requestParameters.sort_by, requestParameters.sort_direction, ).then((request) => request(axios, basePath)); }, + /** + * Lists installments attached to a list of deals. Only available in Advanced and above plans. + * @summary List installments added to a list of deals + * @param {BetaApiGetInstallmentsRequest} requestParameters Request parameters. + + * @throws {RequiredError} + */ + getInstallments(requestParameters: BetaApiGetInstallmentsRequest, ): Promise { + return localVarFp.getInstallments(requestParameters.deal_ids, requestParameters.cursor, requestParameters.limit, requestParameters.sort_by, requestParameters.sort_direction, ).then((request) => request(axios, basePath)); + }, /** * Returns the details of a specific organization. * @summary Get details of a organization @@ -2841,6 +3152,16 @@ export const BetaApiFactory = function (configuration?: Configuration, basePath? postAdditionalDiscount(requestParameters: BetaApiPostAdditionalDiscountRequest, ): Promise { return localVarFp.postAdditionalDiscount(requestParameters.id, requestParameters.AddAdditionalDiscountRequestBody, ).then((request) => request(axios, basePath)); }, + /** + * Adds an installment to a deal. An installment can only be added if the deal includes at least one one-time product. If the deal contains at least one recurring product, adding installments is not allowed. Only available in Advanced and above plans. + * @summary Add an installment to a deal + * @param {BetaApiPostInstallmentRequest} requestParameters Request parameters. + + * @throws {RequiredError} + */ + postInstallment(requestParameters: BetaApiPostInstallmentRequest, ): Promise { + return localVarFp.postInstallment(requestParameters.id, requestParameters.AddInstallmentRequestBody, ).then((request) => request(axios, basePath)); + }, /** * Searches all deals by title, notes and/or custom fields. This endpoint is a wrapper of /v1/itemSearch with a narrower OAuth scope. Found deals can be filtered by the person ID and the organization ID. * @summary Search deals @@ -2941,6 +3262,16 @@ export const BetaApiFactory = function (configuration?: Configuration, basePath? updateDealProduct(requestParameters: BetaApiUpdateDealProductRequest, ): Promise { return localVarFp.updateDealProduct(requestParameters.id, requestParameters.product_attachment_id, requestParameters.UpdateDealProductRequest, ).then((request) => request(axios, basePath)); }, + /** + * Edits an installment added to a deal. Only available in Advanced and above plans. + * @summary Update an installment added to a deal + * @param {BetaApiUpdateInstallmentRequest} requestParameters Request parameters. + + * @throws {RequiredError} + */ + updateInstallment(requestParameters: BetaApiUpdateInstallmentRequest, ): Promise { + return localVarFp.updateInstallment(requestParameters.id, requestParameters.installment_id, requestParameters.UpdateInstallmentRequestBody, ).then((request) => request(axios, basePath)); + }, /** * Updates the properties of a organization. * @summary Update a organization @@ -3111,6 +3442,27 @@ export interface BetaApiDeleteDealProductRequest { readonly product_attachment_id: number } +/** + * Request parameters for deleteInstallment operation in BetaApi. + * @export + * @interface BetaApiDeleteInstallmentRequest + */ +export interface BetaApiDeleteInstallmentRequest { + /** + * The ID of the deal + * @type {number} + * @memberof BetaApiDeleteInstallment + */ + readonly id: number + + /** + * The ID of the installment + * @type {number} + * @memberof BetaApiDeleteInstallment + */ + readonly installment_id: number +} + /** * Request parameters for deleteOrganization operation in BetaApi. * @export @@ -3166,6 +3518,34 @@ export interface BetaApiGetActivitiesRequest { */ readonly owner_id?: number + /** + * If supplied, only activities linked to the specified deal are returned. If filter_id is provided, this is ignored. + * @type {number} + * @memberof BetaApiGetActivities + */ + readonly deal_id?: number + + /** + * If supplied, only activities linked to the specified lead are returned. If filter_id is provided, this is ignored. + * @type {string} + * @memberof BetaApiGetActivities + */ + readonly lead_id?: string + + /** + * If supplied, only activities whose primary participant is the given person are returned. If filter_id is provided, this is ignored. + * @type {number} + * @memberof BetaApiGetActivities + */ + readonly person_id?: number + + /** + * If supplied, only activities linked to the specified organization are returned. If filter_id is provided, this is ignored. + * @type {number} + * @memberof BetaApiGetActivities + */ + readonly org_id?: number + /** * If set, only activities with an `update_time` later than or equal to this time are returned. In RFC3339 format, e.g. 2025-01-01T10:20:00Z. * @type {string} @@ -3482,6 +3862,48 @@ export interface BetaApiGetDealsProductsRequest { readonly sort_direction?: 'asc' | 'desc' } +/** + * Request parameters for getInstallments operation in BetaApi. + * @export + * @interface BetaApiGetInstallmentsRequest + */ +export interface BetaApiGetInstallmentsRequest { + /** + * An array of integers with the IDs of the deals for which the attached installments will be returned. A maximum of 100 deal IDs can be provided. + * @type {Array} + * @memberof BetaApiGetInstallments + */ + readonly deal_ids: Array + + /** + * For pagination, the marker (an opaque string value) representing the first item on the next page + * @type {string} + * @memberof BetaApiGetInstallments + */ + readonly cursor?: string + + /** + * For pagination, the limit of entries to be returned. If not provided, 100 items will be returned. Please note that a maximum value of 500 is allowed. + * @type {number} + * @memberof BetaApiGetInstallments + */ + readonly limit?: number + + /** + * The field to sort by. Supported fields: `id`, `billing_date`, `deal_id`. + * @type {'id' | 'billing_date' | 'deal_id'} + * @memberof BetaApiGetInstallments + */ + readonly sort_by?: 'id' | 'billing_date' | 'deal_id' + + /** + * The sorting direction. Supported values: `asc`, `desc`. + * @type {'asc' | 'desc'} + * @memberof BetaApiGetInstallments + */ + readonly sort_direction?: 'asc' | 'desc' +} + /** * Request parameters for getOrganization operation in BetaApi. * @export @@ -3734,6 +4156,27 @@ export interface BetaApiPostAdditionalDiscountRequest { readonly AddAdditionalDiscountRequestBody?: AddAdditionalDiscountRequestBody } +/** + * Request parameters for postInstallment operation in BetaApi. + * @export + * @interface BetaApiPostInstallmentRequest + */ +export interface BetaApiPostInstallmentRequest { + /** + * The ID of the deal + * @type {number} + * @memberof BetaApiPostInstallment + */ + readonly id: number + + /** + * + * @type {AddInstallmentRequestBody} + * @memberof BetaApiPostInstallment + */ + readonly AddInstallmentRequestBody?: AddInstallmentRequestBody +} + /** * Request parameters for searchDeals operation in BetaApi. * @export @@ -4175,6 +4618,34 @@ export interface BetaApiUpdateDealProductRequest { readonly UpdateDealProductRequest?: UpdateDealProductRequest } +/** + * Request parameters for updateInstallment operation in BetaApi. + * @export + * @interface BetaApiUpdateInstallmentRequest + */ +export interface BetaApiUpdateInstallmentRequest { + /** + * The ID of the deal + * @type {number} + * @memberof BetaApiUpdateInstallment + */ + readonly id: number + + /** + * The ID of the installment + * @type {number} + * @memberof BetaApiUpdateInstallment + */ + readonly installment_id: number + + /** + * + * @type {UpdateInstallmentRequestBody} + * @memberof BetaApiUpdateInstallment + */ + readonly UpdateInstallmentRequestBody?: UpdateInstallmentRequestBody +} + /** * Request parameters for updateOrganization operation in BetaApi. * @export @@ -4332,6 +4803,18 @@ export class BetaApi extends BaseAPI { return BetaApiFp(this.configuration).deleteDealProduct(requestParameters.id, requestParameters.product_attachment_id, ).then((request) => request(this.axios, this.basePath)); } + /** + * Removes an installment from a deal. Only available in Advanced and above plans. + * @summary Delete an installment from a deal + * @param {BetaApiDeleteInstallmentRequest} requestParameters Request parameters. + + * @throws {RequiredError} + * @memberof BetaApi + */ + public deleteInstallment(requestParameters: BetaApiDeleteInstallmentRequest, ) { + return BetaApiFp(this.configuration).deleteInstallment(requestParameters.id, requestParameters.installment_id, ).then((request) => request(this.axios, this.basePath)); + } + /** * Marks a organization as deleted. After 30 days, the organization will be permanently deleted. * @summary Delete a organization @@ -4365,7 +4848,7 @@ export class BetaApi extends BaseAPI { * @memberof BetaApi */ public getActivities(requestParameters: BetaApiGetActivitiesRequest = {}, ) { - return BetaApiFp(this.configuration).getActivities(requestParameters.filter_id, requestParameters.ids, requestParameters.owner_id, requestParameters.updated_since, requestParameters.updated_until, requestParameters.sort_by, requestParameters.sort_direction, requestParameters.include_fields, requestParameters.limit, requestParameters.cursor, ).then((request) => request(this.axios, this.basePath)); + return BetaApiFp(this.configuration).getActivities(requestParameters.filter_id, requestParameters.ids, requestParameters.owner_id, requestParameters.deal_id, requestParameters.lead_id, requestParameters.person_id, requestParameters.org_id, requestParameters.updated_since, requestParameters.updated_until, requestParameters.sort_by, requestParameters.sort_direction, requestParameters.include_fields, requestParameters.limit, requestParameters.cursor, ).then((request) => request(this.axios, this.basePath)); } /** @@ -4440,6 +4923,18 @@ export class BetaApi extends BaseAPI { return BetaApiFp(this.configuration).getDealsProducts(requestParameters.deal_ids, requestParameters.cursor, requestParameters.limit, requestParameters.sort_by, requestParameters.sort_direction, ).then((request) => request(this.axios, this.basePath)); } + /** + * Lists installments attached to a list of deals. Only available in Advanced and above plans. + * @summary List installments added to a list of deals + * @param {BetaApiGetInstallmentsRequest} requestParameters Request parameters. + + * @throws {RequiredError} + * @memberof BetaApi + */ + public getInstallments(requestParameters: BetaApiGetInstallmentsRequest, ) { + return BetaApiFp(this.configuration).getInstallments(requestParameters.deal_ids, requestParameters.cursor, requestParameters.limit, requestParameters.sort_by, requestParameters.sort_direction, ).then((request) => request(this.axios, this.basePath)); + } + /** * Returns the details of a specific organization. * @summary Get details of a organization @@ -4500,6 +4995,18 @@ export class BetaApi extends BaseAPI { return BetaApiFp(this.configuration).postAdditionalDiscount(requestParameters.id, requestParameters.AddAdditionalDiscountRequestBody, ).then((request) => request(this.axios, this.basePath)); } + /** + * Adds an installment to a deal. An installment can only be added if the deal includes at least one one-time product. If the deal contains at least one recurring product, adding installments is not allowed. Only available in Advanced and above plans. + * @summary Add an installment to a deal + * @param {BetaApiPostInstallmentRequest} requestParameters Request parameters. + + * @throws {RequiredError} + * @memberof BetaApi + */ + public postInstallment(requestParameters: BetaApiPostInstallmentRequest, ) { + return BetaApiFp(this.configuration).postInstallment(requestParameters.id, requestParameters.AddInstallmentRequestBody, ).then((request) => request(this.axios, this.basePath)); + } + /** * Searches all deals by title, notes and/or custom fields. This endpoint is a wrapper of /v1/itemSearch with a narrower OAuth scope. Found deals can be filtered by the person ID and the organization ID. * @summary Search deals @@ -4620,6 +5127,18 @@ export class BetaApi extends BaseAPI { return BetaApiFp(this.configuration).updateDealProduct(requestParameters.id, requestParameters.product_attachment_id, requestParameters.UpdateDealProductRequest, ).then((request) => request(this.axios, this.basePath)); } + /** + * Edits an installment added to a deal. Only available in Advanced and above plans. + * @summary Update an installment added to a deal + * @param {BetaApiUpdateInstallmentRequest} requestParameters Request parameters. + + * @throws {RequiredError} + * @memberof BetaApi + */ + public updateInstallment(requestParameters: BetaApiUpdateInstallmentRequest, ) { + return BetaApiFp(this.configuration).updateInstallment(requestParameters.id, requestParameters.installment_id, requestParameters.UpdateInstallmentRequestBody, ).then((request) => request(this.axios, this.basePath)); + } + /** * Updates the properties of a organization. * @summary Update a organization diff --git a/src/versions/v2/api/deals-api.ts b/src/versions/v2/api/deals-api.ts index 970e2ef3..891a5a84 100644 --- a/src/versions/v2/api/deals-api.ts +++ b/src/versions/v2/api/deals-api.ts @@ -22,6 +22,8 @@ import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObj // @ts-ignore import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base'; // @ts-ignore +import { AddAInstallmentResponse } from '../models'; +// @ts-ignore import { AddAdditionalDiscountRequestBody } from '../models'; // @ts-ignore import { AddAdditionalDiscountResponse } from '../models'; @@ -32,12 +34,16 @@ import { AddDealProductResponse } from '../models'; // @ts-ignore import { AddDealRequest } from '../models'; // @ts-ignore +import { AddInstallmentRequestBody } from '../models'; +// @ts-ignore import { DeleteAdditionalDiscountResponse } from '../models'; // @ts-ignore import { DeleteDealProductResponse } from '../models'; // @ts-ignore import { DeleteDealResponse } from '../models'; // @ts-ignore +import { DeleteInstallmentResponse } from '../models'; +// @ts-ignore import { GetAdditionalDiscountsResponse } from '../models'; // @ts-ignore import { GetDealSearchResponse } from '../models'; @@ -46,6 +52,8 @@ import { GetDealsProductsResponse } from '../models'; // @ts-ignore import { GetDealsResponse } from '../models'; // @ts-ignore +import { GetInstallmentsResponse } from '../models'; +// @ts-ignore import { UpdateAdditionalDiscountRequestBody } from '../models'; // @ts-ignore import { UpdateAdditionalDiscountResponse } from '../models'; @@ -54,6 +62,10 @@ import { UpdateDealProductRequest } from '../models'; // @ts-ignore import { UpdateDealRequest } from '../models'; // @ts-ignore +import { UpdateInstallmentRequestBody } from '../models'; +// @ts-ignore +import { UpdateInstallmentResponse } from '../models'; +// @ts-ignore import { UpsertDealResponse } from '../models'; /** * DealsApi - axios parameter creator @@ -269,6 +281,51 @@ export const DealsApiAxiosParamCreator = function (configuration?: Configuration + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, }; + + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, + /** + * Removes an installment from a deal. Only available in Advanced and above plans. + * @summary Delete an installment from a deal + * @param {number} id The ID of the deal + * @param {number} installment_id The ID of the installment + + * @throws {RequiredError} + */ + deleteInstallment: async (id: number, installment_id: number, ): Promise => { + // verify required parameter 'id' is not null or undefined + assertParamExists('deleteInstallment', 'id', id) + // verify required parameter 'installment_id' is not null or undefined + assertParamExists('deleteInstallment', 'installment_id', installment_id) + const localVarPath = `/deals/{id}/installments/{installment_id}` + .replace(`{${"id"}}`, encodeURIComponent(String(id))) + .replace(`{${"installment_id"}}`, encodeURIComponent(String(installment_id))); + // 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: 'DELETE', ...baseOptions }; + const localVarHeaderParameter = {} as any; + const localVarQueryParameter = {} as any; + + // authentication api_key required + await setApiKeyToObject(localVarQueryParameter, "api_token", configuration) + + // authentication oauth2 required + // oauth required + await setOAuthToObject(localVarHeaderParameter, "oauth2", ["deals:read", "deals:full"], configuration) + + + setSearchParams(localVarUrlObj, localVarQueryParameter); let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, }; @@ -603,6 +660,70 @@ export const DealsApiAxiosParamCreator = function (configuration?: Configuration + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, }; + + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, + /** + * Lists installments attached to a list of deals. Only available in Advanced and above plans. + * @summary List installments added to a list of deals + * @param {Array} deal_ids An array of integers with the IDs of the deals for which the attached installments will be returned. A maximum of 100 deal IDs can be provided. + * @param {string} [cursor] For pagination, the marker (an opaque string value) representing the first item on the next page + * @param {number} [limit] For pagination, the limit of entries to be returned. If not provided, 100 items will be returned. Please note that a maximum value of 500 is allowed. + * @param {'id' | 'billing_date' | 'deal_id'} [sort_by] The field to sort by. Supported fields: `id`, `billing_date`, `deal_id`. + * @param {'asc' | 'desc'} [sort_direction] The sorting direction. Supported values: `asc`, `desc`. + + * @throws {RequiredError} + */ + getInstallments: async (deal_ids: Array, cursor?: string, limit?: number, sort_by?: 'id' | 'billing_date' | 'deal_id', sort_direction?: 'asc' | 'desc', ): Promise => { + // verify required parameter 'deal_ids' is not null or undefined + assertParamExists('getInstallments', 'deal_ids', deal_ids) + const localVarPath = `/deals/installments`; + // use dummy base URL string because the URL constructor only accepts absolute URLs. + const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL); + let baseOptions; + if (configuration) { + baseOptions = configuration.baseOptions; + } + + const localVarRequestOptions = { method: 'GET', ...baseOptions }; + const localVarHeaderParameter = {} as any; + const localVarQueryParameter = {} as any; + + // authentication api_key required + await setApiKeyToObject(localVarQueryParameter, "api_token", configuration) + + // authentication oauth2 required + // oauth required + await setOAuthToObject(localVarHeaderParameter, "oauth2", ["deals:read", "deals:full"], configuration) + + if (deal_ids) { + localVarQueryParameter['deal_ids'] = deal_ids; + } + + if (cursor !== undefined) { + localVarQueryParameter['cursor'] = cursor; + } + + if (limit !== undefined) { + localVarQueryParameter['limit'] = limit; + } + + if (sort_by !== undefined) { + localVarQueryParameter['sort_by'] = sort_by; + } + + if (sort_direction !== undefined) { + localVarQueryParameter['sort_direction'] = sort_direction; + } + + + setSearchParams(localVarUrlObj, localVarQueryParameter); let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, }; @@ -657,6 +778,51 @@ export const DealsApiAxiosParamCreator = function (configuration?: Configuration options: localVarRequestOptions, }; }, + /** + * Adds an installment to a deal. An installment can only be added if the deal includes at least one one-time product. If the deal contains at least one recurring product, adding installments is not allowed. Only available in Advanced and above plans. + * @summary Add an installment to a deal + * @param {number} id The ID of the deal + * @param {AddInstallmentRequestBody} [AddInstallmentRequestBody] + + * @throws {RequiredError} + */ + postInstallment: async (id: number, AddInstallmentRequestBody?: AddInstallmentRequestBody, ): Promise => { + // verify required parameter 'id' is not null or undefined + assertParamExists('postInstallment', 'id', id) + const localVarPath = `/deals/{id}/installments` + .replace(`{${"id"}}`, encodeURIComponent(String(id))); + // 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 }; + const localVarHeaderParameter = {} as any; + const localVarQueryParameter = {} as any; + + // authentication api_key required + await setApiKeyToObject(localVarQueryParameter, "api_token", configuration) + + // authentication oauth2 required + // oauth required + await setOAuthToObject(localVarHeaderParameter, "oauth2", ["deals:read", "deals:full"], configuration) + + + + localVarHeaderParameter['Content-Type'] = 'application/json'; + + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, }; + localVarRequestOptions.data = serializeDataIfNeeded(AddInstallmentRequestBody, localVarRequestOptions, configuration) + + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, /** * Searches all deals by title, notes and/or custom fields. This endpoint is a wrapper of /v1/itemSearch with a narrower OAuth scope. Found deals can be filtered by the person ID and the organization ID. * @summary Search deals @@ -879,6 +1045,55 @@ export const DealsApiAxiosParamCreator = function (configuration?: Configuration localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, }; localVarRequestOptions.data = serializeDataIfNeeded(UpdateDealProductRequest, localVarRequestOptions, configuration) + return { + url: toPathString(localVarUrlObj), + options: localVarRequestOptions, + }; + }, + /** + * Edits an installment added to a deal. Only available in Advanced and above plans. + * @summary Update an installment added to a deal + * @param {number} id The ID of the deal + * @param {number} installment_id The ID of the installment + * @param {UpdateInstallmentRequestBody} [UpdateInstallmentRequestBody] + + * @throws {RequiredError} + */ + updateInstallment: async (id: number, installment_id: number, UpdateInstallmentRequestBody?: UpdateInstallmentRequestBody, ): Promise => { + // verify required parameter 'id' is not null or undefined + assertParamExists('updateInstallment', 'id', id) + // verify required parameter 'installment_id' is not null or undefined + assertParamExists('updateInstallment', 'installment_id', installment_id) + const localVarPath = `/deals/{id}/installments/{installment_id}` + .replace(`{${"id"}}`, encodeURIComponent(String(id))) + .replace(`{${"installment_id"}}`, encodeURIComponent(String(installment_id))); + // 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: 'PATCH', ...baseOptions }; + const localVarHeaderParameter = {} as any; + const localVarQueryParameter = {} as any; + + // authentication api_key required + await setApiKeyToObject(localVarQueryParameter, "api_token", configuration) + + // authentication oauth2 required + // oauth required + await setOAuthToObject(localVarHeaderParameter, "oauth2", ["deals:read", "deals:full"], configuration) + + + + localVarHeaderParameter['Content-Type'] = 'application/json'; + + setSearchParams(localVarUrlObj, localVarQueryParameter); + let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {}; + localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, }; + localVarRequestOptions.data = serializeDataIfNeeded(UpdateInstallmentRequestBody, localVarRequestOptions, configuration) + return { url: toPathString(localVarUrlObj), options: localVarRequestOptions, @@ -953,6 +1168,18 @@ export const DealsApiFp = function(configuration?: Configuration) { const localVarAxiosArgs = await localVarAxiosParamCreator.deleteDealProduct(id, product_attachment_id, ); return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); }, + /** + * Removes an installment from a deal. Only available in Advanced and above plans. + * @summary Delete an installment from a deal + * @param {number} id The ID of the deal + * @param {number} installment_id The ID of the installment + + * @throws {RequiredError} + */ + async deleteInstallment(id: number, installment_id: number, ): Promise<(axios?: AxiosInstance, basePath?: string) => Promise> { + const localVarAxiosArgs = await localVarAxiosParamCreator.deleteInstallment(id, installment_id, ); + return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); + }, /** * Lists discounts attached to a deal. * @summary List discounts added to a deal @@ -1033,6 +1260,21 @@ export const DealsApiFp = function(configuration?: Configuration) { const localVarAxiosArgs = await localVarAxiosParamCreator.getDealsProducts(deal_ids, cursor, limit, sort_by, sort_direction, ); return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); }, + /** + * Lists installments attached to a list of deals. Only available in Advanced and above plans. + * @summary List installments added to a list of deals + * @param {Array} deal_ids An array of integers with the IDs of the deals for which the attached installments will be returned. A maximum of 100 deal IDs can be provided. + * @param {string} [cursor] For pagination, the marker (an opaque string value) representing the first item on the next page + * @param {number} [limit] For pagination, the limit of entries to be returned. If not provided, 100 items will be returned. Please note that a maximum value of 500 is allowed. + * @param {'id' | 'billing_date' | 'deal_id'} [sort_by] The field to sort by. Supported fields: `id`, `billing_date`, `deal_id`. + * @param {'asc' | 'desc'} [sort_direction] The sorting direction. Supported values: `asc`, `desc`. + + * @throws {RequiredError} + */ + async getInstallments(deal_ids: Array, cursor?: string, limit?: number, sort_by?: 'id' | 'billing_date' | 'deal_id', sort_direction?: 'asc' | 'desc', ): Promise<(axios?: AxiosInstance, basePath?: string) => Promise> { + const localVarAxiosArgs = await localVarAxiosParamCreator.getInstallments(deal_ids, cursor, limit, sort_by, sort_direction, ); + return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); + }, /** * Adds a discount to a deal changing, the deal value if the deal has one-time products attached. * @summary Add a discount to a deal @@ -1045,6 +1287,18 @@ export const DealsApiFp = function(configuration?: Configuration) { const localVarAxiosArgs = await localVarAxiosParamCreator.postAdditionalDiscount(id, AddAdditionalDiscountRequestBody, ); return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); }, + /** + * Adds an installment to a deal. An installment can only be added if the deal includes at least one one-time product. If the deal contains at least one recurring product, adding installments is not allowed. Only available in Advanced and above plans. + * @summary Add an installment to a deal + * @param {number} id The ID of the deal + * @param {AddInstallmentRequestBody} [AddInstallmentRequestBody] + + * @throws {RequiredError} + */ + async postInstallment(id: number, AddInstallmentRequestBody?: AddInstallmentRequestBody, ): Promise<(axios?: AxiosInstance, basePath?: string) => Promise> { + const localVarAxiosArgs = await localVarAxiosParamCreator.postInstallment(id, AddInstallmentRequestBody, ); + return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); + }, /** * Searches all deals by title, notes and/or custom fields. This endpoint is a wrapper of /v1/itemSearch with a narrower OAuth scope. Found deals can be filtered by the person ID and the organization ID. * @summary Search deals @@ -1102,6 +1356,19 @@ export const DealsApiFp = function(configuration?: Configuration) { const localVarAxiosArgs = await localVarAxiosParamCreator.updateDealProduct(id, product_attachment_id, UpdateDealProductRequest, ); return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); }, + /** + * Edits an installment added to a deal. Only available in Advanced and above plans. + * @summary Update an installment added to a deal + * @param {number} id The ID of the deal + * @param {number} installment_id The ID of the installment + * @param {UpdateInstallmentRequestBody} [UpdateInstallmentRequestBody] + + * @throws {RequiredError} + */ + async updateInstallment(id: number, installment_id: number, UpdateInstallmentRequestBody?: UpdateInstallmentRequestBody, ): Promise<(axios?: AxiosInstance, basePath?: string) => Promise> { + const localVarAxiosArgs = await localVarAxiosParamCreator.updateInstallment(id, installment_id, UpdateInstallmentRequestBody, ); + return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration); + }, } }; @@ -1162,6 +1429,16 @@ export const DealsApiFactory = function (configuration?: Configuration, basePath deleteDealProduct(requestParameters: DealsApiDeleteDealProductRequest, ): Promise { return localVarFp.deleteDealProduct(requestParameters.id, requestParameters.product_attachment_id, ).then((request) => request(axios, basePath)); }, + /** + * Removes an installment from a deal. Only available in Advanced and above plans. + * @summary Delete an installment from a deal + * @param {DealsApiDeleteInstallmentRequest} requestParameters Request parameters. + + * @throws {RequiredError} + */ + deleteInstallment(requestParameters: DealsApiDeleteInstallmentRequest, ): Promise { + return localVarFp.deleteInstallment(requestParameters.id, requestParameters.installment_id, ).then((request) => request(axios, basePath)); + }, /** * Lists discounts attached to a deal. * @summary List discounts added to a deal @@ -1212,6 +1489,16 @@ export const DealsApiFactory = function (configuration?: Configuration, basePath getDealsProducts(requestParameters: DealsApiGetDealsProductsRequest, ): Promise { return localVarFp.getDealsProducts(requestParameters.deal_ids, requestParameters.cursor, requestParameters.limit, requestParameters.sort_by, requestParameters.sort_direction, ).then((request) => request(axios, basePath)); }, + /** + * Lists installments attached to a list of deals. Only available in Advanced and above plans. + * @summary List installments added to a list of deals + * @param {DealsApiGetInstallmentsRequest} requestParameters Request parameters. + + * @throws {RequiredError} + */ + getInstallments(requestParameters: DealsApiGetInstallmentsRequest, ): Promise { + return localVarFp.getInstallments(requestParameters.deal_ids, requestParameters.cursor, requestParameters.limit, requestParameters.sort_by, requestParameters.sort_direction, ).then((request) => request(axios, basePath)); + }, /** * Adds a discount to a deal changing, the deal value if the deal has one-time products attached. * @summary Add a discount to a deal @@ -1222,6 +1509,16 @@ export const DealsApiFactory = function (configuration?: Configuration, basePath postAdditionalDiscount(requestParameters: DealsApiPostAdditionalDiscountRequest, ): Promise { return localVarFp.postAdditionalDiscount(requestParameters.id, requestParameters.AddAdditionalDiscountRequestBody, ).then((request) => request(axios, basePath)); }, + /** + * Adds an installment to a deal. An installment can only be added if the deal includes at least one one-time product. If the deal contains at least one recurring product, adding installments is not allowed. Only available in Advanced and above plans. + * @summary Add an installment to a deal + * @param {DealsApiPostInstallmentRequest} requestParameters Request parameters. + + * @throws {RequiredError} + */ + postInstallment(requestParameters: DealsApiPostInstallmentRequest, ): Promise { + return localVarFp.postInstallment(requestParameters.id, requestParameters.AddInstallmentRequestBody, ).then((request) => request(axios, basePath)); + }, /** * Searches all deals by title, notes and/or custom fields. This endpoint is a wrapper of /v1/itemSearch with a narrower OAuth scope. Found deals can be filtered by the person ID and the organization ID. * @summary Search deals @@ -1262,6 +1559,16 @@ export const DealsApiFactory = function (configuration?: Configuration, basePath updateDealProduct(requestParameters: DealsApiUpdateDealProductRequest, ): Promise { return localVarFp.updateDealProduct(requestParameters.id, requestParameters.product_attachment_id, requestParameters.UpdateDealProductRequest, ).then((request) => request(axios, basePath)); }, + /** + * Edits an installment added to a deal. Only available in Advanced and above plans. + * @summary Update an installment added to a deal + * @param {DealsApiUpdateInstallmentRequest} requestParameters Request parameters. + + * @throws {RequiredError} + */ + updateInstallment(requestParameters: DealsApiUpdateInstallmentRequest, ): Promise { + return localVarFp.updateInstallment(requestParameters.id, requestParameters.installment_id, requestParameters.UpdateInstallmentRequestBody, ).then((request) => request(axios, basePath)); + }, }; }; @@ -1356,6 +1663,27 @@ export interface DealsApiDeleteDealProductRequest { readonly product_attachment_id: number } +/** + * Request parameters for deleteInstallment operation in DealsApi. + * @export + * @interface DealsApiDeleteInstallmentRequest + */ +export interface DealsApiDeleteInstallmentRequest { + /** + * The ID of the deal + * @type {number} + * @memberof DealsApiDeleteInstallment + */ + readonly id: number + + /** + * The ID of the installment + * @type {number} + * @memberof DealsApiDeleteInstallment + */ + readonly installment_id: number +} + /** * Request parameters for getAdditionalDiscounts operation in DealsApi. * @export @@ -1601,6 +1929,48 @@ export interface DealsApiGetDealsProductsRequest { readonly sort_direction?: 'asc' | 'desc' } +/** + * Request parameters for getInstallments operation in DealsApi. + * @export + * @interface DealsApiGetInstallmentsRequest + */ +export interface DealsApiGetInstallmentsRequest { + /** + * An array of integers with the IDs of the deals for which the attached installments will be returned. A maximum of 100 deal IDs can be provided. + * @type {Array} + * @memberof DealsApiGetInstallments + */ + readonly deal_ids: Array + + /** + * For pagination, the marker (an opaque string value) representing the first item on the next page + * @type {string} + * @memberof DealsApiGetInstallments + */ + readonly cursor?: string + + /** + * For pagination, the limit of entries to be returned. If not provided, 100 items will be returned. Please note that a maximum value of 500 is allowed. + * @type {number} + * @memberof DealsApiGetInstallments + */ + readonly limit?: number + + /** + * The field to sort by. Supported fields: `id`, `billing_date`, `deal_id`. + * @type {'id' | 'billing_date' | 'deal_id'} + * @memberof DealsApiGetInstallments + */ + readonly sort_by?: 'id' | 'billing_date' | 'deal_id' + + /** + * The sorting direction. Supported values: `asc`, `desc`. + * @type {'asc' | 'desc'} + * @memberof DealsApiGetInstallments + */ + readonly sort_direction?: 'asc' | 'desc' +} + /** * Request parameters for postAdditionalDiscount operation in DealsApi. * @export @@ -1622,6 +1992,27 @@ export interface DealsApiPostAdditionalDiscountRequest { readonly AddAdditionalDiscountRequestBody?: AddAdditionalDiscountRequestBody } +/** + * Request parameters for postInstallment operation in DealsApi. + * @export + * @interface DealsApiPostInstallmentRequest + */ +export interface DealsApiPostInstallmentRequest { + /** + * The ID of the deal + * @type {number} + * @memberof DealsApiPostInstallment + */ + readonly id: number + + /** + * + * @type {AddInstallmentRequestBody} + * @memberof DealsApiPostInstallment + */ + readonly AddInstallmentRequestBody?: AddInstallmentRequestBody +} + /** * Request parameters for searchDeals operation in DealsApi. * @export @@ -1769,6 +2160,34 @@ export interface DealsApiUpdateDealProductRequest { readonly UpdateDealProductRequest?: UpdateDealProductRequest } +/** + * Request parameters for updateInstallment operation in DealsApi. + * @export + * @interface DealsApiUpdateInstallmentRequest + */ +export interface DealsApiUpdateInstallmentRequest { + /** + * The ID of the deal + * @type {number} + * @memberof DealsApiUpdateInstallment + */ + readonly id: number + + /** + * The ID of the installment + * @type {number} + * @memberof DealsApiUpdateInstallment + */ + readonly installment_id: number + + /** + * + * @type {UpdateInstallmentRequestBody} + * @memberof DealsApiUpdateInstallment + */ + readonly UpdateInstallmentRequestBody?: UpdateInstallmentRequestBody +} + /** * DealsApi - object-oriented interface * @export @@ -1836,6 +2255,18 @@ export class DealsApi extends BaseAPI { return DealsApiFp(this.configuration).deleteDealProduct(requestParameters.id, requestParameters.product_attachment_id, ).then((request) => request(this.axios, this.basePath)); } + /** + * Removes an installment from a deal. Only available in Advanced and above plans. + * @summary Delete an installment from a deal + * @param {DealsApiDeleteInstallmentRequest} requestParameters Request parameters. + + * @throws {RequiredError} + * @memberof DealsApi + */ + public deleteInstallment(requestParameters: DealsApiDeleteInstallmentRequest, ) { + return DealsApiFp(this.configuration).deleteInstallment(requestParameters.id, requestParameters.installment_id, ).then((request) => request(this.axios, this.basePath)); + } + /** * Lists discounts attached to a deal. * @summary List discounts added to a deal @@ -1896,6 +2327,18 @@ export class DealsApi extends BaseAPI { return DealsApiFp(this.configuration).getDealsProducts(requestParameters.deal_ids, requestParameters.cursor, requestParameters.limit, requestParameters.sort_by, requestParameters.sort_direction, ).then((request) => request(this.axios, this.basePath)); } + /** + * Lists installments attached to a list of deals. Only available in Advanced and above plans. + * @summary List installments added to a list of deals + * @param {DealsApiGetInstallmentsRequest} requestParameters Request parameters. + + * @throws {RequiredError} + * @memberof DealsApi + */ + public getInstallments(requestParameters: DealsApiGetInstallmentsRequest, ) { + return DealsApiFp(this.configuration).getInstallments(requestParameters.deal_ids, requestParameters.cursor, requestParameters.limit, requestParameters.sort_by, requestParameters.sort_direction, ).then((request) => request(this.axios, this.basePath)); + } + /** * Adds a discount to a deal changing, the deal value if the deal has one-time products attached. * @summary Add a discount to a deal @@ -1908,6 +2351,18 @@ export class DealsApi extends BaseAPI { return DealsApiFp(this.configuration).postAdditionalDiscount(requestParameters.id, requestParameters.AddAdditionalDiscountRequestBody, ).then((request) => request(this.axios, this.basePath)); } + /** + * Adds an installment to a deal. An installment can only be added if the deal includes at least one one-time product. If the deal contains at least one recurring product, adding installments is not allowed. Only available in Advanced and above plans. + * @summary Add an installment to a deal + * @param {DealsApiPostInstallmentRequest} requestParameters Request parameters. + + * @throws {RequiredError} + * @memberof DealsApi + */ + public postInstallment(requestParameters: DealsApiPostInstallmentRequest, ) { + return DealsApiFp(this.configuration).postInstallment(requestParameters.id, requestParameters.AddInstallmentRequestBody, ).then((request) => request(this.axios, this.basePath)); + } + /** * Searches all deals by title, notes and/or custom fields. This endpoint is a wrapper of /v1/itemSearch with a narrower OAuth scope. Found deals can be filtered by the person ID and the organization ID. * @summary Search deals @@ -1955,4 +2410,16 @@ export class DealsApi extends BaseAPI { public updateDealProduct(requestParameters: DealsApiUpdateDealProductRequest, ) { return DealsApiFp(this.configuration).updateDealProduct(requestParameters.id, requestParameters.product_attachment_id, requestParameters.UpdateDealProductRequest, ).then((request) => request(this.axios, this.basePath)); } + + /** + * Edits an installment added to a deal. Only available in Advanced and above plans. + * @summary Update an installment added to a deal + * @param {DealsApiUpdateInstallmentRequest} requestParameters Request parameters. + + * @throws {RequiredError} + * @memberof DealsApi + */ + public updateInstallment(requestParameters: DealsApiUpdateInstallmentRequest, ) { + return DealsApiFp(this.configuration).updateInstallment(requestParameters.id, requestParameters.installment_id, requestParameters.UpdateInstallmentRequestBody, ).then((request) => request(this.axios, this.basePath)); + } } diff --git a/src/versions/v2/models/add-ainstallment-response.ts b/src/versions/v2/models/add-ainstallment-response.ts new file mode 100644 index 00000000..39fbf87c --- /dev/null +++ b/src/versions/v2/models/add-ainstallment-response.ts @@ -0,0 +1,37 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Pipedrive API v2 + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + * + * The version of the OpenAPI document: 2.0.0 + * + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +// May contain unused imports in some cases +// @ts-ignore +import { GetInstallmentsResponseDataInner } from './get-installments-response-data-inner'; + +/** +* +* @export +* @interface AddAInstallmentResponse +*/ +export interface AddAInstallmentResponse { + /** + * If the response is successful or not + * @type {boolean} + */ + 'success'?: boolean; + /** + * + * @type {GetInstallmentsResponseDataInner} + */ + 'data'?: GetInstallmentsResponseDataInner; +} + diff --git a/src/versions/v2/models/add-installment-request-body.ts b/src/versions/v2/models/add-installment-request-body.ts new file mode 100644 index 00000000..2bb8ada6 --- /dev/null +++ b/src/versions/v2/models/add-installment-request-body.ts @@ -0,0 +1,39 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Pipedrive API v2 + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + * + * The version of the OpenAPI document: 2.0.0 + * + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + + +/** +* +* @export +* @interface AddInstallmentRequestBody +*/ +export interface AddInstallmentRequestBody { + /** + * The name of the installment. + * @type {string} + */ + 'description': string; + /** + * The installment amount. Must be a positive number (excluding 0). + * @type {number} + */ + 'amount': number; + /** + * The date which the installment will be charged. Must be in the format YYYY-MM-DD. + * @type {string} + */ + 'billing_date': string; +} + diff --git a/src/versions/v2/models/delete-installment-response-data.ts b/src/versions/v2/models/delete-installment-response-data.ts new file mode 100644 index 00000000..f0cac72b --- /dev/null +++ b/src/versions/v2/models/delete-installment-response-data.ts @@ -0,0 +1,29 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Pipedrive API v2 + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + * + * The version of the OpenAPI document: 2.0.0 + * + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + + +/** +* +* @export +* @interface DeleteInstallmentResponseData +*/ +export interface DeleteInstallmentResponseData { + /** + * The ID of the installment that was deleted from the deal + * @type {number} + */ + 'id'?: number; +} + diff --git a/src/versions/v2/models/delete-installment-response.ts b/src/versions/v2/models/delete-installment-response.ts new file mode 100644 index 00000000..edd21ec3 --- /dev/null +++ b/src/versions/v2/models/delete-installment-response.ts @@ -0,0 +1,37 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Pipedrive API v2 + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + * + * The version of the OpenAPI document: 2.0.0 + * + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +// May contain unused imports in some cases +// @ts-ignore +import { DeleteInstallmentResponseData } from './delete-installment-response-data'; + +/** +* +* @export +* @interface DeleteInstallmentResponse +*/ +export interface DeleteInstallmentResponse { + /** + * If the response is successful or not + * @type {boolean} + */ + 'success'?: boolean; + /** + * + * @type {DeleteInstallmentResponseData} + */ + 'data'?: DeleteInstallmentResponseData; +} + diff --git a/src/versions/v2/models/get-activities-response-all-of-additional-data.ts b/src/versions/v2/models/get-activities-response-all-of-additional-data.ts new file mode 100644 index 00000000..288283ec --- /dev/null +++ b/src/versions/v2/models/get-activities-response-all-of-additional-data.ts @@ -0,0 +1,29 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Pipedrive API v2 + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + * + * The version of the OpenAPI document: 2.0.0 + * + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + + +/** +* The additional data of the list +* @export +* @interface GetActivitiesResponseAllOfAdditionalData +*/ +export interface GetActivitiesResponseAllOfAdditionalData { + /** + * The first item on the next page. The value of the `next_cursor` field will be `null` if you have reached the end of the dataset and there’s no more pages to be returned. + * @type {string} + */ + 'next_cursor'?: string; +} + diff --git a/src/versions/v2/models/get-activities-response-all-of.ts b/src/versions/v2/models/get-activities-response-all-of.ts index eff1203c..0649e07d 100644 --- a/src/versions/v2/models/get-activities-response-all-of.ts +++ b/src/versions/v2/models/get-activities-response-all-of.ts @@ -16,6 +16,9 @@ // May contain unused imports in some cases // @ts-ignore import { ActivityItem } from './activity-item'; +// May contain unused imports in some cases +// @ts-ignore +import { GetActivitiesResponseAllOfAdditionalData } from './get-activities-response-all-of-additional-data'; /** * @@ -28,5 +31,10 @@ export interface GetActivitiesResponseAllOf { * @type {Array} */ 'data'?: Array; + /** + * + * @type {GetActivitiesResponseAllOfAdditionalData} + */ + 'additional_data'?: GetActivitiesResponseAllOfAdditionalData; } diff --git a/src/versions/v2/models/get-activities-response.ts b/src/versions/v2/models/get-activities-response.ts index dd307eae..eff7295f 100644 --- a/src/versions/v2/models/get-activities-response.ts +++ b/src/versions/v2/models/get-activities-response.ts @@ -22,6 +22,9 @@ import { BaseResponse } from './base-response'; // May contain unused imports in some cases // @ts-ignore import { GetActivitiesResponseAllOf } from './get-activities-response-all-of'; +// May contain unused imports in some cases +// @ts-ignore +import { GetActivitiesResponseAllOfAdditionalData } from './get-activities-response-all-of-additional-data'; /** * @type GetActivitiesResponse diff --git a/src/versions/v2/models/get-deals-response-all-of.ts b/src/versions/v2/models/get-deals-response-all-of.ts index ace27ba1..1bb76f83 100644 --- a/src/versions/v2/models/get-deals-response-all-of.ts +++ b/src/versions/v2/models/get-deals-response-all-of.ts @@ -16,6 +16,9 @@ // May contain unused imports in some cases // @ts-ignore import { DealItem } from './deal-item'; +// May contain unused imports in some cases +// @ts-ignore +import { GetActivitiesResponseAllOfAdditionalData } from './get-activities-response-all-of-additional-data'; /** * @@ -28,5 +31,10 @@ export interface GetDealsResponseAllOf { * @type {Array} */ 'data'?: Array; + /** + * + * @type {GetActivitiesResponseAllOfAdditionalData} + */ + 'additional_data'?: GetActivitiesResponseAllOfAdditionalData; } diff --git a/src/versions/v2/models/get-deals-response.ts b/src/versions/v2/models/get-deals-response.ts index 75cf7b55..0d11c8a7 100644 --- a/src/versions/v2/models/get-deals-response.ts +++ b/src/versions/v2/models/get-deals-response.ts @@ -21,6 +21,9 @@ import { BaseResponse } from './base-response'; import { DealItem } from './deal-item'; // May contain unused imports in some cases // @ts-ignore +import { GetActivitiesResponseAllOfAdditionalData } from './get-activities-response-all-of-additional-data'; +// May contain unused imports in some cases +// @ts-ignore import { GetDealsResponseAllOf } from './get-deals-response-all-of'; /** diff --git a/src/versions/v2/models/get-installments-response-data-inner.ts b/src/versions/v2/models/get-installments-response-data-inner.ts new file mode 100644 index 00000000..9377f90b --- /dev/null +++ b/src/versions/v2/models/get-installments-response-data-inner.ts @@ -0,0 +1,49 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Pipedrive API v2 + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + * + * The version of the OpenAPI document: 2.0.0 + * + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + + +/** +* +* @export +* @interface GetInstallmentsResponseDataInner +*/ +export interface GetInstallmentsResponseDataInner { + /** + * The ID of the installment + * @type {number} + */ + 'id'?: number; + /** + * The installment amount. + * @type {number} + */ + 'amount'?: number; + /** + * The date which the installment will be charged. + * @type {string} + */ + 'billing_date'?: string; + /** + * The name of installment. + * @type {string} + */ + 'description'?: string; + /** + * The ID of the deal the installment was added to. + * @type {number} + */ + 'deal_id'?: number; +} + diff --git a/src/versions/v2/models/get-installments-response.ts b/src/versions/v2/models/get-installments-response.ts new file mode 100644 index 00000000..a7bbd532 --- /dev/null +++ b/src/versions/v2/models/get-installments-response.ts @@ -0,0 +1,37 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Pipedrive API v2 + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + * + * The version of the OpenAPI document: 2.0.0 + * + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +// May contain unused imports in some cases +// @ts-ignore +import { GetInstallmentsResponseDataInner } from './get-installments-response-data-inner'; + +/** +* +* @export +* @interface GetInstallmentsResponse +*/ +export interface GetInstallmentsResponse { + /** + * If the response is successful or not + * @type {boolean} + */ + 'success'?: boolean; + /** + * Array containing data for all installments added to a deal + * @type {Array} + */ + 'data'?: Array; +} + diff --git a/src/versions/v2/models/get-organizations-response-all-of.ts b/src/versions/v2/models/get-organizations-response-all-of.ts index 2f4d023c..5da66de7 100644 --- a/src/versions/v2/models/get-organizations-response-all-of.ts +++ b/src/versions/v2/models/get-organizations-response-all-of.ts @@ -13,6 +13,9 @@ */ +// May contain unused imports in some cases +// @ts-ignore +import { GetActivitiesResponseAllOfAdditionalData } from './get-activities-response-all-of-additional-data'; // May contain unused imports in some cases // @ts-ignore import { OrganizationItem } from './organization-item'; @@ -28,5 +31,10 @@ export interface GetOrganizationsResponseAllOf { * @type {Array} */ 'data'?: Array; + /** + * + * @type {GetActivitiesResponseAllOfAdditionalData} + */ + 'additional_data'?: GetActivitiesResponseAllOfAdditionalData; } diff --git a/src/versions/v2/models/get-organizations-response.ts b/src/versions/v2/models/get-organizations-response.ts index c4828908..338c5216 100644 --- a/src/versions/v2/models/get-organizations-response.ts +++ b/src/versions/v2/models/get-organizations-response.ts @@ -18,6 +18,9 @@ import { BaseResponse } from './base-response'; // May contain unused imports in some cases // @ts-ignore +import { GetActivitiesResponseAllOfAdditionalData } from './get-activities-response-all-of-additional-data'; +// May contain unused imports in some cases +// @ts-ignore import { GetOrganizationsResponseAllOf } from './get-organizations-response-all-of'; // May contain unused imports in some cases // @ts-ignore diff --git a/src/versions/v2/models/get-persons-response-all-of.ts b/src/versions/v2/models/get-persons-response-all-of.ts index 7bc156de..5f273675 100644 --- a/src/versions/v2/models/get-persons-response-all-of.ts +++ b/src/versions/v2/models/get-persons-response-all-of.ts @@ -13,6 +13,9 @@ */ +// May contain unused imports in some cases +// @ts-ignore +import { GetActivitiesResponseAllOfAdditionalData } from './get-activities-response-all-of-additional-data'; // May contain unused imports in some cases // @ts-ignore import { GetPersonsResponseAllOfDataInner } from './get-persons-response-all-of-data-inner'; @@ -28,5 +31,10 @@ export interface GetPersonsResponseAllOf { * @type {Array} */ 'data'?: Array; + /** + * + * @type {GetActivitiesResponseAllOfAdditionalData} + */ + 'additional_data'?: GetActivitiesResponseAllOfAdditionalData; } diff --git a/src/versions/v2/models/get-persons-response.ts b/src/versions/v2/models/get-persons-response.ts index b5dc3918..b8f21a38 100644 --- a/src/versions/v2/models/get-persons-response.ts +++ b/src/versions/v2/models/get-persons-response.ts @@ -18,6 +18,9 @@ import { BaseResponse } from './base-response'; // May contain unused imports in some cases // @ts-ignore +import { GetActivitiesResponseAllOfAdditionalData } from './get-activities-response-all-of-additional-data'; +// May contain unused imports in some cases +// @ts-ignore import { GetPersonsResponseAllOf } from './get-persons-response-all-of'; // May contain unused imports in some cases // @ts-ignore diff --git a/src/versions/v2/models/get-pipelines-response-all-of.ts b/src/versions/v2/models/get-pipelines-response-all-of.ts index a1329825..abd39a54 100644 --- a/src/versions/v2/models/get-pipelines-response-all-of.ts +++ b/src/versions/v2/models/get-pipelines-response-all-of.ts @@ -13,6 +13,9 @@ */ +// May contain unused imports in some cases +// @ts-ignore +import { GetActivitiesResponseAllOfAdditionalData } from './get-activities-response-all-of-additional-data'; // May contain unused imports in some cases // @ts-ignore import { GetPipelinesResponseAllOfDataInner } from './get-pipelines-response-all-of-data-inner'; @@ -28,5 +31,10 @@ export interface GetPipelinesResponseAllOf { * @type {Array} */ 'data'?: Array; + /** + * + * @type {GetActivitiesResponseAllOfAdditionalData} + */ + 'additional_data'?: GetActivitiesResponseAllOfAdditionalData; } diff --git a/src/versions/v2/models/get-pipelines-response.ts b/src/versions/v2/models/get-pipelines-response.ts index 02d28c3d..beac80de 100644 --- a/src/versions/v2/models/get-pipelines-response.ts +++ b/src/versions/v2/models/get-pipelines-response.ts @@ -18,6 +18,9 @@ import { BaseResponse } from './base-response'; // May contain unused imports in some cases // @ts-ignore +import { GetActivitiesResponseAllOfAdditionalData } from './get-activities-response-all-of-additional-data'; +// May contain unused imports in some cases +// @ts-ignore import { GetPipelinesResponseAllOf } from './get-pipelines-response-all-of'; // May contain unused imports in some cases // @ts-ignore diff --git a/src/versions/v2/models/get-stages-response.ts b/src/versions/v2/models/get-stages-response.ts index 5d482ad2..4c5dd1b1 100644 --- a/src/versions/v2/models/get-stages-response.ts +++ b/src/versions/v2/models/get-stages-response.ts @@ -13,6 +13,9 @@ */ +// May contain unused imports in some cases +// @ts-ignore +import { GetActivitiesResponseAllOfAdditionalData } from './get-activities-response-all-of-additional-data'; // May contain unused imports in some cases // @ts-ignore import { StageItem } from './stage-item'; @@ -33,5 +36,10 @@ export interface GetStagesResponse { * @type {Array} */ 'data'?: Array; + /** + * + * @type {GetActivitiesResponseAllOfAdditionalData} + */ + 'additional_data'?: GetActivitiesResponseAllOfAdditionalData; } diff --git a/src/versions/v2/models/index.ts b/src/versions/v2/models/index.ts index 3e591a9d..ee0633d1 100644 --- a/src/versions/v2/models/index.ts +++ b/src/versions/v2/models/index.ts @@ -3,12 +3,14 @@ export * from './activity-item1'; export * from './activity-item-attendees-inner'; export * from './activity-item-location'; export * from './activity-item-participants-inner'; +export * from './add-ainstallment-response'; export * from './add-activity-request'; export * from './add-additional-discount-request-body'; export * from './add-additional-discount-response'; export * from './add-deal-product-request'; export * from './add-deal-product-response'; export * from './add-deal-request'; +export * from './add-installment-request-body'; export * from './add-organization-request'; export * from './add-person-request'; export * from './add-person-request-emails-inner'; @@ -34,6 +36,8 @@ export * from './delete-deal-product-response'; export * from './delete-deal-product-response-data'; export * from './delete-deal-response'; export * from './delete-deal-response-data'; +export * from './delete-installment-response'; +export * from './delete-installment-response-data'; export * from './delete-organization-response'; export * from './delete-organization-response-data'; export * from './delete-person-response'; @@ -48,6 +52,7 @@ export * from './delete-stage-response'; export * from './delete-stage-response-data'; export * from './get-activities-response'; export * from './get-activities-response-all-of'; +export * from './get-activities-response-all-of-additional-data'; export * from './get-additional-discounts-response'; export * from './get-additional-discounts-response-data-inner'; export * from './get-deal-search-response'; @@ -68,6 +73,8 @@ export * from './get-deals-products-response-data-inner-all-of2'; export * from './get-deals-products-response-data-inner-all-of3'; export * from './get-deals-response'; export * from './get-deals-response-all-of'; +export * from './get-installments-response'; +export * from './get-installments-response-data-inner'; export * from './get-item-search-field-response'; export * from './get-item-search-field-response-all-of'; export * from './get-item-search-response'; @@ -131,6 +138,8 @@ export * from './update-additional-discount-response'; export * from './update-deal-product-request'; export * from './update-deal-product-request-all-of'; export * from './update-deal-request'; +export * from './update-installment-request-body'; +export * from './update-installment-response'; export * from './update-organization-request'; export * from './update-person-request'; export * from './update-pipeline-request'; diff --git a/src/versions/v2/models/update-installment-request-body.ts b/src/versions/v2/models/update-installment-request-body.ts new file mode 100644 index 00000000..018bfa3c --- /dev/null +++ b/src/versions/v2/models/update-installment-request-body.ts @@ -0,0 +1,39 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Pipedrive API v2 + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + * + * The version of the OpenAPI document: 2.0.0 + * + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + + +/** +* +* @export +* @interface UpdateInstallmentRequestBody +*/ +export interface UpdateInstallmentRequestBody { + /** + * The name of the installment. + * @type {string} + */ + 'description'?: string; + /** + * The installment amount. Must be a positive number (excluding 0). + * @type {number} + */ + 'amount'?: number; + /** + * The date which the installment will be charged. Must be in the format YYYY-MM-DD. + * @type {string} + */ + 'billing_date'?: string; +} + diff --git a/src/versions/v2/models/update-installment-response.ts b/src/versions/v2/models/update-installment-response.ts new file mode 100644 index 00000000..7f9860c0 --- /dev/null +++ b/src/versions/v2/models/update-installment-response.ts @@ -0,0 +1,37 @@ +/* tslint:disable */ +/* eslint-disable */ +/** + * Pipedrive API v2 + * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + * + * The version of the OpenAPI document: 2.0.0 + * + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech + * Do not edit the class manually. + */ + + +// May contain unused imports in some cases +// @ts-ignore +import { GetInstallmentsResponseDataInner } from './get-installments-response-data-inner'; + +/** +* +* @export +* @interface UpdateInstallmentResponse +*/ +export interface UpdateInstallmentResponse { + /** + * If the response is successful or not + * @type {boolean} + */ + 'success'?: boolean; + /** + * + * @type {GetInstallmentsResponseDataInner} + */ + 'data'?: GetInstallmentsResponseDataInner; +} +