@vertexvis/api-client-node 0.22.2 → 0.22.4
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 +1366 -169
- package/dist/cjs/api.js +695 -15
- package/dist/cjs/client/helpers/parts.js +1 -1
- package/dist/cjs/client/helpers/queued-jobs.js +3 -2
- package/dist/cjs/client/version.d.ts +1 -1
- package/dist/cjs/client/version.js +1 -1
- package/dist/esm/api.d.ts +1366 -169
- package/dist/esm/api.js +684 -12
- package/dist/esm/client/helpers/parts.js +1 -1
- package/dist/esm/client/helpers/queued-jobs.js +3 -2
- package/dist/esm/client/version.d.ts +1 -1
- package/dist/esm/client/version.js +1 -1
- package/package.json +2 -2
package/dist/cjs/api.d.ts
CHANGED
|
@@ -405,6 +405,12 @@ export interface ApplicationDataAttributes {
|
|
|
405
405
|
* @memberof ApplicationDataAttributes
|
|
406
406
|
*/
|
|
407
407
|
scopes: Array<string>;
|
|
408
|
+
/**
|
|
409
|
+
*
|
|
410
|
+
* @type {Array<string>}
|
|
411
|
+
* @memberof ApplicationDataAttributes
|
|
412
|
+
*/
|
|
413
|
+
redirectUris: Array<string>;
|
|
408
414
|
}
|
|
409
415
|
/**
|
|
410
416
|
*
|
|
@@ -1306,6 +1312,108 @@ export interface CreateSceneAlterationRequestDataAttributes {
|
|
|
1306
1312
|
*/
|
|
1307
1313
|
alterations: Array<SceneOperation>;
|
|
1308
1314
|
}
|
|
1315
|
+
/**
|
|
1316
|
+
*
|
|
1317
|
+
* @export
|
|
1318
|
+
* @interface CreateSceneAnnotationRequest
|
|
1319
|
+
*/
|
|
1320
|
+
export interface CreateSceneAnnotationRequest {
|
|
1321
|
+
/**
|
|
1322
|
+
*
|
|
1323
|
+
* @type {CreateSceneAnnotationRequestData}
|
|
1324
|
+
* @memberof CreateSceneAnnotationRequest
|
|
1325
|
+
*/
|
|
1326
|
+
data: CreateSceneAnnotationRequestData;
|
|
1327
|
+
}
|
|
1328
|
+
/**
|
|
1329
|
+
*
|
|
1330
|
+
* @export
|
|
1331
|
+
* @interface CreateSceneAnnotationRequestData
|
|
1332
|
+
*/
|
|
1333
|
+
export interface CreateSceneAnnotationRequestData {
|
|
1334
|
+
/**
|
|
1335
|
+
* Resource object type.
|
|
1336
|
+
* @type {string}
|
|
1337
|
+
* @memberof CreateSceneAnnotationRequestData
|
|
1338
|
+
*/
|
|
1339
|
+
type: string;
|
|
1340
|
+
/**
|
|
1341
|
+
*
|
|
1342
|
+
* @type {CreateSceneAnnotationRequestDataAttributes}
|
|
1343
|
+
* @memberof CreateSceneAnnotationRequestData
|
|
1344
|
+
*/
|
|
1345
|
+
attributes: CreateSceneAnnotationRequestDataAttributes;
|
|
1346
|
+
}
|
|
1347
|
+
/**
|
|
1348
|
+
*
|
|
1349
|
+
* @export
|
|
1350
|
+
* @interface CreateSceneAnnotationRequestDataAttributes
|
|
1351
|
+
*/
|
|
1352
|
+
export interface CreateSceneAnnotationRequestDataAttributes {
|
|
1353
|
+
/**
|
|
1354
|
+
* A JSON string that describes the annotation type and its data. JSON data is limited to 16kb.
|
|
1355
|
+
* @type {string}
|
|
1356
|
+
* @memberof CreateSceneAnnotationRequestDataAttributes
|
|
1357
|
+
*/
|
|
1358
|
+
data: string;
|
|
1359
|
+
/**
|
|
1360
|
+
* A customer provided ID used for correlation.
|
|
1361
|
+
* @type {string}
|
|
1362
|
+
* @memberof CreateSceneAnnotationRequestDataAttributes
|
|
1363
|
+
*/
|
|
1364
|
+
suppliedId?: string;
|
|
1365
|
+
}
|
|
1366
|
+
/**
|
|
1367
|
+
*
|
|
1368
|
+
* @export
|
|
1369
|
+
* @interface CreateSceneAnnotationSetRequest
|
|
1370
|
+
*/
|
|
1371
|
+
export interface CreateSceneAnnotationSetRequest {
|
|
1372
|
+
/**
|
|
1373
|
+
*
|
|
1374
|
+
* @type {CreateSceneAnnotationSetRequestData}
|
|
1375
|
+
* @memberof CreateSceneAnnotationSetRequest
|
|
1376
|
+
*/
|
|
1377
|
+
data: CreateSceneAnnotationSetRequestData;
|
|
1378
|
+
}
|
|
1379
|
+
/**
|
|
1380
|
+
*
|
|
1381
|
+
* @export
|
|
1382
|
+
* @interface CreateSceneAnnotationSetRequestData
|
|
1383
|
+
*/
|
|
1384
|
+
export interface CreateSceneAnnotationSetRequestData {
|
|
1385
|
+
/**
|
|
1386
|
+
* Resource object type.
|
|
1387
|
+
* @type {string}
|
|
1388
|
+
* @memberof CreateSceneAnnotationSetRequestData
|
|
1389
|
+
*/
|
|
1390
|
+
type: string;
|
|
1391
|
+
/**
|
|
1392
|
+
*
|
|
1393
|
+
* @type {CreateSceneAnnotationSetRequestDataAttributes}
|
|
1394
|
+
* @memberof CreateSceneAnnotationSetRequestData
|
|
1395
|
+
*/
|
|
1396
|
+
attributes: CreateSceneAnnotationSetRequestDataAttributes;
|
|
1397
|
+
}
|
|
1398
|
+
/**
|
|
1399
|
+
*
|
|
1400
|
+
* @export
|
|
1401
|
+
* @interface CreateSceneAnnotationSetRequestDataAttributes
|
|
1402
|
+
*/
|
|
1403
|
+
export interface CreateSceneAnnotationSetRequestDataAttributes {
|
|
1404
|
+
/**
|
|
1405
|
+
*
|
|
1406
|
+
* @type {string}
|
|
1407
|
+
* @memberof CreateSceneAnnotationSetRequestDataAttributes
|
|
1408
|
+
*/
|
|
1409
|
+
name?: string;
|
|
1410
|
+
/**
|
|
1411
|
+
* A customer provided ID used for correlation.
|
|
1412
|
+
* @type {string}
|
|
1413
|
+
* @memberof CreateSceneAnnotationSetRequestDataAttributes
|
|
1414
|
+
*/
|
|
1415
|
+
suppliedId?: string;
|
|
1416
|
+
}
|
|
1309
1417
|
/**
|
|
1310
1418
|
*
|
|
1311
1419
|
* @export
|
|
@@ -1619,7 +1727,7 @@ export interface CreateSceneRequestDataAttributes {
|
|
|
1619
1727
|
*/
|
|
1620
1728
|
worldOrientation?: Orientation;
|
|
1621
1729
|
/**
|
|
1622
|
-
*
|
|
1730
|
+
* User supplied key-value pairs for a scene. You can supply up to 50 entries, with key names limited to 64 characters and values limited to 256 characters.
|
|
1623
1731
|
* @type {{ [key: string]: string; }}
|
|
1624
1732
|
* @memberof CreateSceneRequestDataAttributes
|
|
1625
1733
|
*/
|
|
@@ -1640,6 +1748,19 @@ export interface CreateSceneRequestDataRelationships {
|
|
|
1640
1748
|
*/
|
|
1641
1749
|
source: SceneRelationship;
|
|
1642
1750
|
}
|
|
1751
|
+
/**
|
|
1752
|
+
* An operation to perform on a Scene.
|
|
1753
|
+
* @export
|
|
1754
|
+
* @interface CreateSceneSyncRequest
|
|
1755
|
+
*/
|
|
1756
|
+
export interface CreateSceneSyncRequest {
|
|
1757
|
+
/**
|
|
1758
|
+
*
|
|
1759
|
+
* @type {UpdateItemToDefaultRenditionOperation}
|
|
1760
|
+
* @memberof CreateSceneSyncRequest
|
|
1761
|
+
*/
|
|
1762
|
+
operation: UpdateItemToDefaultRenditionOperation;
|
|
1763
|
+
}
|
|
1643
1764
|
/**
|
|
1644
1765
|
*
|
|
1645
1766
|
* @export
|
|
@@ -4130,6 +4251,176 @@ export interface SceneAlterationList {
|
|
|
4130
4251
|
[key: string]: Link;
|
|
4131
4252
|
};
|
|
4132
4253
|
}
|
|
4254
|
+
/**
|
|
4255
|
+
*
|
|
4256
|
+
* @export
|
|
4257
|
+
* @interface SceneAnnotation
|
|
4258
|
+
*/
|
|
4259
|
+
export interface SceneAnnotation {
|
|
4260
|
+
/**
|
|
4261
|
+
*
|
|
4262
|
+
* @type {SceneAnnotationData}
|
|
4263
|
+
* @memberof SceneAnnotation
|
|
4264
|
+
*/
|
|
4265
|
+
data: SceneAnnotationData;
|
|
4266
|
+
/**
|
|
4267
|
+
*
|
|
4268
|
+
* @type {{ [key: string]: Link; }}
|
|
4269
|
+
* @memberof SceneAnnotation
|
|
4270
|
+
*/
|
|
4271
|
+
links?: {
|
|
4272
|
+
[key: string]: Link;
|
|
4273
|
+
};
|
|
4274
|
+
}
|
|
4275
|
+
/**
|
|
4276
|
+
*
|
|
4277
|
+
* @export
|
|
4278
|
+
* @interface SceneAnnotationData
|
|
4279
|
+
*/
|
|
4280
|
+
export interface SceneAnnotationData {
|
|
4281
|
+
/**
|
|
4282
|
+
*
|
|
4283
|
+
* @type {string}
|
|
4284
|
+
* @memberof SceneAnnotationData
|
|
4285
|
+
*/
|
|
4286
|
+
type: string;
|
|
4287
|
+
/**
|
|
4288
|
+
* ID of the resource.
|
|
4289
|
+
* @type {string}
|
|
4290
|
+
* @memberof SceneAnnotationData
|
|
4291
|
+
*/
|
|
4292
|
+
id: string;
|
|
4293
|
+
/**
|
|
4294
|
+
*
|
|
4295
|
+
* @type {SceneAnnotationDataAttributes}
|
|
4296
|
+
* @memberof SceneAnnotationData
|
|
4297
|
+
*/
|
|
4298
|
+
attributes: SceneAnnotationDataAttributes;
|
|
4299
|
+
/**
|
|
4300
|
+
*
|
|
4301
|
+
* @type {{ [key: string]: Link; }}
|
|
4302
|
+
* @memberof SceneAnnotationData
|
|
4303
|
+
*/
|
|
4304
|
+
links?: {
|
|
4305
|
+
[key: string]: Link;
|
|
4306
|
+
};
|
|
4307
|
+
}
|
|
4308
|
+
/**
|
|
4309
|
+
*
|
|
4310
|
+
* @export
|
|
4311
|
+
* @interface SceneAnnotationDataAttributes
|
|
4312
|
+
*/
|
|
4313
|
+
export interface SceneAnnotationDataAttributes {
|
|
4314
|
+
/**
|
|
4315
|
+
*
|
|
4316
|
+
* @type {string}
|
|
4317
|
+
* @memberof SceneAnnotationDataAttributes
|
|
4318
|
+
*/
|
|
4319
|
+
createdAt: string;
|
|
4320
|
+
/**
|
|
4321
|
+
*
|
|
4322
|
+
* @type {string}
|
|
4323
|
+
* @memberof SceneAnnotationDataAttributes
|
|
4324
|
+
*/
|
|
4325
|
+
modifiedAt: string;
|
|
4326
|
+
/**
|
|
4327
|
+
* A JSON string that describes the annotation type and its data. JSON data is limited to 16kb.
|
|
4328
|
+
* @type {string}
|
|
4329
|
+
* @memberof SceneAnnotationDataAttributes
|
|
4330
|
+
*/
|
|
4331
|
+
data: string;
|
|
4332
|
+
/**
|
|
4333
|
+
*
|
|
4334
|
+
* @type {string}
|
|
4335
|
+
* @memberof SceneAnnotationDataAttributes
|
|
4336
|
+
*/
|
|
4337
|
+
suppliedId?: string;
|
|
4338
|
+
}
|
|
4339
|
+
/**
|
|
4340
|
+
*
|
|
4341
|
+
* @export
|
|
4342
|
+
* @interface SceneAnnotationSet
|
|
4343
|
+
*/
|
|
4344
|
+
export interface SceneAnnotationSet {
|
|
4345
|
+
/**
|
|
4346
|
+
*
|
|
4347
|
+
* @type {SceneAnnotationSetData}
|
|
4348
|
+
* @memberof SceneAnnotationSet
|
|
4349
|
+
*/
|
|
4350
|
+
data: SceneAnnotationSetData;
|
|
4351
|
+
/**
|
|
4352
|
+
*
|
|
4353
|
+
* @type {{ [key: string]: Link; }}
|
|
4354
|
+
* @memberof SceneAnnotationSet
|
|
4355
|
+
*/
|
|
4356
|
+
links?: {
|
|
4357
|
+
[key: string]: Link;
|
|
4358
|
+
};
|
|
4359
|
+
}
|
|
4360
|
+
/**
|
|
4361
|
+
*
|
|
4362
|
+
* @export
|
|
4363
|
+
* @interface SceneAnnotationSetData
|
|
4364
|
+
*/
|
|
4365
|
+
export interface SceneAnnotationSetData {
|
|
4366
|
+
/**
|
|
4367
|
+
*
|
|
4368
|
+
* @type {string}
|
|
4369
|
+
* @memberof SceneAnnotationSetData
|
|
4370
|
+
*/
|
|
4371
|
+
type: string;
|
|
4372
|
+
/**
|
|
4373
|
+
* ID of the resource.
|
|
4374
|
+
* @type {string}
|
|
4375
|
+
* @memberof SceneAnnotationSetData
|
|
4376
|
+
*/
|
|
4377
|
+
id: string;
|
|
4378
|
+
/**
|
|
4379
|
+
*
|
|
4380
|
+
* @type {SceneAnnotationSetDataAttributes}
|
|
4381
|
+
* @memberof SceneAnnotationSetData
|
|
4382
|
+
*/
|
|
4383
|
+
attributes: SceneAnnotationSetDataAttributes;
|
|
4384
|
+
/**
|
|
4385
|
+
*
|
|
4386
|
+
* @type {{ [key: string]: Link; }}
|
|
4387
|
+
* @memberof SceneAnnotationSetData
|
|
4388
|
+
*/
|
|
4389
|
+
links?: {
|
|
4390
|
+
[key: string]: Link;
|
|
4391
|
+
};
|
|
4392
|
+
}
|
|
4393
|
+
/**
|
|
4394
|
+
*
|
|
4395
|
+
* @export
|
|
4396
|
+
* @interface SceneAnnotationSetDataAttributes
|
|
4397
|
+
*/
|
|
4398
|
+
export interface SceneAnnotationSetDataAttributes {
|
|
4399
|
+
/**
|
|
4400
|
+
*
|
|
4401
|
+
* @type {string}
|
|
4402
|
+
* @memberof SceneAnnotationSetDataAttributes
|
|
4403
|
+
*/
|
|
4404
|
+
createdAt: string;
|
|
4405
|
+
/**
|
|
4406
|
+
*
|
|
4407
|
+
* @type {string}
|
|
4408
|
+
* @memberof SceneAnnotationSetDataAttributes
|
|
4409
|
+
*/
|
|
4410
|
+
modifiedAt: string;
|
|
4411
|
+
/**
|
|
4412
|
+
*
|
|
4413
|
+
* @type {string}
|
|
4414
|
+
* @memberof SceneAnnotationSetDataAttributes
|
|
4415
|
+
*/
|
|
4416
|
+
name?: string;
|
|
4417
|
+
/**
|
|
4418
|
+
*
|
|
4419
|
+
* @type {string}
|
|
4420
|
+
* @memberof SceneAnnotationSetDataAttributes
|
|
4421
|
+
*/
|
|
4422
|
+
suppliedId?: string;
|
|
4423
|
+
}
|
|
4133
4424
|
/**
|
|
4134
4425
|
*
|
|
4135
4426
|
* @export
|
|
@@ -4224,7 +4515,7 @@ export interface SceneDataAttributes {
|
|
|
4224
4515
|
*/
|
|
4225
4516
|
sceneItemCount?: number;
|
|
4226
4517
|
/**
|
|
4227
|
-
*
|
|
4518
|
+
* User supplied key-value pairs for a scene. You can supply up to 50 entries, with key names limited to 64 characters and values limited to 256 characters.
|
|
4228
4519
|
* @type {{ [key: string]: string; }}
|
|
4229
4520
|
* @memberof SceneDataAttributes
|
|
4230
4521
|
*/
|
|
@@ -4677,19 +4968,19 @@ export declare type SceneRelationshipDataTypeEnum = (typeof SceneRelationshipDat
|
|
|
4677
4968
|
/**
|
|
4678
4969
|
*
|
|
4679
4970
|
* @export
|
|
4680
|
-
* @interface
|
|
4971
|
+
* @interface SceneSync
|
|
4681
4972
|
*/
|
|
4682
|
-
export interface
|
|
4973
|
+
export interface SceneSync {
|
|
4683
4974
|
/**
|
|
4684
4975
|
*
|
|
4685
|
-
* @type {
|
|
4686
|
-
* @memberof
|
|
4976
|
+
* @type {SceneSyncData}
|
|
4977
|
+
* @memberof SceneSync
|
|
4687
4978
|
*/
|
|
4688
|
-
data:
|
|
4979
|
+
data: SceneSyncData;
|
|
4689
4980
|
/**
|
|
4690
4981
|
*
|
|
4691
4982
|
* @type {{ [key: string]: Link; }}
|
|
4692
|
-
* @memberof
|
|
4983
|
+
* @memberof SceneSync
|
|
4693
4984
|
*/
|
|
4694
4985
|
links?: {
|
|
4695
4986
|
[key: string]: Link;
|
|
@@ -4698,83 +4989,266 @@ export interface SceneView {
|
|
|
4698
4989
|
/**
|
|
4699
4990
|
*
|
|
4700
4991
|
* @export
|
|
4701
|
-
* @interface
|
|
4992
|
+
* @interface SceneSyncData
|
|
4702
4993
|
*/
|
|
4703
|
-
export interface
|
|
4994
|
+
export interface SceneSyncData {
|
|
4704
4995
|
/**
|
|
4705
4996
|
*
|
|
4706
4997
|
* @type {string}
|
|
4707
|
-
* @memberof
|
|
4998
|
+
* @memberof SceneSyncData
|
|
4708
4999
|
*/
|
|
4709
5000
|
type: string;
|
|
4710
5001
|
/**
|
|
4711
5002
|
* ID of the resource.
|
|
4712
5003
|
* @type {string}
|
|
4713
|
-
* @memberof
|
|
5004
|
+
* @memberof SceneSyncData
|
|
4714
5005
|
*/
|
|
4715
5006
|
id: string;
|
|
4716
5007
|
/**
|
|
4717
5008
|
*
|
|
4718
|
-
* @type {
|
|
4719
|
-
* @memberof
|
|
5009
|
+
* @type {SceneSyncDataAttributes}
|
|
5010
|
+
* @memberof SceneSyncData
|
|
4720
5011
|
*/
|
|
4721
|
-
attributes:
|
|
5012
|
+
attributes: SceneSyncDataAttributes;
|
|
4722
5013
|
/**
|
|
4723
5014
|
*
|
|
4724
|
-
* @type {
|
|
4725
|
-
* @memberof
|
|
5015
|
+
* @type {{ [key: string]: Link; }}
|
|
5016
|
+
* @memberof SceneSyncData
|
|
4726
5017
|
*/
|
|
4727
|
-
|
|
5018
|
+
links?: {
|
|
5019
|
+
[key: string]: Link;
|
|
5020
|
+
};
|
|
4728
5021
|
}
|
|
4729
5022
|
/**
|
|
4730
5023
|
*
|
|
4731
5024
|
* @export
|
|
4732
|
-
* @interface
|
|
5025
|
+
* @interface SceneSyncDataAttributes
|
|
4733
5026
|
*/
|
|
4734
|
-
export interface
|
|
4735
|
-
/**
|
|
4736
|
-
*
|
|
4737
|
-
* @type {PerspectiveCamera | OrthographicCamera}
|
|
4738
|
-
* @memberof SceneViewDataAttributes
|
|
4739
|
-
*/
|
|
4740
|
-
camera: PerspectiveCamera | OrthographicCamera;
|
|
5027
|
+
export interface SceneSyncDataAttributes {
|
|
4741
5028
|
/**
|
|
4742
5029
|
*
|
|
4743
5030
|
* @type {string}
|
|
4744
|
-
* @memberof
|
|
5031
|
+
* @memberof SceneSyncDataAttributes
|
|
4745
5032
|
*/
|
|
4746
5033
|
created: string;
|
|
4747
5034
|
/**
|
|
4748
5035
|
*
|
|
4749
|
-
* @type {
|
|
4750
|
-
* @memberof
|
|
5036
|
+
* @type {string}
|
|
5037
|
+
* @memberof SceneSyncDataAttributes
|
|
4751
5038
|
*/
|
|
4752
|
-
|
|
5039
|
+
completedAt: string;
|
|
4753
5040
|
/**
|
|
4754
5041
|
*
|
|
4755
|
-
* @type {
|
|
4756
|
-
* @memberof
|
|
4757
|
-
*/
|
|
4758
|
-
worldOrientation?: Orientation;
|
|
4759
|
-
/**
|
|
4760
|
-
* Whether to exclude non-visible items in the view
|
|
4761
|
-
* @type {boolean}
|
|
4762
|
-
* @memberof SceneViewDataAttributes
|
|
5042
|
+
* @type {string}
|
|
5043
|
+
* @memberof SceneSyncDataAttributes
|
|
4763
5044
|
*/
|
|
4764
|
-
|
|
5045
|
+
status: string;
|
|
4765
5046
|
}
|
|
4766
5047
|
/**
|
|
4767
5048
|
*
|
|
4768
5049
|
* @export
|
|
4769
|
-
* @interface
|
|
5050
|
+
* @interface SceneSyncItemResultData
|
|
4770
5051
|
*/
|
|
4771
|
-
export interface
|
|
5052
|
+
export interface SceneSyncItemResultData {
|
|
4772
5053
|
/**
|
|
4773
5054
|
*
|
|
4774
|
-
* @type {
|
|
4775
|
-
* @memberof
|
|
5055
|
+
* @type {string}
|
|
5056
|
+
* @memberof SceneSyncItemResultData
|
|
4776
5057
|
*/
|
|
4777
|
-
|
|
5058
|
+
type: string;
|
|
5059
|
+
/**
|
|
5060
|
+
* ID of the resource.
|
|
5061
|
+
* @type {string}
|
|
5062
|
+
* @memberof SceneSyncItemResultData
|
|
5063
|
+
*/
|
|
5064
|
+
id: string;
|
|
5065
|
+
/**
|
|
5066
|
+
*
|
|
5067
|
+
* @type {SceneSyncItemResultDataAttributes}
|
|
5068
|
+
* @memberof SceneSyncItemResultData
|
|
5069
|
+
*/
|
|
5070
|
+
attributes: SceneSyncItemResultDataAttributes;
|
|
5071
|
+
/**
|
|
5072
|
+
*
|
|
5073
|
+
* @type {{ [key: string]: Link; }}
|
|
5074
|
+
* @memberof SceneSyncItemResultData
|
|
5075
|
+
*/
|
|
5076
|
+
links?: {
|
|
5077
|
+
[key: string]: Link;
|
|
5078
|
+
};
|
|
5079
|
+
/**
|
|
5080
|
+
*
|
|
5081
|
+
* @type {SceneSyncItemResultDataRelationships}
|
|
5082
|
+
* @memberof SceneSyncItemResultData
|
|
5083
|
+
*/
|
|
5084
|
+
relationships: SceneSyncItemResultDataRelationships;
|
|
5085
|
+
}
|
|
5086
|
+
/**
|
|
5087
|
+
*
|
|
5088
|
+
* @export
|
|
5089
|
+
* @interface SceneSyncItemResultDataAttributes
|
|
5090
|
+
*/
|
|
5091
|
+
export interface SceneSyncItemResultDataAttributes {
|
|
5092
|
+
/**
|
|
5093
|
+
*
|
|
5094
|
+
* @type {string}
|
|
5095
|
+
* @memberof SceneSyncItemResultDataAttributes
|
|
5096
|
+
*/
|
|
5097
|
+
status: string;
|
|
5098
|
+
/**
|
|
5099
|
+
*
|
|
5100
|
+
* @type {ApiError}
|
|
5101
|
+
* @memberof SceneSyncItemResultDataAttributes
|
|
5102
|
+
*/
|
|
5103
|
+
error?: ApiError;
|
|
5104
|
+
}
|
|
5105
|
+
/**
|
|
5106
|
+
*
|
|
5107
|
+
* @export
|
|
5108
|
+
* @interface SceneSyncItemResultDataRelationships
|
|
5109
|
+
*/
|
|
5110
|
+
export interface SceneSyncItemResultDataRelationships {
|
|
5111
|
+
/**
|
|
5112
|
+
*
|
|
5113
|
+
* @type {SceneRelationship}
|
|
5114
|
+
* @memberof SceneSyncItemResultDataRelationships
|
|
5115
|
+
*/
|
|
5116
|
+
scene: SceneRelationship;
|
|
5117
|
+
/**
|
|
5118
|
+
*
|
|
5119
|
+
* @type {SceneItemRelationship}
|
|
5120
|
+
* @memberof SceneSyncItemResultDataRelationships
|
|
5121
|
+
*/
|
|
5122
|
+
sceneItem: SceneItemRelationship;
|
|
5123
|
+
}
|
|
5124
|
+
/**
|
|
5125
|
+
*
|
|
5126
|
+
* @export
|
|
5127
|
+
* @interface SceneSyncItemResultsList
|
|
5128
|
+
*/
|
|
5129
|
+
export interface SceneSyncItemResultsList {
|
|
5130
|
+
/**
|
|
5131
|
+
*
|
|
5132
|
+
* @type {Array<SceneSyncItemResultData>}
|
|
5133
|
+
* @memberof SceneSyncItemResultsList
|
|
5134
|
+
*/
|
|
5135
|
+
data: Array<SceneSyncItemResultData>;
|
|
5136
|
+
/**
|
|
5137
|
+
*
|
|
5138
|
+
* @type {{ [key: string]: Link; }}
|
|
5139
|
+
* @memberof SceneSyncItemResultsList
|
|
5140
|
+
*/
|
|
5141
|
+
links: {
|
|
5142
|
+
[key: string]: Link;
|
|
5143
|
+
};
|
|
5144
|
+
/**
|
|
5145
|
+
*
|
|
5146
|
+
* @type {Array<SceneItemData>}
|
|
5147
|
+
* @memberof SceneSyncItemResultsList
|
|
5148
|
+
*/
|
|
5149
|
+
included: Array<SceneItemData>;
|
|
5150
|
+
}
|
|
5151
|
+
/**
|
|
5152
|
+
*
|
|
5153
|
+
* @export
|
|
5154
|
+
* @interface SceneView
|
|
5155
|
+
*/
|
|
5156
|
+
export interface SceneView {
|
|
5157
|
+
/**
|
|
5158
|
+
*
|
|
5159
|
+
* @type {SceneViewData}
|
|
5160
|
+
* @memberof SceneView
|
|
5161
|
+
*/
|
|
5162
|
+
data: SceneViewData;
|
|
5163
|
+
/**
|
|
5164
|
+
*
|
|
5165
|
+
* @type {{ [key: string]: Link; }}
|
|
5166
|
+
* @memberof SceneView
|
|
5167
|
+
*/
|
|
5168
|
+
links?: {
|
|
5169
|
+
[key: string]: Link;
|
|
5170
|
+
};
|
|
5171
|
+
}
|
|
5172
|
+
/**
|
|
5173
|
+
*
|
|
5174
|
+
* @export
|
|
5175
|
+
* @interface SceneViewData
|
|
5176
|
+
*/
|
|
5177
|
+
export interface SceneViewData {
|
|
5178
|
+
/**
|
|
5179
|
+
*
|
|
5180
|
+
* @type {string}
|
|
5181
|
+
* @memberof SceneViewData
|
|
5182
|
+
*/
|
|
5183
|
+
type: string;
|
|
5184
|
+
/**
|
|
5185
|
+
* ID of the resource.
|
|
5186
|
+
* @type {string}
|
|
5187
|
+
* @memberof SceneViewData
|
|
5188
|
+
*/
|
|
5189
|
+
id: string;
|
|
5190
|
+
/**
|
|
5191
|
+
*
|
|
5192
|
+
* @type {SceneViewDataAttributes}
|
|
5193
|
+
* @memberof SceneViewData
|
|
5194
|
+
*/
|
|
5195
|
+
attributes: SceneViewDataAttributes;
|
|
5196
|
+
/**
|
|
5197
|
+
*
|
|
5198
|
+
* @type {SceneViewDataRelationships}
|
|
5199
|
+
* @memberof SceneViewData
|
|
5200
|
+
*/
|
|
5201
|
+
relationships: SceneViewDataRelationships;
|
|
5202
|
+
}
|
|
5203
|
+
/**
|
|
5204
|
+
*
|
|
5205
|
+
* @export
|
|
5206
|
+
* @interface SceneViewDataAttributes
|
|
5207
|
+
*/
|
|
5208
|
+
export interface SceneViewDataAttributes {
|
|
5209
|
+
/**
|
|
5210
|
+
*
|
|
5211
|
+
* @type {PerspectiveCamera | OrthographicCamera}
|
|
5212
|
+
* @memberof SceneViewDataAttributes
|
|
5213
|
+
*/
|
|
5214
|
+
camera: PerspectiveCamera | OrthographicCamera;
|
|
5215
|
+
/**
|
|
5216
|
+
*
|
|
5217
|
+
* @type {string}
|
|
5218
|
+
* @memberof SceneViewDataAttributes
|
|
5219
|
+
*/
|
|
5220
|
+
created: string;
|
|
5221
|
+
/**
|
|
5222
|
+
*
|
|
5223
|
+
* @type {CrossSectioning}
|
|
5224
|
+
* @memberof SceneViewDataAttributes
|
|
5225
|
+
*/
|
|
5226
|
+
crossSectioning?: CrossSectioning | null;
|
|
5227
|
+
/**
|
|
5228
|
+
*
|
|
5229
|
+
* @type {Orientation}
|
|
5230
|
+
* @memberof SceneViewDataAttributes
|
|
5231
|
+
*/
|
|
5232
|
+
worldOrientation?: Orientation;
|
|
5233
|
+
/**
|
|
5234
|
+
* Whether to exclude non-visible items in the view
|
|
5235
|
+
* @type {boolean}
|
|
5236
|
+
* @memberof SceneViewDataAttributes
|
|
5237
|
+
*/
|
|
5238
|
+
excludePrunedItems?: boolean;
|
|
5239
|
+
}
|
|
5240
|
+
/**
|
|
5241
|
+
*
|
|
5242
|
+
* @export
|
|
5243
|
+
* @interface SceneViewDataRelationships
|
|
5244
|
+
*/
|
|
5245
|
+
export interface SceneViewDataRelationships {
|
|
5246
|
+
/**
|
|
5247
|
+
*
|
|
5248
|
+
* @type {SceneRelationship}
|
|
5249
|
+
* @memberof SceneViewDataRelationships
|
|
5250
|
+
*/
|
|
5251
|
+
scene: SceneRelationship;
|
|
4778
5252
|
}
|
|
4779
5253
|
/**
|
|
4780
5254
|
*
|
|
@@ -5347,11 +5821,53 @@ export interface UpdateApplicationRequestData {
|
|
|
5347
5821
|
type: string;
|
|
5348
5822
|
/**
|
|
5349
5823
|
*
|
|
5350
|
-
* @type {
|
|
5824
|
+
* @type {UpdateApplicationRequestDataAttributes}
|
|
5351
5825
|
* @memberof UpdateApplicationRequestData
|
|
5352
5826
|
*/
|
|
5353
|
-
attributes:
|
|
5827
|
+
attributes: UpdateApplicationRequestDataAttributes;
|
|
5354
5828
|
}
|
|
5829
|
+
/**
|
|
5830
|
+
*
|
|
5831
|
+
* @export
|
|
5832
|
+
* @interface UpdateApplicationRequestDataAttributes
|
|
5833
|
+
*/
|
|
5834
|
+
export interface UpdateApplicationRequestDataAttributes {
|
|
5835
|
+
/**
|
|
5836
|
+
*
|
|
5837
|
+
* @type {string}
|
|
5838
|
+
* @memberof UpdateApplicationRequestDataAttributes
|
|
5839
|
+
*/
|
|
5840
|
+
name?: string;
|
|
5841
|
+
/**
|
|
5842
|
+
*
|
|
5843
|
+
* @type {Array<string>}
|
|
5844
|
+
* @memberof UpdateApplicationRequestDataAttributes
|
|
5845
|
+
*/
|
|
5846
|
+
redirect_uris?: Array<string>;
|
|
5847
|
+
}
|
|
5848
|
+
/**
|
|
5849
|
+
* An operation that updates items with the specified revision to the default rendition.
|
|
5850
|
+
* @export
|
|
5851
|
+
* @interface UpdateItemToDefaultRenditionOperation
|
|
5852
|
+
*/
|
|
5853
|
+
export interface UpdateItemToDefaultRenditionOperation {
|
|
5854
|
+
/**
|
|
5855
|
+
*
|
|
5856
|
+
* @type {string}
|
|
5857
|
+
* @memberof UpdateItemToDefaultRenditionOperation
|
|
5858
|
+
*/
|
|
5859
|
+
type: UpdateItemToDefaultRenditionOperationTypeEnum;
|
|
5860
|
+
/**
|
|
5861
|
+
* ID of the resource.
|
|
5862
|
+
* @type {string}
|
|
5863
|
+
* @memberof UpdateItemToDefaultRenditionOperation
|
|
5864
|
+
*/
|
|
5865
|
+
revisionId: string;
|
|
5866
|
+
}
|
|
5867
|
+
export declare const UpdateItemToDefaultRenditionOperationTypeEnum: {
|
|
5868
|
+
readonly UpdateToDefaultRendition: "update-to-default-rendition";
|
|
5869
|
+
};
|
|
5870
|
+
export declare type UpdateItemToDefaultRenditionOperationTypeEnum = (typeof UpdateItemToDefaultRenditionOperationTypeEnum)[keyof typeof UpdateItemToDefaultRenditionOperationTypeEnum];
|
|
5355
5871
|
/**
|
|
5356
5872
|
*
|
|
5357
5873
|
* @export
|
|
@@ -5391,10 +5907,10 @@ export interface UpdatePartRevisionRequestData {
|
|
|
5391
5907
|
attributes: UpdatePartRevisionRequestDataAttributes;
|
|
5392
5908
|
/**
|
|
5393
5909
|
*
|
|
5394
|
-
* @type {
|
|
5910
|
+
* @type {UpdatePartRevisionRequestDataRelationships}
|
|
5395
5911
|
* @memberof UpdatePartRevisionRequestData
|
|
5396
5912
|
*/
|
|
5397
|
-
relationships?:
|
|
5913
|
+
relationships?: UpdatePartRevisionRequestDataRelationships;
|
|
5398
5914
|
}
|
|
5399
5915
|
/**
|
|
5400
5916
|
*
|
|
@@ -5441,6 +5957,76 @@ export interface UpdatePartRevisionRequestDataAttributes {
|
|
|
5441
5957
|
*/
|
|
5442
5958
|
suppliedInstanceIdKey?: string;
|
|
5443
5959
|
}
|
|
5960
|
+
/**
|
|
5961
|
+
*
|
|
5962
|
+
* @export
|
|
5963
|
+
* @interface UpdatePartRevisionRequestDataRelationships
|
|
5964
|
+
*/
|
|
5965
|
+
export interface UpdatePartRevisionRequestDataRelationships {
|
|
5966
|
+
/**
|
|
5967
|
+
*
|
|
5968
|
+
* @type {FileRelationship}
|
|
5969
|
+
* @memberof UpdatePartRevisionRequestDataRelationships
|
|
5970
|
+
*/
|
|
5971
|
+
source?: FileRelationship;
|
|
5972
|
+
/**
|
|
5973
|
+
*
|
|
5974
|
+
* @type {PartRenditionRelationship}
|
|
5975
|
+
* @memberof UpdatePartRevisionRequestDataRelationships
|
|
5976
|
+
*/
|
|
5977
|
+
defaultPartRendition?: PartRenditionRelationship;
|
|
5978
|
+
}
|
|
5979
|
+
/**
|
|
5980
|
+
*
|
|
5981
|
+
* @export
|
|
5982
|
+
* @interface UpdateSceneAnnotationRequest
|
|
5983
|
+
*/
|
|
5984
|
+
export interface UpdateSceneAnnotationRequest {
|
|
5985
|
+
/**
|
|
5986
|
+
*
|
|
5987
|
+
* @type {UpdateSceneAnnotationRequestData}
|
|
5988
|
+
* @memberof UpdateSceneAnnotationRequest
|
|
5989
|
+
*/
|
|
5990
|
+
data: UpdateSceneAnnotationRequestData;
|
|
5991
|
+
}
|
|
5992
|
+
/**
|
|
5993
|
+
*
|
|
5994
|
+
* @export
|
|
5995
|
+
* @interface UpdateSceneAnnotationRequestData
|
|
5996
|
+
*/
|
|
5997
|
+
export interface UpdateSceneAnnotationRequestData {
|
|
5998
|
+
/**
|
|
5999
|
+
* Resource object type.
|
|
6000
|
+
* @type {string}
|
|
6001
|
+
* @memberof UpdateSceneAnnotationRequestData
|
|
6002
|
+
*/
|
|
6003
|
+
type: string;
|
|
6004
|
+
/**
|
|
6005
|
+
*
|
|
6006
|
+
* @type {UpdateSceneAnnotationRequestDataAttributes}
|
|
6007
|
+
* @memberof UpdateSceneAnnotationRequestData
|
|
6008
|
+
*/
|
|
6009
|
+
attributes: UpdateSceneAnnotationRequestDataAttributes;
|
|
6010
|
+
}
|
|
6011
|
+
/**
|
|
6012
|
+
*
|
|
6013
|
+
* @export
|
|
6014
|
+
* @interface UpdateSceneAnnotationRequestDataAttributes
|
|
6015
|
+
*/
|
|
6016
|
+
export interface UpdateSceneAnnotationRequestDataAttributes {
|
|
6017
|
+
/**
|
|
6018
|
+
* A JSON string that describes the annotation type and its data. JSON data is limited to 16kb.
|
|
6019
|
+
* @type {string}
|
|
6020
|
+
* @memberof UpdateSceneAnnotationRequestDataAttributes
|
|
6021
|
+
*/
|
|
6022
|
+
data?: string;
|
|
6023
|
+
/**
|
|
6024
|
+
* A customer provided ID used for correlation.
|
|
6025
|
+
* @type {string}
|
|
6026
|
+
* @memberof UpdateSceneAnnotationRequestDataAttributes
|
|
6027
|
+
*/
|
|
6028
|
+
suppliedId?: string | null;
|
|
6029
|
+
}
|
|
5444
6030
|
/**
|
|
5445
6031
|
*
|
|
5446
6032
|
* @export
|
|
@@ -5705,7 +6291,7 @@ export interface UpdateSceneRequestDataAttributes {
|
|
|
5705
6291
|
*/
|
|
5706
6292
|
worldOrientation?: Orientation;
|
|
5707
6293
|
/**
|
|
5708
|
-
*
|
|
6294
|
+
* User supplied key-value pairs for a scene. You can supply up to 50 entries, with key names limited to 64 characters and values limited to 256 characters. A null value will delete the entry in the map, all other key/value pairs provided here will be inserted or updated into the existing scene metadata.
|
|
5709
6295
|
* @type {{ [key: string]: string; }}
|
|
5710
6296
|
* @memberof UpdateSceneRequestDataAttributes
|
|
5711
6297
|
*/
|
|
@@ -6051,6 +6637,12 @@ export interface WebhookEvent {
|
|
|
6051
6637
|
* @memberof WebhookEvent
|
|
6052
6638
|
*/
|
|
6053
6639
|
data: WebhookEventData;
|
|
6640
|
+
/**
|
|
6641
|
+
*
|
|
6642
|
+
* @type {Array<WebhookEventSceneIncludedData | WebhookEventPartRevisionIncludedData>}
|
|
6643
|
+
* @memberof WebhookEvent
|
|
6644
|
+
*/
|
|
6645
|
+
included: Array<WebhookEventSceneIncludedData | WebhookEventPartRevisionIncludedData>;
|
|
6054
6646
|
/**
|
|
6055
6647
|
*
|
|
6056
6648
|
* @type {{ [key: string]: Link; }}
|
|
@@ -6117,6 +6709,12 @@ export interface WebhookEventDataAttributes {
|
|
|
6117
6709
|
* @memberof WebhookEventDataAttributes
|
|
6118
6710
|
*/
|
|
6119
6711
|
topic: string;
|
|
6712
|
+
/**
|
|
6713
|
+
*
|
|
6714
|
+
* @type {Array<string>}
|
|
6715
|
+
* @memberof WebhookEventDataAttributes
|
|
6716
|
+
*/
|
|
6717
|
+
changed?: Array<string>;
|
|
6120
6718
|
}
|
|
6121
6719
|
/**
|
|
6122
6720
|
*
|
|
@@ -6171,51 +6769,163 @@ export interface WebhookEventDataRelationshipsOwnerData {
|
|
|
6171
6769
|
/**
|
|
6172
6770
|
* ID of the resource.
|
|
6173
6771
|
* @type {string}
|
|
6174
|
-
* @memberof WebhookEventDataRelationshipsOwnerData
|
|
6772
|
+
* @memberof WebhookEventDataRelationshipsOwnerData
|
|
6773
|
+
*/
|
|
6774
|
+
id: string;
|
|
6775
|
+
}
|
|
6776
|
+
export declare const WebhookEventDataRelationshipsOwnerDataTypeEnum: {
|
|
6777
|
+
readonly Account: "account";
|
|
6778
|
+
};
|
|
6779
|
+
export declare type WebhookEventDataRelationshipsOwnerDataTypeEnum = (typeof WebhookEventDataRelationshipsOwnerDataTypeEnum)[keyof typeof WebhookEventDataRelationshipsOwnerDataTypeEnum];
|
|
6780
|
+
/**
|
|
6781
|
+
* Relationship to a `resource`.
|
|
6782
|
+
* @export
|
|
6783
|
+
* @interface WebhookEventDataRelationshipsResource
|
|
6784
|
+
*/
|
|
6785
|
+
export interface WebhookEventDataRelationshipsResource {
|
|
6786
|
+
/**
|
|
6787
|
+
*
|
|
6788
|
+
* @type {WebhookEventDataRelationshipsResourceData}
|
|
6789
|
+
* @memberof WebhookEventDataRelationshipsResource
|
|
6790
|
+
*/
|
|
6791
|
+
data: WebhookEventDataRelationshipsResourceData;
|
|
6792
|
+
/**
|
|
6793
|
+
*
|
|
6794
|
+
* @type {RelationshipLinks}
|
|
6795
|
+
* @memberof WebhookEventDataRelationshipsResource
|
|
6796
|
+
*/
|
|
6797
|
+
links?: RelationshipLinks;
|
|
6798
|
+
}
|
|
6799
|
+
/**
|
|
6800
|
+
*
|
|
6801
|
+
* @export
|
|
6802
|
+
* @interface WebhookEventDataRelationshipsResourceData
|
|
6803
|
+
*/
|
|
6804
|
+
export interface WebhookEventDataRelationshipsResourceData {
|
|
6805
|
+
/**
|
|
6806
|
+
* Resource object type.
|
|
6807
|
+
* @type {string}
|
|
6808
|
+
* @memberof WebhookEventDataRelationshipsResourceData
|
|
6809
|
+
*/
|
|
6810
|
+
type: string;
|
|
6811
|
+
/**
|
|
6812
|
+
* ID of the resource.
|
|
6813
|
+
* @type {string}
|
|
6814
|
+
* @memberof WebhookEventDataRelationshipsResourceData
|
|
6815
|
+
*/
|
|
6816
|
+
id: string;
|
|
6817
|
+
}
|
|
6818
|
+
/**
|
|
6819
|
+
*
|
|
6820
|
+
* @export
|
|
6821
|
+
* @interface WebhookEventPartRevisionIncludedAttributes
|
|
6822
|
+
*/
|
|
6823
|
+
export interface WebhookEventPartRevisionIncludedAttributes {
|
|
6824
|
+
/**
|
|
6825
|
+
*
|
|
6826
|
+
* @type {string}
|
|
6827
|
+
* @memberof WebhookEventPartRevisionIncludedAttributes
|
|
6828
|
+
*/
|
|
6829
|
+
created?: string;
|
|
6830
|
+
/**
|
|
6831
|
+
*
|
|
6832
|
+
* @type {string}
|
|
6833
|
+
* @memberof WebhookEventPartRevisionIncludedAttributes
|
|
6834
|
+
*/
|
|
6835
|
+
suppliedId?: string;
|
|
6836
|
+
/**
|
|
6837
|
+
*
|
|
6838
|
+
* @type {string}
|
|
6839
|
+
* @memberof WebhookEventPartRevisionIncludedAttributes
|
|
6840
|
+
*/
|
|
6841
|
+
name?: string;
|
|
6842
|
+
/**
|
|
6843
|
+
*
|
|
6844
|
+
* @type {string}
|
|
6845
|
+
* @memberof WebhookEventPartRevisionIncludedAttributes
|
|
6846
|
+
*/
|
|
6847
|
+
partName?: string;
|
|
6848
|
+
}
|
|
6849
|
+
/**
|
|
6850
|
+
*
|
|
6851
|
+
* @export
|
|
6852
|
+
* @interface WebhookEventPartRevisionIncludedData
|
|
6853
|
+
*/
|
|
6854
|
+
export interface WebhookEventPartRevisionIncludedData {
|
|
6855
|
+
/**
|
|
6856
|
+
*
|
|
6857
|
+
* @type {string}
|
|
6858
|
+
* @memberof WebhookEventPartRevisionIncludedData
|
|
6859
|
+
*/
|
|
6860
|
+
type: string;
|
|
6861
|
+
/**
|
|
6862
|
+
* ID of the resource.
|
|
6863
|
+
* @type {string}
|
|
6864
|
+
* @memberof WebhookEventPartRevisionIncludedData
|
|
6175
6865
|
*/
|
|
6176
6866
|
id: string;
|
|
6177
|
-
}
|
|
6178
|
-
export declare const WebhookEventDataRelationshipsOwnerDataTypeEnum: {
|
|
6179
|
-
readonly Account: "account";
|
|
6180
|
-
};
|
|
6181
|
-
export declare type WebhookEventDataRelationshipsOwnerDataTypeEnum = (typeof WebhookEventDataRelationshipsOwnerDataTypeEnum)[keyof typeof WebhookEventDataRelationshipsOwnerDataTypeEnum];
|
|
6182
|
-
/**
|
|
6183
|
-
* Relationship to a `resource`.
|
|
6184
|
-
* @export
|
|
6185
|
-
* @interface WebhookEventDataRelationshipsResource
|
|
6186
|
-
*/
|
|
6187
|
-
export interface WebhookEventDataRelationshipsResource {
|
|
6188
6867
|
/**
|
|
6189
6868
|
*
|
|
6190
|
-
* @type {
|
|
6191
|
-
* @memberof
|
|
6869
|
+
* @type {WebhookEventPartRevisionIncludedAttributes}
|
|
6870
|
+
* @memberof WebhookEventPartRevisionIncludedData
|
|
6192
6871
|
*/
|
|
6193
|
-
|
|
6872
|
+
attributes: WebhookEventPartRevisionIncludedAttributes;
|
|
6194
6873
|
/**
|
|
6195
6874
|
*
|
|
6196
|
-
* @type {
|
|
6197
|
-
* @memberof
|
|
6875
|
+
* @type {{ [key: string]: Link; }}
|
|
6876
|
+
* @memberof WebhookEventPartRevisionIncludedData
|
|
6198
6877
|
*/
|
|
6199
|
-
links
|
|
6878
|
+
links: {
|
|
6879
|
+
[key: string]: Link;
|
|
6880
|
+
};
|
|
6200
6881
|
}
|
|
6201
6882
|
/**
|
|
6202
6883
|
*
|
|
6203
6884
|
* @export
|
|
6204
|
-
* @interface
|
|
6885
|
+
* @interface WebhookEventSceneIncludedAttributes
|
|
6205
6886
|
*/
|
|
6206
|
-
export interface
|
|
6887
|
+
export interface WebhookEventSceneIncludedAttributes {
|
|
6207
6888
|
/**
|
|
6208
|
-
*
|
|
6889
|
+
* User supplied key-value pairs for a scene. You can supply up to 50 entries, with key names limited to 64 characters and values limited to 256 characters.
|
|
6890
|
+
* @type {{ [key: string]: string; }}
|
|
6891
|
+
* @memberof WebhookEventSceneIncludedAttributes
|
|
6892
|
+
*/
|
|
6893
|
+
metadata?: {
|
|
6894
|
+
[key: string]: string;
|
|
6895
|
+
};
|
|
6896
|
+
}
|
|
6897
|
+
/**
|
|
6898
|
+
*
|
|
6899
|
+
* @export
|
|
6900
|
+
* @interface WebhookEventSceneIncludedData
|
|
6901
|
+
*/
|
|
6902
|
+
export interface WebhookEventSceneIncludedData {
|
|
6903
|
+
/**
|
|
6904
|
+
*
|
|
6209
6905
|
* @type {string}
|
|
6210
|
-
* @memberof
|
|
6906
|
+
* @memberof WebhookEventSceneIncludedData
|
|
6211
6907
|
*/
|
|
6212
6908
|
type: string;
|
|
6213
6909
|
/**
|
|
6214
6910
|
* ID of the resource.
|
|
6215
6911
|
* @type {string}
|
|
6216
|
-
* @memberof
|
|
6912
|
+
* @memberof WebhookEventSceneIncludedData
|
|
6217
6913
|
*/
|
|
6218
6914
|
id: string;
|
|
6915
|
+
/**
|
|
6916
|
+
*
|
|
6917
|
+
* @type {WebhookEventSceneIncludedAttributes}
|
|
6918
|
+
* @memberof WebhookEventSceneIncludedData
|
|
6919
|
+
*/
|
|
6920
|
+
attributes: WebhookEventSceneIncludedAttributes;
|
|
6921
|
+
/**
|
|
6922
|
+
*
|
|
6923
|
+
* @type {{ [key: string]: Link; }}
|
|
6924
|
+
* @memberof WebhookEventSceneIncludedData
|
|
6925
|
+
*/
|
|
6926
|
+
links: {
|
|
6927
|
+
[key: string]: Link;
|
|
6928
|
+
};
|
|
6219
6929
|
}
|
|
6220
6930
|
/**
|
|
6221
6931
|
*
|
|
@@ -6618,10 +7328,11 @@ export declare const ApplicationsApiAxiosParamCreator: (configuration?: Configur
|
|
|
6618
7328
|
* Get `applications`.
|
|
6619
7329
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
6620
7330
|
* @param {number} [pageSize] The number of items to return.
|
|
7331
|
+
* @param {string} [filterClientId] Comma-separated list of client IDs to filter on.
|
|
6621
7332
|
* @param {*} [options] Override http request option.
|
|
6622
7333
|
* @throws {RequiredError}
|
|
6623
7334
|
*/
|
|
6624
|
-
getApplications: (pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7335
|
+
getApplications: (pageCursor?: string | undefined, pageSize?: number | undefined, filterClientId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6625
7336
|
/**
|
|
6626
7337
|
* Update an `application`.
|
|
6627
7338
|
* @param {string} id The `application` ID.
|
|
@@ -6661,10 +7372,11 @@ export declare const ApplicationsApiFp: (configuration?: Configuration | undefin
|
|
|
6661
7372
|
* Get `applications`.
|
|
6662
7373
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
6663
7374
|
* @param {number} [pageSize] The number of items to return.
|
|
7375
|
+
* @param {string} [filterClientId] Comma-separated list of client IDs to filter on.
|
|
6664
7376
|
* @param {*} [options] Override http request option.
|
|
6665
7377
|
* @throws {RequiredError}
|
|
6666
7378
|
*/
|
|
6667
|
-
getApplications(pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ApplicationList>>;
|
|
7379
|
+
getApplications(pageCursor?: string | undefined, pageSize?: number | undefined, filterClientId?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ApplicationList>>;
|
|
6668
7380
|
/**
|
|
6669
7381
|
* Update an `application`.
|
|
6670
7382
|
* @param {string} id The `application` ID.
|
|
@@ -6704,10 +7416,11 @@ export declare const ApplicationsApiFactory: (configuration?: Configuration | un
|
|
|
6704
7416
|
* Get `applications`.
|
|
6705
7417
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
6706
7418
|
* @param {number} [pageSize] The number of items to return.
|
|
7419
|
+
* @param {string} [filterClientId] Comma-separated list of client IDs to filter on.
|
|
6707
7420
|
* @param {*} [options] Override http request option.
|
|
6708
7421
|
* @throws {RequiredError}
|
|
6709
7422
|
*/
|
|
6710
|
-
getApplications(pageCursor?: string | undefined, pageSize?: number | undefined, options?: any): AxiosPromise<ApplicationList>;
|
|
7423
|
+
getApplications(pageCursor?: string | undefined, pageSize?: number | undefined, filterClientId?: string | undefined, options?: any): AxiosPromise<ApplicationList>;
|
|
6711
7424
|
/**
|
|
6712
7425
|
* Update an `application`.
|
|
6713
7426
|
* @param {string} id The `application` ID.
|
|
@@ -6774,6 +7487,12 @@ export interface ApplicationsApiGetApplicationsRequest {
|
|
|
6774
7487
|
* @memberof ApplicationsApiGetApplications
|
|
6775
7488
|
*/
|
|
6776
7489
|
readonly pageSize?: number;
|
|
7490
|
+
/**
|
|
7491
|
+
* Comma-separated list of client IDs to filter on.
|
|
7492
|
+
* @type {string}
|
|
7493
|
+
* @memberof ApplicationsApiGetApplications
|
|
7494
|
+
*/
|
|
7495
|
+
readonly filterClientId?: string;
|
|
6777
7496
|
}
|
|
6778
7497
|
/**
|
|
6779
7498
|
* Request parameters for updateApplication operation in ApplicationsApi.
|
|
@@ -8856,216 +9575,437 @@ export declare class PartsApi extends BaseAPI {
|
|
|
8856
9575
|
*/
|
|
8857
9576
|
getParts(requestParameters?: PartsApiGetPartsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PartList, any>>;
|
|
8858
9577
|
/**
|
|
8859
|
-
* Get a `queued-part-deletion` by ID.
|
|
8860
|
-
* @param {PartsApiGetQueuedPartDeletionRequest} requestParameters Request parameters.
|
|
9578
|
+
* Get a `queued-part-deletion` by ID.
|
|
9579
|
+
* @param {PartsApiGetQueuedPartDeletionRequest} requestParameters Request parameters.
|
|
9580
|
+
* @param {*} [options] Override http request option.
|
|
9581
|
+
* @throws {RequiredError}
|
|
9582
|
+
* @memberof PartsApi
|
|
9583
|
+
*/
|
|
9584
|
+
getQueuedPartDeletion(requestParameters: PartsApiGetQueuedPartDeletionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
|
|
9585
|
+
}
|
|
9586
|
+
/**
|
|
9587
|
+
* SceneAlterationsApi - axios parameter creator
|
|
9588
|
+
* @export
|
|
9589
|
+
*/
|
|
9590
|
+
export declare const SceneAlterationsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
9591
|
+
/**
|
|
9592
|
+
* Create a `scene-alteration` for a `scene-view`.
|
|
9593
|
+
* @param {string} id The `scene-view` ID.
|
|
9594
|
+
* @param {CreateSceneAlterationRequest} createSceneAlterationRequest
|
|
9595
|
+
* @param {*} [options] Override http request option.
|
|
9596
|
+
* @throws {RequiredError}
|
|
9597
|
+
*/
|
|
9598
|
+
createSceneAlteration: (id: string, createSceneAlterationRequest: CreateSceneAlterationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9599
|
+
/**
|
|
9600
|
+
* Get a `queued-scene-alteration` by ID.
|
|
9601
|
+
* @param {string} id The `queued-scene-alteration` ID.
|
|
9602
|
+
* @param {*} [options] Override http request option.
|
|
9603
|
+
* @throws {RequiredError}
|
|
9604
|
+
*/
|
|
9605
|
+
getQueuedSceneAlteration: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9606
|
+
/**
|
|
9607
|
+
* Get a `scene-alteration` by ID.
|
|
9608
|
+
* @param {string} id The `scene-alteration` ID.
|
|
9609
|
+
* @param {*} [options] Override http request option.
|
|
9610
|
+
* @throws {RequiredError}
|
|
9611
|
+
*/
|
|
9612
|
+
getSceneAlteration: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9613
|
+
/**
|
|
9614
|
+
* Get `scene-alterations` for a `scene-view`.
|
|
9615
|
+
* @param {string} id The `scene-view` ID.
|
|
9616
|
+
* @param {*} [options] Override http request option.
|
|
9617
|
+
* @throws {RequiredError}
|
|
9618
|
+
*/
|
|
9619
|
+
getSceneAlterations: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9620
|
+
};
|
|
9621
|
+
/**
|
|
9622
|
+
* SceneAlterationsApi - functional programming interface
|
|
9623
|
+
* @export
|
|
9624
|
+
*/
|
|
9625
|
+
export declare const SceneAlterationsApiFp: (configuration?: Configuration | undefined) => {
|
|
9626
|
+
/**
|
|
9627
|
+
* Create a `scene-alteration` for a `scene-view`.
|
|
9628
|
+
* @param {string} id The `scene-view` ID.
|
|
9629
|
+
* @param {CreateSceneAlterationRequest} createSceneAlterationRequest
|
|
9630
|
+
* @param {*} [options] Override http request option.
|
|
9631
|
+
* @throws {RequiredError}
|
|
9632
|
+
*/
|
|
9633
|
+
createSceneAlteration(id: string, createSceneAlterationRequest: CreateSceneAlterationRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
9634
|
+
/**
|
|
9635
|
+
* Get a `queued-scene-alteration` by ID.
|
|
9636
|
+
* @param {string} id The `queued-scene-alteration` ID.
|
|
9637
|
+
* @param {*} [options] Override http request option.
|
|
9638
|
+
* @throws {RequiredError}
|
|
9639
|
+
*/
|
|
9640
|
+
getQueuedSceneAlteration(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
9641
|
+
/**
|
|
9642
|
+
* Get a `scene-alteration` by ID.
|
|
9643
|
+
* @param {string} id The `scene-alteration` ID.
|
|
9644
|
+
* @param {*} [options] Override http request option.
|
|
9645
|
+
* @throws {RequiredError}
|
|
9646
|
+
*/
|
|
9647
|
+
getSceneAlteration(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneAlteration>>;
|
|
9648
|
+
/**
|
|
9649
|
+
* Get `scene-alterations` for a `scene-view`.
|
|
9650
|
+
* @param {string} id The `scene-view` ID.
|
|
9651
|
+
* @param {*} [options] Override http request option.
|
|
9652
|
+
* @throws {RequiredError}
|
|
9653
|
+
*/
|
|
9654
|
+
getSceneAlterations(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneAlterationList>>;
|
|
9655
|
+
};
|
|
9656
|
+
/**
|
|
9657
|
+
* SceneAlterationsApi - factory interface
|
|
9658
|
+
* @export
|
|
9659
|
+
*/
|
|
9660
|
+
export declare const SceneAlterationsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
9661
|
+
/**
|
|
9662
|
+
* Create a `scene-alteration` for a `scene-view`.
|
|
9663
|
+
* @param {string} id The `scene-view` ID.
|
|
9664
|
+
* @param {CreateSceneAlterationRequest} createSceneAlterationRequest
|
|
9665
|
+
* @param {*} [options] Override http request option.
|
|
9666
|
+
* @throws {RequiredError}
|
|
9667
|
+
*/
|
|
9668
|
+
createSceneAlteration(id: string, createSceneAlterationRequest: CreateSceneAlterationRequest, options?: any): AxiosPromise<QueuedJob>;
|
|
9669
|
+
/**
|
|
9670
|
+
* Get a `queued-scene-alteration` by ID.
|
|
9671
|
+
* @param {string} id The `queued-scene-alteration` ID.
|
|
9672
|
+
* @param {*} [options] Override http request option.
|
|
9673
|
+
* @throws {RequiredError}
|
|
9674
|
+
*/
|
|
9675
|
+
getQueuedSceneAlteration(id: string, options?: any): AxiosPromise<QueuedJob>;
|
|
9676
|
+
/**
|
|
9677
|
+
* Get a `scene-alteration` by ID.
|
|
9678
|
+
* @param {string} id The `scene-alteration` ID.
|
|
9679
|
+
* @param {*} [options] Override http request option.
|
|
9680
|
+
* @throws {RequiredError}
|
|
9681
|
+
*/
|
|
9682
|
+
getSceneAlteration(id: string, options?: any): AxiosPromise<SceneAlteration>;
|
|
9683
|
+
/**
|
|
9684
|
+
* Get `scene-alterations` for a `scene-view`.
|
|
9685
|
+
* @param {string} id The `scene-view` ID.
|
|
9686
|
+
* @param {*} [options] Override http request option.
|
|
9687
|
+
* @throws {RequiredError}
|
|
9688
|
+
*/
|
|
9689
|
+
getSceneAlterations(id: string, options?: any): AxiosPromise<SceneAlterationList>;
|
|
9690
|
+
};
|
|
9691
|
+
/**
|
|
9692
|
+
* Request parameters for createSceneAlteration operation in SceneAlterationsApi.
|
|
9693
|
+
* @export
|
|
9694
|
+
* @interface SceneAlterationsApiCreateSceneAlterationRequest
|
|
9695
|
+
*/
|
|
9696
|
+
export interface SceneAlterationsApiCreateSceneAlterationRequest {
|
|
9697
|
+
/**
|
|
9698
|
+
* The `scene-view` ID.
|
|
9699
|
+
* @type {string}
|
|
9700
|
+
* @memberof SceneAlterationsApiCreateSceneAlteration
|
|
9701
|
+
*/
|
|
9702
|
+
readonly id: string;
|
|
9703
|
+
/**
|
|
9704
|
+
*
|
|
9705
|
+
* @type {CreateSceneAlterationRequest}
|
|
9706
|
+
* @memberof SceneAlterationsApiCreateSceneAlteration
|
|
9707
|
+
*/
|
|
9708
|
+
readonly createSceneAlterationRequest: CreateSceneAlterationRequest;
|
|
9709
|
+
}
|
|
9710
|
+
/**
|
|
9711
|
+
* Request parameters for getQueuedSceneAlteration operation in SceneAlterationsApi.
|
|
9712
|
+
* @export
|
|
9713
|
+
* @interface SceneAlterationsApiGetQueuedSceneAlterationRequest
|
|
9714
|
+
*/
|
|
9715
|
+
export interface SceneAlterationsApiGetQueuedSceneAlterationRequest {
|
|
9716
|
+
/**
|
|
9717
|
+
* The `queued-scene-alteration` ID.
|
|
9718
|
+
* @type {string}
|
|
9719
|
+
* @memberof SceneAlterationsApiGetQueuedSceneAlteration
|
|
9720
|
+
*/
|
|
9721
|
+
readonly id: string;
|
|
9722
|
+
}
|
|
9723
|
+
/**
|
|
9724
|
+
* Request parameters for getSceneAlteration operation in SceneAlterationsApi.
|
|
9725
|
+
* @export
|
|
9726
|
+
* @interface SceneAlterationsApiGetSceneAlterationRequest
|
|
9727
|
+
*/
|
|
9728
|
+
export interface SceneAlterationsApiGetSceneAlterationRequest {
|
|
9729
|
+
/**
|
|
9730
|
+
* The `scene-alteration` ID.
|
|
9731
|
+
* @type {string}
|
|
9732
|
+
* @memberof SceneAlterationsApiGetSceneAlteration
|
|
9733
|
+
*/
|
|
9734
|
+
readonly id: string;
|
|
9735
|
+
}
|
|
9736
|
+
/**
|
|
9737
|
+
* Request parameters for getSceneAlterations operation in SceneAlterationsApi.
|
|
9738
|
+
* @export
|
|
9739
|
+
* @interface SceneAlterationsApiGetSceneAlterationsRequest
|
|
9740
|
+
*/
|
|
9741
|
+
export interface SceneAlterationsApiGetSceneAlterationsRequest {
|
|
9742
|
+
/**
|
|
9743
|
+
* The `scene-view` ID.
|
|
9744
|
+
* @type {string}
|
|
9745
|
+
* @memberof SceneAlterationsApiGetSceneAlterations
|
|
9746
|
+
*/
|
|
9747
|
+
readonly id: string;
|
|
9748
|
+
}
|
|
9749
|
+
/**
|
|
9750
|
+
* SceneAlterationsApi - object-oriented interface
|
|
9751
|
+
* @export
|
|
9752
|
+
* @class SceneAlterationsApi
|
|
9753
|
+
* @extends {BaseAPI}
|
|
9754
|
+
*/
|
|
9755
|
+
export declare class SceneAlterationsApi extends BaseAPI {
|
|
9756
|
+
/**
|
|
9757
|
+
* Create a `scene-alteration` for a `scene-view`.
|
|
9758
|
+
* @param {SceneAlterationsApiCreateSceneAlterationRequest} requestParameters Request parameters.
|
|
9759
|
+
* @param {*} [options] Override http request option.
|
|
9760
|
+
* @throws {RequiredError}
|
|
9761
|
+
* @memberof SceneAlterationsApi
|
|
9762
|
+
*/
|
|
9763
|
+
createSceneAlteration(requestParameters: SceneAlterationsApiCreateSceneAlterationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
|
|
9764
|
+
/**
|
|
9765
|
+
* Get a `queued-scene-alteration` by ID.
|
|
9766
|
+
* @param {SceneAlterationsApiGetQueuedSceneAlterationRequest} requestParameters Request parameters.
|
|
9767
|
+
* @param {*} [options] Override http request option.
|
|
9768
|
+
* @throws {RequiredError}
|
|
9769
|
+
* @memberof SceneAlterationsApi
|
|
9770
|
+
*/
|
|
9771
|
+
getQueuedSceneAlteration(requestParameters: SceneAlterationsApiGetQueuedSceneAlterationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
|
|
9772
|
+
/**
|
|
9773
|
+
* Get a `scene-alteration` by ID.
|
|
9774
|
+
* @param {SceneAlterationsApiGetSceneAlterationRequest} requestParameters Request parameters.
|
|
9775
|
+
* @param {*} [options] Override http request option.
|
|
9776
|
+
* @throws {RequiredError}
|
|
9777
|
+
* @memberof SceneAlterationsApi
|
|
9778
|
+
*/
|
|
9779
|
+
getSceneAlteration(requestParameters: SceneAlterationsApiGetSceneAlterationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneAlteration, any>>;
|
|
9780
|
+
/**
|
|
9781
|
+
* Get `scene-alterations` for a `scene-view`.
|
|
9782
|
+
* @param {SceneAlterationsApiGetSceneAlterationsRequest} requestParameters Request parameters.
|
|
8861
9783
|
* @param {*} [options] Override http request option.
|
|
8862
9784
|
* @throws {RequiredError}
|
|
8863
|
-
* @memberof
|
|
9785
|
+
* @memberof SceneAlterationsApi
|
|
8864
9786
|
*/
|
|
8865
|
-
|
|
9787
|
+
getSceneAlterations(requestParameters: SceneAlterationsApiGetSceneAlterationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneAlterationList, any>>;
|
|
8866
9788
|
}
|
|
8867
9789
|
/**
|
|
8868
|
-
*
|
|
9790
|
+
* SceneAnnotationsApi - axios parameter creator
|
|
8869
9791
|
* @export
|
|
8870
9792
|
*/
|
|
8871
|
-
export declare const
|
|
9793
|
+
export declare const SceneAnnotationsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
8872
9794
|
/**
|
|
8873
|
-
* Create
|
|
8874
|
-
* @param {string} id The `scene-
|
|
8875
|
-
* @param {
|
|
9795
|
+
* Create an annotation belonging to an annotation set. **Preview:** This is a preview API and is subject to change.
|
|
9796
|
+
* @param {string} id The `scene-annotation-set` ID.
|
|
9797
|
+
* @param {CreateSceneAnnotationRequest} createSceneAnnotationRequest
|
|
8876
9798
|
* @param {*} [options] Override http request option.
|
|
8877
9799
|
* @throws {RequiredError}
|
|
8878
9800
|
*/
|
|
8879
|
-
|
|
9801
|
+
createSceneAnnotation: (id: string, createSceneAnnotationRequest: CreateSceneAnnotationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8880
9802
|
/**
|
|
8881
|
-
*
|
|
8882
|
-
* @param {string} id The `
|
|
9803
|
+
* Create an annotation set that is associated with a scene. **Preview:** This is a preview API and is subject to change.
|
|
9804
|
+
* @param {string} id The `scene` ID.
|
|
9805
|
+
* @param {CreateSceneAnnotationSetRequest} createSceneAnnotationSetRequest
|
|
8883
9806
|
* @param {*} [options] Override http request option.
|
|
8884
9807
|
* @throws {RequiredError}
|
|
8885
9808
|
*/
|
|
8886
|
-
|
|
9809
|
+
createSceneAnnotationSet: (id: string, createSceneAnnotationSetRequest: CreateSceneAnnotationSetRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8887
9810
|
/**
|
|
8888
|
-
*
|
|
8889
|
-
* @param {string} id The `scene-
|
|
9811
|
+
* Delete a scene annotation. **Preview:** This is a preview API and is subject to change.
|
|
9812
|
+
* @param {string} id The `scene-annotation` ID.
|
|
8890
9813
|
* @param {*} [options] Override http request option.
|
|
8891
9814
|
* @throws {RequiredError}
|
|
8892
9815
|
*/
|
|
8893
|
-
|
|
9816
|
+
deleteSceneAnnotation: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8894
9817
|
/**
|
|
8895
|
-
*
|
|
8896
|
-
* @param {string} id The `scene-
|
|
9818
|
+
* Update the attributes of an annotation. **Preview:** This is a preview API and is subject to change.
|
|
9819
|
+
* @param {string} id The `scene-annotation` ID.
|
|
9820
|
+
* @param {UpdateSceneAnnotationRequest} updateSceneAnnotationRequest
|
|
8897
9821
|
* @param {*} [options] Override http request option.
|
|
8898
9822
|
* @throws {RequiredError}
|
|
8899
9823
|
*/
|
|
8900
|
-
|
|
9824
|
+
updateSceneAnnotation: (id: string, updateSceneAnnotationRequest: UpdateSceneAnnotationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8901
9825
|
};
|
|
8902
9826
|
/**
|
|
8903
|
-
*
|
|
9827
|
+
* SceneAnnotationsApi - functional programming interface
|
|
8904
9828
|
* @export
|
|
8905
9829
|
*/
|
|
8906
|
-
export declare const
|
|
9830
|
+
export declare const SceneAnnotationsApiFp: (configuration?: Configuration | undefined) => {
|
|
8907
9831
|
/**
|
|
8908
|
-
* Create
|
|
8909
|
-
* @param {string} id The `scene-
|
|
8910
|
-
* @param {
|
|
9832
|
+
* Create an annotation belonging to an annotation set. **Preview:** This is a preview API and is subject to change.
|
|
9833
|
+
* @param {string} id The `scene-annotation-set` ID.
|
|
9834
|
+
* @param {CreateSceneAnnotationRequest} createSceneAnnotationRequest
|
|
8911
9835
|
* @param {*} [options] Override http request option.
|
|
8912
9836
|
* @throws {RequiredError}
|
|
8913
9837
|
*/
|
|
8914
|
-
|
|
9838
|
+
createSceneAnnotation(id: string, createSceneAnnotationRequest: CreateSceneAnnotationRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneAnnotation>>;
|
|
8915
9839
|
/**
|
|
8916
|
-
*
|
|
8917
|
-
* @param {string} id The `
|
|
9840
|
+
* Create an annotation set that is associated with a scene. **Preview:** This is a preview API and is subject to change.
|
|
9841
|
+
* @param {string} id The `scene` ID.
|
|
9842
|
+
* @param {CreateSceneAnnotationSetRequest} createSceneAnnotationSetRequest
|
|
8918
9843
|
* @param {*} [options] Override http request option.
|
|
8919
9844
|
* @throws {RequiredError}
|
|
8920
9845
|
*/
|
|
8921
|
-
|
|
9846
|
+
createSceneAnnotationSet(id: string, createSceneAnnotationSetRequest: CreateSceneAnnotationSetRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneAnnotationSet>>;
|
|
8922
9847
|
/**
|
|
8923
|
-
*
|
|
8924
|
-
* @param {string} id The `scene-
|
|
9848
|
+
* Delete a scene annotation. **Preview:** This is a preview API and is subject to change.
|
|
9849
|
+
* @param {string} id The `scene-annotation` ID.
|
|
8925
9850
|
* @param {*} [options] Override http request option.
|
|
8926
9851
|
* @throws {RequiredError}
|
|
8927
9852
|
*/
|
|
8928
|
-
|
|
9853
|
+
deleteSceneAnnotation(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
8929
9854
|
/**
|
|
8930
|
-
*
|
|
8931
|
-
* @param {string} id The `scene-
|
|
9855
|
+
* Update the attributes of an annotation. **Preview:** This is a preview API and is subject to change.
|
|
9856
|
+
* @param {string} id The `scene-annotation` ID.
|
|
9857
|
+
* @param {UpdateSceneAnnotationRequest} updateSceneAnnotationRequest
|
|
8932
9858
|
* @param {*} [options] Override http request option.
|
|
8933
9859
|
* @throws {RequiredError}
|
|
8934
9860
|
*/
|
|
8935
|
-
|
|
9861
|
+
updateSceneAnnotation(id: string, updateSceneAnnotationRequest: UpdateSceneAnnotationRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneAnnotation>>;
|
|
8936
9862
|
};
|
|
8937
9863
|
/**
|
|
8938
|
-
*
|
|
9864
|
+
* SceneAnnotationsApi - factory interface
|
|
8939
9865
|
* @export
|
|
8940
9866
|
*/
|
|
8941
|
-
export declare const
|
|
9867
|
+
export declare const SceneAnnotationsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
8942
9868
|
/**
|
|
8943
|
-
* Create
|
|
8944
|
-
* @param {string} id The `scene-
|
|
8945
|
-
* @param {
|
|
9869
|
+
* Create an annotation belonging to an annotation set. **Preview:** This is a preview API and is subject to change.
|
|
9870
|
+
* @param {string} id The `scene-annotation-set` ID.
|
|
9871
|
+
* @param {CreateSceneAnnotationRequest} createSceneAnnotationRequest
|
|
8946
9872
|
* @param {*} [options] Override http request option.
|
|
8947
9873
|
* @throws {RequiredError}
|
|
8948
9874
|
*/
|
|
8949
|
-
|
|
9875
|
+
createSceneAnnotation(id: string, createSceneAnnotationRequest: CreateSceneAnnotationRequest, options?: any): AxiosPromise<SceneAnnotation>;
|
|
8950
9876
|
/**
|
|
8951
|
-
*
|
|
8952
|
-
* @param {string} id The `
|
|
9877
|
+
* Create an annotation set that is associated with a scene. **Preview:** This is a preview API and is subject to change.
|
|
9878
|
+
* @param {string} id The `scene` ID.
|
|
9879
|
+
* @param {CreateSceneAnnotationSetRequest} createSceneAnnotationSetRequest
|
|
8953
9880
|
* @param {*} [options] Override http request option.
|
|
8954
9881
|
* @throws {RequiredError}
|
|
8955
9882
|
*/
|
|
8956
|
-
|
|
9883
|
+
createSceneAnnotationSet(id: string, createSceneAnnotationSetRequest: CreateSceneAnnotationSetRequest, options?: any): AxiosPromise<SceneAnnotationSet>;
|
|
8957
9884
|
/**
|
|
8958
|
-
*
|
|
8959
|
-
* @param {string} id The `scene-
|
|
9885
|
+
* Delete a scene annotation. **Preview:** This is a preview API and is subject to change.
|
|
9886
|
+
* @param {string} id The `scene-annotation` ID.
|
|
8960
9887
|
* @param {*} [options] Override http request option.
|
|
8961
9888
|
* @throws {RequiredError}
|
|
8962
9889
|
*/
|
|
8963
|
-
|
|
9890
|
+
deleteSceneAnnotation(id: string, options?: any): AxiosPromise<void>;
|
|
8964
9891
|
/**
|
|
8965
|
-
*
|
|
8966
|
-
* @param {string} id The `scene-
|
|
9892
|
+
* Update the attributes of an annotation. **Preview:** This is a preview API and is subject to change.
|
|
9893
|
+
* @param {string} id The `scene-annotation` ID.
|
|
9894
|
+
* @param {UpdateSceneAnnotationRequest} updateSceneAnnotationRequest
|
|
8967
9895
|
* @param {*} [options] Override http request option.
|
|
8968
9896
|
* @throws {RequiredError}
|
|
8969
9897
|
*/
|
|
8970
|
-
|
|
9898
|
+
updateSceneAnnotation(id: string, updateSceneAnnotationRequest: UpdateSceneAnnotationRequest, options?: any): AxiosPromise<SceneAnnotation>;
|
|
8971
9899
|
};
|
|
8972
9900
|
/**
|
|
8973
|
-
* Request parameters for
|
|
9901
|
+
* Request parameters for createSceneAnnotation operation in SceneAnnotationsApi.
|
|
8974
9902
|
* @export
|
|
8975
|
-
* @interface
|
|
9903
|
+
* @interface SceneAnnotationsApiCreateSceneAnnotationRequest
|
|
8976
9904
|
*/
|
|
8977
|
-
export interface
|
|
9905
|
+
export interface SceneAnnotationsApiCreateSceneAnnotationRequest {
|
|
8978
9906
|
/**
|
|
8979
|
-
* The `scene-
|
|
9907
|
+
* The `scene-annotation-set` ID.
|
|
8980
9908
|
* @type {string}
|
|
8981
|
-
* @memberof
|
|
9909
|
+
* @memberof SceneAnnotationsApiCreateSceneAnnotation
|
|
8982
9910
|
*/
|
|
8983
9911
|
readonly id: string;
|
|
8984
9912
|
/**
|
|
8985
9913
|
*
|
|
8986
|
-
* @type {
|
|
8987
|
-
* @memberof
|
|
9914
|
+
* @type {CreateSceneAnnotationRequest}
|
|
9915
|
+
* @memberof SceneAnnotationsApiCreateSceneAnnotation
|
|
8988
9916
|
*/
|
|
8989
|
-
readonly
|
|
9917
|
+
readonly createSceneAnnotationRequest: CreateSceneAnnotationRequest;
|
|
8990
9918
|
}
|
|
8991
9919
|
/**
|
|
8992
|
-
* Request parameters for
|
|
9920
|
+
* Request parameters for createSceneAnnotationSet operation in SceneAnnotationsApi.
|
|
8993
9921
|
* @export
|
|
8994
|
-
* @interface
|
|
9922
|
+
* @interface SceneAnnotationsApiCreateSceneAnnotationSetRequest
|
|
8995
9923
|
*/
|
|
8996
|
-
export interface
|
|
9924
|
+
export interface SceneAnnotationsApiCreateSceneAnnotationSetRequest {
|
|
8997
9925
|
/**
|
|
8998
|
-
* The `
|
|
9926
|
+
* The `scene` ID.
|
|
8999
9927
|
* @type {string}
|
|
9000
|
-
* @memberof
|
|
9928
|
+
* @memberof SceneAnnotationsApiCreateSceneAnnotationSet
|
|
9001
9929
|
*/
|
|
9002
9930
|
readonly id: string;
|
|
9931
|
+
/**
|
|
9932
|
+
*
|
|
9933
|
+
* @type {CreateSceneAnnotationSetRequest}
|
|
9934
|
+
* @memberof SceneAnnotationsApiCreateSceneAnnotationSet
|
|
9935
|
+
*/
|
|
9936
|
+
readonly createSceneAnnotationSetRequest: CreateSceneAnnotationSetRequest;
|
|
9003
9937
|
}
|
|
9004
9938
|
/**
|
|
9005
|
-
* Request parameters for
|
|
9939
|
+
* Request parameters for deleteSceneAnnotation operation in SceneAnnotationsApi.
|
|
9006
9940
|
* @export
|
|
9007
|
-
* @interface
|
|
9941
|
+
* @interface SceneAnnotationsApiDeleteSceneAnnotationRequest
|
|
9008
9942
|
*/
|
|
9009
|
-
export interface
|
|
9943
|
+
export interface SceneAnnotationsApiDeleteSceneAnnotationRequest {
|
|
9010
9944
|
/**
|
|
9011
|
-
* The `scene-
|
|
9945
|
+
* The `scene-annotation` ID.
|
|
9012
9946
|
* @type {string}
|
|
9013
|
-
* @memberof
|
|
9947
|
+
* @memberof SceneAnnotationsApiDeleteSceneAnnotation
|
|
9014
9948
|
*/
|
|
9015
9949
|
readonly id: string;
|
|
9016
9950
|
}
|
|
9017
9951
|
/**
|
|
9018
|
-
* Request parameters for
|
|
9952
|
+
* Request parameters for updateSceneAnnotation operation in SceneAnnotationsApi.
|
|
9019
9953
|
* @export
|
|
9020
|
-
* @interface
|
|
9954
|
+
* @interface SceneAnnotationsApiUpdateSceneAnnotationRequest
|
|
9021
9955
|
*/
|
|
9022
|
-
export interface
|
|
9956
|
+
export interface SceneAnnotationsApiUpdateSceneAnnotationRequest {
|
|
9023
9957
|
/**
|
|
9024
|
-
* The `scene-
|
|
9958
|
+
* The `scene-annotation` ID.
|
|
9025
9959
|
* @type {string}
|
|
9026
|
-
* @memberof
|
|
9960
|
+
* @memberof SceneAnnotationsApiUpdateSceneAnnotation
|
|
9027
9961
|
*/
|
|
9028
9962
|
readonly id: string;
|
|
9963
|
+
/**
|
|
9964
|
+
*
|
|
9965
|
+
* @type {UpdateSceneAnnotationRequest}
|
|
9966
|
+
* @memberof SceneAnnotationsApiUpdateSceneAnnotation
|
|
9967
|
+
*/
|
|
9968
|
+
readonly updateSceneAnnotationRequest: UpdateSceneAnnotationRequest;
|
|
9029
9969
|
}
|
|
9030
9970
|
/**
|
|
9031
|
-
*
|
|
9971
|
+
* SceneAnnotationsApi - object-oriented interface
|
|
9032
9972
|
* @export
|
|
9033
|
-
* @class
|
|
9973
|
+
* @class SceneAnnotationsApi
|
|
9034
9974
|
* @extends {BaseAPI}
|
|
9035
9975
|
*/
|
|
9036
|
-
export declare class
|
|
9976
|
+
export declare class SceneAnnotationsApi extends BaseAPI {
|
|
9037
9977
|
/**
|
|
9038
|
-
* Create
|
|
9039
|
-
* @param {
|
|
9978
|
+
* Create an annotation belonging to an annotation set. **Preview:** This is a preview API and is subject to change.
|
|
9979
|
+
* @param {SceneAnnotationsApiCreateSceneAnnotationRequest} requestParameters Request parameters.
|
|
9040
9980
|
* @param {*} [options] Override http request option.
|
|
9041
9981
|
* @throws {RequiredError}
|
|
9042
|
-
* @memberof
|
|
9982
|
+
* @memberof SceneAnnotationsApi
|
|
9043
9983
|
*/
|
|
9044
|
-
|
|
9984
|
+
createSceneAnnotation(requestParameters: SceneAnnotationsApiCreateSceneAnnotationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneAnnotation, any>>;
|
|
9045
9985
|
/**
|
|
9046
|
-
*
|
|
9047
|
-
* @param {
|
|
9986
|
+
* Create an annotation set that is associated with a scene. **Preview:** This is a preview API and is subject to change.
|
|
9987
|
+
* @param {SceneAnnotationsApiCreateSceneAnnotationSetRequest} requestParameters Request parameters.
|
|
9048
9988
|
* @param {*} [options] Override http request option.
|
|
9049
9989
|
* @throws {RequiredError}
|
|
9050
|
-
* @memberof
|
|
9990
|
+
* @memberof SceneAnnotationsApi
|
|
9051
9991
|
*/
|
|
9052
|
-
|
|
9992
|
+
createSceneAnnotationSet(requestParameters: SceneAnnotationsApiCreateSceneAnnotationSetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneAnnotationSet, any>>;
|
|
9053
9993
|
/**
|
|
9054
|
-
*
|
|
9055
|
-
* @param {
|
|
9994
|
+
* Delete a scene annotation. **Preview:** This is a preview API and is subject to change.
|
|
9995
|
+
* @param {SceneAnnotationsApiDeleteSceneAnnotationRequest} requestParameters Request parameters.
|
|
9056
9996
|
* @param {*} [options] Override http request option.
|
|
9057
9997
|
* @throws {RequiredError}
|
|
9058
|
-
* @memberof
|
|
9998
|
+
* @memberof SceneAnnotationsApi
|
|
9059
9999
|
*/
|
|
9060
|
-
|
|
10000
|
+
deleteSceneAnnotation(requestParameters: SceneAnnotationsApiDeleteSceneAnnotationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
9061
10001
|
/**
|
|
9062
|
-
*
|
|
9063
|
-
* @param {
|
|
10002
|
+
* Update the attributes of an annotation. **Preview:** This is a preview API and is subject to change.
|
|
10003
|
+
* @param {SceneAnnotationsApiUpdateSceneAnnotationRequest} requestParameters Request parameters.
|
|
9064
10004
|
* @param {*} [options] Override http request option.
|
|
9065
10005
|
* @throws {RequiredError}
|
|
9066
|
-
* @memberof
|
|
10006
|
+
* @memberof SceneAnnotationsApi
|
|
9067
10007
|
*/
|
|
9068
|
-
|
|
10008
|
+
updateSceneAnnotation(requestParameters: SceneAnnotationsApiUpdateSceneAnnotationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneAnnotation, any>>;
|
|
9069
10009
|
}
|
|
9070
10010
|
/**
|
|
9071
10011
|
* SceneItemOverridesApi - axios parameter creator
|
|
@@ -9689,6 +10629,236 @@ export declare class SceneItemsApi extends BaseAPI {
|
|
|
9689
10629
|
*/
|
|
9690
10630
|
updateSceneItem(requestParameters: SceneItemsApiUpdateSceneItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
|
|
9691
10631
|
}
|
|
10632
|
+
/**
|
|
10633
|
+
* SceneSynchronizationsApi - axios parameter creator
|
|
10634
|
+
* @export
|
|
10635
|
+
*/
|
|
10636
|
+
export declare const SceneSynchronizationsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
10637
|
+
/**
|
|
10638
|
+
* Create a scene item update job.
|
|
10639
|
+
* @param {string} id The `scene` ID.
|
|
10640
|
+
* @param {CreateSceneSyncRequest} createSceneSyncRequest
|
|
10641
|
+
* @param {*} [options] Override http request option.
|
|
10642
|
+
* @throws {RequiredError}
|
|
10643
|
+
*/
|
|
10644
|
+
createSceneSync: (id: string, createSceneSyncRequest: CreateSceneSyncRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10645
|
+
/**
|
|
10646
|
+
* Get a `queued-scene-sync-job`.
|
|
10647
|
+
* @param {string} id The `queued-scene-sync` ID.
|
|
10648
|
+
* @param {*} [options] Override http request option.
|
|
10649
|
+
* @throws {RequiredError}
|
|
10650
|
+
*/
|
|
10651
|
+
getQueuedSceneSync: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10652
|
+
/**
|
|
10653
|
+
* Get a `scene-sync`.
|
|
10654
|
+
* @param {string} id The `scene-sync` ID.
|
|
10655
|
+
* @param {*} [options] Override http request option.
|
|
10656
|
+
* @throws {RequiredError}
|
|
10657
|
+
*/
|
|
10658
|
+
getSceneSync: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10659
|
+
/**
|
|
10660
|
+
* Get the results of a scene synchronization.
|
|
10661
|
+
* @param {string} id The `scene-sync` ID.
|
|
10662
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
10663
|
+
* @param {number} [pageSize] The number of items to return.
|
|
10664
|
+
* @param {string} [filterSceneItemId] List of scene item IDs to filter on.
|
|
10665
|
+
* @param {*} [options] Override http request option.
|
|
10666
|
+
* @throws {RequiredError}
|
|
10667
|
+
*/
|
|
10668
|
+
getSceneSyncItemResults: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, filterSceneItemId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10669
|
+
};
|
|
10670
|
+
/**
|
|
10671
|
+
* SceneSynchronizationsApi - functional programming interface
|
|
10672
|
+
* @export
|
|
10673
|
+
*/
|
|
10674
|
+
export declare const SceneSynchronizationsApiFp: (configuration?: Configuration | undefined) => {
|
|
10675
|
+
/**
|
|
10676
|
+
* Create a scene item update job.
|
|
10677
|
+
* @param {string} id The `scene` ID.
|
|
10678
|
+
* @param {CreateSceneSyncRequest} createSceneSyncRequest
|
|
10679
|
+
* @param {*} [options] Override http request option.
|
|
10680
|
+
* @throws {RequiredError}
|
|
10681
|
+
*/
|
|
10682
|
+
createSceneSync(id: string, createSceneSyncRequest: CreateSceneSyncRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
10683
|
+
/**
|
|
10684
|
+
* Get a `queued-scene-sync-job`.
|
|
10685
|
+
* @param {string} id The `queued-scene-sync` ID.
|
|
10686
|
+
* @param {*} [options] Override http request option.
|
|
10687
|
+
* @throws {RequiredError}
|
|
10688
|
+
*/
|
|
10689
|
+
getQueuedSceneSync(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
10690
|
+
/**
|
|
10691
|
+
* Get a `scene-sync`.
|
|
10692
|
+
* @param {string} id The `scene-sync` ID.
|
|
10693
|
+
* @param {*} [options] Override http request option.
|
|
10694
|
+
* @throws {RequiredError}
|
|
10695
|
+
*/
|
|
10696
|
+
getSceneSync(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneSync>>;
|
|
10697
|
+
/**
|
|
10698
|
+
* Get the results of a scene synchronization.
|
|
10699
|
+
* @param {string} id The `scene-sync` ID.
|
|
10700
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
10701
|
+
* @param {number} [pageSize] The number of items to return.
|
|
10702
|
+
* @param {string} [filterSceneItemId] List of scene item IDs to filter on.
|
|
10703
|
+
* @param {*} [options] Override http request option.
|
|
10704
|
+
* @throws {RequiredError}
|
|
10705
|
+
*/
|
|
10706
|
+
getSceneSyncItemResults(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, filterSceneItemId?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneSyncItemResultsList>>;
|
|
10707
|
+
};
|
|
10708
|
+
/**
|
|
10709
|
+
* SceneSynchronizationsApi - factory interface
|
|
10710
|
+
* @export
|
|
10711
|
+
*/
|
|
10712
|
+
export declare const SceneSynchronizationsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
10713
|
+
/**
|
|
10714
|
+
* Create a scene item update job.
|
|
10715
|
+
* @param {string} id The `scene` ID.
|
|
10716
|
+
* @param {CreateSceneSyncRequest} createSceneSyncRequest
|
|
10717
|
+
* @param {*} [options] Override http request option.
|
|
10718
|
+
* @throws {RequiredError}
|
|
10719
|
+
*/
|
|
10720
|
+
createSceneSync(id: string, createSceneSyncRequest: CreateSceneSyncRequest, options?: any): AxiosPromise<QueuedJob>;
|
|
10721
|
+
/**
|
|
10722
|
+
* Get a `queued-scene-sync-job`.
|
|
10723
|
+
* @param {string} id The `queued-scene-sync` ID.
|
|
10724
|
+
* @param {*} [options] Override http request option.
|
|
10725
|
+
* @throws {RequiredError}
|
|
10726
|
+
*/
|
|
10727
|
+
getQueuedSceneSync(id: string, options?: any): AxiosPromise<QueuedJob>;
|
|
10728
|
+
/**
|
|
10729
|
+
* Get a `scene-sync`.
|
|
10730
|
+
* @param {string} id The `scene-sync` ID.
|
|
10731
|
+
* @param {*} [options] Override http request option.
|
|
10732
|
+
* @throws {RequiredError}
|
|
10733
|
+
*/
|
|
10734
|
+
getSceneSync(id: string, options?: any): AxiosPromise<SceneSync>;
|
|
10735
|
+
/**
|
|
10736
|
+
* Get the results of a scene synchronization.
|
|
10737
|
+
* @param {string} id The `scene-sync` ID.
|
|
10738
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
10739
|
+
* @param {number} [pageSize] The number of items to return.
|
|
10740
|
+
* @param {string} [filterSceneItemId] List of scene item IDs to filter on.
|
|
10741
|
+
* @param {*} [options] Override http request option.
|
|
10742
|
+
* @throws {RequiredError}
|
|
10743
|
+
*/
|
|
10744
|
+
getSceneSyncItemResults(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, filterSceneItemId?: string | undefined, options?: any): AxiosPromise<SceneSyncItemResultsList>;
|
|
10745
|
+
};
|
|
10746
|
+
/**
|
|
10747
|
+
* Request parameters for createSceneSync operation in SceneSynchronizationsApi.
|
|
10748
|
+
* @export
|
|
10749
|
+
* @interface SceneSynchronizationsApiCreateSceneSyncRequest
|
|
10750
|
+
*/
|
|
10751
|
+
export interface SceneSynchronizationsApiCreateSceneSyncRequest {
|
|
10752
|
+
/**
|
|
10753
|
+
* The `scene` ID.
|
|
10754
|
+
* @type {string}
|
|
10755
|
+
* @memberof SceneSynchronizationsApiCreateSceneSync
|
|
10756
|
+
*/
|
|
10757
|
+
readonly id: string;
|
|
10758
|
+
/**
|
|
10759
|
+
*
|
|
10760
|
+
* @type {CreateSceneSyncRequest}
|
|
10761
|
+
* @memberof SceneSynchronizationsApiCreateSceneSync
|
|
10762
|
+
*/
|
|
10763
|
+
readonly createSceneSyncRequest: CreateSceneSyncRequest;
|
|
10764
|
+
}
|
|
10765
|
+
/**
|
|
10766
|
+
* Request parameters for getQueuedSceneSync operation in SceneSynchronizationsApi.
|
|
10767
|
+
* @export
|
|
10768
|
+
* @interface SceneSynchronizationsApiGetQueuedSceneSyncRequest
|
|
10769
|
+
*/
|
|
10770
|
+
export interface SceneSynchronizationsApiGetQueuedSceneSyncRequest {
|
|
10771
|
+
/**
|
|
10772
|
+
* The `queued-scene-sync` ID.
|
|
10773
|
+
* @type {string}
|
|
10774
|
+
* @memberof SceneSynchronizationsApiGetQueuedSceneSync
|
|
10775
|
+
*/
|
|
10776
|
+
readonly id: string;
|
|
10777
|
+
}
|
|
10778
|
+
/**
|
|
10779
|
+
* Request parameters for getSceneSync operation in SceneSynchronizationsApi.
|
|
10780
|
+
* @export
|
|
10781
|
+
* @interface SceneSynchronizationsApiGetSceneSyncRequest
|
|
10782
|
+
*/
|
|
10783
|
+
export interface SceneSynchronizationsApiGetSceneSyncRequest {
|
|
10784
|
+
/**
|
|
10785
|
+
* The `scene-sync` ID.
|
|
10786
|
+
* @type {string}
|
|
10787
|
+
* @memberof SceneSynchronizationsApiGetSceneSync
|
|
10788
|
+
*/
|
|
10789
|
+
readonly id: string;
|
|
10790
|
+
}
|
|
10791
|
+
/**
|
|
10792
|
+
* Request parameters for getSceneSyncItemResults operation in SceneSynchronizationsApi.
|
|
10793
|
+
* @export
|
|
10794
|
+
* @interface SceneSynchronizationsApiGetSceneSyncItemResultsRequest
|
|
10795
|
+
*/
|
|
10796
|
+
export interface SceneSynchronizationsApiGetSceneSyncItemResultsRequest {
|
|
10797
|
+
/**
|
|
10798
|
+
* The `scene-sync` ID.
|
|
10799
|
+
* @type {string}
|
|
10800
|
+
* @memberof SceneSynchronizationsApiGetSceneSyncItemResults
|
|
10801
|
+
*/
|
|
10802
|
+
readonly id: string;
|
|
10803
|
+
/**
|
|
10804
|
+
* The cursor for the next page of items.
|
|
10805
|
+
* @type {string}
|
|
10806
|
+
* @memberof SceneSynchronizationsApiGetSceneSyncItemResults
|
|
10807
|
+
*/
|
|
10808
|
+
readonly pageCursor?: string;
|
|
10809
|
+
/**
|
|
10810
|
+
* The number of items to return.
|
|
10811
|
+
* @type {number}
|
|
10812
|
+
* @memberof SceneSynchronizationsApiGetSceneSyncItemResults
|
|
10813
|
+
*/
|
|
10814
|
+
readonly pageSize?: number;
|
|
10815
|
+
/**
|
|
10816
|
+
* List of scene item IDs to filter on.
|
|
10817
|
+
* @type {string}
|
|
10818
|
+
* @memberof SceneSynchronizationsApiGetSceneSyncItemResults
|
|
10819
|
+
*/
|
|
10820
|
+
readonly filterSceneItemId?: string;
|
|
10821
|
+
}
|
|
10822
|
+
/**
|
|
10823
|
+
* SceneSynchronizationsApi - object-oriented interface
|
|
10824
|
+
* @export
|
|
10825
|
+
* @class SceneSynchronizationsApi
|
|
10826
|
+
* @extends {BaseAPI}
|
|
10827
|
+
*/
|
|
10828
|
+
export declare class SceneSynchronizationsApi extends BaseAPI {
|
|
10829
|
+
/**
|
|
10830
|
+
* Create a scene item update job.
|
|
10831
|
+
* @param {SceneSynchronizationsApiCreateSceneSyncRequest} requestParameters Request parameters.
|
|
10832
|
+
* @param {*} [options] Override http request option.
|
|
10833
|
+
* @throws {RequiredError}
|
|
10834
|
+
* @memberof SceneSynchronizationsApi
|
|
10835
|
+
*/
|
|
10836
|
+
createSceneSync(requestParameters: SceneSynchronizationsApiCreateSceneSyncRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
|
|
10837
|
+
/**
|
|
10838
|
+
* Get a `queued-scene-sync-job`.
|
|
10839
|
+
* @param {SceneSynchronizationsApiGetQueuedSceneSyncRequest} requestParameters Request parameters.
|
|
10840
|
+
* @param {*} [options] Override http request option.
|
|
10841
|
+
* @throws {RequiredError}
|
|
10842
|
+
* @memberof SceneSynchronizationsApi
|
|
10843
|
+
*/
|
|
10844
|
+
getQueuedSceneSync(requestParameters: SceneSynchronizationsApiGetQueuedSceneSyncRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
|
|
10845
|
+
/**
|
|
10846
|
+
* Get a `scene-sync`.
|
|
10847
|
+
* @param {SceneSynchronizationsApiGetSceneSyncRequest} requestParameters Request parameters.
|
|
10848
|
+
* @param {*} [options] Override http request option.
|
|
10849
|
+
* @throws {RequiredError}
|
|
10850
|
+
* @memberof SceneSynchronizationsApi
|
|
10851
|
+
*/
|
|
10852
|
+
getSceneSync(requestParameters: SceneSynchronizationsApiGetSceneSyncRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneSync, any>>;
|
|
10853
|
+
/**
|
|
10854
|
+
* Get the results of a scene synchronization.
|
|
10855
|
+
* @param {SceneSynchronizationsApiGetSceneSyncItemResultsRequest} requestParameters Request parameters.
|
|
10856
|
+
* @param {*} [options] Override http request option.
|
|
10857
|
+
* @throws {RequiredError}
|
|
10858
|
+
* @memberof SceneSynchronizationsApi
|
|
10859
|
+
*/
|
|
10860
|
+
getSceneSyncItemResults(requestParameters: SceneSynchronizationsApiGetSceneSyncItemResultsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneSyncItemResultsList, any>>;
|
|
10861
|
+
}
|
|
9692
10862
|
/**
|
|
9693
10863
|
* SceneViewStatesApi - axios parameter creator
|
|
9694
10864
|
* @export
|
|
@@ -10440,12 +11610,15 @@ export declare const ScenesApiAxiosParamCreator: (configuration?: Configuration
|
|
|
10440
11610
|
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
10441
11611
|
* @param {string} [fieldsScene] Comma-separated list of fields to return in response. An empty value returns no fields. `metadata` is only returned if explicitly requested.
|
|
10442
11612
|
* @param {{ [key: string]: string; }} [filterMetadata] Filter scenes that contain all the given metadata key-value pairs. Should be specified in query parameter map notation: `filter[metadata][key1]=value1&filter[metadata][key]=value2`.
|
|
11613
|
+
* @param {string} [filterSceneItemsSourcePartRevision] Comma-separated list of scene-item source part revision IDs to filter on.
|
|
11614
|
+
* @param {string} [filterSceneItemsSourceGeometrySet] Comma-separated list of scene-item source geometry set IDs to filter on.
|
|
11615
|
+
* @param {string} [filterSceneItemsSourceScene] Comma-separated list of scene-item source scene IDs to filter on.
|
|
10443
11616
|
* @param {*} [options] Override http request option.
|
|
10444
11617
|
* @throws {RequiredError}
|
|
10445
11618
|
*/
|
|
10446
11619
|
getScenes: (pageCursor?: string | undefined, pageSize?: number | undefined, filterName?: string | undefined, filterSuppliedId?: string | undefined, fieldsScene?: string | undefined, filterMetadata?: {
|
|
10447
11620
|
[key: string]: string;
|
|
10448
|
-
} | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11621
|
+
} | undefined, filterSceneItemsSourcePartRevision?: string | undefined, filterSceneItemsSourceGeometrySet?: string | undefined, filterSceneItemsSourceScene?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10449
11622
|
/**
|
|
10450
11623
|
* Get a rendered image of a `scene`. If only a single pixel is returned, ensure the `scene` is in the `commit` state and contains scene items.
|
|
10451
11624
|
* @param {string} id The `scene` ID.
|
|
@@ -10506,12 +11679,15 @@ export declare const ScenesApiFp: (configuration?: Configuration | undefined) =>
|
|
|
10506
11679
|
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
10507
11680
|
* @param {string} [fieldsScene] Comma-separated list of fields to return in response. An empty value returns no fields. `metadata` is only returned if explicitly requested.
|
|
10508
11681
|
* @param {{ [key: string]: string; }} [filterMetadata] Filter scenes that contain all the given metadata key-value pairs. Should be specified in query parameter map notation: `filter[metadata][key1]=value1&filter[metadata][key]=value2`.
|
|
11682
|
+
* @param {string} [filterSceneItemsSourcePartRevision] Comma-separated list of scene-item source part revision IDs to filter on.
|
|
11683
|
+
* @param {string} [filterSceneItemsSourceGeometrySet] Comma-separated list of scene-item source geometry set IDs to filter on.
|
|
11684
|
+
* @param {string} [filterSceneItemsSourceScene] Comma-separated list of scene-item source scene IDs to filter on.
|
|
10509
11685
|
* @param {*} [options] Override http request option.
|
|
10510
11686
|
* @throws {RequiredError}
|
|
10511
11687
|
*/
|
|
10512
11688
|
getScenes(pageCursor?: string | undefined, pageSize?: number | undefined, filterName?: string | undefined, filterSuppliedId?: string | undefined, fieldsScene?: string | undefined, filterMetadata?: {
|
|
10513
11689
|
[key: string]: string;
|
|
10514
|
-
} | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneList>>;
|
|
11690
|
+
} | undefined, filterSceneItemsSourcePartRevision?: string | undefined, filterSceneItemsSourceGeometrySet?: string | undefined, filterSceneItemsSourceScene?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneList>>;
|
|
10515
11691
|
/**
|
|
10516
11692
|
* Get a rendered image of a `scene`. If only a single pixel is returned, ensure the `scene` is in the `commit` state and contains scene items.
|
|
10517
11693
|
* @param {string} id The `scene` ID.
|
|
@@ -10572,12 +11748,15 @@ export declare const ScenesApiFactory: (configuration?: Configuration | undefine
|
|
|
10572
11748
|
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
10573
11749
|
* @param {string} [fieldsScene] Comma-separated list of fields to return in response. An empty value returns no fields. `metadata` is only returned if explicitly requested.
|
|
10574
11750
|
* @param {{ [key: string]: string; }} [filterMetadata] Filter scenes that contain all the given metadata key-value pairs. Should be specified in query parameter map notation: `filter[metadata][key1]=value1&filter[metadata][key]=value2`.
|
|
11751
|
+
* @param {string} [filterSceneItemsSourcePartRevision] Comma-separated list of scene-item source part revision IDs to filter on.
|
|
11752
|
+
* @param {string} [filterSceneItemsSourceGeometrySet] Comma-separated list of scene-item source geometry set IDs to filter on.
|
|
11753
|
+
* @param {string} [filterSceneItemsSourceScene] Comma-separated list of scene-item source scene IDs to filter on.
|
|
10575
11754
|
* @param {*} [options] Override http request option.
|
|
10576
11755
|
* @throws {RequiredError}
|
|
10577
11756
|
*/
|
|
10578
11757
|
getScenes(pageCursor?: string | undefined, pageSize?: number | undefined, filterName?: string | undefined, filterSuppliedId?: string | undefined, fieldsScene?: string | undefined, filterMetadata?: {
|
|
10579
11758
|
[key: string]: string;
|
|
10580
|
-
} | undefined, options?: any): AxiosPromise<SceneList>;
|
|
11759
|
+
} | undefined, filterSceneItemsSourcePartRevision?: string | undefined, filterSceneItemsSourceGeometrySet?: string | undefined, filterSceneItemsSourceScene?: string | undefined, options?: any): AxiosPromise<SceneList>;
|
|
10581
11760
|
/**
|
|
10582
11761
|
* Get a rendered image of a `scene`. If only a single pixel is returned, ensure the `scene` is in the `commit` state and contains scene items.
|
|
10583
11762
|
* @param {string} id The `scene` ID.
|
|
@@ -10698,6 +11877,24 @@ export interface ScenesApiGetScenesRequest {
|
|
|
10698
11877
|
readonly filterMetadata?: {
|
|
10699
11878
|
[key: string]: string;
|
|
10700
11879
|
};
|
|
11880
|
+
/**
|
|
11881
|
+
* Comma-separated list of scene-item source part revision IDs to filter on.
|
|
11882
|
+
* @type {string}
|
|
11883
|
+
* @memberof ScenesApiGetScenes
|
|
11884
|
+
*/
|
|
11885
|
+
readonly filterSceneItemsSourcePartRevision?: string;
|
|
11886
|
+
/**
|
|
11887
|
+
* Comma-separated list of scene-item source geometry set IDs to filter on.
|
|
11888
|
+
* @type {string}
|
|
11889
|
+
* @memberof ScenesApiGetScenes
|
|
11890
|
+
*/
|
|
11891
|
+
readonly filterSceneItemsSourceGeometrySet?: string;
|
|
11892
|
+
/**
|
|
11893
|
+
* Comma-separated list of scene-item source scene IDs to filter on.
|
|
11894
|
+
* @type {string}
|
|
11895
|
+
* @memberof ScenesApiGetScenes
|
|
11896
|
+
*/
|
|
11897
|
+
readonly filterSceneItemsSourceScene?: string;
|
|
10701
11898
|
}
|
|
10702
11899
|
/**
|
|
10703
11900
|
* Request parameters for renderScene operation in ScenesApi.
|