@vertexvis/api-client-node 0.30.2 → 0.30.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/esm/api.d.ts CHANGED
@@ -83,6 +83,42 @@ export interface AccountDataAttributes {
83
83
  */
84
84
  created: string;
85
85
  }
86
+ /**
87
+ * Relationship to an `account`.
88
+ * @export
89
+ * @interface AccountRelationship
90
+ */
91
+ export interface AccountRelationship {
92
+ /**
93
+ *
94
+ * @type {AccountRelationshipData}
95
+ * @memberof AccountRelationship
96
+ */
97
+ data: AccountRelationshipData;
98
+ }
99
+ /**
100
+ *
101
+ * @export
102
+ * @interface AccountRelationshipData
103
+ */
104
+ export interface AccountRelationshipData {
105
+ /**
106
+ * Resource object type.
107
+ * @type {string}
108
+ * @memberof AccountRelationshipData
109
+ */
110
+ type: AccountRelationshipDataTypeEnum;
111
+ /**
112
+ * ID of the resource.
113
+ * @type {string}
114
+ * @memberof AccountRelationshipData
115
+ */
116
+ id: string;
117
+ }
118
+ export declare const AccountRelationshipDataTypeEnum: {
119
+ readonly Account: "account";
120
+ };
121
+ export declare type AccountRelationshipDataTypeEnum = (typeof AccountRelationshipDataTypeEnum)[keyof typeof AccountRelationshipDataTypeEnum];
86
122
  /**
87
123
  *
88
124
  * @export
@@ -1470,6 +1506,71 @@ export interface CreatePartRequestDataRelationships {
1470
1506
  */
1471
1507
  source: FileRelationship | PartAssemblyRelationship;
1472
1508
  }
1509
+ /**
1510
+ *
1511
+ * @export
1512
+ * @interface CreatePermissionGrant
1513
+ */
1514
+ export interface CreatePermissionGrant {
1515
+ /**
1516
+ *
1517
+ * @type {CreatePermissionGrantData}
1518
+ * @memberof CreatePermissionGrant
1519
+ */
1520
+ data: CreatePermissionGrantData;
1521
+ }
1522
+ /**
1523
+ *
1524
+ * @export
1525
+ * @interface CreatePermissionGrantData
1526
+ */
1527
+ export interface CreatePermissionGrantData {
1528
+ /**
1529
+ *
1530
+ * @type {string}
1531
+ * @memberof CreatePermissionGrantData
1532
+ */
1533
+ type: CreatePermissionGrantDataTypeEnum;
1534
+ /**
1535
+ *
1536
+ * @type {CreatePermissionGrantDataAttributes}
1537
+ * @memberof CreatePermissionGrantData
1538
+ */
1539
+ attributes: CreatePermissionGrantDataAttributes;
1540
+ }
1541
+ export declare const CreatePermissionGrantDataTypeEnum: {
1542
+ readonly PermissionGrant: "permission-grant";
1543
+ };
1544
+ export declare type CreatePermissionGrantDataTypeEnum = (typeof CreatePermissionGrantDataTypeEnum)[keyof typeof CreatePermissionGrantDataTypeEnum];
1545
+ /**
1546
+ *
1547
+ * @export
1548
+ * @interface CreatePermissionGrantDataAttributes
1549
+ */
1550
+ export interface CreatePermissionGrantDataAttributes {
1551
+ /**
1552
+ *
1553
+ * @type {PermissionGrantee}
1554
+ * @memberof CreatePermissionGrantDataAttributes
1555
+ */
1556
+ grantee: PermissionGrantee;
1557
+ /**
1558
+ *
1559
+ * @type {PermissionSubject}
1560
+ * @memberof CreatePermissionGrantDataAttributes
1561
+ */
1562
+ subject: PermissionSubject;
1563
+ /**
1564
+ *
1565
+ * @type {string}
1566
+ * @memberof CreatePermissionGrantDataAttributes
1567
+ */
1568
+ capability: CreatePermissionGrantDataAttributesCapabilityEnum;
1569
+ }
1570
+ export declare const CreatePermissionGrantDataAttributesCapabilityEnum: {
1571
+ readonly Read: "read";
1572
+ };
1573
+ export declare type CreatePermissionGrantDataAttributesCapabilityEnum = (typeof CreatePermissionGrantDataAttributesCapabilityEnum)[keyof typeof CreatePermissionGrantDataAttributesCapabilityEnum];
1473
1574
  /**
1474
1575
  *
1475
1576
  * @export
@@ -1617,6 +1718,55 @@ export interface CreateSceneAnnotationSetRequestDataAttributes {
1617
1718
  */
1618
1719
  suppliedId?: string;
1619
1720
  }
