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.
- package/dist/esm/versions/v1/models/add-role-request.d.ts +1 -1
- package/dist/esm/versions/v1/models/base-role-request.d.ts +1 -1
- package/dist/esm/versions/v1/models/field.d.ts +4 -4
- package/dist/versions/v1/models/add-role-request.d.ts +1 -1
- package/dist/versions/v1/models/base-role-request.d.ts +1 -1
- package/dist/versions/v1/models/field.d.ts +4 -4
- package/package.json +1 -1
|
@@ -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}
|
|
@@ -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}
|