@vertexvis/api-client-node 0.15.5 → 0.17.0
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/cjs/api.d.ts +895 -503
- package/dist/cjs/api.js +501 -344
- package/dist/cjs/base.d.ts +2 -2
- package/dist/cjs/client/helpers/exports.d.ts +15 -0
- package/dist/cjs/client/helpers/exports.js +39 -0
- package/dist/cjs/client/helpers/files.d.ts +3 -12
- package/dist/cjs/client/helpers/files.js +5 -8
- package/dist/cjs/client/helpers/index.d.ts +1 -0
- package/dist/cjs/client/helpers/index.js +1 -0
- package/dist/cjs/client/helpers/parts.d.ts +4 -6
- package/dist/cjs/client/helpers/queued-jobs.js +1 -1
- package/dist/cjs/client/helpers/scenes.d.ts +1 -1
- package/dist/cjs/client/helpers/scenes.js +2 -11
- package/dist/cjs/client/version.d.ts +1 -1
- package/dist/cjs/client/version.js +1 -1
- package/dist/cjs/client/vertex-client.d.ts +2 -1
- package/dist/cjs/client/vertex-client.js +1 -0
- package/dist/cjs/common.d.ts +2 -2
- package/dist/esm/api.d.ts +895 -503
- package/dist/esm/api.js +494 -341
- package/dist/esm/base.d.ts +2 -2
- package/dist/esm/client/helpers/exports.d.ts +15 -0
- package/dist/esm/client/helpers/exports.js +35 -0
- package/dist/esm/client/helpers/files.d.ts +3 -12
- package/dist/esm/client/helpers/files.js +5 -8
- package/dist/esm/client/helpers/index.d.ts +1 -0
- package/dist/esm/client/helpers/index.js +1 -0
- package/dist/esm/client/helpers/parts.d.ts +4 -6
- package/dist/esm/client/helpers/queued-jobs.js +1 -1
- package/dist/esm/client/helpers/scenes.d.ts +1 -1
- package/dist/esm/client/helpers/scenes.js +2 -11
- package/dist/esm/client/version.d.ts +1 -1
- package/dist/esm/client/version.js +1 -1
- package/dist/esm/client/vertex-client.d.ts +2 -1
- package/dist/esm/client/vertex-client.js +2 -1
- package/dist/esm/common.d.ts +2 -2
- package/package.json +20 -20
package/dist/esm/api.js
CHANGED
|
@@ -26,250 +26,112 @@ import globalAxios from 'axios';
|
|
|
26
26
|
import { DUMMY_BASE_URL, assertParamExists, setBasicAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction, } from './common';
|
|
27
27
|
// @ts-ignore
|
|
28
28
|
import { BASE_PATH, BaseAPI } from './base';
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
export
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
* @export
|
|
80
|
-
* @enum {string}
|
|
81
|
-
*/
|
|
82
|
-
export var ClearMaterialOperationTypeEnum;
|
|
83
|
-
(function (ClearMaterialOperationTypeEnum) {
|
|
84
|
-
ClearMaterialOperationTypeEnum["ClearMaterial"] = "clear-material";
|
|
85
|
-
})(ClearMaterialOperationTypeEnum || (ClearMaterialOperationTypeEnum = {}));
|
|
86
|
-
/**
|
|
87
|
-
* @export
|
|
88
|
-
* @enum {string}
|
|
89
|
-
*/
|
|
90
|
-
export var ClearTransformOperationTypeEnum;
|
|
91
|
-
(function (ClearTransformOperationTypeEnum) {
|
|
92
|
-
ClearTransformOperationTypeEnum["ClearTransform"] = "clear-transform";
|
|
93
|
-
})(ClearTransformOperationTypeEnum || (ClearTransformOperationTypeEnum = {}));
|
|
94
|
-
/**
|
|
95
|
-
* @export
|
|
96
|
-
* @enum {string}
|
|
97
|
-
*/
|
|
98
|
-
export var DeselectOperationTypeEnum;
|
|
99
|
-
(function (DeselectOperationTypeEnum) {
|
|
100
|
-
DeselectOperationTypeEnum["Deselect"] = "deselect";
|
|
101
|
-
})(DeselectOperationTypeEnum || (DeselectOperationTypeEnum = {}));
|
|
102
|
-
/**
|
|
103
|
-
* @export
|
|
104
|
-
* @enum {string}
|
|
105
|
-
*/
|
|
106
|
-
export var FileRelationshipDataTypeEnum;
|
|
107
|
-
(function (FileRelationshipDataTypeEnum) {
|
|
108
|
-
FileRelationshipDataTypeEnum["File"] = "file";
|
|
109
|
-
})(FileRelationshipDataTypeEnum || (FileRelationshipDataTypeEnum = {}));
|
|
110
|
-
/**
|
|
111
|
-
* @export
|
|
112
|
-
* @enum {string}
|
|
113
|
-
*/
|
|
114
|
-
export var GeometrySetRelationshipDataTypeEnum;
|
|
115
|
-
(function (GeometrySetRelationshipDataTypeEnum) {
|
|
116
|
-
GeometrySetRelationshipDataTypeEnum["GeometrySet"] = "geometry-set";
|
|
117
|
-
})(GeometrySetRelationshipDataTypeEnum || (GeometrySetRelationshipDataTypeEnum = {}));
|
|
118
|
-
/**
|
|
119
|
-
* @export
|
|
120
|
-
* @enum {string}
|
|
121
|
-
*/
|
|
122
|
-
export var MetadataValueTypeEnum;
|
|
123
|
-
(function (MetadataValueTypeEnum) {
|
|
124
|
-
MetadataValueTypeEnum["String"] = "string";
|
|
125
|
-
MetadataValueTypeEnum["Long"] = "long";
|
|
126
|
-
MetadataValueTypeEnum["Float"] = "float";
|
|
127
|
-
MetadataValueTypeEnum["Date"] = "date";
|
|
128
|
-
MetadataValueTypeEnum["Null"] = "null";
|
|
129
|
-
})(MetadataValueTypeEnum || (MetadataValueTypeEnum = {}));
|
|
130
|
-
/**
|
|
131
|
-
* @export
|
|
132
|
-
* @enum {string}
|
|
133
|
-
*/
|
|
134
|
-
export var PartDataRelationshipsPartRevisionsTypeEnum;
|
|
135
|
-
(function (PartDataRelationshipsPartRevisionsTypeEnum) {
|
|
136
|
-
PartDataRelationshipsPartRevisionsTypeEnum["PartRevision"] = "part-revision";
|
|
137
|
-
})(PartDataRelationshipsPartRevisionsTypeEnum || (PartDataRelationshipsPartRevisionsTypeEnum = {}));
|
|
138
|
-
/**
|
|
139
|
-
* @export
|
|
140
|
-
* @enum {string}
|
|
141
|
-
*/
|
|
142
|
-
export var PartRelationshipDataTypeEnum;
|
|
143
|
-
(function (PartRelationshipDataTypeEnum) {
|
|
144
|
-
PartRelationshipDataTypeEnum["Part"] = "part";
|
|
145
|
-
})(PartRelationshipDataTypeEnum || (PartRelationshipDataTypeEnum = {}));
|
|
29
|
+
export const BatchOperationOpEnum = {
|
|
30
|
+
Add: 'add',
|
|
31
|
+
};
|
|
32
|
+
export const BatchOperationRefTypeEnum = {
|
|
33
|
+
Scene: 'scene',
|
|
34
|
+
};
|
|
35
|
+
export const CameraFitTypeEnum = {
|
|
36
|
+
FitVisibleSceneItems: 'fit-visible-scene-items',
|
|
37
|
+
Reset: 'reset',
|
|
38
|
+
};
|
|
39
|
+
export const ChangeMaterialOperationTypeEnum = {
|
|
40
|
+
ChangeMaterial: 'change-material',
|
|
41
|
+
};
|
|
42
|
+
export const ChangeTransformOperationTypeEnum = {
|
|
43
|
+
ChangeTransform: 'change-transform',
|
|
44
|
+
};
|
|
45
|
+
export const ChangeVisibilityOperationTypeEnum = {
|
|
46
|
+
ChangeVisibility: 'change-visibility',
|
|
47
|
+
};
|
|
48
|
+
export const ClearMaterialOperationTypeEnum = {
|
|
49
|
+
ClearMaterial: 'clear-material',
|
|
50
|
+
};
|
|
51
|
+
export const ClearTransformOperationTypeEnum = {
|
|
52
|
+
ClearTransform: 'clear-transform',
|
|
53
|
+
};
|
|
54
|
+
export const DeselectOperationTypeEnum = {
|
|
55
|
+
Deselect: 'deselect',
|
|
56
|
+
};
|
|
57
|
+
export const ExportRelationshipDataTypeEnum = {
|
|
58
|
+
Scene: 'scene',
|
|
59
|
+
};
|
|
60
|
+
export const FileRelationshipDataTypeEnum = {
|
|
61
|
+
File: 'file',
|
|
62
|
+
};
|
|
63
|
+
export const GeometrySetRelationshipDataTypeEnum = {
|
|
64
|
+
GeometrySet: 'geometry-set',
|
|
65
|
+
};
|
|
66
|
+
export const MetadataValueTypeEnum = {
|
|
67
|
+
String: 'string',
|
|
68
|
+
Long: 'long',
|
|
69
|
+
Float: 'float',
|
|
70
|
+
Date: 'date',
|
|
71
|
+
Null: 'null',
|
|
72
|
+
};
|
|
73
|
+
export const PartDataRelationshipsPartRevisionsTypeEnum = {
|
|
74
|
+
PartRevision: 'part-revision',
|
|
75
|
+
};
|
|
76
|
+
export const PartRelationshipDataTypeEnum = {
|
|
77
|
+
Part: 'part',
|
|
78
|
+
};
|
|
146
79
|
/**
|
|
147
80
|
* Resource object type.
|
|
148
81
|
* @export
|
|
149
82
|
* @enum {string}
|
|
150
83
|
*/
|
|
151
|
-
export
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
(function (SceneRelationshipDataTypeEnum) {
|
|
203
|
-
SceneRelationshipDataTypeEnum["Scene"] = "scene";
|
|
204
|
-
})(SceneRelationshipDataTypeEnum || (SceneRelationshipDataTypeEnum = {}));
|
|
205
|
-
/**
|
|
206
|
-
* @export
|
|
207
|
-
* @enum {string}
|
|
208
|
-
*/
|
|
209
|
-
export var SceneViewRelationshipDataTypeEnum;
|
|
210
|
-
(function (SceneViewRelationshipDataTypeEnum) {
|
|
211
|
-
SceneViewRelationshipDataTypeEnum["SceneView"] = "scene-view";
|
|
212
|
-
})(SceneViewRelationshipDataTypeEnum || (SceneViewRelationshipDataTypeEnum = {}));
|
|
213
|
-
/**
|
|
214
|
-
* @export
|
|
215
|
-
* @enum {string}
|
|
216
|
-
*/
|
|
217
|
-
export var SceneViewStateRelationshipDataTypeEnum;
|
|
218
|
-
(function (SceneViewStateRelationshipDataTypeEnum) {
|
|
219
|
-
SceneViewStateRelationshipDataTypeEnum["SceneViewState"] = "scene-view-state";
|
|
220
|
-
})(SceneViewStateRelationshipDataTypeEnum || (SceneViewStateRelationshipDataTypeEnum = {}));
|
|
221
|
-
/**
|
|
222
|
-
* @export
|
|
223
|
-
* @enum {string}
|
|
224
|
-
*/
|
|
225
|
-
export var SelectOperationTypeEnum;
|
|
226
|
-
(function (SelectOperationTypeEnum) {
|
|
227
|
-
SelectOperationTypeEnum["Select"] = "select";
|
|
228
|
-
})(SelectOperationTypeEnum || (SelectOperationTypeEnum = {}));
|
|
229
|
-
/**
|
|
230
|
-
* @export
|
|
231
|
-
* @enum {string}
|
|
232
|
-
*/
|
|
233
|
-
export var UpdateAccountRequestDataAttributesStatusEnum;
|
|
234
|
-
(function (UpdateAccountRequestDataAttributesStatusEnum) {
|
|
235
|
-
UpdateAccountRequestDataAttributesStatusEnum["Active"] = "active";
|
|
236
|
-
UpdateAccountRequestDataAttributesStatusEnum["Disabled"] = "disabled";
|
|
237
|
-
})(UpdateAccountRequestDataAttributesStatusEnum || (UpdateAccountRequestDataAttributesStatusEnum = {}));
|
|
238
|
-
/**
|
|
239
|
-
* @export
|
|
240
|
-
* @enum {string}
|
|
241
|
-
*/
|
|
242
|
-
export var UpdateSceneRequestDataAttributesStateEnum;
|
|
243
|
-
(function (UpdateSceneRequestDataAttributesStateEnum) {
|
|
244
|
-
UpdateSceneRequestDataAttributesStateEnum["Draft"] = "draft";
|
|
245
|
-
UpdateSceneRequestDataAttributesStateEnum["Commit"] = "commit";
|
|
246
|
-
})(UpdateSceneRequestDataAttributesStateEnum || (UpdateSceneRequestDataAttributesStateEnum = {}));
|
|
247
|
-
/**
|
|
248
|
-
* @export
|
|
249
|
-
* @enum {string}
|
|
250
|
-
*/
|
|
251
|
-
export var UpdateWebhookSubscriptionRequestDataAttributesStatusEnum;
|
|
252
|
-
(function (UpdateWebhookSubscriptionRequestDataAttributesStatusEnum) {
|
|
253
|
-
UpdateWebhookSubscriptionRequestDataAttributesStatusEnum["Active"] = "active";
|
|
254
|
-
UpdateWebhookSubscriptionRequestDataAttributesStatusEnum["Paused"] = "paused";
|
|
255
|
-
})(UpdateWebhookSubscriptionRequestDataAttributesStatusEnum || (UpdateWebhookSubscriptionRequestDataAttributesStatusEnum = {}));
|
|
256
|
-
/**
|
|
257
|
-
* @export
|
|
258
|
-
* @enum {string}
|
|
259
|
-
*/
|
|
260
|
-
export var WebhookEventDataRelationshipsOwnerDataTypeEnum;
|
|
261
|
-
(function (WebhookEventDataRelationshipsOwnerDataTypeEnum) {
|
|
262
|
-
WebhookEventDataRelationshipsOwnerDataTypeEnum["Account"] = "account";
|
|
263
|
-
})(WebhookEventDataRelationshipsOwnerDataTypeEnum || (WebhookEventDataRelationshipsOwnerDataTypeEnum = {}));
|
|
264
|
-
/**
|
|
265
|
-
* @export
|
|
266
|
-
* @enum {string}
|
|
267
|
-
*/
|
|
268
|
-
export var WebhookSubscriptionDataAttributesStatusEnum;
|
|
269
|
-
(function (WebhookSubscriptionDataAttributesStatusEnum) {
|
|
270
|
-
WebhookSubscriptionDataAttributesStatusEnum["Active"] = "active";
|
|
271
|
-
WebhookSubscriptionDataAttributesStatusEnum["Paused"] = "paused";
|
|
272
|
-
})(WebhookSubscriptionDataAttributesStatusEnum || (WebhookSubscriptionDataAttributesStatusEnum = {}));
|
|
84
|
+
export const QueryAll = {
|
|
85
|
+
All: 'all',
|
|
86
|
+
};
|
|
87
|
+
export const QueryByCollectionDataTypeEnum = {
|
|
88
|
+
QueryByCollection: 'query-by-collection',
|
|
89
|
+
};
|
|
90
|
+
export const QueryByCollectionDataAttributesTypeEnum = {
|
|
91
|
+
And: 'and',
|
|
92
|
+
Or: 'or',
|
|
93
|
+
};
|
|
94
|
+
export const QueryByIdDataTypeEnum = {
|
|
95
|
+
QueryById: 'query-by-id',
|
|
96
|
+
};
|
|
97
|
+
export const QueryByIdDataAttributesTypeEnum = {
|
|
98
|
+
Id: 'id',
|
|
99
|
+
SuppliedId: 'suppliedId',
|
|
100
|
+
};
|
|
101
|
+
export const SceneItemRelationshipDataTypeEnum = {
|
|
102
|
+
SceneItem: 'scene-item',
|
|
103
|
+
};
|
|
104
|
+
export const SceneRelationshipDataTypeEnum = {
|
|
105
|
+
Scene: 'scene',
|
|
106
|
+
};
|
|
107
|
+
export const SceneViewRelationshipDataTypeEnum = {
|
|
108
|
+
SceneView: 'scene-view',
|
|
109
|
+
};
|
|
110
|
+
export const SceneViewStateRelationshipDataTypeEnum = {
|
|
111
|
+
SceneViewState: 'scene-view-state',
|
|
112
|
+
};
|
|
113
|
+
export const SelectOperationTypeEnum = {
|
|
114
|
+
Select: 'select',
|
|
115
|
+
};
|
|
116
|
+
export const UpdateAccountRequestDataAttributesStatusEnum = {
|
|
117
|
+
Active: 'active',
|
|
118
|
+
Disabled: 'disabled',
|
|
119
|
+
};
|
|
120
|
+
export const UpdateSceneRequestDataAttributesStateEnum = {
|
|
121
|
+
Draft: 'draft',
|
|
122
|
+
Commit: 'commit',
|
|
123
|
+
};
|
|
124
|
+
export const UpdateWebhookSubscriptionRequestDataAttributesStatusEnum = {
|
|
125
|
+
Active: 'active',
|
|
126
|
+
Paused: 'paused',
|
|
127
|
+
};
|
|
128
|
+
export const WebhookEventDataRelationshipsOwnerDataTypeEnum = {
|
|
129
|
+
Account: 'account',
|
|
130
|
+
};
|
|
131
|
+
export const WebhookSubscriptionDataAttributesStatusEnum = {
|
|
132
|
+
Active: 'active',
|
|
133
|
+
Paused: 'paused',
|
|
134
|
+
};
|
|
273
135
|
/**
|
|
274
136
|
* AccountsApi - axios parameter creator
|
|
275
137
|
* @export
|
|
@@ -299,7 +161,7 @@ export const AccountsApiAxiosParamCreator = function (configuration) {
|
|
|
299
161
|
// oauth required
|
|
300
162
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2Internal', ['accounts.*', 'accounts.write'], configuration);
|
|
301
163
|
localVarHeaderParameter['Content-Type'] = 'application/vnd.api+json';
|
|
302
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
164
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
303
165
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
304
166
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
305
167
|
localVarRequestOptions.data = serializeDataIfNeeded(createAccountRequest, localVarRequestOptions, configuration);
|
|
@@ -334,7 +196,7 @@ export const AccountsApiAxiosParamCreator = function (configuration) {
|
|
|
334
196
|
// oauth required
|
|
335
197
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2Internal', ['accounts.*', 'accounts.write'], configuration);
|
|
336
198
|
localVarHeaderParameter['Content-Type'] = 'application/vnd.api+json';
|
|
337
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
199
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
338
200
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
339
201
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
340
202
|
localVarRequestOptions.data = serializeDataIfNeeded(adminCreateApplicationRequest, localVarRequestOptions, configuration);
|
|
@@ -365,7 +227,7 @@ export const AccountsApiAxiosParamCreator = function (configuration) {
|
|
|
365
227
|
// authentication OAuth2Internal required
|
|
366
228
|
// oauth required
|
|
367
229
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2Internal', ['accounts.*', 'accounts.write'], configuration);
|
|
368
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
230
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
369
231
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
370
232
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
371
233
|
return {
|
|
@@ -395,7 +257,7 @@ export const AccountsApiAxiosParamCreator = function (configuration) {
|
|
|
395
257
|
// authentication OAuth2Internal required
|
|
396
258
|
// oauth required
|
|
397
259
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2Internal', ['accounts.*', 'accounts.read'], configuration);
|
|
398
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
260
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
399
261
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
400
262
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
401
263
|
return {
|
|
@@ -429,7 +291,7 @@ export const AccountsApiAxiosParamCreator = function (configuration) {
|
|
|
429
291
|
// oauth required
|
|
430
292
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2Internal', ['accounts.*', 'accounts.write'], configuration);
|
|
431
293
|
localVarHeaderParameter['Content-Type'] = 'application/vnd.api+json';
|
|
432
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
294
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
433
295
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
434
296
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
435
297
|
localVarRequestOptions.data = serializeDataIfNeeded(updateAccountRequest, localVarRequestOptions, configuration);
|
|
@@ -674,7 +536,7 @@ export const ApplicationsApiAxiosParamCreator = function (configuration) {
|
|
|
674
536
|
// oauth required
|
|
675
537
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
676
538
|
localVarHeaderParameter['Content-Type'] = 'application/vnd.api+json';
|
|
677
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
539
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
678
540
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
679
541
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
680
542
|
localVarRequestOptions.data = serializeDataIfNeeded(createApplicationRequest, localVarRequestOptions, configuration);
|
|
@@ -705,7 +567,7 @@ export const ApplicationsApiAxiosParamCreator = function (configuration) {
|
|
|
705
567
|
// authentication OAuth2 required
|
|
706
568
|
// oauth required
|
|
707
569
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
708
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
570
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
709
571
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
710
572
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
711
573
|
return {
|
|
@@ -735,7 +597,7 @@ export const ApplicationsApiAxiosParamCreator = function (configuration) {
|
|
|
735
597
|
// authentication OAuth2 required
|
|
736
598
|
// oauth required
|
|
737
599
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
738
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
600
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
739
601
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
740
602
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
741
603
|
return {
|
|
@@ -770,7 +632,7 @@ export const ApplicationsApiAxiosParamCreator = function (configuration) {
|
|
|
770
632
|
if (pageSize !== undefined) {
|
|
771
633
|
localVarQueryParameter['page[size]'] = pageSize;
|
|
772
634
|
}
|
|
773
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
635
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
774
636
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
775
637
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
776
638
|
return {
|
|
@@ -804,7 +666,7 @@ export const ApplicationsApiAxiosParamCreator = function (configuration) {
|
|
|
804
666
|
// oauth required
|
|
805
667
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
806
668
|
localVarHeaderParameter['Content-Type'] = 'application/vnd.api+json';
|
|
807
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
669
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
808
670
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
809
671
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
810
672
|
localVarRequestOptions.data = serializeDataIfNeeded(updateApplicationRequest, localVarRequestOptions, configuration);
|
|
@@ -1049,7 +911,7 @@ export const BatchesApiAxiosParamCreator = function (configuration) {
|
|
|
1049
911
|
// oauth required
|
|
1050
912
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
1051
913
|
localVarHeaderParameter['Content-Type'] = 'application/vnd.api+json';
|
|
1052
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
914
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1053
915
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1054
916
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1055
917
|
localVarRequestOptions.data = serializeDataIfNeeded(createBatchRequest, localVarRequestOptions, configuration);
|
|
@@ -1080,7 +942,7 @@ export const BatchesApiAxiosParamCreator = function (configuration) {
|
|
|
1080
942
|
// authentication OAuth2 required
|
|
1081
943
|
// oauth required
|
|
1082
944
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
1083
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
945
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1084
946
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1085
947
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1086
948
|
return {
|
|
@@ -1110,7 +972,7 @@ export const BatchesApiAxiosParamCreator = function (configuration) {
|
|
|
1110
972
|
// authentication OAuth2 required
|
|
1111
973
|
// oauth required
|
|
1112
974
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
1113
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
975
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1114
976
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1115
977
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1116
978
|
return {
|
|
@@ -1251,6 +1113,237 @@ export class BatchesApi extends BaseAPI {
|
|
|
1251
1113
|
.then((request) => request(this.axios, this.basePath));
|
|
1252
1114
|
}
|
|
1253
1115
|
}
|
|
1116
|
+
/**
|
|
1117
|
+
* ExportsApi - axios parameter creator
|
|
1118
|
+
* @export
|
|
1119
|
+
*/
|
|
1120
|
+
export const ExportsApiAxiosParamCreator = function (configuration) {
|
|
1121
|
+
return {
|
|
1122
|
+
/**
|
|
1123
|
+
* Create an `export`. This API is asynchronous, returning the location of a `queued-export`. Check the status via the getQueuedExport API.
|
|
1124
|
+
* @param {CreateExportRequest} createExportRequest
|
|
1125
|
+
* @param {*} [options] Override http request option.
|
|
1126
|
+
* @throws {RequiredError}
|
|
1127
|
+
*/
|
|
1128
|
+
createExport: (createExportRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1129
|
+
// verify required parameter 'createExportRequest' is not null or undefined
|
|
1130
|
+
assertParamExists('createExport', 'createExportRequest', createExportRequest);
|
|
1131
|
+
const localVarPath = `/exports`;
|
|
1132
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1133
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1134
|
+
let baseOptions;
|
|
1135
|
+
if (configuration) {
|
|
1136
|
+
baseOptions = configuration.baseOptions;
|
|
1137
|
+
}
|
|
1138
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
1139
|
+
const localVarHeaderParameter = {};
|
|
1140
|
+
const localVarQueryParameter = {};
|
|
1141
|
+
// authentication OAuth2 required
|
|
1142
|
+
// oauth required
|
|
1143
|
+
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
1144
|
+
localVarHeaderParameter['Content-Type'] = 'application/vnd.api+json';
|
|
1145
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1146
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1147
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1148
|
+
localVarRequestOptions.data = serializeDataIfNeeded(createExportRequest, localVarRequestOptions, configuration);
|
|
1149
|
+
return {
|
|
1150
|
+
url: toPathString(localVarUrlObj),
|
|
1151
|
+
options: localVarRequestOptions,
|
|
1152
|
+
};
|
|
1153
|
+
}),
|
|
1154
|
+
/**
|
|
1155
|
+
* Get an `export` by ID.
|
|
1156
|
+
* @param {string} id The `export` ID.
|
|
1157
|
+
* @param {*} [options] Override http request option.
|
|
1158
|
+
* @throws {RequiredError}
|
|
1159
|
+
*/
|
|
1160
|
+
getExport: (id, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1161
|
+
// verify required parameter 'id' is not null or undefined
|
|
1162
|
+
assertParamExists('getExport', 'id', id);
|
|
1163
|
+
const localVarPath = `/exports/{id}`.replace(`{${'id'}}`, encodeURIComponent(String(id)));
|
|
1164
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1165
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1166
|
+
let baseOptions;
|
|
1167
|
+
if (configuration) {
|
|
1168
|
+
baseOptions = configuration.baseOptions;
|
|
1169
|
+
}
|
|
1170
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
1171
|
+
const localVarHeaderParameter = {};
|
|
1172
|
+
const localVarQueryParameter = {};
|
|
1173
|
+
// authentication OAuth2 required
|
|
1174
|
+
// oauth required
|
|
1175
|
+
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
1176
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1177
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1178
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1179
|
+
return {
|
|
1180
|
+
url: toPathString(localVarUrlObj),
|
|
1181
|
+
options: localVarRequestOptions,
|
|
1182
|
+
};
|
|
1183
|
+
}),
|
|
1184
|
+
/**
|
|
1185
|
+
* Get a `queued-export`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `export`.
|
|
1186
|
+
* @param {string} id The `queued-export` ID.
|
|
1187
|
+
* @param {*} [options] Override http request option.
|
|
1188
|
+
* @throws {RequiredError}
|
|
1189
|
+
*/
|
|
1190
|
+
getQueuedExport: (id, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1191
|
+
// verify required parameter 'id' is not null or undefined
|
|
1192
|
+
assertParamExists('getQueuedExport', 'id', id);
|
|
1193
|
+
const localVarPath = `/queued-exports/{id}`.replace(`{${'id'}}`, encodeURIComponent(String(id)));
|
|
1194
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1195
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
1196
|
+
let baseOptions;
|
|
1197
|
+
if (configuration) {
|
|
1198
|
+
baseOptions = configuration.baseOptions;
|
|
1199
|
+
}
|
|
1200
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
1201
|
+
const localVarHeaderParameter = {};
|
|
1202
|
+
const localVarQueryParameter = {};
|
|
1203
|
+
// authentication OAuth2 required
|
|
1204
|
+
// oauth required
|
|
1205
|
+
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
1206
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1207
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1208
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1209
|
+
return {
|
|
1210
|
+
url: toPathString(localVarUrlObj),
|
|
1211
|
+
options: localVarRequestOptions,
|
|
1212
|
+
};
|
|
1213
|
+
}),
|
|
1214
|
+
};
|
|
1215
|
+
};
|
|
1216
|
+
/**
|
|
1217
|
+
* ExportsApi - functional programming interface
|
|
1218
|
+
* @export
|
|
1219
|
+
*/
|
|
1220
|
+
export const ExportsApiFp = function (configuration) {
|
|
1221
|
+
const localVarAxiosParamCreator = ExportsApiAxiosParamCreator(configuration);
|
|
1222
|
+
return {
|
|
1223
|
+
/**
|
|
1224
|
+
* Create an `export`. This API is asynchronous, returning the location of a `queued-export`. Check the status via the getQueuedExport API.
|
|
1225
|
+
* @param {CreateExportRequest} createExportRequest
|
|
1226
|
+
* @param {*} [options] Override http request option.
|
|
1227
|
+
* @throws {RequiredError}
|
|
1228
|
+
*/
|
|
1229
|
+
createExport(createExportRequest, options) {
|
|
1230
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1231
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.createExport(createExportRequest, options);
|
|
1232
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1233
|
+
});
|
|
1234
|
+
},
|
|
1235
|
+
/**
|
|
1236
|
+
* Get an `export` by ID.
|
|
1237
|
+
* @param {string} id The `export` ID.
|
|
1238
|
+
* @param {*} [options] Override http request option.
|
|
1239
|
+
* @throws {RequiredError}
|
|
1240
|
+
*/
|
|
1241
|
+
getExport(id, options) {
|
|
1242
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1243
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getExport(id, options);
|
|
1244
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1245
|
+
});
|
|
1246
|
+
},
|
|
1247
|
+
/**
|
|
1248
|
+
* Get a `queued-export`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `export`.
|
|
1249
|
+
* @param {string} id The `queued-export` ID.
|
|
1250
|
+
* @param {*} [options] Override http request option.
|
|
1251
|
+
* @throws {RequiredError}
|
|
1252
|
+
*/
|
|
1253
|
+
getQueuedExport(id, options) {
|
|
1254
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
1255
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getQueuedExport(id, options);
|
|
1256
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
1257
|
+
});
|
|
1258
|
+
},
|
|
1259
|
+
};
|
|
1260
|
+
};
|
|
1261
|
+
/**
|
|
1262
|
+
* ExportsApi - factory interface
|
|
1263
|
+
* @export
|
|
1264
|
+
*/
|
|
1265
|
+
export const ExportsApiFactory = function (configuration, basePath, axios) {
|
|
1266
|
+
const localVarFp = ExportsApiFp(configuration);
|
|
1267
|
+
return {
|
|
1268
|
+
/**
|
|
1269
|
+
* Create an `export`. This API is asynchronous, returning the location of a `queued-export`. Check the status via the getQueuedExport API.
|
|
1270
|
+
* @param {CreateExportRequest} createExportRequest
|
|
1271
|
+
* @param {*} [options] Override http request option.
|
|
1272
|
+
* @throws {RequiredError}
|
|
1273
|
+
*/
|
|
1274
|
+
createExport(createExportRequest, options) {
|
|
1275
|
+
return localVarFp
|
|
1276
|
+
.createExport(createExportRequest, options)
|
|
1277
|
+
.then((request) => request(axios, basePath));
|
|
1278
|
+
},
|
|
1279
|
+
/**
|
|
1280
|
+
* Get an `export` by ID.
|
|
1281
|
+
* @param {string} id The `export` ID.
|
|
1282
|
+
* @param {*} [options] Override http request option.
|
|
1283
|
+
* @throws {RequiredError}
|
|
1284
|
+
*/
|
|
1285
|
+
getExport(id, options) {
|
|
1286
|
+
return localVarFp
|
|
1287
|
+
.getExport(id, options)
|
|
1288
|
+
.then((request) => request(axios, basePath));
|
|
1289
|
+
},
|
|
1290
|
+
/**
|
|
1291
|
+
* Get a `queued-export`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `export`.
|
|
1292
|
+
* @param {string} id The `queued-export` ID.
|
|
1293
|
+
* @param {*} [options] Override http request option.
|
|
1294
|
+
* @throws {RequiredError}
|
|
1295
|
+
*/
|
|
1296
|
+
getQueuedExport(id, options) {
|
|
1297
|
+
return localVarFp
|
|
1298
|
+
.getQueuedExport(id, options)
|
|
1299
|
+
.then((request) => request(axios, basePath));
|
|
1300
|
+
},
|
|
1301
|
+
};
|
|
1302
|
+
};
|
|
1303
|
+
/**
|
|
1304
|
+
* ExportsApi - object-oriented interface
|
|
1305
|
+
* @export
|
|
1306
|
+
* @class ExportsApi
|
|
1307
|
+
* @extends {BaseAPI}
|
|
1308
|
+
*/
|
|
1309
|
+
export class ExportsApi extends BaseAPI {
|
|
1310
|
+
/**
|
|
1311
|
+
* Create an `export`. This API is asynchronous, returning the location of a `queued-export`. Check the status via the getQueuedExport API.
|
|
1312
|
+
* @param {ExportsApiCreateExportRequest} requestParameters Request parameters.
|
|
1313
|
+
* @param {*} [options] Override http request option.
|
|
1314
|
+
* @throws {RequiredError}
|
|
1315
|
+
* @memberof ExportsApi
|
|
1316
|
+
*/
|
|
1317
|
+
createExport(requestParameters, options) {
|
|
1318
|
+
return ExportsApiFp(this.configuration)
|
|
1319
|
+
.createExport(requestParameters.createExportRequest, options)
|
|
1320
|
+
.then((request) => request(this.axios, this.basePath));
|
|
1321
|
+
}
|
|
1322
|
+
/**
|
|
1323
|
+
* Get an `export` by ID.
|
|
1324
|
+
* @param {ExportsApiGetExportRequest} requestParameters Request parameters.
|
|
1325
|
+
* @param {*} [options] Override http request option.
|
|
1326
|
+
* @throws {RequiredError}
|
|
1327
|
+
* @memberof ExportsApi
|
|
1328
|
+
*/
|
|
1329
|
+
getExport(requestParameters, options) {
|
|
1330
|
+
return ExportsApiFp(this.configuration)
|
|
1331
|
+
.getExport(requestParameters.id, options)
|
|
1332
|
+
.then((request) => request(this.axios, this.basePath));
|
|
1333
|
+
}
|
|
1334
|
+
/**
|
|
1335
|
+
* Get a `queued-export`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `export`.
|
|
1336
|
+
* @param {ExportsApiGetQueuedExportRequest} requestParameters Request parameters.
|
|
1337
|
+
* @param {*} [options] Override http request option.
|
|
1338
|
+
* @throws {RequiredError}
|
|
1339
|
+
* @memberof ExportsApi
|
|
1340
|
+
*/
|
|
1341
|
+
getQueuedExport(requestParameters, options) {
|
|
1342
|
+
return ExportsApiFp(this.configuration)
|
|
1343
|
+
.getQueuedExport(requestParameters.id, options)
|
|
1344
|
+
.then((request) => request(this.axios, this.basePath));
|
|
1345
|
+
}
|
|
1346
|
+
}
|
|
1254
1347
|
/**
|
|
1255
1348
|
* FilesApi - axios parameter creator
|
|
1256
1349
|
* @export
|
|
@@ -1280,7 +1373,7 @@ export const FilesApiAxiosParamCreator = function (configuration) {
|
|
|
1280
1373
|
// oauth required
|
|
1281
1374
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
1282
1375
|
localVarHeaderParameter['Content-Type'] = 'application/vnd.api+json';
|
|
1283
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
1376
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1284
1377
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1285
1378
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1286
1379
|
localVarRequestOptions.data = serializeDataIfNeeded(createFileRequest, localVarRequestOptions, configuration);
|
|
@@ -1311,7 +1404,7 @@ export const FilesApiAxiosParamCreator = function (configuration) {
|
|
|
1311
1404
|
// authentication OAuth2 required
|
|
1312
1405
|
// oauth required
|
|
1313
1406
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
1314
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
1407
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1315
1408
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1316
1409
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1317
1410
|
return {
|
|
@@ -1341,7 +1434,7 @@ export const FilesApiAxiosParamCreator = function (configuration) {
|
|
|
1341
1434
|
// authentication OAuth2 required
|
|
1342
1435
|
// oauth required
|
|
1343
1436
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
1344
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
1437
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1345
1438
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1346
1439
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1347
1440
|
return {
|
|
@@ -1380,7 +1473,7 @@ export const FilesApiAxiosParamCreator = function (configuration) {
|
|
|
1380
1473
|
if (filterSuppliedId !== undefined) {
|
|
1381
1474
|
localVarQueryParameter['filter[suppliedId]'] = filterSuppliedId;
|
|
1382
1475
|
}
|
|
1383
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
1476
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1384
1477
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1385
1478
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1386
1479
|
return {
|
|
@@ -1414,7 +1507,7 @@ export const FilesApiAxiosParamCreator = function (configuration) {
|
|
|
1414
1507
|
// oauth required
|
|
1415
1508
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
1416
1509
|
localVarHeaderParameter['Content-Type'] = 'application/octet-stream';
|
|
1417
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
1510
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1418
1511
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1419
1512
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1420
1513
|
localVarRequestOptions.data = serializeDataIfNeeded(body, localVarRequestOptions, configuration);
|
|
@@ -1661,7 +1754,7 @@ export const GeometrySetsApiAxiosParamCreator = function (configuration) {
|
|
|
1661
1754
|
// oauth required
|
|
1662
1755
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
1663
1756
|
localVarHeaderParameter['Content-Type'] = 'application/vnd.api+json';
|
|
1664
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
1757
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1665
1758
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1666
1759
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1667
1760
|
localVarRequestOptions.data = serializeDataIfNeeded(createGeometrySetRequest, localVarRequestOptions, configuration);
|
|
@@ -1692,7 +1785,7 @@ export const GeometrySetsApiAxiosParamCreator = function (configuration) {
|
|
|
1692
1785
|
// authentication OAuth2 required
|
|
1693
1786
|
// oauth required
|
|
1694
1787
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
1695
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
1788
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1696
1789
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1697
1790
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1698
1791
|
return {
|
|
@@ -1727,7 +1820,7 @@ export const GeometrySetsApiAxiosParamCreator = function (configuration) {
|
|
|
1727
1820
|
if (pageSize !== undefined) {
|
|
1728
1821
|
localVarQueryParameter['page[size]'] = pageSize;
|
|
1729
1822
|
}
|
|
1730
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
1823
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1731
1824
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1732
1825
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1733
1826
|
return {
|
|
@@ -1910,7 +2003,7 @@ export const HitsApiAxiosParamCreator = function (configuration) {
|
|
|
1910
2003
|
localVarQueryParameter['fields[part-revision]'] = fieldsPartRevision;
|
|
1911
2004
|
}
|
|
1912
2005
|
localVarHeaderParameter['Content-Type'] = 'application/vnd.api+json';
|
|
1913
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
2006
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1914
2007
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1915
2008
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1916
2009
|
localVarRequestOptions.data = serializeDataIfNeeded(createHitRequest, localVarRequestOptions, configuration);
|
|
@@ -1953,7 +2046,7 @@ export const HitsApiAxiosParamCreator = function (configuration) {
|
|
|
1953
2046
|
localVarQueryParameter['fields[part-revision]'] = fieldsPartRevision;
|
|
1954
2047
|
}
|
|
1955
2048
|
localVarHeaderParameter['Content-Type'] = 'application/vnd.api+json';
|
|
1956
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
2049
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
1957
2050
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
1958
2051
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
1959
2052
|
localVarRequestOptions.data = serializeDataIfNeeded(createHitRequest, localVarRequestOptions, configuration);
|
|
@@ -2105,7 +2198,7 @@ export const Oauth2ApiAxiosParamCreator = function (configuration) {
|
|
|
2105
2198
|
localVarQueryParameter['challenge'] = challenge;
|
|
2106
2199
|
}
|
|
2107
2200
|
localVarHeaderParameter['Content-Type'] = 'application/vnd.api+json';
|
|
2108
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
2201
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2109
2202
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2110
2203
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2111
2204
|
localVarRequestOptions.data = serializeDataIfNeeded(adminConsentAcceptRequest, localVarRequestOptions, configuration);
|
|
@@ -2143,7 +2236,7 @@ export const Oauth2ApiAxiosParamCreator = function (configuration) {
|
|
|
2143
2236
|
localVarQueryParameter['login_challenge'] = loginChallenge;
|
|
2144
2237
|
}
|
|
2145
2238
|
localVarHeaderParameter['Content-Type'] = 'application/vnd.api+json';
|
|
2146
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
2239
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2147
2240
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2148
2241
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2149
2242
|
localVarRequestOptions.data = serializeDataIfNeeded(adminLoginAcceptRequest, localVarRequestOptions, configuration);
|
|
@@ -2196,7 +2289,7 @@ export const Oauth2ApiAxiosParamCreator = function (configuration) {
|
|
|
2196
2289
|
}
|
|
2197
2290
|
localVarHeaderParameter['Content-Type'] =
|
|
2198
2291
|
'application/x-www-form-urlencoded';
|
|
2199
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
2292
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2200
2293
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2201
2294
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2202
2295
|
localVarRequestOptions.data = localVarFormParams.toString();
|
|
@@ -2228,7 +2321,7 @@ export const Oauth2ApiAxiosParamCreator = function (configuration) {
|
|
|
2228
2321
|
// http basic authentication required
|
|
2229
2322
|
setBasicAuthToObject(localVarRequestOptions, configuration);
|
|
2230
2323
|
localVarHeaderParameter['Content-Type'] = 'application/vnd.api+json';
|
|
2231
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
2324
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2232
2325
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2233
2326
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2234
2327
|
localVarRequestOptions.data = serializeDataIfNeeded(revokeOAuth2TokenRequest, localVarRequestOptions, configuration);
|
|
@@ -2445,7 +2538,7 @@ export const PartRevisionsApiAxiosParamCreator = function (configuration) {
|
|
|
2445
2538
|
// authentication OAuth2 required
|
|
2446
2539
|
// oauth required
|
|
2447
2540
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
2448
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
2541
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2449
2542
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2450
2543
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2451
2544
|
return {
|
|
@@ -2479,7 +2572,7 @@ export const PartRevisionsApiAxiosParamCreator = function (configuration) {
|
|
|
2479
2572
|
if (fieldsPartRevision !== undefined) {
|
|
2480
2573
|
localVarQueryParameter['fields[part-revision]'] = fieldsPartRevision;
|
|
2481
2574
|
}
|
|
2482
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
2575
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2483
2576
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2484
2577
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2485
2578
|
return {
|
|
@@ -2521,7 +2614,7 @@ export const PartRevisionsApiAxiosParamCreator = function (configuration) {
|
|
|
2521
2614
|
if (filterSuppliedId !== undefined) {
|
|
2522
2615
|
localVarQueryParameter['filter[suppliedId]'] = filterSuppliedId;
|
|
2523
2616
|
}
|
|
2524
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
2617
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2525
2618
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2526
2619
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2527
2620
|
return {
|
|
@@ -2551,7 +2644,7 @@ export const PartRevisionsApiAxiosParamCreator = function (configuration) {
|
|
|
2551
2644
|
// authentication OAuth2 required
|
|
2552
2645
|
// oauth required
|
|
2553
2646
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
2554
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
2647
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2555
2648
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2556
2649
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2557
2650
|
return {
|
|
@@ -2567,10 +2660,17 @@ export const PartRevisionsApiAxiosParamCreator = function (configuration) {
|
|
|
2567
2660
|
* @param {Vector3} [cameraPosition] The `camera` position vector.
|
|
2568
2661
|
* @param {Vector3} [cameraUp] The `camera` up vector.
|
|
2569
2662
|
* @param {Vector3} [cameraLookAt] The `camera` lookAt vector.
|
|
2663
|
+
* @param {Vector3} [cameraPerspectivePosition] The perspective camera position.
|
|
2664
|
+
* @param {Vector3} [cameraPerspectiveLookAt] The perspective camera look at position.
|
|
2665
|
+
* @param {Vector3} [cameraPerspectiveUp] The perspective camera up vector.
|
|
2666
|
+
* @param {Vector3} [cameraOrthographicViewVector] The orthographic camera view vector.
|
|
2667
|
+
* @param {Vector3} [cameraOrthographicLookAt] The orthographic camera look at position.
|
|
2668
|
+
* @param {Vector3} [cameraOrthographicUp] The orthographic camera up vector.
|
|
2669
|
+
* @param {number} [cameraOrthographicFovHeight] The orthographic field-of-view height.
|
|
2570
2670
|
* @param {*} [options] Override http request option.
|
|
2571
2671
|
* @throws {RequiredError}
|
|
2572
2672
|
*/
|
|
2573
|
-
renderPartRevision: (id, height, width, cameraPosition, cameraUp, cameraLookAt, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
2673
|
+
renderPartRevision: (id, height, width, cameraPosition, cameraUp, cameraLookAt, cameraPerspectivePosition, cameraPerspectiveLookAt, cameraPerspectiveUp, cameraOrthographicViewVector, cameraOrthographicLookAt, cameraOrthographicUp, cameraOrthographicFovHeight, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
2574
2674
|
// verify required parameter 'id' is not null or undefined
|
|
2575
2675
|
assertParamExists('renderPartRevision', 'id', id);
|
|
2576
2676
|
const localVarPath = `/part-revisions/{id}/image`.replace(`{${'id'}}`, encodeURIComponent(String(id)));
|
|
@@ -2601,7 +2701,34 @@ export const PartRevisionsApiAxiosParamCreator = function (configuration) {
|
|
|
2601
2701
|
if (cameraLookAt !== undefined) {
|
|
2602
2702
|
localVarQueryParameter['camera[lookAt]'] = cameraLookAt;
|
|
2603
2703
|
}
|
|
2604
|
-
|
|
2704
|
+
if (cameraPerspectivePosition !== undefined) {
|
|
2705
|
+
localVarQueryParameter['camera[perspective][position]'] =
|
|
2706
|
+
cameraPerspectivePosition;
|
|
2707
|
+
}
|
|
2708
|
+
if (cameraPerspectiveLookAt !== undefined) {
|
|
2709
|
+
localVarQueryParameter['camera[perspective][lookAt]'] =
|
|
2710
|
+
cameraPerspectiveLookAt;
|
|
2711
|
+
}
|
|
2712
|
+
if (cameraPerspectiveUp !== undefined) {
|
|
2713
|
+
localVarQueryParameter['camera[perspective][up]'] = cameraPerspectiveUp;
|
|
2714
|
+
}
|
|
2715
|
+
if (cameraOrthographicViewVector !== undefined) {
|
|
2716
|
+
localVarQueryParameter['camera[orthographic][viewVector]'] =
|
|
2717
|
+
cameraOrthographicViewVector;
|
|
2718
|
+
}
|
|
2719
|
+
if (cameraOrthographicLookAt !== undefined) {
|
|
2720
|
+
localVarQueryParameter['camera[orthographic][lookAt]'] =
|
|
2721
|
+
cameraOrthographicLookAt;
|
|
2722
|
+
}
|
|
2723
|
+
if (cameraOrthographicUp !== undefined) {
|
|
2724
|
+
localVarQueryParameter['camera[orthographic][up]'] =
|
|
2725
|
+
cameraOrthographicUp;
|
|
2726
|
+
}
|
|
2727
|
+
if (cameraOrthographicFovHeight !== undefined) {
|
|
2728
|
+
localVarQueryParameter['camera[orthographic][fovHeight]'] =
|
|
2729
|
+
cameraOrthographicFovHeight;
|
|
2730
|
+
}
|
|
2731
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2605
2732
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2606
2733
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2607
2734
|
return {
|
|
@@ -2635,7 +2762,7 @@ export const PartRevisionsApiAxiosParamCreator = function (configuration) {
|
|
|
2635
2762
|
// oauth required
|
|
2636
2763
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
2637
2764
|
localVarHeaderParameter['Content-Type'] = 'application/vnd.api+json';
|
|
2638
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
2765
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2639
2766
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2640
2767
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2641
2768
|
localVarRequestOptions.data = serializeDataIfNeeded(updatePartRevisionRequest, localVarRequestOptions, configuration);
|
|
@@ -2713,12 +2840,19 @@ export const PartRevisionsApiFp = function (configuration) {
|
|
|
2713
2840
|
* @param {Vector3} [cameraPosition] The `camera` position vector.
|
|
2714
2841
|
* @param {Vector3} [cameraUp] The `camera` up vector.
|
|
2715
2842
|
* @param {Vector3} [cameraLookAt] The `camera` lookAt vector.
|
|
2843
|
+
* @param {Vector3} [cameraPerspectivePosition] The perspective camera position.
|
|
2844
|
+
* @param {Vector3} [cameraPerspectiveLookAt] The perspective camera look at position.
|
|
2845
|
+
* @param {Vector3} [cameraPerspectiveUp] The perspective camera up vector.
|
|
2846
|
+
* @param {Vector3} [cameraOrthographicViewVector] The orthographic camera view vector.
|
|
2847
|
+
* @param {Vector3} [cameraOrthographicLookAt] The orthographic camera look at position.
|
|
2848
|
+
* @param {Vector3} [cameraOrthographicUp] The orthographic camera up vector.
|
|
2849
|
+
* @param {number} [cameraOrthographicFovHeight] The orthographic field-of-view height.
|
|
2716
2850
|
* @param {*} [options] Override http request option.
|
|
2717
2851
|
* @throws {RequiredError}
|
|
2718
2852
|
*/
|
|
2719
|
-
renderPartRevision(id, height, width, cameraPosition, cameraUp, cameraLookAt, options) {
|
|
2853
|
+
renderPartRevision(id, height, width, cameraPosition, cameraUp, cameraLookAt, cameraPerspectivePosition, cameraPerspectiveLookAt, cameraPerspectiveUp, cameraOrthographicViewVector, cameraOrthographicLookAt, cameraOrthographicUp, cameraOrthographicFovHeight, options) {
|
|
2720
2854
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2721
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.renderPartRevision(id, height, width, cameraPosition, cameraUp, cameraLookAt, options);
|
|
2855
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.renderPartRevision(id, height, width, cameraPosition, cameraUp, cameraLookAt, cameraPerspectivePosition, cameraPerspectiveLookAt, cameraPerspectiveUp, cameraOrthographicViewVector, cameraOrthographicLookAt, cameraOrthographicUp, cameraOrthographicFovHeight, options);
|
|
2722
2856
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
2723
2857
|
});
|
|
2724
2858
|
},
|
|
@@ -2800,12 +2934,19 @@ export const PartRevisionsApiFactory = function (configuration, basePath, axios)
|
|
|
2800
2934
|
* @param {Vector3} [cameraPosition] The `camera` position vector.
|
|
2801
2935
|
* @param {Vector3} [cameraUp] The `camera` up vector.
|
|
2802
2936
|
* @param {Vector3} [cameraLookAt] The `camera` lookAt vector.
|
|
2937
|
+
* @param {Vector3} [cameraPerspectivePosition] The perspective camera position.
|
|
2938
|
+
* @param {Vector3} [cameraPerspectiveLookAt] The perspective camera look at position.
|
|
2939
|
+
* @param {Vector3} [cameraPerspectiveUp] The perspective camera up vector.
|
|
2940
|
+
* @param {Vector3} [cameraOrthographicViewVector] The orthographic camera view vector.
|
|
2941
|
+
* @param {Vector3} [cameraOrthographicLookAt] The orthographic camera look at position.
|
|
2942
|
+
* @param {Vector3} [cameraOrthographicUp] The orthographic camera up vector.
|
|
2943
|
+
* @param {number} [cameraOrthographicFovHeight] The orthographic field-of-view height.
|
|
2803
2944
|
* @param {*} [options] Override http request option.
|
|
2804
2945
|
* @throws {RequiredError}
|
|
2805
2946
|
*/
|
|
2806
|
-
renderPartRevision(id, height, width, cameraPosition, cameraUp, cameraLookAt, options) {
|
|
2947
|
+
renderPartRevision(id, height, width, cameraPosition, cameraUp, cameraLookAt, cameraPerspectivePosition, cameraPerspectiveLookAt, cameraPerspectiveUp, cameraOrthographicViewVector, cameraOrthographicLookAt, cameraOrthographicUp, cameraOrthographicFovHeight, options) {
|
|
2807
2948
|
return localVarFp
|
|
2808
|
-
.renderPartRevision(id, height, width, cameraPosition, cameraUp, cameraLookAt, options)
|
|
2949
|
+
.renderPartRevision(id, height, width, cameraPosition, cameraUp, cameraLookAt, cameraPerspectivePosition, cameraPerspectiveLookAt, cameraPerspectiveUp, cameraOrthographicViewVector, cameraOrthographicLookAt, cameraOrthographicUp, cameraOrthographicFovHeight, options)
|
|
2809
2950
|
.then((request) => request(axios, basePath));
|
|
2810
2951
|
},
|
|
2811
2952
|
/**
|
|
@@ -2886,7 +3027,7 @@ export class PartRevisionsApi extends BaseAPI {
|
|
|
2886
3027
|
*/
|
|
2887
3028
|
renderPartRevision(requestParameters, options) {
|
|
2888
3029
|
return PartRevisionsApiFp(this.configuration)
|
|
2889
|
-
.renderPartRevision(requestParameters.id, requestParameters.height, requestParameters.width, requestParameters.cameraPosition, requestParameters.cameraUp, requestParameters.cameraLookAt, options)
|
|
3030
|
+
.renderPartRevision(requestParameters.id, requestParameters.height, requestParameters.width, requestParameters.cameraPosition, requestParameters.cameraUp, requestParameters.cameraLookAt, requestParameters.cameraPerspectivePosition, requestParameters.cameraPerspectiveLookAt, requestParameters.cameraPerspectiveUp, requestParameters.cameraOrthographicViewVector, requestParameters.cameraOrthographicLookAt, requestParameters.cameraOrthographicUp, requestParameters.cameraOrthographicFovHeight, options)
|
|
2890
3031
|
.then((request) => request(this.axios, this.basePath));
|
|
2891
3032
|
}
|
|
2892
3033
|
/**
|
|
@@ -2931,7 +3072,7 @@ export const PartsApiAxiosParamCreator = function (configuration) {
|
|
|
2931
3072
|
// oauth required
|
|
2932
3073
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
2933
3074
|
localVarHeaderParameter['Content-Type'] = 'application/vnd.api+json';
|
|
2934
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
3075
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2935
3076
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2936
3077
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2937
3078
|
localVarRequestOptions.data = serializeDataIfNeeded(createPartRequest, localVarRequestOptions, configuration);
|
|
@@ -2962,7 +3103,7 @@ export const PartsApiAxiosParamCreator = function (configuration) {
|
|
|
2962
3103
|
// authentication OAuth2 required
|
|
2963
3104
|
// oauth required
|
|
2964
3105
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
2965
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
3106
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2966
3107
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2967
3108
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2968
3109
|
return {
|
|
@@ -2996,7 +3137,7 @@ export const PartsApiAxiosParamCreator = function (configuration) {
|
|
|
2996
3137
|
if (include !== undefined) {
|
|
2997
3138
|
localVarQueryParameter['include'] = include;
|
|
2998
3139
|
}
|
|
2999
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
3140
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3000
3141
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3001
3142
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3002
3143
|
return {
|
|
@@ -3035,7 +3176,7 @@ export const PartsApiAxiosParamCreator = function (configuration) {
|
|
|
3035
3176
|
if (filterSuppliedId !== undefined) {
|
|
3036
3177
|
localVarQueryParameter['filter[suppliedId]'] = filterSuppliedId;
|
|
3037
3178
|
}
|
|
3038
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
3179
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3039
3180
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3040
3181
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3041
3182
|
return {
|
|
@@ -3065,7 +3206,7 @@ export const PartsApiAxiosParamCreator = function (configuration) {
|
|
|
3065
3206
|
// authentication OAuth2 required
|
|
3066
3207
|
// oauth required
|
|
3067
3208
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
3068
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
3209
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3069
3210
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3070
3211
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3071
3212
|
return {
|
|
@@ -3314,7 +3455,7 @@ export const SceneAlterationsApiAxiosParamCreator = function (configuration) {
|
|
|
3314
3455
|
// oauth required
|
|
3315
3456
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
3316
3457
|
localVarHeaderParameter['Content-Type'] = 'application/vnd.api+json';
|
|
3317
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
3458
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3318
3459
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3319
3460
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3320
3461
|
localVarRequestOptions.data = serializeDataIfNeeded(createSceneAlterationRequest, localVarRequestOptions, configuration);
|
|
@@ -3345,7 +3486,7 @@ export const SceneAlterationsApiAxiosParamCreator = function (configuration) {
|
|
|
3345
3486
|
// authentication OAuth2 required
|
|
3346
3487
|
// oauth required
|
|
3347
3488
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
3348
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
3489
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3349
3490
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3350
3491
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3351
3492
|
return {
|
|
@@ -3375,7 +3516,7 @@ export const SceneAlterationsApiAxiosParamCreator = function (configuration) {
|
|
|
3375
3516
|
// authentication OAuth2 required
|
|
3376
3517
|
// oauth required
|
|
3377
3518
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
3378
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
3519
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3379
3520
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3380
3521
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3381
3522
|
return {
|
|
@@ -3405,7 +3546,7 @@ export const SceneAlterationsApiAxiosParamCreator = function (configuration) {
|
|
|
3405
3546
|
// authentication OAuth2 required
|
|
3406
3547
|
// oauth required
|
|
3407
3548
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
3408
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
3549
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3409
3550
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3410
3551
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3411
3552
|
return {
|
|
@@ -3615,7 +3756,7 @@ export const SceneItemOverridesApiAxiosParamCreator = function (configuration) {
|
|
|
3615
3756
|
// oauth required
|
|
3616
3757
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
3617
3758
|
localVarHeaderParameter['Content-Type'] = 'application/vnd.api+json';
|
|
3618
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
3759
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3619
3760
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3620
3761
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3621
3762
|
localVarRequestOptions.data = serializeDataIfNeeded(createSceneItemOverrideRequest, localVarRequestOptions, configuration);
|
|
@@ -3646,7 +3787,7 @@ export const SceneItemOverridesApiAxiosParamCreator = function (configuration) {
|
|
|
3646
3787
|
// authentication OAuth2 required
|
|
3647
3788
|
// oauth required
|
|
3648
3789
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
3649
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
3790
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3650
3791
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3651
3792
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3652
3793
|
return {
|
|
@@ -3676,7 +3817,7 @@ export const SceneItemOverridesApiAxiosParamCreator = function (configuration) {
|
|
|
3676
3817
|
// authentication OAuth2 required
|
|
3677
3818
|
// oauth required
|
|
3678
3819
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
3679
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
3820
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3680
3821
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3681
3822
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3682
3823
|
return {
|
|
@@ -3710,7 +3851,7 @@ export const SceneItemOverridesApiAxiosParamCreator = function (configuration) {
|
|
|
3710
3851
|
// oauth required
|
|
3711
3852
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
3712
3853
|
localVarHeaderParameter['Content-Type'] = 'application/vnd.api+json';
|
|
3713
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
3854
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3714
3855
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3715
3856
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3716
3857
|
localVarRequestOptions.data = serializeDataIfNeeded(updateSceneItemOverrideRequest, localVarRequestOptions, configuration);
|
|
@@ -3923,7 +4064,7 @@ export const SceneItemsApiAxiosParamCreator = function (configuration) {
|
|
|
3923
4064
|
// oauth required
|
|
3924
4065
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
3925
4066
|
localVarHeaderParameter['Content-Type'] = 'application/vnd.api+json';
|
|
3926
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
4067
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3927
4068
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3928
4069
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3929
4070
|
localVarRequestOptions.data = serializeDataIfNeeded(createSceneItemRequest, localVarRequestOptions, configuration);
|
|
@@ -3954,7 +4095,7 @@ export const SceneItemsApiAxiosParamCreator = function (configuration) {
|
|
|
3954
4095
|
// authentication OAuth2 required
|
|
3955
4096
|
// oauth required
|
|
3956
4097
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
3957
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
4098
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3958
4099
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3959
4100
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3960
4101
|
return {
|
|
@@ -3984,7 +4125,7 @@ export const SceneItemsApiAxiosParamCreator = function (configuration) {
|
|
|
3984
4125
|
// authentication OAuth2 required
|
|
3985
4126
|
// oauth required
|
|
3986
4127
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
3987
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
4128
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3988
4129
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3989
4130
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
3990
4131
|
return {
|
|
@@ -4014,7 +4155,7 @@ export const SceneItemsApiAxiosParamCreator = function (configuration) {
|
|
|
4014
4155
|
// authentication OAuth2 required
|
|
4015
4156
|
// oauth required
|
|
4016
4157
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
4017
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
4158
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4018
4159
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4019
4160
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4020
4161
|
return {
|
|
@@ -4048,7 +4189,7 @@ export const SceneItemsApiAxiosParamCreator = function (configuration) {
|
|
|
4048
4189
|
if (fieldsSceneItem !== undefined) {
|
|
4049
4190
|
localVarQueryParameter['fields[scene-item]'] = fieldsSceneItem;
|
|
4050
4191
|
}
|
|
4051
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
4192
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4052
4193
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4053
4194
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4054
4195
|
return {
|
|
@@ -4098,7 +4239,7 @@ export const SceneItemsApiAxiosParamCreator = function (configuration) {
|
|
|
4098
4239
|
if (filterParent !== undefined) {
|
|
4099
4240
|
localVarQueryParameter['filter[parent]'] = filterParent;
|
|
4100
4241
|
}
|
|
4101
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
4242
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4102
4243
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4103
4244
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4104
4245
|
return {
|
|
@@ -4132,7 +4273,7 @@ export const SceneItemsApiAxiosParamCreator = function (configuration) {
|
|
|
4132
4273
|
// oauth required
|
|
4133
4274
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
4134
4275
|
localVarHeaderParameter['Content-Type'] = 'application/vnd.api+json';
|
|
4135
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
4276
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4136
4277
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4137
4278
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4138
4279
|
localVarRequestOptions.data = serializeDataIfNeeded(updateSceneItemRequest, localVarRequestOptions, configuration);
|
|
@@ -4462,7 +4603,7 @@ export const SceneViewStatesApiAxiosParamCreator = function (configuration) {
|
|
|
4462
4603
|
// oauth required
|
|
4463
4604
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
4464
4605
|
localVarHeaderParameter['Content-Type'] = 'application/vnd.api+json';
|
|
4465
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
4606
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4466
4607
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4467
4608
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4468
4609
|
localVarRequestOptions.data = serializeDataIfNeeded(createSceneViewStateRequest, localVarRequestOptions, configuration);
|
|
@@ -4493,7 +4634,7 @@ export const SceneViewStatesApiAxiosParamCreator = function (configuration) {
|
|
|
4493
4634
|
// authentication OAuth2 required
|
|
4494
4635
|
// oauth required
|
|
4495
4636
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
4496
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
4637
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4497
4638
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4498
4639
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4499
4640
|
return {
|
|
@@ -4528,7 +4669,7 @@ export const SceneViewStatesApiAxiosParamCreator = function (configuration) {
|
|
|
4528
4669
|
localVarQueryParameter['fields[scene-view-state]'] =
|
|
4529
4670
|
fieldsSceneViewState;
|
|
4530
4671
|
}
|
|
4531
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
4672
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4532
4673
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4533
4674
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4534
4675
|
return {
|
|
@@ -4542,10 +4683,11 @@ export const SceneViewStatesApiAxiosParamCreator = function (configuration) {
|
|
|
4542
4683
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
4543
4684
|
* @param {number} [pageSize] The number of items to return.
|
|
4544
4685
|
* @param {string} [fieldsSceneViewState] Comma-separated list of fields to return in response. An empty value returns no fields. `thumbnails` is only returned if explicitly requested.
|
|
4686
|
+
* @param {string} [filterId] Comma-separated list of IDs to filter on.
|
|
4545
4687
|
* @param {*} [options] Override http request option.
|
|
4546
4688
|
* @throws {RequiredError}
|
|
4547
4689
|
*/
|
|
4548
|
-
getSceneViewStates: (id, pageCursor, pageSize, fieldsSceneViewState, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
4690
|
+
getSceneViewStates: (id, pageCursor, pageSize, fieldsSceneViewState, filterId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
4549
4691
|
// verify required parameter 'id' is not null or undefined
|
|
4550
4692
|
assertParamExists('getSceneViewStates', 'id', id);
|
|
4551
4693
|
const localVarPath = `/scenes/{id}/scene-view-states`.replace(`{${'id'}}`, encodeURIComponent(String(id)));
|
|
@@ -4571,7 +4713,10 @@ export const SceneViewStatesApiAxiosParamCreator = function (configuration) {
|
|
|
4571
4713
|
localVarQueryParameter['fields[scene-view-state]'] =
|
|
4572
4714
|
fieldsSceneViewState;
|
|
4573
4715
|
}
|
|
4574
|
-
|
|
4716
|
+
if (filterId !== undefined) {
|
|
4717
|
+
localVarQueryParameter['filter[id]'] = filterId;
|
|
4718
|
+
}
|
|
4719
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4575
4720
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4576
4721
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4577
4722
|
return {
|
|
@@ -4605,7 +4750,7 @@ export const SceneViewStatesApiAxiosParamCreator = function (configuration) {
|
|
|
4605
4750
|
// oauth required
|
|
4606
4751
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
4607
4752
|
localVarHeaderParameter['Content-Type'] = 'application/vnd.api+json';
|
|
4608
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
4753
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4609
4754
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4610
4755
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4611
4756
|
localVarRequestOptions.data = serializeDataIfNeeded(updateSceneViewStateRequest, localVarRequestOptions, configuration);
|
|
@@ -4667,12 +4812,13 @@ export const SceneViewStatesApiFp = function (configuration) {
|
|
|
4667
4812
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
4668
4813
|
* @param {number} [pageSize] The number of items to return.
|
|
4669
4814
|
* @param {string} [fieldsSceneViewState] Comma-separated list of fields to return in response. An empty value returns no fields. `thumbnails` is only returned if explicitly requested.
|
|
4815
|
+
* @param {string} [filterId] Comma-separated list of IDs to filter on.
|
|
4670
4816
|
* @param {*} [options] Override http request option.
|
|
4671
4817
|
* @throws {RequiredError}
|
|
4672
4818
|
*/
|
|
4673
|
-
getSceneViewStates(id, pageCursor, pageSize, fieldsSceneViewState, options) {
|
|
4819
|
+
getSceneViewStates(id, pageCursor, pageSize, fieldsSceneViewState, filterId, options) {
|
|
4674
4820
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4675
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.getSceneViewStates(id, pageCursor, pageSize, fieldsSceneViewState, options);
|
|
4821
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getSceneViewStates(id, pageCursor, pageSize, fieldsSceneViewState, filterId, options);
|
|
4676
4822
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
4677
4823
|
});
|
|
4678
4824
|
},
|
|
@@ -4739,12 +4885,13 @@ export const SceneViewStatesApiFactory = function (configuration, basePath, axio
|
|
|
4739
4885
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
4740
4886
|
* @param {number} [pageSize] The number of items to return.
|
|
4741
4887
|
* @param {string} [fieldsSceneViewState] Comma-separated list of fields to return in response. An empty value returns no fields. `thumbnails` is only returned if explicitly requested.
|
|
4888
|
+
* @param {string} [filterId] Comma-separated list of IDs to filter on.
|
|
4742
4889
|
* @param {*} [options] Override http request option.
|
|
4743
4890
|
* @throws {RequiredError}
|
|
4744
4891
|
*/
|
|
4745
|
-
getSceneViewStates(id, pageCursor, pageSize, fieldsSceneViewState, options) {
|
|
4892
|
+
getSceneViewStates(id, pageCursor, pageSize, fieldsSceneViewState, filterId, options) {
|
|
4746
4893
|
return localVarFp
|
|
4747
|
-
.getSceneViewStates(id, pageCursor, pageSize, fieldsSceneViewState, options)
|
|
4894
|
+
.getSceneViewStates(id, pageCursor, pageSize, fieldsSceneViewState, filterId, options)
|
|
4748
4895
|
.then((request) => request(axios, basePath));
|
|
4749
4896
|
},
|
|
4750
4897
|
/**
|
|
@@ -4813,7 +4960,7 @@ export class SceneViewStatesApi extends BaseAPI {
|
|
|
4813
4960
|
*/
|
|
4814
4961
|
getSceneViewStates(requestParameters, options) {
|
|
4815
4962
|
return SceneViewStatesApiFp(this.configuration)
|
|
4816
|
-
.getSceneViewStates(requestParameters.id, requestParameters.pageCursor, requestParameters.pageSize, requestParameters.fieldsSceneViewState, options)
|
|
4963
|
+
.getSceneViewStates(requestParameters.id, requestParameters.pageCursor, requestParameters.pageSize, requestParameters.fieldsSceneViewState, requestParameters.filterId, options)
|
|
4817
4964
|
.then((request) => request(this.axios, this.basePath));
|
|
4818
4965
|
}
|
|
4819
4966
|
/**
|
|
@@ -4861,7 +5008,7 @@ export const SceneViewsApiAxiosParamCreator = function (configuration) {
|
|
|
4861
5008
|
// oauth required
|
|
4862
5009
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
4863
5010
|
localVarHeaderParameter['Content-Type'] = 'application/vnd.api+json';
|
|
4864
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
5011
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4865
5012
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4866
5013
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4867
5014
|
localVarRequestOptions.data = serializeDataIfNeeded(createSceneViewRequest, localVarRequestOptions, configuration);
|
|
@@ -4892,7 +5039,7 @@ export const SceneViewsApiAxiosParamCreator = function (configuration) {
|
|
|
4892
5039
|
// authentication OAuth2 required
|
|
4893
5040
|
// oauth required
|
|
4894
5041
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
4895
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
5042
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4896
5043
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4897
5044
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4898
5045
|
return {
|
|
@@ -4922,7 +5069,7 @@ export const SceneViewsApiAxiosParamCreator = function (configuration) {
|
|
|
4922
5069
|
// authentication OAuth2 required
|
|
4923
5070
|
// oauth required
|
|
4924
5071
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
4925
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
5072
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4926
5073
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4927
5074
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4928
5075
|
return {
|
|
@@ -4960,7 +5107,7 @@ export const SceneViewsApiAxiosParamCreator = function (configuration) {
|
|
|
4960
5107
|
if (pageSize !== undefined) {
|
|
4961
5108
|
localVarQueryParameter['page[size]'] = pageSize;
|
|
4962
5109
|
}
|
|
4963
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
5110
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4964
5111
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4965
5112
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
4966
5113
|
return {
|
|
@@ -5003,7 +5150,7 @@ export const SceneViewsApiAxiosParamCreator = function (configuration) {
|
|
|
5003
5150
|
if (include !== undefined) {
|
|
5004
5151
|
localVarQueryParameter['include'] = include;
|
|
5005
5152
|
}
|
|
5006
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
5153
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5007
5154
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5008
5155
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5009
5156
|
return {
|
|
@@ -5041,7 +5188,7 @@ export const SceneViewsApiAxiosParamCreator = function (configuration) {
|
|
|
5041
5188
|
if (width !== undefined) {
|
|
5042
5189
|
localVarQueryParameter['width'] = width;
|
|
5043
5190
|
}
|
|
5044
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
5191
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5045
5192
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5046
5193
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5047
5194
|
return {
|
|
@@ -5075,7 +5222,7 @@ export const SceneViewsApiAxiosParamCreator = function (configuration) {
|
|
|
5075
5222
|
// oauth required
|
|
5076
5223
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
5077
5224
|
localVarHeaderParameter['Content-Type'] = 'application/vnd.api+json';
|
|
5078
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
5225
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5079
5226
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5080
5227
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5081
5228
|
localVarRequestOptions.data = serializeDataIfNeeded(updateSceneViewRequest, localVarRequestOptions, configuration);
|
|
@@ -5404,7 +5551,7 @@ export const ScenesApiAxiosParamCreator = function (configuration) {
|
|
|
5404
5551
|
// oauth required
|
|
5405
5552
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
5406
5553
|
localVarHeaderParameter['Content-Type'] = 'application/vnd.api+json';
|
|
5407
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
5554
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5408
5555
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5409
5556
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5410
5557
|
localVarRequestOptions.data = serializeDataIfNeeded(createSceneRequest, localVarRequestOptions, configuration);
|
|
@@ -5435,7 +5582,7 @@ export const ScenesApiAxiosParamCreator = function (configuration) {
|
|
|
5435
5582
|
// authentication OAuth2 required
|
|
5436
5583
|
// oauth required
|
|
5437
5584
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
5438
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
5585
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5439
5586
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5440
5587
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5441
5588
|
return {
|
|
@@ -5465,7 +5612,7 @@ export const ScenesApiAxiosParamCreator = function (configuration) {
|
|
|
5465
5612
|
// authentication OAuth2 required
|
|
5466
5613
|
// oauth required
|
|
5467
5614
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
5468
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
5615
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5469
5616
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5470
5617
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5471
5618
|
return {
|
|
@@ -5499,7 +5646,7 @@ export const ScenesApiAxiosParamCreator = function (configuration) {
|
|
|
5499
5646
|
if (fieldsScene !== undefined) {
|
|
5500
5647
|
localVarQueryParameter['fields[scene]'] = fieldsScene;
|
|
5501
5648
|
}
|
|
5502
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
5649
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5503
5650
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5504
5651
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5505
5652
|
return {
|
|
@@ -5511,11 +5658,12 @@ export const ScenesApiAxiosParamCreator = function (configuration) {
|
|
|
5511
5658
|
* Get `scenes`.
|
|
5512
5659
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
5513
5660
|
* @param {number} [pageSize] The number of items to return.
|
|
5661
|
+
* @param {string} [filterName] Comma-separated list of names to filter on.
|
|
5514
5662
|
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
5515
5663
|
* @param {*} [options] Override http request option.
|
|
5516
5664
|
* @throws {RequiredError}
|
|
5517
5665
|
*/
|
|
5518
|
-
getScenes: (pageCursor, pageSize, filterSuppliedId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
5666
|
+
getScenes: (pageCursor, pageSize, filterName, filterSuppliedId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
5519
5667
|
const localVarPath = `/scenes`;
|
|
5520
5668
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
5521
5669
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -5535,10 +5683,13 @@ export const ScenesApiAxiosParamCreator = function (configuration) {
|
|
|
5535
5683
|
if (pageSize !== undefined) {
|
|
5536
5684
|
localVarQueryParameter['page[size]'] = pageSize;
|
|
5537
5685
|
}
|
|
5686
|
+
if (filterName !== undefined) {
|
|
5687
|
+
localVarQueryParameter['filter[name]'] = filterName;
|
|
5688
|
+
}
|
|
5538
5689
|
if (filterSuppliedId !== undefined) {
|
|
5539
5690
|
localVarQueryParameter['filter[suppliedId]'] = filterSuppliedId;
|
|
5540
5691
|
}
|
|
5541
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
5692
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5542
5693
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5543
5694
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5544
5695
|
return {
|
|
@@ -5576,7 +5727,7 @@ export const ScenesApiAxiosParamCreator = function (configuration) {
|
|
|
5576
5727
|
if (width !== undefined) {
|
|
5577
5728
|
localVarQueryParameter['width'] = width;
|
|
5578
5729
|
}
|
|
5579
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
5730
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5580
5731
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5581
5732
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5582
5733
|
return {
|
|
@@ -5610,7 +5761,7 @@ export const ScenesApiAxiosParamCreator = function (configuration) {
|
|
|
5610
5761
|
// oauth required
|
|
5611
5762
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
5612
5763
|
localVarHeaderParameter['Content-Type'] = 'application/vnd.api+json';
|
|
5613
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
5764
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5614
5765
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5615
5766
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5616
5767
|
localVarRequestOptions.data = serializeDataIfNeeded(updateSceneRequest, localVarRequestOptions, configuration);
|
|
@@ -5681,13 +5832,14 @@ export const ScenesApiFp = function (configuration) {
|
|
|
5681
5832
|
* Get `scenes`.
|
|
5682
5833
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
5683
5834
|
* @param {number} [pageSize] The number of items to return.
|
|
5835
|
+
* @param {string} [filterName] Comma-separated list of names to filter on.
|
|
5684
5836
|
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
5685
5837
|
* @param {*} [options] Override http request option.
|
|
5686
5838
|
* @throws {RequiredError}
|
|
5687
5839
|
*/
|
|
5688
|
-
getScenes(pageCursor, pageSize, filterSuppliedId, options) {
|
|
5840
|
+
getScenes(pageCursor, pageSize, filterName, filterSuppliedId, options) {
|
|
5689
5841
|
return __awaiter(this, void 0, void 0, function* () {
|
|
5690
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.getScenes(pageCursor, pageSize, filterSuppliedId, options);
|
|
5842
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getScenes(pageCursor, pageSize, filterName, filterSuppliedId, options);
|
|
5691
5843
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
5692
5844
|
});
|
|
5693
5845
|
},
|
|
@@ -5776,13 +5928,14 @@ export const ScenesApiFactory = function (configuration, basePath, axios) {
|
|
|
5776
5928
|
* Get `scenes`.
|
|
5777
5929
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
5778
5930
|
* @param {number} [pageSize] The number of items to return.
|
|
5931
|
+
* @param {string} [filterName] Comma-separated list of names to filter on.
|
|
5779
5932
|
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
5780
5933
|
* @param {*} [options] Override http request option.
|
|
5781
5934
|
* @throws {RequiredError}
|
|
5782
5935
|
*/
|
|
5783
|
-
getScenes(pageCursor, pageSize, filterSuppliedId, options) {
|
|
5936
|
+
getScenes(pageCursor, pageSize, filterName, filterSuppliedId, options) {
|
|
5784
5937
|
return localVarFp
|
|
5785
|
-
.getScenes(pageCursor, pageSize, filterSuppliedId, options)
|
|
5938
|
+
.getScenes(pageCursor, pageSize, filterName, filterSuppliedId, options)
|
|
5786
5939
|
.then((request) => request(axios, basePath));
|
|
5787
5940
|
},
|
|
5788
5941
|
/**
|
|
@@ -5876,7 +6029,7 @@ export class ScenesApi extends BaseAPI {
|
|
|
5876
6029
|
*/
|
|
5877
6030
|
getScenes(requestParameters = {}, options) {
|
|
5878
6031
|
return ScenesApiFp(this.configuration)
|
|
5879
|
-
.getScenes(requestParameters.pageCursor, requestParameters.pageSize, requestParameters.filterSuppliedId, options)
|
|
6032
|
+
.getScenes(requestParameters.pageCursor, requestParameters.pageSize, requestParameters.filterName, requestParameters.filterSuppliedId, options)
|
|
5880
6033
|
.then((request) => request(this.axios, this.basePath));
|
|
5881
6034
|
}
|
|
5882
6035
|
/**
|
|
@@ -5936,7 +6089,7 @@ export const StreamKeysApiAxiosParamCreator = function (configuration) {
|
|
|
5936
6089
|
// oauth required
|
|
5937
6090
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
5938
6091
|
localVarHeaderParameter['Content-Type'] = 'application/vnd.api+json';
|
|
5939
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
6092
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5940
6093
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5941
6094
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5942
6095
|
localVarRequestOptions.data = serializeDataIfNeeded(createStreamKeyRequest, localVarRequestOptions, configuration);
|
|
@@ -5967,7 +6120,7 @@ export const StreamKeysApiAxiosParamCreator = function (configuration) {
|
|
|
5967
6120
|
// authentication OAuth2 required
|
|
5968
6121
|
// oauth required
|
|
5969
6122
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
5970
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
6123
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
5971
6124
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
5972
6125
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
5973
6126
|
return {
|
|
@@ -6006,7 +6159,7 @@ export const StreamKeysApiAxiosParamCreator = function (configuration) {
|
|
|
6006
6159
|
if (filterKey !== undefined) {
|
|
6007
6160
|
localVarQueryParameter['filter[key]'] = filterKey;
|
|
6008
6161
|
}
|
|
6009
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
6162
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6010
6163
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6011
6164
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6012
6165
|
return {
|
|
@@ -6182,7 +6335,7 @@ export const TranslationInspectionsApiAxiosParamCreator = function (configuratio
|
|
|
6182
6335
|
// oauth required
|
|
6183
6336
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
6184
6337
|
localVarHeaderParameter['Content-Type'] = 'application/vnd.api+json';
|
|
6185
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
6338
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6186
6339
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6187
6340
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6188
6341
|
localVarRequestOptions.data = serializeDataIfNeeded(createTranslationInspectionRequest, localVarRequestOptions, configuration);
|
|
@@ -6213,7 +6366,7 @@ export const TranslationInspectionsApiAxiosParamCreator = function (configuratio
|
|
|
6213
6366
|
// authentication OAuth2 required
|
|
6214
6367
|
// oauth required
|
|
6215
6368
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
6216
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
6369
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6217
6370
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6218
6371
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6219
6372
|
return {
|
|
@@ -6243,7 +6396,7 @@ export const TranslationInspectionsApiAxiosParamCreator = function (configuratio
|
|
|
6243
6396
|
// authentication OAuth2 required
|
|
6244
6397
|
// oauth required
|
|
6245
6398
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
6246
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
6399
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6247
6400
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6248
6401
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6249
6402
|
return {
|
|
@@ -6282,7 +6435,7 @@ export const TranslationInspectionsApiAxiosParamCreator = function (configuratio
|
|
|
6282
6435
|
if (filterStatus !== undefined) {
|
|
6283
6436
|
localVarQueryParameter['filter[status]'] = filterStatus;
|
|
6284
6437
|
}
|
|
6285
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
6438
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6286
6439
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6287
6440
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6288
6441
|
return {
|
|
@@ -6491,7 +6644,7 @@ export const WebhookSubscriptionsApiAxiosParamCreator = function (configuration)
|
|
|
6491
6644
|
// oauth required
|
|
6492
6645
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
6493
6646
|
localVarHeaderParameter['Content-Type'] = 'application/vnd.api+json';
|
|
6494
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
6647
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6495
6648
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6496
6649
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6497
6650
|
localVarRequestOptions.data = serializeDataIfNeeded(createWebhookSubscriptionRequest, localVarRequestOptions, configuration);
|
|
@@ -6522,7 +6675,7 @@ export const WebhookSubscriptionsApiAxiosParamCreator = function (configuration)
|
|
|
6522
6675
|
// authentication OAuth2 required
|
|
6523
6676
|
// oauth required
|
|
6524
6677
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
6525
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
6678
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6526
6679
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6527
6680
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6528
6681
|
return {
|
|
@@ -6552,7 +6705,7 @@ export const WebhookSubscriptionsApiAxiosParamCreator = function (configuration)
|
|
|
6552
6705
|
// authentication OAuth2 required
|
|
6553
6706
|
// oauth required
|
|
6554
6707
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
6555
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
6708
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6556
6709
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6557
6710
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6558
6711
|
return {
|
|
@@ -6587,7 +6740,7 @@ export const WebhookSubscriptionsApiAxiosParamCreator = function (configuration)
|
|
|
6587
6740
|
if (pageSize !== undefined) {
|
|
6588
6741
|
localVarQueryParameter['page[size]'] = pageSize;
|
|
6589
6742
|
}
|
|
6590
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
6743
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6591
6744
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6592
6745
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6593
6746
|
return {
|
|
@@ -6621,7 +6774,7 @@ export const WebhookSubscriptionsApiAxiosParamCreator = function (configuration)
|
|
|
6621
6774
|
// oauth required
|
|
6622
6775
|
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
6623
6776
|
localVarHeaderParameter['Content-Type'] = 'application/vnd.api+json';
|
|
6624
|
-
setSearchParams(localVarUrlObj, localVarQueryParameter
|
|
6777
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6625
6778
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6626
6779
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6627
6780
|
localVarRequestOptions.data = serializeDataIfNeeded(updateWebhookSubscriptionRequest, localVarRequestOptions, configuration);
|