1721
+ /**
1722
+ * Support a query expression for a scene alteration. To perform a standard item alteration: ```json { \"data\" : { \"type\" : \"scene-alteration-expression\", \"attributes\" : { \"operations\" : [ { \"expression\" : { \"type\" : \"query-operand\", \"query\" : { \"type\" : \"query-by-id\", \"value\" : \"{SCENE_ITEM_ID}\" } }, \"changes\" : [ { \"type\" : \"change-visibility\", \"visible\" : false } ] } ] } } } ``` To perform a join of two metadata queries, i.e, an \"and\" query: ```json { \"data\" : { \"type\" : \"scene-alteration-expression\", \"attributes\" : { \"operations\" : [ { \"expression\" : { \"type\" : \"and\", \"left\" : { \"type\" : \"query-operand\", \"query\" : { \"type\" : \"query-by-metadata\", \"filter\" : \"vdXUKl2pQr\", \"keys\" : [ \"jxIuahIdXS\", \"9tegKF6acH\" ] } }, \"right\" : { \"type\" : \"query-operand\", \"query\" : { \"type\" : \"query-by-metadata\", \"filter\" : \"IE8P9JRPXC\", \"keys\" : [ \"5ggPOzw4bT\", \"7xQrQE5Q67\" ] } } }, \"changes\" : [ { \"type\" : \"change-visibility\", \"visible\" : false } ] } ] } } } ``` To provide more complex queries, the left/right also accept or/and expressions. Here\'s an example of a nested `or` item based query: ```json { \"data\" : { \"type\" : \"scene-alteration-expression\", \"attributes\" : { \"operations\" : [ { \"expression\" : { \"type\" : \"or\", \"left\" : { \"type\" : \"or\", \"left\" : { \"type\" : \"query-operand\", \"query\" : { \"type\" : \"query-by-id\", \"value\" : \"{SCENE_ITEM_ID_1}\" } }, \"right\" : { \"type\" : \"query-operand\", \"query\" : { \"type\" : \"query-by-id\", \"value\" : \"{SCENE_ITEM_ID_2}\" } } }, \"right\" : { \"type\" : \"query-operand\", \"query\" : { \"type\" : \"query-by-id\", \"value\" : \"{SCENE_ITEM_ID_3}\" } } }, \"changes\" : [ { \"type\" : \"change-visibility\", \"visible\" : false } ] } ] } } } ```
1723
+ * @export
1724
+ * @interface CreateSceneExpressionAlterationRequest
1725
+ */
1726
+ export interface CreateSceneExpressionAlterationRequest {
1727
+ /**
1728
+ *
1729
+ * @type {CreateSceneExpressionAlterationRequestData}
1730
+ * @memberof CreateSceneExpressionAlterationRequest
1731
+ */
1732
+ data: CreateSceneExpressionAlterationRequestData;
1733
+ }
1734
+ /**
1735
+ *
1736
+ * @export
1737
+ * @interface CreateSceneExpressionAlterationRequestData
1738
+ */
1739
+ export interface CreateSceneExpressionAlterationRequestData {
1740
+ /**
1741
+ * Resource object type.
1742
+ * @type {string}
1743
+ * @memberof CreateSceneExpressionAlterationRequestData
1744
+ */
1745
+ type: CreateSceneExpressionAlterationRequestDataTypeEnum;
1746
+ /**
1747
+ *
1748
+ * @type {CreateSceneExpressionAlterationRequestDataAttributes}
1749
+ * @memberof CreateSceneExpressionAlterationRequestData
1750
+ */
1751
+ attributes: CreateSceneExpressionAlterationRequestDataAttributes;
1752
+ }
1753
+ export declare const CreateSceneExpressionAlterationRequestDataTypeEnum: {
1754
+ readonly SceneAlterationExpression: "scene-alteration-expression";
1755
+ };
1756
+ export declare type CreateSceneExpressionAlterationRequestDataTypeEnum = (typeof CreateSceneExpressionAlterationRequestDataTypeEnum)[keyof typeof CreateSceneExpressionAlterationRequestDataTypeEnum];
1757
+ /**
1758
+ *
1759
+ * @export
1760
+ * @interface CreateSceneExpressionAlterationRequestDataAttributes
1761
+ */
1762
+ export interface CreateSceneExpressionAlterationRequestDataAttributes {
1763
+ /**
1764
+ * List of operations to apply for the alteration request
1765
+ * @type {Array<SceneItemExpressionOperation>}
1766
+ * @memberof CreateSceneExpressionAlterationRequestDataAttributes
1767
+ */
1768
+ operations: Array<SceneItemExpressionOperation>;
1769
+ }
1620
1770
  /**
1621
1771
  *
1622
1772
  * @export
@@ -3240,6 +3390,29 @@ export declare const GeometrySetRelationshipDataTypeEnum: {
3240
3390
  readonly GeometrySet: "geometry-set";
3241
3391
  };
3242
3392
  export declare type GeometrySetRelationshipDataTypeEnum = (typeof GeometrySetRelationshipDataTypeEnum)[keyof typeof GeometrySetRelationshipDataTypeEnum];
3393
+ /**
3394
+ * A reference to an account receiving a permission grant
3395
+ * @export
3396
+ * @interface GranteeAccount
3397
+ */
3398
+ export interface GranteeAccount {
3399
+ /**
3400
+ *
3401
+ * @type {string}
3402
+ * @memberof GranteeAccount
3403
+ */
3404
+ type: GranteeAccountTypeEnum;
3405
+ /**
3406
+ * ID of the resource.
3407
+ * @type {string}
3408
+ * @memberof GranteeAccount
3409
+ */
3410
+ id: string;
3411
+ }
3412
+ export declare const GranteeAccountTypeEnum: {
3413
+ readonly Account: "account";
3414
+ };
3415
+ export declare type GranteeAccountTypeEnum = (typeof GranteeAccountTypeEnum)[keyof typeof GranteeAccountTypeEnum];
3243
3416
  /**
3244
3417
  *
3245
3418
  * @export
@@ -3908,6 +4081,12 @@ export interface PartDataRelationships {
3908
4081
  * @memberof PartDataRelationships
3909
4082
  */
3910
4083
  partRevisions: Array<PartDataRelationshipsPartRevisions>;
4084
+ /**
4085
+ *
4086
+ * @type {AccountRelationship}
4087
+ * @memberof PartDataRelationships
4088
+ */
4089
+ owner?: AccountRelationship;
3911
4090
  }
