pipedrive 30.3.1 → 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/api/files-api.js +1 -1
- 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/api/files-api.js +1 -1
- 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
|
@@ -210,7 +210,7 @@ export const FilesApiAxiosParamCreator = function (configuration) {
|
|
|
210
210
|
if (configuration) {
|
|
211
211
|
baseOptions = configuration.baseOptions;
|
|
212
212
|
}
|
|
213
|
-
const localVarRequestOptions = Object.assign({ method: 'GET' }, baseOptions);
|
|
213
|
+
const localVarRequestOptions = Object.assign({ method: 'GET', responseType: 'arraybuffer' }, baseOptions);
|
|
214
214
|
const localVarHeaderParameter = {};
|
|
215
215
|
const localVarQueryParameter = {};
|
|
216
216
|
// authentication api_key required
|
|
@@ -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}
|
|
@@ -216,7 +216,7 @@ const FilesApiAxiosParamCreator = function (configuration) {
|
|
|
216
216
|
if (configuration) {
|
|
217
217
|
baseOptions = configuration.baseOptions;
|
|
218
218
|
}
|
|
219
|
-
const localVarRequestOptions = Object.assign({ method: 'GET' }, baseOptions);
|
|
219
|
+
const localVarRequestOptions = Object.assign({ method: 'GET', responseType: 'arraybuffer' }, baseOptions);
|
|
220
220
|
const localVarHeaderParameter = {};
|
|
221
221
|
const localVarQueryParameter = {};
|
|
222
222
|
// authentication api_key required
|
|
@@ -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}
|