pipedrive 29.2.2 → 29.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/esm/versions/v1/models/add-activity-request-all-of.d.ts +1 -0
- package/dist/esm/versions/v1/models/add-note-request-all-of.d.ts +1 -0
- package/dist/esm/versions/v1/models/add-organization-request-all-of.d.ts +1 -0
- package/dist/esm/versions/v1/models/add-person-request-all-of.d.ts +1 -0
- package/dist/esm/versions/v1/models/add-product-request-all-of1.d.ts +1 -0
- package/dist/esm/versions/v1/models/basic-deal.d.ts +1 -0
- package/dist/esm/versions/v1/models/basic-organization.d.ts +1 -0
- package/dist/esm/versions/v1/models/index.d.ts +0 -2
- package/dist/esm/versions/v1/models/index.js +0 -2
- package/dist/esm/versions/v1/models/update-activity-request-all-of.d.ts +1 -0
- package/dist/esm/versions/v1/models/update-deal-request.d.ts +2 -2
- package/dist/esm/versions/v1/models/update-organization-request.d.ts +2 -2
- package/dist/esm/versions/v2/api/item-search-api.d.ts +3 -3
- package/dist/esm/versions/v2/api/item-search-api.js +2 -2
- package/dist/versions/v1/models/add-activity-request-all-of.d.ts +1 -0
- package/dist/versions/v1/models/add-note-request-all-of.d.ts +1 -0
- package/dist/versions/v1/models/add-organization-request-all-of.d.ts +1 -0
- package/dist/versions/v1/models/add-person-request-all-of.d.ts +1 -0
- package/dist/versions/v1/models/add-product-request-all-of1.d.ts +1 -0
- package/dist/versions/v1/models/basic-deal.d.ts +1 -0
- package/dist/versions/v1/models/basic-organization.d.ts +1 -0
- package/dist/versions/v1/models/index.d.ts +0 -2
- package/dist/versions/v1/models/index.js +0 -2
- package/dist/versions/v1/models/update-activity-request-all-of.d.ts +1 -0
- package/dist/versions/v1/models/update-deal-request.d.ts +2 -2
- package/dist/versions/v1/models/update-organization-request.d.ts +2 -2
- package/dist/versions/v2/api/item-search-api.d.ts +3 -3
- package/dist/versions/v2/api/item-search-api.js +2 -2
- package/package.json +1 -1
@@ -15,6 +15,7 @@
|
|
15
15
|
* @interface BasicDeal
|
16
16
|
*/
|
17
17
|
export interface BasicDeal {
|
18
|
+
[key: string]: any | any;
|
18
19
|
/**
|
19
20
|
* The optional date and time of changing the deal status as won in UTC. Format: YYYY-MM-DD HH:MM:SS. Can be set only when deal `status` is already Won. Can not be used together with `lost_time`.
|
20
21
|
* @type {string}
|
@@ -15,6 +15,7 @@
|
|
15
15
|
* @interface BasicOrganization
|
16
16
|
*/
|
17
17
|
export interface BasicOrganization {
|
18
|
+
[key: string]: any | any;
|
18
19
|
/**
|
19
20
|
* The ID of the user who will be marked as the owner of this organization. When omitted, the authorized user ID will be used.
|
20
21
|
* @type {number}
|
@@ -122,12 +122,10 @@ export * from './base-team-additional-properties';
|
|
122
122
|
export * from './base-user';
|
123
123
|
export * from './base-webhook';
|
124
124
|
export * from './basic-deal';
|
125
|
-
export * from './basic-deal1';
|
126
125
|
export * from './basic-deal-product-request';
|
127
126
|
export * from './basic-deal-product-request-all-of';
|
128
127
|
export * from './basic-goal-request';
|
129
128
|
export * from './basic-organization';
|
130
|
-
export * from './basic-organization1';
|
131
129
|
export * from './basic-person-request';
|
132
130
|
export * from './basic-person-request-email-inner';
|
133
131
|
export * from './call-log-bad-request-response';
|
@@ -122,12 +122,10 @@ export * from './base-team-additional-properties';
|
|
122
122
|
export * from './base-user';
|
123
123
|
export * from './base-webhook';
|
124
124
|
export * from './basic-deal';
|
125
|
-
export * from './basic-deal1';
|
126
125
|
export * from './basic-deal-product-request';
|
127
126
|
export * from './basic-deal-product-request-all-of';
|
128
127
|
export * from './basic-goal-request';
|
129
128
|
export * from './basic-organization';
|
130
|
-
export * from './basic-organization1';
|
131
129
|
export * from './basic-person-request';
|
132
130
|
export * from './basic-person-request-email-inner';
|
133
131
|
export * from './call-log-bad-request-response';
|
@@ -9,11 +9,11 @@
|
|
9
9
|
* https://openapi-generator.tech
|
10
10
|
* Do not edit the class manually.
|
11
11
|
*/
|
12
|
-
import {
|
12
|
+
import { BasicDeal } from './basic-deal';
|
13
13
|
import { DealTitleParam } from './deal-title-param';
|
14
14
|
import { UpdateDealParameters } from './update-deal-parameters';
|
15
15
|
/**
|
16
16
|
* @type UpdateDealRequest
|
17
17
|
* @export
|
18
18
|
*/
|
19
|
-
export type UpdateDealRequest =
|
19
|
+
export type UpdateDealRequest = BasicDeal & DealTitleParam & UpdateDealParameters;
|
@@ -9,10 +9,10 @@
|
|
9
9
|
* https://openapi-generator.tech
|
10
10
|
* Do not edit the class manually.
|
11
11
|
*/
|
12
|
-
import {
|
12
|
+
import { BasicOrganization } from './basic-organization';
|
13
13
|
import { UpdateOrganizationRequestAllOf } from './update-organization-request-all-of';
|
14
14
|
/**
|
15
15
|
* @type UpdateOrganizationRequest
|
16
16
|
* @export
|
17
17
|
*/
|
18
|
-
export type UpdateOrganizationRequest =
|
18
|
+
export type UpdateOrganizationRequest = BasicOrganization & UpdateOrganizationRequestAllOf;
|
@@ -28,7 +28,7 @@ export declare const ItemSearchApiAxiosParamCreator: (configuration?: Configurat
|
|
28
28
|
* @param {boolean} [search_for_related_items] When enabled, the response will include up to 100 newest related leads and 100 newest related deals for each found person and organization and up to 100 newest related persons for each found organization
|
29
29
|
* @param {boolean} [exact_match] When enabled, only full exact matches against the given term are returned. It is <b>not</b> case sensitive.
|
30
30
|
* @param {'deal.cc_email' | 'person.picture' | 'product.price'} [include_fields] A comma-separated string array. Supports including optional fields in the results which are not provided by default.
|
31
|
-
* @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
|
31
|
+
* @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 100 is allowed.
|
32
32
|
* @param {string} [cursor] For pagination, the marker (an opaque string value) representing the first item on the next page
|
33
33
|
|
34
34
|
* @throws {RequiredError}
|
@@ -62,7 +62,7 @@ export declare const ItemSearchApiFp: (configuration?: Configuration) => {
|
|
62
62
|
* @param {boolean} [search_for_related_items] When enabled, the response will include up to 100 newest related leads and 100 newest related deals for each found person and organization and up to 100 newest related persons for each found organization
|
63
63
|
* @param {boolean} [exact_match] When enabled, only full exact matches against the given term are returned. It is <b>not</b> case sensitive.
|
64
64
|
* @param {'deal.cc_email' | 'person.picture' | 'product.price'} [include_fields] A comma-separated string array. Supports including optional fields in the results which are not provided by default.
|
65
|
-
* @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
|
65
|
+
* @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 100 is allowed.
|
66
66
|
* @param {string} [cursor] For pagination, the marker (an opaque string value) representing the first item on the next page
|
67
67
|
|
68
68
|
* @throws {RequiredError}
|
@@ -147,7 +147,7 @@ export interface ItemSearchApiSearchItemRequest {
|
|
147
147
|
*/
|
148
148
|
readonly include_fields?: 'deal.cc_email' | 'person.picture' | 'product.price';
|
149
149
|
/**
|
150
|
-
* For pagination, the limit of entries to be returned. If not provided, 100 items will be returned. Please note that a maximum value of
|
150
|
+
* For pagination, the limit of entries to be returned. If not provided, 100 items will be returned. Please note that a maximum value of 100 is allowed.
|
151
151
|
* @type {number}
|
152
152
|
* @memberof ItemSearchApiSearchItem
|
153
153
|
*/
|
@@ -41,7 +41,7 @@ export const ItemSearchApiAxiosParamCreator = function (configuration) {
|
|
41
41
|
* @param {boolean} [search_for_related_items] When enabled, the response will include up to 100 newest related leads and 100 newest related deals for each found person and organization and up to 100 newest related persons for each found organization
|
42
42
|
* @param {boolean} [exact_match] When enabled, only full exact matches against the given term are returned. It is <b>not</b> case sensitive.
|
43
43
|
* @param {'deal.cc_email' | 'person.picture' | 'product.price'} [include_fields] A comma-separated string array. Supports including optional fields in the results which are not provided by default.
|
44
|
-
* @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
|
44
|
+
* @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 100 is allowed.
|
45
45
|
* @param {string} [cursor] For pagination, the marker (an opaque string value) representing the first item on the next page
|
46
46
|
|
47
47
|
* @throws {RequiredError}
|
@@ -174,7 +174,7 @@ export const ItemSearchApiFp = function (configuration) {
|
|
174
174
|
* @param {boolean} [search_for_related_items] When enabled, the response will include up to 100 newest related leads and 100 newest related deals for each found person and organization and up to 100 newest related persons for each found organization
|
175
175
|
* @param {boolean} [exact_match] When enabled, only full exact matches against the given term are returned. It is <b>not</b> case sensitive.
|
176
176
|
* @param {'deal.cc_email' | 'person.picture' | 'product.price'} [include_fields] A comma-separated string array. Supports including optional fields in the results which are not provided by default.
|
177
|
-
* @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
|
177
|
+
* @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 100 is allowed.
|
178
178
|
* @param {string} [cursor] For pagination, the marker (an opaque string value) representing the first item on the next page
|
179
179
|
|
180
180
|
* @throws {RequiredError}
|
@@ -15,6 +15,7 @@
|
|
15
15
|
* @interface BasicDeal
|
16
16
|
*/
|
17
17
|
export interface BasicDeal {
|
18
|
+
[key: string]: any | any;
|
18
19
|
/**
|
19
20
|
* The optional date and time of changing the deal status as won in UTC. Format: YYYY-MM-DD HH:MM:SS. Can be set only when deal `status` is already Won. Can not be used together with `lost_time`.
|
20
21
|
* @type {string}
|
@@ -15,6 +15,7 @@
|
|
15
15
|
* @interface BasicOrganization
|
16
16
|
*/
|
17
17
|
export interface BasicOrganization {
|
18
|
+
[key: string]: any | any;
|
18
19
|
/**
|
19
20
|
* The ID of the user who will be marked as the owner of this organization. When omitted, the authorized user ID will be used.
|
20
21
|
* @type {number}
|
@@ -122,12 +122,10 @@ export * from './base-team-additional-properties';
|
|
122
122
|
export * from './base-user';
|
123
123
|
export * from './base-webhook';
|
124
124
|
export * from './basic-deal';
|
125
|
-
export * from './basic-deal1';
|
126
125
|
export * from './basic-deal-product-request';
|
127
126
|
export * from './basic-deal-product-request-all-of';
|
128
127
|
export * from './basic-goal-request';
|
129
128
|
export * from './basic-organization';
|
130
|
-
export * from './basic-organization1';
|
131
129
|
export * from './basic-person-request';
|
132
130
|
export * from './basic-person-request-email-inner';
|
133
131
|
export * from './call-log-bad-request-response';
|
@@ -138,12 +138,10 @@ __exportStar(require("./base-team-additional-properties"), exports);
|
|
138
138
|
__exportStar(require("./base-user"), exports);
|
139
139
|
__exportStar(require("./base-webhook"), exports);
|
140
140
|
__exportStar(require("./basic-deal"), exports);
|
141
|
-
__exportStar(require("./basic-deal1"), exports);
|
142
141
|
__exportStar(require("./basic-deal-product-request"), exports);
|
143
142
|
__exportStar(require("./basic-deal-product-request-all-of"), exports);
|
144
143
|
__exportStar(require("./basic-goal-request"), exports);
|
145
144
|
__exportStar(require("./basic-organization"), exports);
|
146
|
-
__exportStar(require("./basic-organization1"), exports);
|
147
145
|
__exportStar(require("./basic-person-request"), exports);
|
148
146
|
__exportStar(require("./basic-person-request-email-inner"), exports);
|
149
147
|
__exportStar(require("./call-log-bad-request-response"), exports);
|
@@ -9,11 +9,11 @@
|
|
9
9
|
* https://openapi-generator.tech
|
10
10
|
* Do not edit the class manually.
|
11
11
|
*/
|
12
|
-
import {
|
12
|
+
import { BasicDeal } from './basic-deal';
|
13
13
|
import { DealTitleParam } from './deal-title-param';
|
14
14
|
import { UpdateDealParameters } from './update-deal-parameters';
|
15
15
|
/**
|
16
16
|
* @type UpdateDealRequest
|
17
17
|
* @export
|
18
18
|
*/
|
19
|
-
export type UpdateDealRequest =
|
19
|
+
export type UpdateDealRequest = BasicDeal & DealTitleParam & UpdateDealParameters;
|
@@ -9,10 +9,10 @@
|
|
9
9
|
* https://openapi-generator.tech
|
10
10
|
* Do not edit the class manually.
|
11
11
|
*/
|
12
|
-
import {
|
12
|
+
import { BasicOrganization } from './basic-organization';
|
13
13
|
import { UpdateOrganizationRequestAllOf } from './update-organization-request-all-of';
|
14
14
|
/**
|
15
15
|
* @type UpdateOrganizationRequest
|
16
16
|
* @export
|
17
17
|
*/
|
18
|
-
export type UpdateOrganizationRequest =
|
18
|
+
export type UpdateOrganizationRequest = BasicOrganization & UpdateOrganizationRequestAllOf;
|
@@ -28,7 +28,7 @@ export declare const ItemSearchApiAxiosParamCreator: (configuration?: Configurat
|
|
28
28
|
* @param {boolean} [search_for_related_items] When enabled, the response will include up to 100 newest related leads and 100 newest related deals for each found person and organization and up to 100 newest related persons for each found organization
|
29
29
|
* @param {boolean} [exact_match] When enabled, only full exact matches against the given term are returned. It is <b>not</b> case sensitive.
|
30
30
|
* @param {'deal.cc_email' | 'person.picture' | 'product.price'} [include_fields] A comma-separated string array. Supports including optional fields in the results which are not provided by default.
|
31
|
-
* @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
|
31
|
+
* @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 100 is allowed.
|
32
32
|
* @param {string} [cursor] For pagination, the marker (an opaque string value) representing the first item on the next page
|
33
33
|
|
34
34
|
* @throws {RequiredError}
|
@@ -62,7 +62,7 @@ export declare const ItemSearchApiFp: (configuration?: Configuration) => {
|
|
62
62
|
* @param {boolean} [search_for_related_items] When enabled, the response will include up to 100 newest related leads and 100 newest related deals for each found person and organization and up to 100 newest related persons for each found organization
|
63
63
|
* @param {boolean} [exact_match] When enabled, only full exact matches against the given term are returned. It is <b>not</b> case sensitive.
|
64
64
|
* @param {'deal.cc_email' | 'person.picture' | 'product.price'} [include_fields] A comma-separated string array. Supports including optional fields in the results which are not provided by default.
|
65
|
-
* @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
|
65
|
+
* @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 100 is allowed.
|
66
66
|
* @param {string} [cursor] For pagination, the marker (an opaque string value) representing the first item on the next page
|
67
67
|
|
68
68
|
* @throws {RequiredError}
|
@@ -147,7 +147,7 @@ export interface ItemSearchApiSearchItemRequest {
|
|
147
147
|
*/
|
148
148
|
readonly include_fields?: 'deal.cc_email' | 'person.picture' | 'product.price';
|
149
149
|
/**
|
150
|
-
* For pagination, the limit of entries to be returned. If not provided, 100 items will be returned. Please note that a maximum value of
|
150
|
+
* For pagination, the limit of entries to be returned. If not provided, 100 items will be returned. Please note that a maximum value of 100 is allowed.
|
151
151
|
* @type {number}
|
152
152
|
* @memberof ItemSearchApiSearchItem
|
153
153
|
*/
|
@@ -47,7 +47,7 @@ const ItemSearchApiAxiosParamCreator = function (configuration) {
|
|
47
47
|
* @param {boolean} [search_for_related_items] When enabled, the response will include up to 100 newest related leads and 100 newest related deals for each found person and organization and up to 100 newest related persons for each found organization
|
48
48
|
* @param {boolean} [exact_match] When enabled, only full exact matches against the given term are returned. It is <b>not</b> case sensitive.
|
49
49
|
* @param {'deal.cc_email' | 'person.picture' | 'product.price'} [include_fields] A comma-separated string array. Supports including optional fields in the results which are not provided by default.
|
50
|
-
* @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
|
50
|
+
* @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 100 is allowed.
|
51
51
|
* @param {string} [cursor] For pagination, the marker (an opaque string value) representing the first item on the next page
|
52
52
|
|
53
53
|
* @throws {RequiredError}
|
@@ -181,7 +181,7 @@ const ItemSearchApiFp = function (configuration) {
|
|
181
181
|
* @param {boolean} [search_for_related_items] When enabled, the response will include up to 100 newest related leads and 100 newest related deals for each found person and organization and up to 100 newest related persons for each found organization
|
182
182
|
* @param {boolean} [exact_match] When enabled, only full exact matches against the given term are returned. It is <b>not</b> case sensitive.
|
183
183
|
* @param {'deal.cc_email' | 'person.picture' | 'product.price'} [include_fields] A comma-separated string array. Supports including optional fields in the results which are not provided by default.
|
184
|
-
* @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
|
184
|
+
* @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 100 is allowed.
|
185
185
|
* @param {string} [cursor] For pagination, the marker (an opaque string value) representing the first item on the next page
|
186
186
|
|
187
187
|
* @throws {RequiredError}
|