pipedrive 29.2.0 → 29.2.1

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.
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { DealItemCustomFieldsValue } from './deal-item-custom-fields-value';
12
13
  /**
13
14
  *
14
15
  * @export
@@ -115,4 +116,11 @@ export interface AddDealRequest {
115
116
  * @type {Array<number>}
116
117
  */
117
118
  'label_ids'?: Array<number>;
119
+ /**
120
+ * A map of custom fields with hash-based keys
121
+ * @type {{ [key: string]: DealItemCustomFieldsValue | undefined; }}
122
+ */
123
+ 'custom_fields'?: {
124
+ [key: string]: DealItemCustomFieldsValue | undefined;
125
+ };
118
126
  }
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { DealItemCustomFieldsValue } from './deal-item-custom-fields-value';
12
13
  import { OrganizationItemAddress } from './organization-item-address';
13
14
  /**
14
15
  *
@@ -51,4 +52,11 @@ export interface AddOrganizationRequest {
51
52
  * @type {OrganizationItemAddress}
52
53
  */
53
54
  'address'?: OrganizationItemAddress;
55
+ /**
56
+ * A map of custom fields with hash-based keys
57
+ * @type {{ [key: string]: DealItemCustomFieldsValue | undefined; }}
58
+ */
59
+ 'custom_fields'?: {
60
+ [key: string]: DealItemCustomFieldsValue | undefined;
61
+ };
54
62
  }
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { DealItemCustomFieldsValue } from './deal-item-custom-fields-value';
12
13
  /**
13
14
  *
14
15
  * @export
@@ -115,4 +116,11 @@ export interface UpdateDealRequest {
115
116
  * @type {Array<number>}
116
117
  */
117
118
  'label_ids'?: Array<number>;
119
+ /**
120
+ * A map of custom fields with hash-based keys
121
+ * @type {{ [key: string]: DealItemCustomFieldsValue | undefined; }}
122
+ */
123
+ 'custom_fields'?: {
124
+ [key: string]: DealItemCustomFieldsValue | undefined;
125
+ };
118
126
  }
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { DealItemCustomFieldsValue } from './deal-item-custom-fields-value';
12
13
  import { OrganizationItemAddress } from './organization-item-address';
13
14
  /**
14
15
  *
@@ -51,4 +52,11 @@ export interface UpdateOrganizationRequest {
51
52
  * @type {OrganizationItemAddress}
52
53
  */
53
54
  'address'?: OrganizationItemAddress;
55
+ /**
56
+ * A map of custom fields with hash-based keys
57
+ * @type {{ [key: string]: DealItemCustomFieldsValue | undefined; }}
58
+ */
59
+ 'custom_fields'?: {
60
+ [key: string]: DealItemCustomFieldsValue | undefined;
61
+ };
54
62
  }
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { DealItemCustomFieldsValue } from './deal-item-custom-fields-value';
12
13
  /**
13
14
  *
14
15
  * @export
@@ -115,4 +116,11 @@ export interface AddDealRequest {
115
116
  * @type {Array<number>}
116
117
  */
117
118
  'label_ids'?: Array<number>;
119
+ /**
120
+ * A map of custom fields with hash-based keys
121
+ * @type {{ [key: string]: DealItemCustomFieldsValue | undefined; }}
122
+ */
123
+ 'custom_fields'?: {
124
+ [key: string]: DealItemCustomFieldsValue | undefined;
125
+ };
118
126
  }
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { DealItemCustomFieldsValue } from './deal-item-custom-fields-value';
12
13
  import { OrganizationItemAddress } from './organization-item-address';
13
14
  /**
14
15
  *
@@ -51,4 +52,11 @@ export interface AddOrganizationRequest {
51
52
  * @type {OrganizationItemAddress}
52
53
  */
53
54
  'address'?: OrganizationItemAddress;
55
+ /**
56
+ * A map of custom fields with hash-based keys
57
+ * @type {{ [key: string]: DealItemCustomFieldsValue | undefined; }}
58
+ */
59
+ 'custom_fields'?: {
60
+ [key: string]: DealItemCustomFieldsValue | undefined;
61
+ };
54
62
  }
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { DealItemCustomFieldsValue } from './deal-item-custom-fields-value';
12
13
  /**
13
14
  *
14
15
  * @export
@@ -115,4 +116,11 @@ export interface UpdateDealRequest {
115
116
  * @type {Array<number>}
116
117
  */
117
118
  'label_ids'?: Array<number>;
119
+ /**
120
+ * A map of custom fields with hash-based keys
121
+ * @type {{ [key: string]: DealItemCustomFieldsValue | undefined; }}
122
+ */
123
+ 'custom_fields'?: {
124
+ [key: string]: DealItemCustomFieldsValue | undefined;
125
+ };
118
126
  }
@@ -9,6 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
+ import { DealItemCustomFieldsValue } from './deal-item-custom-fields-value';
12
13
  import { OrganizationItemAddress } from './organization-item-address';
13
14
  /**
14
15
  *
@@ -51,4 +52,11 @@ export interface UpdateOrganizationRequest {
51
52
  * @type {OrganizationItemAddress}
52
53
  */
53
54
  'address'?: OrganizationItemAddress;
55
+ /**
56
+ * A map of custom fields with hash-based keys
57
+ * @type {{ [key: string]: DealItemCustomFieldsValue | undefined; }}
58
+ */
59
+ 'custom_fields'?: {
60
+ [key: string]: DealItemCustomFieldsValue | undefined;
61
+ };
54
62
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pipedrive",
3
- "version": "29.2.0",
3
+ "version": "29.2.1",
4
4
  "description": "Pipedrive REST client for NodeJS",
5
5
  "license": "MIT",
6
6
  "homepage": "https://developers.pipedrive.com",