3912
4091
  /**
3913
4092
  *
@@ -4472,6 +4651,106 @@ export interface PartRevisionSuppliedId {
4472
4651
  */
4473
4652
  suppliedIterationId?: string;
4474
4653
  }
4654
+ /**
4655
+ * A subject domain encompassing all part resources
4656
+ * @export
4657
+ * @interface PartsDomainSubject
4658
+ */
4659
+ export interface PartsDomainSubject {
4660
+ /**
4661
+ *
4662
+ * @type {string}
4663
+ * @memberof PartsDomainSubject
4664
+ */
4665
+ domain: PartsDomainSubjectDomainEnum;
4666
+ }
4667
+ export declare const PartsDomainSubjectDomainEnum: {
4668
+ readonly Parts: "parts";
4669
+ };
4670
+ export declare type PartsDomainSubjectDomainEnum = (typeof PartsDomainSubjectDomainEnum)[keyof typeof PartsDomainSubjectDomainEnum];
4671
+ /**
4672
+ *
4673
+ * @export
4674
+ * @interface PermissionGrant
4675
+ */
4676
+ export interface PermissionGrant {
4677
+ /**
4678
+ *
4679
+ * @type {PermissionGrantData}
4680
+ * @memberof PermissionGrant
4681
+ */
4682
+ data: PermissionGrantData;
4683
+ /**
4684
+ *
4685
+ * @type {{ [key: string]: Link; }}
4686
+ * @memberof PermissionGrant
4687
+ */
4688
+ links?: {
4689
+ [key: string]: Link;
4690
+ };
4691
+ }
4692
+ /**
4693
+ * A permission grant tuple
4694
+ * @export
4695
+ * @interface PermissionGrantData
4696
+ */
4697
+ export interface PermissionGrantData {
4698
+ /**
4699
+ *
4700
+ * @type {string}
4701
+ * @memberof PermissionGrantData
4702
+ */
4703
+ type: PermissionGrantDataTypeEnum;
4704
+ /**
4705
+ * ID of the resource.
4706
+ * @type {string}
4707
+ * @memberof PermissionGrantData
4708
+ */
4709
+ id: string;
4710
+ /**
4711
+ *
4712
+ * @type {CreatePermissionGrantDataAttributes}
4713
+ * @memberof PermissionGrantData
4714
+ */
4715
+ attributes: CreatePermissionGrantDataAttributes;
4716
+ }
4717
+ export declare const PermissionGrantDataTypeEnum: {
4718
+ readonly PermissionGrant: "permission-grant";
4719
+ };
4720
+ export declare type PermissionGrantDataTypeEnum = (typeof PermissionGrantDataTypeEnum)[keyof typeof PermissionGrantDataTypeEnum];
4721
+ /**
4722
+ * A list of permission grants
4723
+ * @export
4724
+ * @interface PermissionGrantList
4725
+ */
4726
+ export interface PermissionGrantList {
4727
+ /**
4728
+ *
4729
+ * @type {Array<PermissionGrant>}
4730
+ * @memberof PermissionGrantList
4731
+ */
4732
+ data: Array<PermissionGrant>;
4733
+ /**
4734
+ *
4735
+ * @type {{ [key: string]: Link; }}
4736
+ * @memberof PermissionGrantList
4737
+ */
4738
+ links: {
4739
+ [key: string]: Link;
4740
+ };
4741
+ }
4742
+ /**
4743
+ * @type PermissionGrantee
4744
+ * The grantee portion of a permission grant tuple
4745
+ * @export
4746
+ */
4747
+ export declare type PermissionGrantee = GranteeAccount;
4748
+ /**
4749
+ * @type PermissionSubject
4750
+ * A resource category subject to a permission grant
4751
+ * @export
4752
+ */
4753
+ export declare type PermissionSubject = PartsDomainSubject | PropertySetDomainSubject;
4475
4754
  /**
4476
4755
  * A camera type that mimics the way the human eye sees.
4477
4756
  * @export
@@ -4737,6 +5016,23 @@ export declare const PropertyLongTypeTypeEnum: {
4737
5016
  readonly Long: "long";
4738
5017
  };
4739
5018
  export declare type PropertyLongTypeTypeEnum = (typeof PropertyLongTypeTypeEnum)[keyof typeof PropertyLongTypeTypeEnum];
5019
+ /**
5020
+ * A subject domain encompassing all property set resources
5021
+ * @export
5022
+ * @interface PropertySetDomainSubject
5023
+ */
5024
+ export interface PropertySetDomainSubject {
5025
+ /**
5026
+ *
5027
+ * @type {string}
5028
+ * @memberof PropertySetDomainSubject
5029
+ */
5030
+ domain: PropertySetDomainSubjectDomainEnum;
5031
+ }
5032
+ export declare const PropertySetDomainSubjectDomainEnum: {
5033
+ readonly PropertySets: "property-sets";
5034
+ };
5035
+ export declare type PropertySetDomainSubjectDomainEnum = (typeof PropertySetDomainSubjectDomainEnum)[keyof typeof PropertySetDomainSubjectDomainEnum];
4740
5036
  /**
4741
5037
  * Relationship to a `property-set`.
4742
5038
  * @export
@@ -4986,6 +5282,105 @@ export interface QueryByMetadataDataAttributes {
4986
5282
  */
4987
5283
  keys: Array<string>;
4988
5284
  }
