pipedrive 30.3.2 → 30.3.3

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.
@@ -24,5 +24,5 @@ export interface AddRoleRequest {
24
24
  * The ID of the parent role
25
25
  * @type {number}
26
26
  */
27
- 'parent_role_id'?: number;
27
+ 'parent_role_id'?: number | null;
28
28
  }
@@ -19,7 +19,7 @@ export interface BaseRoleRequest {
19
19
  * The ID of the parent role
20
20
  * @type {number}
21
21
  */
22
- 'parent_role_id'?: number;
22
+ 'parent_role_id'?: number | null;
23
23
  /**
24
24
  * The name of the role
25
25
  * @type {string}
@@ -19,7 +19,7 @@ export interface Field {
19
19
  * The ID of the field. Value is `null` in case of subfields.
20
20
  * @type {number}
21
21
  */
22
- 'id'?: number;
22
+ 'id'?: number | null;
23
23
  /**
24
24
  * The key of the field. For custom fields this is generated upon creation.
25
25
  * @type {string}
@@ -49,17 +49,17 @@ export interface Field {
49
49
  * The update time of the field
50
50
  * @type {string}
51
51
  */
52
- 'update_time'?: string;
52
+ 'update_time'?: string | null;
53
53
  /**
54
54
  * The ID of the user who created or most recently updated the field, only applicable for custom fields
55
55
  * @type {number}
56
56
  */
57
- 'last_updated_by_user_id'?: number;
57
+ 'last_updated_by_user_id'?: number | null;
58
58
  /**
59
59
  * The ID of the user who created the field
60
60
  * @type {number}
61
61
  */
62
- 'created_by_user_id'?: number;
62
+ 'created_by_user_id'?: number | null;
63
63
  /**
64
64
  * The active flag of the field
65
65
  * @type {boolean}
@@ -24,5 +24,5 @@ export interface AddRoleRequest {
24
24
  * The ID of the parent role
25
25
  * @type {number}
26
26
  */
27
- 'parent_role_id'?: number;
27
+ 'parent_role_id'?: number | null;
28
28
  }
@@ -19,7 +19,7 @@ export interface BaseRoleRequest {
19
19
  * The ID of the parent role
20
20
  * @type {number}
21
21
  */
22
- 'parent_role_id'?: number;
22
+ 'parent_role_id'?: number | null;
23
23
  /**
24
24
  * The name of the role
25
25
  * @type {string}
@@ -19,7 +19,7 @@ export interface Field {
19
19
  * The ID of the field. Value is `null` in case of subfields.
20
20
  * @type {number}
21
21
  */
22
- 'id'?: number;
22
+ 'id'?: number | null;
23
23
  /**
24
24
  * The key of the field. For custom fields this is generated upon creation.
25
25
  * @type {string}
@@ -49,17 +49,17 @@ export interface Field {
49
49
  * The update time of the field
50
50
  * @type {string}
51
51
  */
52
- 'update_time'?: string;
52
+ 'update_time'?: string | null;
53
53
  /**
54
54
  * The ID of the user who created or most recently updated the field, only applicable for custom fields
55
55
  * @type {number}
56
56
  */
57
- 'last_updated_by_user_id'?: number;
57
+ 'last_updated_by_user_id'?: number | null;
58
58
  /**
59
59
  * The ID of the user who created the field
60
60
  * @type {number}
61
61
  */
62
- 'created_by_user_id'?: number;
62
+ 'created_by_user_id'?: number | null;
63
63
  /**
64
64
  * The active flag of the field
65
65
  * @type {boolean}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pipedrive",
3
- "version": "30.3.2",
3
+ "version": "30.3.3",
4
4
  "description": "Pipedrive REST client for NodeJS",
5
5
  "license": "MIT",
6
6
  "homepage": "https://developers.pipedrive.com",