@vertexvis/api-client-node 0.22.1 → 0.22.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/api.d.ts +666 -13
- package/dist/cjs/api.js +372 -15
- package/dist/cjs/client/helpers/parts.js +1 -1
- package/dist/cjs/client/helpers/queued-jobs.d.ts +1 -1
- package/dist/cjs/client/helpers/queued-jobs.js +6 -2
- package/dist/cjs/client/index.d.ts +5 -0
- package/dist/cjs/client/version.d.ts +1 -1
- package/dist/cjs/client/version.js +1 -1
- package/dist/esm/api.d.ts +666 -13
- package/dist/esm/api.js +365 -12
- package/dist/esm/client/helpers/parts.js +1 -1
- package/dist/esm/client/helpers/queued-jobs.d.ts +1 -1
- package/dist/esm/client/helpers/queued-jobs.js +6 -2
- package/dist/esm/client/index.d.ts +5 -0
- 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
|
*
|
|
@@ -1619,7 +1625,7 @@ export interface CreateSceneRequestDataAttributes {
|
|
|
1619
1625
|
*/
|
|
1620
1626
|
worldOrientation?: Orientation;
|
|
1621
1627
|
/**
|
|
1622
|
-
*
|
|
1628
|
+
* 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
1629
|
* @type {{ [key: string]: string; }}
|
|
1624
1630
|
* @memberof CreateSceneRequestDataAttributes
|
|
1625
1631
|
*/
|
|
@@ -1640,6 +1646,19 @@ export interface CreateSceneRequestDataRelationships {
|
|
|
1640
1646
|
*/
|
|
1641
1647
|
source: SceneRelationship;
|
|
1642
1648
|
}
|
|
1649
|
+
/**
|
|
1650
|
+
* An operation to perform on a Scene.
|
|
1651
|
+
* @export
|
|
1652
|
+
* @interface CreateSceneSyncRequest
|
|
1653
|
+
*/
|
|
1654
|
+
export interface CreateSceneSyncRequest {
|
|
1655
|
+
/**
|
|
1656
|
+
*
|
|
1657
|
+
* @type {UpdateItemToDefaultRenditionOperation}
|
|
1658
|
+
* @memberof CreateSceneSyncRequest
|
|
1659
|
+
*/
|
|
1660
|
+
operation: UpdateItemToDefaultRenditionOperation;
|
|
1661
|
+
}
|
|
1643
1662
|
/**
|
|
1644
1663
|
*
|
|
1645
1664
|
* @export
|
|
@@ -4224,7 +4243,7 @@ export interface SceneDataAttributes {
|
|
|
4224
4243
|
*/
|
|
4225
4244
|
sceneItemCount?: number;
|
|
4226
4245
|
/**
|
|
4227
|
-
*
|
|
4246
|
+
* 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
4247
|
* @type {{ [key: string]: string; }}
|
|
4229
4248
|
* @memberof SceneDataAttributes
|
|
4230
4249
|
*/
|
|
@@ -4674,6 +4693,189 @@ export declare const SceneRelationshipDataTypeEnum: {
|
|
|
4674
4693
|
readonly Scene: "scene";
|
|
4675
4694
|
};
|
|
4676
4695
|
export declare type SceneRelationshipDataTypeEnum = (typeof SceneRelationshipDataTypeEnum)[keyof typeof SceneRelationshipDataTypeEnum];
|
|
4696
|
+
/**
|
|
4697
|
+
*
|
|
4698
|
+
* @export
|
|
4699
|
+
* @interface SceneSync
|
|
4700
|
+
*/
|
|
4701
|
+
export interface SceneSync {
|
|
4702
|
+
/**
|
|
4703
|
+
*
|
|
4704
|
+
* @type {SceneSyncData}
|
|
4705
|
+
* @memberof SceneSync
|
|
4706
|
+
*/
|
|
4707
|
+
data: SceneSyncData;
|
|
4708
|
+
/**
|
|
4709
|
+
*
|
|
4710
|
+
* @type {{ [key: string]: Link; }}
|
|
4711
|
+
* @memberof SceneSync
|
|
4712
|
+
*/
|
|
4713
|
+
links?: {
|
|
4714
|
+
[key: string]: Link;
|
|
4715
|
+
};
|
|
4716
|
+
}
|
|
4717
|
+
/**
|
|
4718
|
+
*
|
|
4719
|
+
* @export
|
|
4720
|
+
* @interface SceneSyncData
|
|
4721
|
+
*/
|
|
4722
|
+
export interface SceneSyncData {
|
|
4723
|
+
/**
|
|
4724
|
+
*
|
|
4725
|
+
* @type {string}
|
|
4726
|
+
* @memberof SceneSyncData
|
|
4727
|
+
*/
|
|
4728
|
+
type: string;
|
|
4729
|
+
/**
|
|
4730
|
+
* ID of the resource.
|
|
4731
|
+
* @type {string}
|
|
4732
|
+
* @memberof SceneSyncData
|
|
4733
|
+
*/
|
|
4734
|
+
id: string;
|
|
4735
|
+
/**
|
|
4736
|
+
*
|
|
4737
|
+
* @type {SceneSyncDataAttributes}
|
|
4738
|
+
* @memberof SceneSyncData
|
|
4739
|
+
*/
|
|
4740
|
+
attributes: SceneSyncDataAttributes;
|
|
4741
|
+
/**
|
|
4742
|
+
*
|
|
4743
|
+
* @type {{ [key: string]: Link; }}
|
|
4744
|
+
* @memberof SceneSyncData
|
|
4745
|
+
*/
|
|
4746
|
+
links?: {
|
|
4747
|
+
[key: string]: Link;
|
|
4748
|
+
};
|
|
4749
|
+
}
|
|
4750
|
+
/**
|
|
4751
|
+
*
|
|
4752
|
+
* @export
|
|
4753
|
+
* @interface SceneSyncDataAttributes
|
|
4754
|
+
*/
|
|
4755
|
+
export interface SceneSyncDataAttributes {
|
|
4756
|
+
/**
|
|
4757
|
+
*
|
|
4758
|
+
* @type {string}
|
|
4759
|
+
* @memberof SceneSyncDataAttributes
|
|
4760
|
+
*/
|
|
4761
|
+
created: string;
|
|
4762
|
+
/**
|
|
4763
|
+
*
|
|
4764
|
+
* @type {string}
|
|
4765
|
+
* @memberof SceneSyncDataAttributes
|
|
4766
|
+
*/
|
|
4767
|
+
completedAt: string;
|
|
4768
|
+
/**
|
|
4769
|
+
*
|
|
4770
|
+
* @type {string}
|
|
4771
|
+
* @memberof SceneSyncDataAttributes
|
|
4772
|
+
*/
|
|
4773
|
+
status: string;
|
|
4774
|
+
}
|
|
4775
|
+
/**
|
|
4776
|
+
*
|
|
4777
|
+
* @export
|
|
4778
|
+
* @interface SceneSyncItemResultData
|
|
4779
|
+
*/
|
|
4780
|
+
export interface SceneSyncItemResultData {
|
|
4781
|
+
/**
|
|
4782
|
+
*
|
|
4783
|
+
* @type {string}
|
|
4784
|
+
* @memberof SceneSyncItemResultData
|
|
4785
|
+
*/
|
|
4786
|
+
type: string;
|
|
4787
|
+
/**
|
|
4788
|
+
* ID of the resource.
|
|
4789
|
+
* @type {string}
|
|
4790
|
+
* @memberof SceneSyncItemResultData
|
|
4791
|
+
*/
|
|
4792
|
+
id: string;
|
|
4793
|
+
/**
|
|
4794
|
+
*
|
|
4795
|
+
* @type {SceneSyncItemResultDataAttributes}
|
|
4796
|
+
* @memberof SceneSyncItemResultData
|
|
4797
|
+
*/
|
|
4798
|
+
attributes: SceneSyncItemResultDataAttributes;
|
|
4799
|
+
/**
|
|
4800
|
+
*
|
|
4801
|
+
* @type {{ [key: string]: Link; }}
|
|
4802
|
+
* @memberof SceneSyncItemResultData
|
|
4803
|
+
*/
|
|
4804
|
+
links?: {
|
|
4805
|
+
[key: string]: Link;
|
|
4806
|
+
};
|
|
4807
|
+
/**
|
|
4808
|
+
*
|
|
4809
|
+
* @type {SceneSyncItemResultDataRelationships}
|
|
4810
|
+
* @memberof SceneSyncItemResultData
|
|
4811
|
+
*/
|
|
4812
|
+
relationships: SceneSyncItemResultDataRelationships;
|
|
4813
|
+
}
|
|
4814
|
+
/**
|
|
4815
|
+
*
|
|
4816
|
+
* @export
|
|
4817
|
+
* @interface SceneSyncItemResultDataAttributes
|
|
4818
|
+
*/
|
|
4819
|
+
export interface SceneSyncItemResultDataAttributes {
|
|
4820
|
+
/**
|
|
4821
|
+
*
|
|
4822
|
+
* @type {string}
|
|
4823
|
+
* @memberof SceneSyncItemResultDataAttributes
|
|
4824
|
+
*/
|
|
4825
|
+
status: string;
|
|
4826
|
+
/**
|
|
4827
|
+
*
|
|
4828
|
+
* @type {ApiError}
|
|
4829
|
+
* @memberof SceneSyncItemResultDataAttributes
|
|
4830
|
+
*/
|
|
4831
|
+
error?: ApiError;
|
|
4832
|
+
}
|
|
4833
|
+
/**
|
|
4834
|
+
*
|
|
4835
|
+
* @export
|
|
4836
|
+
* @interface SceneSyncItemResultDataRelationships
|
|
4837
|
+
*/
|
|
4838
|
+
export interface SceneSyncItemResultDataRelationships {
|
|
4839
|
+
/**
|
|
4840
|
+
*
|
|
4841
|
+
* @type {SceneRelationship}
|
|
4842
|
+
* @memberof SceneSyncItemResultDataRelationships
|
|
4843
|
+
*/
|
|
4844
|
+
scene: SceneRelationship;
|
|
4845
|
+
/**
|
|
4846
|
+
*
|
|
4847
|
+
* @type {SceneItemRelationship}
|
|
4848
|
+
* @memberof SceneSyncItemResultDataRelationships
|
|
4849
|
+
*/
|
|
4850
|
+
sceneItem: SceneItemRelationship;
|
|
4851
|
+
}
|
|
4852
|
+
/**
|
|
4853
|
+
*
|
|
4854
|
+
* @export
|
|
4855
|
+
* @interface SceneSyncItemResultsList
|
|
4856
|
+
*/
|
|
4857
|
+
export interface SceneSyncItemResultsList {
|
|
4858
|
+
/**
|
|
4859
|
+
*
|
|
4860
|
+
* @type {Array<SceneSyncItemResultData>}
|
|
4861
|
+
* @memberof SceneSyncItemResultsList
|
|
4862
|
+
*/
|
|
4863
|
+
data: Array<SceneSyncItemResultData>;
|
|
4864
|
+
/**
|
|
4865
|
+
*
|
|
4866
|
+
* @type {{ [key: string]: Link; }}
|
|
4867
|
+
* @memberof SceneSyncItemResultsList
|
|
4868
|
+
*/
|
|
4869
|
+
links: {
|
|
4870
|
+
[key: string]: Link;
|
|
4871
|
+
};
|
|
4872
|
+
/**
|
|
4873
|
+
*
|
|
4874
|
+
* @type {Array<SceneItemData>}
|
|
4875
|
+
* @memberof SceneSyncItemResultsList
|
|
4876
|
+
*/
|
|
4877
|
+
included: Array<SceneItemData>;
|
|
4878
|
+
}
|
|
4677
4879
|
/**
|
|
4678
4880
|
*
|
|
4679
4881
|
* @export
|
|
@@ -5347,11 +5549,53 @@ export interface UpdateApplicationRequestData {
|
|
|
5347
5549
|
type: string;
|
|
5348
5550
|
/**
|
|
5349
5551
|
*
|
|
5350
|
-
* @type {
|
|
5552
|
+
* @type {UpdateApplicationRequestDataAttributes}
|
|
5351
5553
|
* @memberof UpdateApplicationRequestData
|
|
5352
5554
|
*/
|
|
5353
|
-
attributes:
|
|
5555
|
+
attributes: UpdateApplicationRequestDataAttributes;
|
|
5354
5556
|
}
|
|
5557
|
+
/**
|
|
5558
|
+
*
|
|
5559
|
+
* @export
|
|
5560
|
+
* @interface UpdateApplicationRequestDataAttributes
|
|
5561
|
+
*/
|
|
5562
|
+
export interface UpdateApplicationRequestDataAttributes {
|
|
5563
|
+
/**
|
|
5564
|
+
*
|
|
5565
|
+
* @type {string}
|
|
5566
|
+
* @memberof UpdateApplicationRequestDataAttributes
|
|
5567
|
+
*/
|
|
5568
|
+
name?: string;
|
|
5569
|
+
/**
|
|
5570
|
+
*
|
|
5571
|
+
* @type {Array<string>}
|
|
5572
|
+
* @memberof UpdateApplicationRequestDataAttributes
|
|
5573
|
+
*/
|
|
5574
|
+
redirect_uris?: Array<string>;
|
|
5575
|
+
}
|
|
5576
|
+
/**
|
|
5577
|
+
* An operation that updates items with the specified revision to the default rendition.
|
|
5578
|
+
* @export
|
|
5579
|
+
* @interface UpdateItemToDefaultRenditionOperation
|
|
5580
|
+
*/
|
|
5581
|
+
export interface UpdateItemToDefaultRenditionOperation {
|
|
5582
|
+
/**
|
|
5583
|
+
*
|
|
5584
|
+
* @type {string}
|
|
5585
|
+
* @memberof UpdateItemToDefaultRenditionOperation
|
|
5586
|
+
*/
|
|
5587
|
+
type: UpdateItemToDefaultRenditionOperationTypeEnum;
|
|
5588
|
+
/**
|
|
5589
|
+
* ID of the resource.
|
|
5590
|
+
* @type {string}
|
|
5591
|
+
* @memberof UpdateItemToDefaultRenditionOperation
|
|
5592
|
+
*/
|
|
5593
|
+
revisionId: string;
|
|
5594
|
+
}
|
|
5595
|
+
export declare const UpdateItemToDefaultRenditionOperationTypeEnum: {
|
|
5596
|
+
readonly UpdateToDefaultRendition: "update-to-default-rendition";
|
|
5597
|
+
};
|
|
5598
|
+
export declare type UpdateItemToDefaultRenditionOperationTypeEnum = (typeof UpdateItemToDefaultRenditionOperationTypeEnum)[keyof typeof UpdateItemToDefaultRenditionOperationTypeEnum];
|
|
5355
5599
|
/**
|
|
5356
5600
|
*
|
|
5357
5601
|
* @export
|
|
@@ -5391,10 +5635,10 @@ export interface UpdatePartRevisionRequestData {
|
|
|
5391
5635
|
attributes: UpdatePartRevisionRequestDataAttributes;
|
|
5392
5636
|
/**
|
|
5393
5637
|
*
|
|
5394
|
-
* @type {
|
|
5638
|
+
* @type {UpdatePartRevisionRequestDataRelationships}
|
|
5395
5639
|
* @memberof UpdatePartRevisionRequestData
|
|
5396
5640
|
*/
|
|
5397
|
-
relationships?:
|
|
5641
|
+
relationships?: UpdatePartRevisionRequestDataRelationships;
|
|
5398
5642
|
}
|
|
5399
5643
|
/**
|
|
5400
5644
|
*
|
|
@@ -5441,6 +5685,25 @@ export interface UpdatePartRevisionRequestDataAttributes {
|
|
|
5441
5685
|
*/
|
|
5442
5686
|
suppliedInstanceIdKey?: string;
|
|
5443
5687
|
}
|
|
5688
|
+
/**
|
|
5689
|
+
*
|
|
5690
|
+
* @export
|
|
5691
|
+
* @interface UpdatePartRevisionRequestDataRelationships
|
|
5692
|
+
*/
|
|
5693
|
+
export interface UpdatePartRevisionRequestDataRelationships {
|
|
5694
|
+
/**
|
|
5695
|
+
*
|
|
5696
|
+
* @type {FileRelationship}
|
|
5697
|
+
* @memberof UpdatePartRevisionRequestDataRelationships
|
|
5698
|
+
*/
|
|
5699
|
+
source?: FileRelationship;
|
|
5700
|
+
/**
|
|
5701
|
+
*
|
|
5702
|
+
* @type {PartRenditionRelationship}
|
|
5703
|
+
* @memberof UpdatePartRevisionRequestDataRelationships
|
|
5704
|
+
*/
|
|
5705
|
+
defaultPartRendition?: PartRenditionRelationship;
|
|
5706
|
+
}
|
|
5444
5707
|
/**
|
|
5445
5708
|
*
|
|
5446
5709
|
* @export
|
|
@@ -5705,7 +5968,7 @@ export interface UpdateSceneRequestDataAttributes {
|
|
|
5705
5968
|
*/
|
|
5706
5969
|
worldOrientation?: Orientation;
|
|
5707
5970
|
/**
|
|
5708
|
-
*
|
|
5971
|
+
* 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
5972
|
* @type {{ [key: string]: string; }}
|
|
5710
5973
|
* @memberof UpdateSceneRequestDataAttributes
|
|
5711
5974
|
*/
|
|
@@ -6051,6 +6314,12 @@ export interface WebhookEvent {
|
|
|
6051
6314
|
* @memberof WebhookEvent
|
|
6052
6315
|
*/
|
|
6053
6316
|
data: WebhookEventData;
|
|
6317
|
+
/**
|
|
6318
|
+
*
|
|
6319
|
+
* @type {Array<WebhookEventSceneIncludedData | WebhookEventPartRevisionIncludedData>}
|
|
6320
|
+
* @memberof WebhookEvent
|
|
6321
|
+
*/
|
|
6322
|
+
included: Array<WebhookEventSceneIncludedData | WebhookEventPartRevisionIncludedData>;
|
|
6054
6323
|
/**
|
|
6055
6324
|
*
|
|
6056
6325
|
* @type {{ [key: string]: Link; }}
|
|
@@ -6117,6 +6386,12 @@ export interface WebhookEventDataAttributes {
|
|
|
6117
6386
|
* @memberof WebhookEventDataAttributes
|
|
6118
6387
|
*/
|
|
6119
6388
|
topic: string;
|
|
6389
|
+
/**
|
|
6390
|
+
*
|
|
6391
|
+
* @type {Array<string>}
|
|
6392
|
+
* @memberof WebhookEventDataAttributes
|
|
6393
|
+
*/
|
|
6394
|
+
changed?: Array<string>;
|
|
6120
6395
|
}
|
|
6121
6396
|
/**
|
|
6122
6397
|
*
|
|
@@ -6217,6 +6492,118 @@ export interface WebhookEventDataRelationshipsResourceData {
|
|
|
6217
6492
|
*/
|
|
6218
6493
|
id: string;
|
|
6219
6494
|
}
|
|
6495
|
+
/**
|
|
6496
|
+
*
|
|
6497
|
+
* @export
|
|
6498
|
+
* @interface WebhookEventPartRevisionIncludedAttributes
|
|
6499
|
+
*/
|
|
6500
|
+
export interface WebhookEventPartRevisionIncludedAttributes {
|
|
6501
|
+
/**
|
|
6502
|
+
*
|
|
6503
|
+
* @type {string}
|
|
6504
|
+
* @memberof WebhookEventPartRevisionIncludedAttributes
|
|
6505
|
+
*/
|
|
6506
|
+
created?: string;
|
|
6507
|
+
/**
|
|
6508
|
+
*
|
|
6509
|
+
* @type {string}
|
|
6510
|
+
* @memberof WebhookEventPartRevisionIncludedAttributes
|
|
6511
|
+
*/
|
|
6512
|
+
suppliedId?: string;
|
|
6513
|
+
/**
|
|
6514
|
+
*
|
|
6515
|
+
* @type {string}
|
|
6516
|
+
* @memberof WebhookEventPartRevisionIncludedAttributes
|
|
6517
|
+
*/
|
|
6518
|
+
name?: string;
|
|
6519
|
+
/**
|
|
6520
|
+
*
|
|
6521
|
+
* @type {string}
|
|
6522
|
+
* @memberof WebhookEventPartRevisionIncludedAttributes
|
|
6523
|
+
*/
|
|
6524
|
+
partName?: string;
|
|
6525
|
+
}
|
|
6526
|
+
/**
|
|
6527
|
+
*
|
|
6528
|
+
* @export
|
|
6529
|
+
* @interface WebhookEventPartRevisionIncludedData
|
|
6530
|
+
*/
|
|
6531
|
+
export interface WebhookEventPartRevisionIncludedData {
|
|
6532
|
+
/**
|
|
6533
|
+
*
|
|
6534
|
+
* @type {string}
|
|
6535
|
+
* @memberof WebhookEventPartRevisionIncludedData
|
|
6536
|
+
*/
|
|
6537
|
+
type: string;
|
|
6538
|
+
/**
|
|
6539
|
+
* ID of the resource.
|
|
6540
|
+
* @type {string}
|
|
6541
|
+
* @memberof WebhookEventPartRevisionIncludedData
|
|
6542
|
+
*/
|
|
6543
|
+
id: string;
|
|
6544
|
+
/**
|
|
6545
|
+
*
|
|
6546
|
+
* @type {WebhookEventPartRevisionIncludedAttributes}
|
|
6547
|
+
* @memberof WebhookEventPartRevisionIncludedData
|
|
6548
|
+
*/
|
|
6549
|
+
attributes: WebhookEventPartRevisionIncludedAttributes;
|
|
6550
|
+
/**
|
|
6551
|
+
*
|
|
6552
|
+
* @type {{ [key: string]: Link; }}
|
|
6553
|
+
* @memberof WebhookEventPartRevisionIncludedData
|
|
6554
|
+
*/
|
|
6555
|
+
links: {
|
|
6556
|
+
[key: string]: Link;
|
|
6557
|
+
};
|
|
6558
|
+
}
|
|
6559
|
+
/**
|
|
6560
|
+
*
|
|
6561
|
+
* @export
|
|
6562
|
+
* @interface WebhookEventSceneIncludedAttributes
|
|
6563
|
+
*/
|
|
6564
|
+
export interface WebhookEventSceneIncludedAttributes {
|
|
6565
|
+
/**
|
|
6566
|
+
* 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.
|
|
6567
|
+
* @type {{ [key: string]: string; }}
|
|
6568
|
+
* @memberof WebhookEventSceneIncludedAttributes
|
|
6569
|
+
*/
|
|
6570
|
+
metadata?: {
|
|
6571
|
+
[key: string]: string;
|
|
6572
|
+
};
|
|
6573
|
+
}
|
|
6574
|
+
/**
|
|
6575
|
+
*
|
|
6576
|
+
* @export
|
|
6577
|
+
* @interface WebhookEventSceneIncludedData
|
|
6578
|
+
*/
|
|
6579
|
+
export interface WebhookEventSceneIncludedData {
|
|
6580
|
+
/**
|
|
6581
|
+
*
|
|
6582
|
+
* @type {string}
|
|
6583
|
+
* @memberof WebhookEventSceneIncludedData
|
|
6584
|
+
*/
|
|
6585
|
+
type: string;
|
|
6586
|
+
/**
|
|
6587
|
+
* ID of the resource.
|
|
6588
|
+
* @type {string}
|
|
6589
|
+
* @memberof WebhookEventSceneIncludedData
|
|
6590
|
+
*/
|
|
6591
|
+
id: string;
|
|
6592
|
+
/**
|
|
6593
|
+
*
|
|
6594
|
+
* @type {WebhookEventSceneIncludedAttributes}
|
|
6595
|
+
* @memberof WebhookEventSceneIncludedData
|
|
6596
|
+
*/
|
|
6597
|
+
attributes: WebhookEventSceneIncludedAttributes;
|
|
6598
|
+
/**
|
|
6599
|
+
*
|
|
6600
|
+
* @type {{ [key: string]: Link; }}
|
|
6601
|
+
* @memberof WebhookEventSceneIncludedData
|
|
6602
|
+
*/
|
|
6603
|
+
links: {
|
|
6604
|
+
[key: string]: Link;
|
|
6605
|
+
};
|
|
6606
|
+
}
|
|
6220
6607
|
/**
|
|
6221
6608
|
*
|
|
6222
6609
|
* @export
|
|
@@ -6618,10 +7005,11 @@ export declare const ApplicationsApiAxiosParamCreator: (configuration?: Configur
|
|
|
6618
7005
|
* Get `applications`.
|
|
6619
7006
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
6620
7007
|
* @param {number} [pageSize] The number of items to return.
|
|
7008
|
+
* @param {string} [filterClientId] Comma-separated list of client IDs to filter on.
|
|
6621
7009
|
* @param {*} [options] Override http request option.
|
|
6622
7010
|
* @throws {RequiredError}
|
|
6623
7011
|
*/
|
|
6624
|
-
getApplications: (pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7012
|
+
getApplications: (pageCursor?: string | undefined, pageSize?: number | undefined, filterClientId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6625
7013
|
/**
|
|
6626
7014
|
* Update an `application`.
|
|
6627
7015
|
* @param {string} id The `application` ID.
|
|
@@ -6661,10 +7049,11 @@ export declare const ApplicationsApiFp: (configuration?: Configuration | undefin
|
|
|
6661
7049
|
* Get `applications`.
|
|
6662
7050
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
6663
7051
|
* @param {number} [pageSize] The number of items to return.
|
|
7052
|
+
* @param {string} [filterClientId] Comma-separated list of client IDs to filter on.
|
|
6664
7053
|
* @param {*} [options] Override http request option.
|
|
6665
7054
|
* @throws {RequiredError}
|
|
6666
7055
|
*/
|
|
6667
|
-
getApplications(pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ApplicationList>>;
|
|
7056
|
+
getApplications(pageCursor?: string | undefined, pageSize?: number | undefined, filterClientId?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ApplicationList>>;
|
|
6668
7057
|
/**
|
|
6669
7058
|
* Update an `application`.
|
|
6670
7059
|
* @param {string} id The `application` ID.
|
|
@@ -6704,10 +7093,11 @@ export declare const ApplicationsApiFactory: (configuration?: Configuration | un
|
|
|
6704
7093
|
* Get `applications`.
|
|
6705
7094
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
6706
7095
|
* @param {number} [pageSize] The number of items to return.
|
|
7096
|
+
* @param {string} [filterClientId] Comma-separated list of client IDs to filter on.
|
|
6707
7097
|
* @param {*} [options] Override http request option.
|
|
6708
7098
|
* @throws {RequiredError}
|
|
6709
7099
|
*/
|
|
6710
|
-
getApplications(pageCursor?: string | undefined, pageSize?: number | undefined, options?: any): AxiosPromise<ApplicationList>;
|
|
7100
|
+
getApplications(pageCursor?: string | undefined, pageSize?: number | undefined, filterClientId?: string | undefined, options?: any): AxiosPromise<ApplicationList>;
|
|
6711
7101
|
/**
|
|
6712
7102
|
* Update an `application`.
|
|
6713
7103
|
* @param {string} id The `application` ID.
|
|
@@ -6774,6 +7164,12 @@ export interface ApplicationsApiGetApplicationsRequest {
|
|
|
6774
7164
|
* @memberof ApplicationsApiGetApplications
|
|
6775
7165
|
*/
|
|
6776
7166
|
readonly pageSize?: number;
|
|
7167
|
+
/**
|
|
7168
|
+
* Comma-separated list of client IDs to filter on.
|
|
7169
|
+
* @type {string}
|
|
7170
|
+
* @memberof ApplicationsApiGetApplications
|
|
7171
|
+
*/
|
|
7172
|
+
readonly filterClientId?: string;
|
|
6777
7173
|
}
|
|
6778
7174
|
/**
|
|
6779
7175
|
* Request parameters for updateApplication operation in ApplicationsApi.
|
|
@@ -9689,6 +10085,236 @@ export declare class SceneItemsApi extends BaseAPI {
|
|
|
9689
10085
|
*/
|
|
9690
10086
|
updateSceneItem(requestParameters: SceneItemsApiUpdateSceneItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
|
|
9691
10087
|
}
|
|
10088
|
+
/**
|
|
10089
|
+
* SceneSynchronizationsApi - axios parameter creator
|
|
10090
|
+
* @export
|
|
10091
|
+
*/
|
|
10092
|
+
export declare const SceneSynchronizationsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
10093
|
+
/**
|
|
10094
|
+
* Create a scene item update job.
|
|
10095
|
+
* @param {string} id The `scene` ID.
|
|
10096
|
+
* @param {CreateSceneSyncRequest} createSceneSyncRequest
|
|
10097
|
+
* @param {*} [options] Override http request option.
|
|
10098
|
+
* @throws {RequiredError}
|
|
10099
|
+
*/
|
|
10100
|
+
createSceneSync: (id: string, createSceneSyncRequest: CreateSceneSyncRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10101
|
+
/**
|
|
10102
|
+
* Get a `queued-scene-sync-job`.
|
|
10103
|
+
* @param {string} id The `queued-scene-sync` ID.
|
|
10104
|
+
* @param {*} [options] Override http request option.
|
|
10105
|
+
* @throws {RequiredError}
|
|
10106
|
+
*/
|
|
10107
|
+
getQueuedSceneSync: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10108
|
+
/**
|
|
10109
|
+
* Get a `scene-sync`.
|
|
10110
|
+
* @param {string} id The `scene-sync` ID.
|
|
10111
|
+
* @param {*} [options] Override http request option.
|
|
10112
|
+
* @throws {RequiredError}
|
|
10113
|
+
*/
|
|
10114
|
+
getSceneSync: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10115
|
+
/**
|
|
10116
|
+
* Get the results of a scene synchronization.
|
|
10117
|
+
* @param {string} id The `scene-sync` ID.
|
|
10118
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
10119
|
+
* @param {number} [pageSize] The number of items to return.
|
|
10120
|
+
* @param {string} [filterSceneItemId] List of scene item IDs to filter on.
|
|
10121
|
+
* @param {*} [options] Override http request option.
|
|
10122
|
+
* @throws {RequiredError}
|
|
10123
|
+
*/
|
|
10124
|
+
getSceneSyncItemResults: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, filterSceneItemId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10125
|
+
};
|
|
10126
|
+
/**
|
|
10127
|
+
* SceneSynchronizationsApi - functional programming interface
|
|
10128
|
+
* @export
|
|
10129
|
+
*/
|
|
10130
|
+
export declare const SceneSynchronizationsApiFp: (configuration?: Configuration | undefined) => {
|
|
10131
|
+
/**
|
|
10132
|
+
* Create a scene item update job.
|
|
10133
|
+
* @param {string} id The `scene` ID.
|
|
10134
|
+
* @param {CreateSceneSyncRequest} createSceneSyncRequest
|
|
10135
|
+
* @param {*} [options] Override http request option.
|
|
10136
|
+
* @throws {RequiredError}
|
|
10137
|
+
*/
|
|
10138
|
+
createSceneSync(id: string, createSceneSyncRequest: CreateSceneSyncRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
10139
|
+
/**
|
|
10140
|
+
* Get a `queued-scene-sync-job`.
|
|
10141
|
+
* @param {string} id The `queued-scene-sync` ID.
|
|
10142
|
+
* @param {*} [options] Override http request option.
|
|
10143
|
+
* @throws {RequiredError}
|
|
10144
|
+
*/
|
|
10145
|
+
getQueuedSceneSync(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
10146
|
+
/**
|
|
10147
|
+
* Get a `scene-sync`.
|
|
10148
|
+
* @param {string} id The `scene-sync` ID.
|
|
10149
|
+
* @param {*} [options] Override http request option.
|
|
10150
|
+
* @throws {RequiredError}
|
|
10151
|
+
*/
|
|
10152
|
+
getSceneSync(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneSync>>;
|
|
10153
|
+
/**
|
|
10154
|
+
* Get the results of a scene synchronization.
|
|
10155
|
+
* @param {string} id The `scene-sync` ID.
|
|
10156
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
10157
|
+
* @param {number} [pageSize] The number of items to return.
|
|
10158
|
+
* @param {string} [filterSceneItemId] List of scene item IDs to filter on.
|
|
10159
|
+
* @param {*} [options] Override http request option.
|
|
10160
|
+
* @throws {RequiredError}
|
|
10161
|
+
*/
|
|
10162
|
+
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>>;
|
|
10163
|
+
};
|
|
10164
|
+
/**
|
|
10165
|
+
* SceneSynchronizationsApi - factory interface
|
|
10166
|
+
* @export
|
|
10167
|
+
*/
|
|
10168
|
+
export declare const SceneSynchronizationsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
10169
|
+
/**
|
|
10170
|
+
* Create a scene item update job.
|
|
10171
|
+
* @param {string} id The `scene` ID.
|
|
10172
|
+
* @param {CreateSceneSyncRequest} createSceneSyncRequest
|
|
10173
|
+
* @param {*} [options] Override http request option.
|
|
10174
|
+
* @throws {RequiredError}
|
|
10175
|
+
*/
|
|
10176
|
+
createSceneSync(id: string, createSceneSyncRequest: CreateSceneSyncRequest, options?: any): AxiosPromise<QueuedJob>;
|
|
10177
|
+
/**
|
|
10178
|
+
* Get a `queued-scene-sync-job`.
|
|
10179
|
+
* @param {string} id The `queued-scene-sync` ID.
|
|
10180
|
+
* @param {*} [options] Override http request option.
|
|
10181
|
+
* @throws {RequiredError}
|
|
10182
|
+
*/
|
|
10183
|
+
getQueuedSceneSync(id: string, options?: any): AxiosPromise<QueuedJob>;
|
|
10184
|
+
/**
|
|
10185
|
+
* Get a `scene-sync`.
|
|
10186
|
+
* @param {string} id The `scene-sync` ID.
|
|
10187
|
+
* @param {*} [options] Override http request option.
|
|
10188
|
+
* @throws {RequiredError}
|
|
10189
|
+
*/
|
|
10190
|
+
getSceneSync(id: string, options?: any): AxiosPromise<SceneSync>;
|
|
10191
|
+
/**
|
|
10192
|
+
* Get the results of a scene synchronization.
|
|
10193
|
+
* @param {string} id The `scene-sync` ID.
|
|
10194
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
10195
|
+
* @param {number} [pageSize] The number of items to return.
|
|
10196
|
+
* @param {string} [filterSceneItemId] List of scene item IDs to filter on.
|
|
10197
|
+
* @param {*} [options] Override http request option.
|
|
10198
|
+
* @throws {RequiredError}
|
|
10199
|
+
*/
|
|
10200
|
+
getSceneSyncItemResults(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, filterSceneItemId?: string | undefined, options?: any): AxiosPromise<SceneSyncItemResultsList>;
|
|
10201
|
+
};
|
|
10202
|
+
/**
|
|
10203
|
+
* Request parameters for createSceneSync operation in SceneSynchronizationsApi.
|
|
10204
|
+
* @export
|
|
10205
|
+
* @interface SceneSynchronizationsApiCreateSceneSyncRequest
|
|
10206
|
+
*/
|
|
10207
|
+
export interface SceneSynchronizationsApiCreateSceneSyncRequest {
|
|
10208
|
+
/**
|
|
10209
|
+
* The `scene` ID.
|
|
10210
|
+
* @type {string}
|
|
10211
|
+
* @memberof SceneSynchronizationsApiCreateSceneSync
|
|
10212
|
+
*/
|
|
10213
|
+
readonly id: string;
|
|
10214
|
+
/**
|
|
10215
|
+
*
|
|
10216
|
+
* @type {CreateSceneSyncRequest}
|
|
10217
|
+
* @memberof SceneSynchronizationsApiCreateSceneSync
|
|
10218
|
+
*/
|
|
10219
|
+
readonly createSceneSyncRequest: CreateSceneSyncRequest;
|
|
10220
|
+
}
|
|
10221
|
+
/**
|
|
10222
|
+
* Request parameters for getQueuedSceneSync operation in SceneSynchronizationsApi.
|
|
10223
|
+
* @export
|
|
10224
|
+
* @interface SceneSynchronizationsApiGetQueuedSceneSyncRequest
|
|
10225
|
+
*/
|
|
10226
|
+
export interface SceneSynchronizationsApiGetQueuedSceneSyncRequest {
|
|
10227
|
+
/**
|
|
10228
|
+
* The `queued-scene-sync` ID.
|
|
10229
|
+
* @type {string}
|
|
10230
|
+
* @memberof SceneSynchronizationsApiGetQueuedSceneSync
|
|
10231
|
+
*/
|
|
10232
|
+
readonly id: string;
|
|
10233
|
+
}
|
|
10234
|
+
/**
|
|
10235
|
+
* Request parameters for getSceneSync operation in SceneSynchronizationsApi.
|
|
10236
|
+
* @export
|
|
10237
|
+
* @interface SceneSynchronizationsApiGetSceneSyncRequest
|
|
10238
|
+
*/
|
|
10239
|
+
export interface SceneSynchronizationsApiGetSceneSyncRequest {
|
|
10240
|
+
/**
|
|
10241
|
+
* The `scene-sync` ID.
|
|
10242
|
+
* @type {string}
|
|
10243
|
+
* @memberof SceneSynchronizationsApiGetSceneSync
|
|
10244
|
+
*/
|
|
10245
|
+
readonly id: string;
|
|
10246
|
+
}
|
|
10247
|
+
/**
|
|
10248
|
+
* Request parameters for getSceneSyncItemResults operation in SceneSynchronizationsApi.
|
|
10249
|
+
* @export
|
|
10250
|
+
* @interface SceneSynchronizationsApiGetSceneSyncItemResultsRequest
|
|
10251
|
+
*/
|
|
10252
|
+
export interface SceneSynchronizationsApiGetSceneSyncItemResultsRequest {
|
|
10253
|
+
/**
|
|
10254
|
+
* The `scene-sync` ID.
|
|
10255
|
+
* @type {string}
|
|
10256
|
+
* @memberof SceneSynchronizationsApiGetSceneSyncItemResults
|
|
10257
|
+
*/
|
|
10258
|
+
readonly id: string;
|
|
10259
|
+
/**
|
|
10260
|
+
* The cursor for the next page of items.
|
|
10261
|
+
* @type {string}
|
|
10262
|
+
* @memberof SceneSynchronizationsApiGetSceneSyncItemResults
|
|
10263
|
+
*/
|
|
10264
|
+
readonly pageCursor?: string;
|
|
10265
|
+
/**
|
|
10266
|
+
* The number of items to return.
|
|
10267
|
+
* @type {number}
|
|
10268
|
+
* @memberof SceneSynchronizationsApiGetSceneSyncItemResults
|
|
10269
|
+
*/
|
|
10270
|
+
readonly pageSize?: number;
|
|
10271
|
+
/**
|
|
10272
|
+
* List of scene item IDs to filter on.
|
|
10273
|
+
* @type {string}
|
|
10274
|
+
* @memberof SceneSynchronizationsApiGetSceneSyncItemResults
|
|
10275
|
+
*/
|
|
10276
|
+
readonly filterSceneItemId?: string;
|
|
10277
|
+
}
|
|
10278
|
+
/**
|
|
10279
|
+
* SceneSynchronizationsApi - object-oriented interface
|
|
10280
|
+
* @export
|
|
10281
|
+
* @class SceneSynchronizationsApi
|
|
10282
|
+
* @extends {BaseAPI}
|
|
10283
|
+
*/
|
|
10284
|
+
export declare class SceneSynchronizationsApi extends BaseAPI {
|
|
10285
|
+
/**
|
|
10286
|
+
* Create a scene item update job.
|
|
10287
|
+
* @param {SceneSynchronizationsApiCreateSceneSyncRequest} requestParameters Request parameters.
|
|
10288
|
+
* @param {*} [options] Override http request option.
|
|
10289
|
+
* @throws {RequiredError}
|
|
10290
|
+
* @memberof SceneSynchronizationsApi
|
|
10291
|
+
*/
|
|
10292
|
+
createSceneSync(requestParameters: SceneSynchronizationsApiCreateSceneSyncRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
|
|
10293
|
+
/**
|
|
10294
|
+
* Get a `queued-scene-sync-job`.
|
|
10295
|
+
* @param {SceneSynchronizationsApiGetQueuedSceneSyncRequest} requestParameters Request parameters.
|
|
10296
|
+
* @param {*} [options] Override http request option.
|
|
10297
|
+
* @throws {RequiredError}
|
|
10298
|
+
* @memberof SceneSynchronizationsApi
|
|
10299
|
+
*/
|
|
10300
|
+
getQueuedSceneSync(requestParameters: SceneSynchronizationsApiGetQueuedSceneSyncRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
|
|
10301
|
+
/**
|
|
10302
|
+
* Get a `scene-sync`.
|
|
10303
|
+
* @param {SceneSynchronizationsApiGetSceneSyncRequest} requestParameters Request parameters.
|
|
10304
|
+
* @param {*} [options] Override http request option.
|
|
10305
|
+
* @throws {RequiredError}
|
|
10306
|
+
* @memberof SceneSynchronizationsApi
|
|
10307
|
+
*/
|
|
10308
|
+
getSceneSync(requestParameters: SceneSynchronizationsApiGetSceneSyncRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneSync, any>>;
|
|
10309
|
+
/**
|
|
10310
|
+
* Get the results of a scene synchronization.
|
|
10311
|
+
* @param {SceneSynchronizationsApiGetSceneSyncItemResultsRequest} requestParameters Request parameters.
|
|
10312
|
+
* @param {*} [options] Override http request option.
|
|
10313
|
+
* @throws {RequiredError}
|
|
10314
|
+
* @memberof SceneSynchronizationsApi
|
|
10315
|
+
*/
|
|
10316
|
+
getSceneSyncItemResults(requestParameters: SceneSynchronizationsApiGetSceneSyncItemResultsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneSyncItemResultsList, any>>;
|
|
10317
|
+
}
|
|
9692
10318
|
/**
|
|
9693
10319
|
* SceneViewStatesApi - axios parameter creator
|
|
9694
10320
|
* @export
|
|
@@ -10440,12 +11066,15 @@ export declare const ScenesApiAxiosParamCreator: (configuration?: Configuration
|
|
|
10440
11066
|
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
10441
11067
|
* @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
11068
|
* @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`.
|
|
11069
|
+
* @param {string} [filterSceneItemsSourcePartRevision] Comma-separated list of scene-item source part revision IDs to filter on.
|
|
11070
|
+
* @param {string} [filterSceneItemsSourceGeometrySet] Comma-separated list of scene-item source geometry set IDs to filter on.
|
|
11071
|
+
* @param {string} [filterSceneItemsSourceScene] Comma-separated list of scene-item source scene IDs to filter on.
|
|
10443
11072
|
* @param {*} [options] Override http request option.
|
|
10444
11073
|
* @throws {RequiredError}
|
|
10445
11074
|
*/
|
|
10446
11075
|
getScenes: (pageCursor?: string | undefined, pageSize?: number | undefined, filterName?: string | undefined, filterSuppliedId?: string | undefined, fieldsScene?: string | undefined, filterMetadata?: {
|
|
10447
11076
|
[key: string]: string;
|
|
10448
|
-
} | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
11077
|
+
} | undefined, filterSceneItemsSourcePartRevision?: string | undefined, filterSceneItemsSourceGeometrySet?: string | undefined, filterSceneItemsSourceScene?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10449
11078
|
/**
|
|
10450
11079
|
* 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
11080
|
* @param {string} id The `scene` ID.
|
|
@@ -10506,12 +11135,15 @@ export declare const ScenesApiFp: (configuration?: Configuration | undefined) =>
|
|
|
10506
11135
|
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
10507
11136
|
* @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
11137
|
* @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`.
|
|
11138
|
+
* @param {string} [filterSceneItemsSourcePartRevision] Comma-separated list of scene-item source part revision IDs to filter on.
|
|
11139
|
+
* @param {string} [filterSceneItemsSourceGeometrySet] Comma-separated list of scene-item source geometry set IDs to filter on.
|
|
11140
|
+
* @param {string} [filterSceneItemsSourceScene] Comma-separated list of scene-item source scene IDs to filter on.
|
|
10509
11141
|
* @param {*} [options] Override http request option.
|
|
10510
11142
|
* @throws {RequiredError}
|
|
10511
11143
|
*/
|
|
10512
11144
|
getScenes(pageCursor?: string | undefined, pageSize?: number | undefined, filterName?: string | undefined, filterSuppliedId?: string | undefined, fieldsScene?: string | undefined, filterMetadata?: {
|
|
10513
11145
|
[key: string]: string;
|
|
10514
|
-
} | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneList>>;
|
|
11146
|
+
} | undefined, filterSceneItemsSourcePartRevision?: string | undefined, filterSceneItemsSourceGeometrySet?: string | undefined, filterSceneItemsSourceScene?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneList>>;
|
|
10515
11147
|
/**
|
|
10516
11148
|
* 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
11149
|
* @param {string} id The `scene` ID.
|
|
@@ -10572,12 +11204,15 @@ export declare const ScenesApiFactory: (configuration?: Configuration | undefine
|
|
|
10572
11204
|
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
10573
11205
|
* @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
11206
|
* @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`.
|
|
11207
|
+
* @param {string} [filterSceneItemsSourcePartRevision] Comma-separated list of scene-item source part revision IDs to filter on.
|
|
11208
|
+
* @param {string} [filterSceneItemsSourceGeometrySet] Comma-separated list of scene-item source geometry set IDs to filter on.
|
|
11209
|
+
* @param {string} [filterSceneItemsSourceScene] Comma-separated list of scene-item source scene IDs to filter on.
|
|
10575
11210
|
* @param {*} [options] Override http request option.
|
|
10576
11211
|
* @throws {RequiredError}
|
|
10577
11212
|
*/
|
|
10578
11213
|
getScenes(pageCursor?: string | undefined, pageSize?: number | undefined, filterName?: string | undefined, filterSuppliedId?: string | undefined, fieldsScene?: string | undefined, filterMetadata?: {
|
|
10579
11214
|
[key: string]: string;
|
|
10580
|
-
} | undefined, options?: any): AxiosPromise<SceneList>;
|
|
11215
|
+
} | undefined, filterSceneItemsSourcePartRevision?: string | undefined, filterSceneItemsSourceGeometrySet?: string | undefined, filterSceneItemsSourceScene?: string | undefined, options?: any): AxiosPromise<SceneList>;
|
|
10581
11216
|
/**
|
|
10582
11217
|
* 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
11218
|
* @param {string} id The `scene` ID.
|
|
@@ -10698,6 +11333,24 @@ export interface ScenesApiGetScenesRequest {
|
|
|
10698
11333
|
readonly filterMetadata?: {
|
|
10699
11334
|
[key: string]: string;
|
|
10700
11335
|
};
|
|
11336
|
+
/**
|
|
11337
|
+
* Comma-separated list of scene-item source part revision IDs to filter on.
|
|
11338
|
+
* @type {string}
|
|
11339
|
+
* @memberof ScenesApiGetScenes
|
|
11340
|
+
*/
|
|
11341
|
+
readonly filterSceneItemsSourcePartRevision?: string;
|
|
11342
|
+
/**
|
|
11343
|
+
* Comma-separated list of scene-item source geometry set IDs to filter on.
|
|
11344
|
+
* @type {string}
|
|
11345
|
+
* @memberof ScenesApiGetScenes
|
|
11346
|
+
*/
|
|
11347
|
+
readonly filterSceneItemsSourceGeometrySet?: string;
|
|
11348
|
+
/**
|
|
11349
|
+
* Comma-separated list of scene-item source scene IDs to filter on.
|
|
11350
|
+
* @type {string}
|
|
11351
|
+
* @memberof ScenesApiGetScenes
|
|
11352
|
+
*/
|
|
11353
|
+
readonly filterSceneItemsSourceScene?: string;
|
|
10701
11354
|
}
|
|
10702
11355
|
/**
|
|
10703
11356
|
* Request parameters for renderScene operation in ScenesApi.
|