5285
+ /**
5286
+ * Query the root items of a scene
5287
+ * @export
5288
+ * @interface QueryByRoot
5289
+ */
5290
+ export interface QueryByRoot {
5291
+ /**
5292
+ * Resource object type.
5293
+ * @type {string}
5294
+ * @memberof QueryByRoot
5295
+ */
5296
+ type: QueryByRootTypeEnum;
5297
+ }
5298
+ export declare const QueryByRootTypeEnum: {
5299
+ readonly QueryByRoot: "query-by-root";
5300
+ };
5301
+ export declare type QueryByRootTypeEnum = (typeof QueryByRootTypeEnum)[keyof typeof QueryByRootTypeEnum];
5302
+ /**
5303
+ *
5304
+ * @export
5305
+ * @interface QueryBySceneItemId
5306
+ */
5307
+ export interface QueryBySceneItemId {
5308
+ /**
5309
+ * Resource object type.
5310
+ * @type {string}
5311
+ * @memberof QueryBySceneItemId
5312
+ */
5313
+ type: QueryBySceneItemIdTypeEnum;
5314
+ /**
5315
+ * ID of the resource.
5316
+ * @type {string}
5317
+ * @memberof QueryBySceneItemId
5318
+ */
5319
+ value: string;
5320
+ }
5321
+ export declare const QueryBySceneItemIdTypeEnum: {
5322
+ readonly Id: "query-by-id";
5323
+ readonly SuppliedId: "query-by-supplied-id";
5324
+ };
5325
+ export declare type QueryBySceneItemIdTypeEnum = (typeof QueryBySceneItemIdTypeEnum)[keyof typeof QueryBySceneItemIdTypeEnum];
5326
+ /**
5327
+ *
5328
+ * @export
5329
+ * @interface QueryBySceneItemIds
5330
+ */
5331
+ export interface QueryBySceneItemIds {
5332
+ /**
5333
+ * Resource object type.
5334
+ * @type {string}
5335
+ * @memberof QueryBySceneItemIds
5336
+ */
5337
+ type: QueryBySceneItemIdsTypeEnum;
5338
+ /**
5339
+ * Query `scene-items`.
5340
+ * @type {Array<QueryBySceneItemId>}
5341
+ * @memberof QueryBySceneItemIds
5342
+ */
5343
+ values: Array<QueryBySceneItemId>;
5344
+ }
5345
+ export declare const QueryBySceneItemIdsTypeEnum: {
5346
+ readonly QueryByCollection: "query-by-collection";
5347
+ };
5348
+ export declare type QueryBySceneItemIdsTypeEnum = (typeof QueryBySceneItemIdsTypeEnum)[keyof typeof QueryBySceneItemIdsTypeEnum];
5349
+ /**
5350
+ *
5351
+ * @export
5352
+ * @interface QueryBySceneItemMetadata
5353
+ */
5354
+ export interface QueryBySceneItemMetadata {
5355
+ /**
5356
+ * Resource object type.
5357
+ * @type {string}
5358
+ * @memberof QueryBySceneItemMetadata
5359
+ */
5360
+ type: QueryBySceneItemMetadataTypeEnum;
5361
+ /**
5362
+ *
5363
+ * @type {boolean}
5364
+ * @memberof QueryBySceneItemMetadata
5365
+ */
5366
+ exactMatch?: boolean;
5367
+ /**
5368
+ *
5369
+ * @type {string}
5370
+ * @memberof QueryBySceneItemMetadata
5371
+ */
5372
+ filter: string;
5373
+ /**
5374
+ * Query `metadata`.
5375
+ * @type {Array<string>}
5376
+ * @memberof QueryBySceneItemMetadata
5377
+ */
5378
+ keys: Array<string>;
5379
+ }
5380
+ export declare const QueryBySceneItemMetadataTypeEnum: {
5381
+ readonly QueryByMetadata: "query-by-metadata";
5382
+ };
5383
+ export declare type QueryBySceneItemMetadataTypeEnum = (typeof QueryBySceneItemMetadataTypeEnum)[keyof typeof QueryBySceneItemMetadataTypeEnum];
4989
5384
  /**
4990
5385
  *
4991
5386
  * @export
@@ -5782,6 +6177,35 @@ export interface SceneItem {
5782
6177
  [key: string]: Link;
5783
6178
  };
5784
6179
  }
6180
+ /**
6181
+ * The union of the items of the provided queries
6182
+ * @export
6183
+ * @interface SceneItemAndExpression
6184
+ */
6185
+ export interface SceneItemAndExpression {
6186
+ /**
6187
+ * The type of the expression
6188
+ * @type {string}
6189
+ * @memberof SceneItemAndExpression
6190
+ */
6191
+ type: SceneItemAndExpressionTypeEnum;
6192
+ /**
6193
+ *
6194
+ * @type {SceneItemQueryOperand | SceneItemAndExpression | SceneItemOrExpression}
6195
+ * @memberof SceneItemAndExpression
6196
+ */
6197
+ left: SceneItemQueryOperand | SceneItemAndExpression | SceneItemOrExpression;
6198
+ /**
6199
+ *
6200
+ * @type {SceneItemQueryOperand | SceneItemAndExpression | SceneItemOrExpression}
6201
+ * @memberof SceneItemAndExpression
6202
+ */
6203
+ right: SceneItemQueryOperand | SceneItemAndExpression | SceneItemOrExpression;
6204
+ }
6205
+ export declare const SceneItemAndExpressionTypeEnum: {
6206
+ readonly And: "and";
6207
+ };
6208
+ export declare type SceneItemAndExpressionTypeEnum = (typeof SceneItemAndExpressionTypeEnum)[keyof typeof SceneItemAndExpressionTypeEnum];
5785
6209
  /**
5786
6210
  *
5787
6211
  * @export
@@ -5922,6 +6346,25 @@ export interface SceneItemDataRelationships {
5922
6346
  */
5923
6347
  partRendition?: PartRenditionRelationship;
5924
6348
  }
6349
+ /**
6350
+ *
6351
+ * @export
6352
+ * @interface SceneItemExpressionOperation
6353
+ */
6354
+ export interface SceneItemExpressionOperation {
6355
+ /**
6356
+ *
6357
+ * @type {SceneItemQueryOperand | SceneItemAndExpression | SceneItemOrExpression}
6358
+ * @memberof SceneItemExpressionOperation
6359
+ */
6360
+ expression: SceneItemQueryOperand | SceneItemAndExpression | SceneItemOrExpression;
6361
+ /**
6362
+ * List of changes to perform on `scene-items` matching the query for the operation
6363
+ * @type {Array<ChangeVisibilityOp | ChangeMaterialOp | ClearMaterialOp | ChangeTransformOp | ClearTransformOp | SelectOp | DeselectOperation | ClearRenOp | ViewDefaultRenOp | ViewRenByIdOp | ViewRenBySuppliedIdOp | ViewRepByIdOp | ViewRepByPredefinedIdOp | ClearRepOp>}
6364
+ * @memberof SceneItemExpressionOperation
6365
+ */
6366
+ changes: Array<ChangeVisibilityOp | ChangeMaterialOp | ClearMaterialOp | ChangeTransformOp | ClearTransformOp | SelectOp | DeselectOperation | ClearRenOp | ViewDefaultRenOp | ViewRenByIdOp | ViewRenBySuppliedIdOp | ViewRepByIdOp | ViewRepByPredefinedIdOp | ClearRepOp>;
6367
+ }
5925
6368
  /**
5926
6369
  *
5927
6370
  * @export
@@ -5943,6 +6386,35 @@ export interface SceneItemList {
5943
6386
  [key: string]: Link;
5944
6387
  };
5945
6388
  }
6389
+ /**
6390
+ * The join of the items of the provided queries
6391
+ * @export
6392
+ * @interface SceneItemOrExpression
6393
+ */
6394
+ export interface SceneItemOrExpression {
6395
+ /**
6396
+ * The type of the expression
6397
+ * @type {string}
6398
+ * @memberof SceneItemOrExpression
6399
+ */
6400
+ type: SceneItemOrExpressionTypeEnum;
6401
+ /**
6402
+ *
6403
+ * @type {SceneItemQueryOperand | SceneItemAndExpression | SceneItemOrExpression}
6404
+ * @memberof SceneItemOrExpression
6405
+ */
6406
+ left: SceneItemQueryOperand | SceneItemAndExpression | SceneItemOrExpression;
6407
+ /**
6408
+ *
6409
+ * @type {SceneItemQueryOperand | SceneItemAndExpression | SceneItemOrExpression}
6410
+ * @memberof SceneItemOrExpression
6411
+ */
6412
+ right: SceneItemQueryOperand | SceneItemAndExpression | SceneItemOrExpression;
6413
+ }
6414
+ export declare const SceneItemOrExpressionTypeEnum: {
6415
+ readonly Or: "or";
6416
+ };
6417
+ export declare type SceneItemOrExpressionTypeEnum = (typeof SceneItemOrExpressionTypeEnum)[keyof typeof SceneItemOrExpressionTypeEnum];
5946
6418
  /**
5947
6419
  *
5948
6420
  * @export
@@ -6092,6 +6564,29 @@ export interface SceneItemOverrideList {
6092
6564
  [key: string]: Link;
6093
6565
  };
6094
6566
  }
6567
+ /**
6568
+ *
6569
+ * @export
6570
+ * @interface SceneItemQueryOperand
6571
+ */
6572
+ export interface SceneItemQueryOperand {
6573
+ /**
6574
+ * The type of the expression denoting it as an operand
6575
+ * @type {string}
6576
+ * @memberof SceneItemQueryOperand
6577
+ */
6578
+ type: SceneItemQueryOperandTypeEnum;
6579
+ /**
6580
+ * Query Operand for searching `scene-items`.
6581
+ * @type {QueryBySceneItemId | QueryBySceneItemIds | QueryByRoot | QueryBySceneItemMetadata}
6582
+ * @memberof SceneItemQueryOperand
6583
+ */
6584
+ query: QueryBySceneItemId | QueryBySceneItemIds | QueryByRoot | QueryBySceneItemMetadata;
6585
+ }
6586
+ export declare const SceneItemQueryOperandTypeEnum: {
6587
+ readonly QueryOperand: "query-operand";
6588
+ };
6589
+ export declare type SceneItemQueryOperandTypeEnum = (typeof SceneItemQueryOperandTypeEnum)[keyof typeof SceneItemQueryOperandTypeEnum];
6095
6590
  /**
6096
6591
  * Relationship to a `scene-item`.
6097
6592
  * @export
@@ -11818,10 +12313,11 @@ export declare const PartsApiAxiosParamCreator: (configuration?: Configuration |
11818
12313
  * @param {string} [pageCursor] The cursor for the next page of items.
11819
12314
  * @param {number} [pageSize] The number of items to return.
11820
12315
  * @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
12316
+ * @param {string} [filterOwnerId] Owner ID to filter on.
11821
12317
  * @param {*} [options] Override http request option.
11822
12318
  * @throws {RequiredError}
11823
12319
  */
11824
- getParts: (pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
12320
+ getParts: (pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, filterOwnerId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
11825
12321
  /**
11826
12322
  * Get a `queued-part-deletion` by ID.
11827
12323
  * @param {string} id The &#x60;queued-part-deletion&#x60; ID.
@@ -11862,10 +12358,11 @@ export declare const PartsApiFp: (configuration?: Configuration | undefined) =>
11862
12358
  * @param {string} [pageCursor] The cursor for the next page of items.
11863
12359
  * @param {number} [pageSize] The number of items to return.
11864
12360
  * @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
12361
+ * @param {string} [filterOwnerId] Owner ID to filter on.
11865
12362
  * @param {*} [options] Override http request option.
11866
12363
  * @throws {RequiredError}
11867
12364
  */
11868
- getParts(pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PartList>>;
12365
+ getParts(pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, filterOwnerId?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PartList>>;
11869
12366
  /**
11870
12367
  * Get a `queued-part-deletion` by ID.
11871
12368
  * @param {string} id The &#x60;queued-part-deletion&#x60; ID.
@@ -11906,10 +12403,11 @@ export declare const PartsApiFactory: (configuration?: Configuration | undefined
11906
12403
  * @param {string} [pageCursor] The cursor for the next page of items.
11907
12404
  * @param {number} [pageSize] The number of items to return.
11908
12405
  * @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
12406
+ * @param {string} [filterOwnerId] Owner ID to filter on.
11909
12407
  * @param {*} [options] Override http request option.
11910
12408
  * @throws {RequiredError}
11911
12409
  */
11912
- getParts(pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: any): AxiosPromise<PartList>;
12410
+ getParts(pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, filterOwnerId?: string | undefined, options?: any): AxiosPromise<PartList>;
11913
12411
  /**
11914
12412
  * Get a `queued-part-deletion` by ID.
11915
12413
  * @param {string} id The &#x60;queued-part-deletion&#x60; ID.
@@ -11987,6 +12485,12 @@ export interface PartsApiGetPartsRequest {
11987
12485
  * @memberof PartsApiGetParts
11988
12486
  */
11989
12487
  readonly filterSuppliedId?: string;
12488
+ /**
12489
+ * Owner ID to filter on.
12490
+ * @type {string}
12491
+ * @memberof PartsApiGetParts
12492
+ */
12493
+ readonly filterOwnerId?: string;
11990
12494
  }
11991
12495
  /**
11992
12496
  * Request parameters for getQueuedPartDeletion operation in PartsApi.
@@ -12049,6 +12553,225 @@ export declare class PartsApi extends BaseAPI {
12049
12553
  */
12050
12554
  getQueuedPartDeletion(requestParameters: PartsApiGetQueuedPartDeletionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
12051
12555
  }
12556
+ /**
12557
+ * PermissionGrantsApi - axios parameter creator
12558
+ * @export
12559
+ */
12560
+ export declare const PermissionGrantsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
12561
+ /**
12562
+ * Create a permission grant for a grantee to a subject resource
12563
+ * @summary Create a permission grant for a grantee to a subject resource
12564
+ * @param {CreatePermissionGrant} createPermissionGrant
12565
+ * @param {*} [options] Override http request option.
12566
+ * @throws {RequiredError}
12567
+ */
12568
+ createPermissionGrant: (createPermissionGrant: CreatePermissionGrant, options?: AxiosRequestConfig) => Promise<RequestArgs>;
12569
+ /**
12570
+ * Get a permission grant by ID
12571
+ * @summary Get a permission grant by ID
12572
+ * @param {string} id The permission grant ID.
12573
+ * @param {*} [options] Override http request option.
12574
+ * @throws {RequiredError}
12575
+ */
12576
+ getPermissionGrant: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
12577
+ /**
12578
+ * List all permission grants
12579
+ * @summary List all permission grants
12580
+ * @param {string} [pageCursor] The cursor for the next page of items.
12581
+ * @param {number} [pageSize] The number of items to return.
12582
+ * @param {*} [options] Override http request option.
12583
+ * @throws {RequiredError}
12584
+ */
12585
+ listPermissionGrants: (pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
12586
+ /**
12587
+ * Remove a permission grant by ID
12588
+ * @summary Remove a permission grant by ID
12589
+ * @param {string} id The permission grant ID.
12590
+ * @param {*} [options] Override http request option.
12591
+ * @throws {RequiredError}
12592
+ */
12593
+ removePermissionGrant: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
12594
+ };
12595
+ /**
12596
+ * PermissionGrantsApi - functional programming interface
12597
+ * @export
12598
+ */
12599
+ export declare const PermissionGrantsApiFp: (configuration?: Configuration | undefined) => {
12600
+ /**
12601
+ * Create a permission grant for a grantee to a subject resource
12602
+ * @summary Create a permission grant for a grantee to a subject resource
12603
+ * @param {CreatePermissionGrant} createPermissionGrant
12604
+ * @param {*} [options] Override http request option.
12605
+ * @throws {RequiredError}
12606
+ */
12607
+ createPermissionGrant(createPermissionGrant: CreatePermissionGrant, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PermissionGrant>>;
12608
+ /**
12609
+ * Get a permission grant by ID
12610
+ * @summary Get a permission grant by ID
12611
+ * @param {string} id The permission grant ID.
12612
+ * @param {*} [options] Override http request option.
12613
+ * @throws {RequiredError}
12614
+ */
12615
+ getPermissionGrant(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PermissionGrant>>;
12616
+ /**
12617
+ * List all permission grants
12618
+ * @summary List all permission grants
12619
+ * @param {string} [pageCursor] The cursor for the next page of items.
12620
+ * @param {number} [pageSize] The number of items to return.
12621
+ * @param {*} [options] Override http request option.
12622
+ * @throws {RequiredError}
12623
+ */
12624
+ listPermissionGrants(pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PermissionGrantList>>;
12625
+ /**
12626
+ * Remove a permission grant by ID
12627
+ * @summary Remove a permission grant by ID
12628
+ * @param {string} id The permission grant ID.
12629
+ * @param {*} [options] Override http request option.
12630
+ * @throws {RequiredError}
12631
+ */
12632
+ removePermissionGrant(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
12633
+ };
12634
+ /**
12635
+ * PermissionGrantsApi - factory interface
12636
+ * @export
12637
+ */
12638
+ export declare const PermissionGrantsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
12639
+ /**
12640
+ * Create a permission grant for a grantee to a subject resource
12641
+ * @summary Create a permission grant for a grantee to a subject resource
12642
+ * @param {CreatePermissionGrant} createPermissionGrant
12643
+ * @param {*} [options] Override http request option.
12644
+ * @throws {RequiredError}
12645
+ */
12646
+ createPermissionGrant(createPermissionGrant: CreatePermissionGrant, options?: any): AxiosPromise<PermissionGrant>;
12647
+ /**
12648
+ * Get a permission grant by ID
12649
+ * @summary Get a permission grant by ID
12650
+ * @param {string} id The permission grant ID.
12651
+ * @param {*} [options] Override http request option.
12652
+ * @throws {RequiredError}
12653
+ */
12654
+ getPermissionGrant(id: string, options?: any): AxiosPromise<PermissionGrant>;
12655
+ /**
12656
+ * List all permission grants
12657
+ * @summary List all permission grants
12658
+ * @param {string} [pageCursor] The cursor for the next page of items.
12659
+ * @param {number} [pageSize] The number of items to return.
12660
+ * @param {*} [options] Override http request option.
12661
+ * @throws {RequiredError}
12662
+ */
12663
+ listPermissionGrants(pageCursor?: string | undefined, pageSize?: number | undefined, options?: any): AxiosPromise<PermissionGrantList>;
12664
+ /**
12665
+ * Remove a permission grant by ID
12666
+ * @summary Remove a permission grant by ID
12667
+ * @param {string} id The permission grant ID.
12668
+ * @param {*} [options] Override http request option.
12669
+ * @throws {RequiredError}
12670
+ */
12671
+ removePermissionGrant(id: string, options?: any): AxiosPromise<void>;
12672
+ };
12673
+ /**
12674
+ * Request parameters for createPermissionGrant operation in PermissionGrantsApi.
12675
+ * @export
12676
+ * @interface PermissionGrantsApiCreatePermissionGrantRequest
12677
+ */
12678
+ export interface PermissionGrantsApiCreatePermissionGrantRequest {
12679
+ /**
12680
+ *
12681
+ * @type {CreatePermissionGrant}
12682
+ * @memberof PermissionGrantsApiCreatePermissionGrant
12683
+ */
12684
+ readonly createPermissionGrant: CreatePermissionGrant;
12685
+ }
12686
+ /**
12687
+ * Request parameters for getPermissionGrant operation in PermissionGrantsApi.
12688
+ * @export
12689
+ * @interface PermissionGrantsApiGetPermissionGrantRequest
12690
+ */
12691
+ export interface PermissionGrantsApiGetPermissionGrantRequest {
12692
+ /**
12693
+ * The permission grant ID.
12694
+ * @type {string}
12695
+ * @memberof PermissionGrantsApiGetPermissionGrant
12696
+ */
12697
+ readonly id: string;
12698
+ }
12699
+ /**
12700
+ * Request parameters for listPermissionGrants operation in PermissionGrantsApi.
12701
+ * @export
12702
+ * @interface PermissionGrantsApiListPermissionGrantsRequest
12703
+ */
12704
+ export interface PermissionGrantsApiListPermissionGrantsRequest {
12705
+ /**
12706
+ * The cursor for the next page of items.
12707
+ * @type {string}
12708
+ * @memberof PermissionGrantsApiListPermissionGrants
12709
+ */
12710
+ readonly pageCursor?: string;
12711
+ /**
12712
+ * The number of items to return.
12713
+ * @type {number}
12714
+ * @memberof PermissionGrantsApiListPermissionGrants
12715
+ */
12716
+ readonly pageSize?: number;
12717
+ }
12718
+ /**
12719
+ * Request parameters for removePermissionGrant operation in PermissionGrantsApi.
12720
+ * @export
12721
+ * @interface PermissionGrantsApiRemovePermissionGrantRequest
12722
+ */
12723
+ export interface PermissionGrantsApiRemovePermissionGrantRequest {
12724
+ /**
12725
+ * The permission grant ID.
12726
+ * @type {string}
12727
+ * @memberof PermissionGrantsApiRemovePermissionGrant
12728
+ */
12729
+ readonly id: string;
12730
+ }
12731
+ /**
12732
+ * PermissionGrantsApi - object-oriented interface
12733
+ * @export
12734
+ * @class PermissionGrantsApi
12735
+ * @extends {BaseAPI}
12736
+ */
12737
+ export declare class PermissionGrantsApi extends BaseAPI {
12738
+ /**
12739
+ * Create a permission grant for a grantee to a subject resource
12740
+ * @summary Create a permission grant for a grantee to a subject resource
12741
+ * @param {PermissionGrantsApiCreatePermissionGrantRequest} requestParameters Request parameters.
12742
+ * @param {*} [options] Override http request option.
12743
+ * @throws {RequiredError}
12744
+ * @memberof PermissionGrantsApi
12745
+ */
12746
+ createPermissionGrant(requestParameters: PermissionGrantsApiCreatePermissionGrantRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PermissionGrant, any>>;
12747
+ /**
12748
+ * Get a permission grant by ID
12749
+ * @summary Get a permission grant by ID
12750
+ * @param {PermissionGrantsApiGetPermissionGrantRequest} requestParameters Request parameters.
12751
+ * @param {*} [options] Override http request option.
12752
+ * @throws {RequiredError}
12753
+ * @memberof PermissionGrantsApi
12754
+ */
12755
+ getPermissionGrant(requestParameters: PermissionGrantsApiGetPermissionGrantRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PermissionGrant, any>>;
12756
+ /**
12757
+ * List all permission grants
12758
+ * @summary List all permission grants
12759
+ * @param {PermissionGrantsApiListPermissionGrantsRequest} requestParameters Request parameters.
12760
+ * @param {*} [options] Override http request option.
12761
+ * @throws {RequiredError}
12762
+ * @memberof PermissionGrantsApi
12763
+ */
12764
+ listPermissionGrants(requestParameters?: PermissionGrantsApiListPermissionGrantsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PermissionGrantList, any>>;
12765
+ /**
12766
+ * Remove a permission grant by ID
12767
+ * @summary Remove a permission grant by ID
12768
+ * @param {PermissionGrantsApiRemovePermissionGrantRequest} requestParameters Request parameters.
12769
+ * @param {*} [options] Override http request option.
12770
+ * @throws {RequiredError}
12771
+ * @memberof PermissionGrantsApi
12772
+ */
12773
+ removePermissionGrant(requestParameters: PermissionGrantsApiRemovePermissionGrantRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
12774
+ }
12052
12775
  /**
12053
12776
  * PmiApi - axios parameter creator
12054
12777
  * @export
@@ -12280,11 +13003,11 @@ export declare const SceneAlterationsApiAxiosParamCreator: (configuration?: Conf
12280
13003
  /**
12281
13004
  * Create a `scene-alteration` for a `scene-view`.
12282
13005
  * @param {string} id The &#x60;scene-view&#x60; ID.
12283
- * @param {CreateSceneAlterationRequest} createSceneAlterationRequest
13006
+ * @param {CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest} createSceneAlterationRequestCreateSceneExpressionAlterationRequest
12284
13007
  * @param {*} [options] Override http request option.
12285
13008
  * @throws {RequiredError}
12286
13009
  */
12287
- createSceneAlteration: (id: string, createSceneAlterationRequest: CreateSceneAlterationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13010
+ createSceneAlteration: (id: string, createSceneAlterationRequestCreateSceneExpressionAlterationRequest: CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
12288
13011
  /**
12289
13012
  * Get a `queued-scene-alteration` by ID.
12290
13013
  * @param {string} id The &#x60;queued-scene-alteration&#x60; ID.
@@ -12315,11 +13038,11 @@ export declare const SceneAlterationsApiFp: (configuration?: Configuration | und
12315
13038
  /**
12316
13039
  * Create a `scene-alteration` for a `scene-view`.
12317
13040
  * @param {string} id The &#x60;scene-view&#x60; ID.
12318
- * @param {CreateSceneAlterationRequest} createSceneAlterationRequest
13041
+ * @param {CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest} createSceneAlterationRequestCreateSceneExpressionAlterationRequest
12319
13042
  * @param {*} [options] Override http request option.
12320
13043
  * @throws {RequiredError}
12321
13044
  */
12322
- createSceneAlteration(id: string, createSceneAlterationRequest: CreateSceneAlterationRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
13045
+ createSceneAlteration(id: string, createSceneAlterationRequestCreateSceneExpressionAlterationRequest: CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
12323
13046
  /**
12324
13047
  * Get a `queued-scene-alteration` by ID.
12325
13048
  * @param {string} id The &#x60;queued-scene-alteration&#x60; ID.
@@ -12350,11 +13073,11 @@ export declare const SceneAlterationsApiFactory: (configuration?: Configuration
12350
13073
  /**
12351
13074
  * Create a `scene-alteration` for a `scene-view`.
12352
13075
  * @param {string} id The &#x60;scene-view&#x60; ID.
12353
- * @param {CreateSceneAlterationRequest} createSceneAlterationRequest
13076
+ * @param {CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest} createSceneAlterationRequestCreateSceneExpressionAlterationRequest
12354
13077
  * @param {*} [options] Override http request option.
12355
13078
  * @throws {RequiredError}
12356
13079
  */
12357
- createSceneAlteration(id: string, createSceneAlterationRequest: CreateSceneAlterationRequest, options?: any): AxiosPromise<QueuedJob>;
13080
+ createSceneAlteration(id: string, createSceneAlterationRequestCreateSceneExpressionAlterationRequest: CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest, options?: any): AxiosPromise<QueuedJob>;
12358
13081
  /**
12359
13082
  * Get a `queued-scene-alteration` by ID.
12360
13083
  * @param {string} id The &#x60;queued-scene-alteration&#x60; ID.
@@ -12391,10 +13114,10 @@ export interface SceneAlterationsApiCreateSceneAlterationRequest {
12391
13114
  readonly id: string;
12392
13115
  /**
12393
13116
  *
12394
- * @type {CreateSceneAlterationRequest}
13117
+ * @type {CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest}
12395
13118
  * @memberof SceneAlterationsApiCreateSceneAlteration
12396
13119
  */
12397
- readonly createSceneAlterationRequest: CreateSceneAlterationRequest;
13120
+ readonly createSceneAlterationRequestCreateSceneExpressionAlterationRequest: CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest;
12398
13121
  }
12399
13122
  /**
12400
13123
  * Request parameters for getQueuedSceneAlteration operation in SceneAlterationsApi.