@vertexvis/api-client-node 0.30.0 → 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/cjs/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
@@ -2135,6 +2285,74 @@ export interface CreateSceneViewStateRequestDataRelationships {
2135
2285
  */
2136
2286
  source: SceneViewRelationship | SceneViewStateRelationship;
2137
2287
  }
2288
+ /**
2289
+ *
2290
+ * @export
2291
+ * @interface CreateSearchSessionRequest
2292
+ */
2293
+ export interface CreateSearchSessionRequest {
2294
+ /**
2295
+ *
2296
+ * @type {CreateSearchSessionRequestData}
2297
+ * @memberof CreateSearchSessionRequest
2298
+ */
2299
+ data: CreateSearchSessionRequestData;
2300
+ }
2301
+ /**
2302
+ *
2303
+ * @export
2304
+ * @interface CreateSearchSessionRequestData
2305
+ */
2306
+ export interface CreateSearchSessionRequestData {
2307
+ /**
2308
+ * Resource object type.
2309
+ * @type {string}
2310
+ * @memberof CreateSearchSessionRequestData
2311
+ */
2312
+ type: CreateSearchSessionRequestDataTypeEnum;
2313
+ /**
2314
+ *
2315
+ * @type {CreateSearchSessionRequestDataAttributes}
2316
+ * @memberof CreateSearchSessionRequestData
2317
+ */
2318
+ attributes: CreateSearchSessionRequestDataAttributes;
2319
+ /**
2320
+ *
2321
+ * @type {CreateSearchSessionRequestDataRelationships}
2322
+ * @memberof CreateSearchSessionRequestData
2323
+ */
2324
+ relationships: CreateSearchSessionRequestDataRelationships;
2325
+ }
2326
+ export declare const CreateSearchSessionRequestDataTypeEnum: {
2327
+ readonly SearchSession: "search-session";
2328
+ };
2329
+ export declare type CreateSearchSessionRequestDataTypeEnum = (typeof CreateSearchSessionRequestDataTypeEnum)[keyof typeof CreateSearchSessionRequestDataTypeEnum];
2330
+ /**
2331
+ *
2332
+ * @export
2333
+ * @interface CreateSearchSessionRequestDataAttributes
2334
+ */
2335
+ export interface CreateSearchSessionRequestDataAttributes {
2336
+ /**
2337
+ * Number of seconds before the search session is deleted.
2338
+ * @type {number}
2339
+ * @memberof CreateSearchSessionRequestDataAttributes
2340
+ */
2341
+ expiry?: number;
2342
+ }
2343
+ /**
2344
+ *
2345
+ * @export
2346
+ * @interface CreateSearchSessionRequestDataRelationships
2347
+ */
2348
+ export interface CreateSearchSessionRequestDataRelationships {
2349
+ /**
2350
+ *
2351
+ * @type {SceneRelationship}
2352
+ * @memberof CreateSearchSessionRequestDataRelationships
2353
+ */
2354
+ scene?: SceneRelationship;
2355
+ }
2138
2356
  /**
2139
2357
  *
2140
2358
  * @export
@@ -3054,6 +3272,12 @@ export interface FilterExpression {
3054
3272
  * @memberof FilterExpression
3055
3273
  */
3056
3274
  lte?: string;
3275
+ /**
3276
+ * A value of a filter.
3277
+ * @type {string}
3278
+ * @memberof FilterExpression
3279
+ */
3280
+ contains?: string;
3057
3281
  }
3058
3282
  /**
3059
3283
  *
@@ -3166,6 +3390,29 @@ export declare const GeometrySetRelationshipDataTypeEnum: {
3166
3390
  readonly GeometrySet: "geometry-set";
3167
3391
  };
3168
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];
3169
3416
  /**
3170
3417
  *
3171
3418
  * @export
@@ -3834,6 +4081,12 @@ export interface PartDataRelationships {
3834
4081
  * @memberof PartDataRelationships
3835
4082
  */
3836
4083
  partRevisions: Array<PartDataRelationshipsPartRevisions>;
4084
+ /**
4085
+ *
4086
+ * @type {AccountRelationship}
4087
+ * @memberof PartDataRelationships
4088
+ */
4089
+ owner?: AccountRelationship;
3837
4090
  }
3838
4091
  /**
3839
4092
  *
@@ -4398,6 +4651,106 @@ export interface PartRevisionSuppliedId {
4398
4651
  */
4399
4652
  suppliedIterationId?: string;
4400
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;
4401
4754
  /**
4402
4755
  * A camera type that mimics the way the human eye sees.
4403
4756
  * @export
@@ -4663,6 +5016,23 @@ export declare const PropertyLongTypeTypeEnum: {
4663
5016
  readonly Long: "long";
4664
5017
  };
4665
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];
4666
5036
  /**
4667
5037
  * Relationship to a `property-set`.
4668
5038
  * @export
@@ -4912,6 +5282,105 @@ export interface QueryByMetadataDataAttributes {
4912
5282
  */
4913
5283
  keys: Array<string>;
4914
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];
4915
5384
  /**
4916
5385
  *
4917
5386
  * @export
@@ -5708,6 +6177,35 @@ export interface SceneItem {
5708
6177
  [key: string]: Link;
5709
6178
  };
5710
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];
5711
6209
  /**
5712
6210
  *
5713
6211
  * @export
@@ -5848,6 +6346,25 @@ export interface SceneItemDataRelationships {
5848
6346
  */
5849
6347
  partRendition?: PartRenditionRelationship;
5850
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
+ }
5851
6368
  /**
5852
6369
  *
5853
6370
  * @export
@@ -5869,6 +6386,35 @@ export interface SceneItemList {
5869
6386
  [key: string]: Link;
5870
6387
  };
5871
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];
5872
6418
  /**
5873
6419
  *
5874
6420
  * @export
@@ -6008,16 +6554,39 @@ export interface SceneItemOverrideList {
6008
6554
  * @type {Array<SceneItemOverrideData>}
6009
6555
  * @memberof SceneItemOverrideList
6010
6556
  */
6011
- data: Array<SceneItemOverrideData>;
6557
+ data: Array<SceneItemOverrideData>;
6558
+ /**
6559
+ *
6560
+ * @type {{ [key: string]: Link; }}
6561
+ * @memberof SceneItemOverrideList
6562
+ */
6563
+ links: {
6564
+ [key: string]: Link;
6565
+ };
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;
6012
6579
  /**
6013
- *
6014
- * @type {{ [key: string]: Link; }}
6015
- * @memberof SceneItemOverrideList
6580
+ * Query Operand for searching `scene-items`.
6581
+ * @type {QueryBySceneItemId | QueryBySceneItemIds | QueryByRoot | QueryBySceneItemMetadata}
6582
+ * @memberof SceneItemQueryOperand
6016
6583
  */
6017
- links: {
6018
- [key: string]: Link;
6019
- };
6584
+ query: QueryBySceneItemId | QueryBySceneItemIds | QueryByRoot | QueryBySceneItemMetadata;
6020
6585
  }
6586
+ export declare const SceneItemQueryOperandTypeEnum: {
6587
+ readonly QueryOperand: "query-operand";
6588
+ };
6589
+ export declare type SceneItemQueryOperandTypeEnum = (typeof SceneItemQueryOperandTypeEnum)[keyof typeof SceneItemQueryOperandTypeEnum];
6021
6590
  /**
6022
6591
  * Relationship to a `scene-item`.
6023
6592
  * @export
@@ -6659,6 +7228,79 @@ export declare const SceneViewStateRelationshipDataTypeEnum: {
6659
7228
  readonly SceneViewState: "scene-view-state";
6660
7229
  };
6661
7230
  export declare type SceneViewStateRelationshipDataTypeEnum = (typeof SceneViewStateRelationshipDataTypeEnum)[keyof typeof SceneViewStateRelationshipDataTypeEnum];
7231
+ /**
7232
+ *
7233
+ * @export
7234
+ * @interface SearchSession
7235
+ */
7236
+ export interface SearchSession {
7237
+ /**
7238
+ *
7239
+ * @type {SearchSessionData}
7240
+ * @memberof SearchSession
7241
+ */
7242
+ data: SearchSessionData;
7243
+ /**
7244
+ *
7245
+ * @type {{ [key: string]: Link; }}
7246
+ * @memberof SearchSession
7247
+ */
7248
+ links?: {
7249
+ [key: string]: Link;
7250
+ };
7251
+ }
7252
+ /**
7253
+ *
7254
+ * @export
7255
+ * @interface SearchSessionData
7256
+ */
7257
+ export interface SearchSessionData {
7258
+ /**
7259
+ *
7260
+ * @type {string}
7261
+ * @memberof SearchSessionData
7262
+ */
7263
+ type: string;
7264
+ /**
7265
+ * ID of the resource.
7266
+ * @type {string}
7267
+ * @memberof SearchSessionData
7268
+ */
7269
+ id: string;
7270
+ /**
7271
+ *
7272
+ * @type {SearchSessionDataAttributes}
7273
+ * @memberof SearchSessionData
7274
+ */
7275
+ attributes: SearchSessionDataAttributes;
7276
+ /**
7277
+ *
7278
+ * @type {SceneViewDataRelationships}
7279
+ * @memberof SearchSessionData
7280
+ */
7281
+ relationships?: SceneViewDataRelationships;
7282
+ /**
7283
+ *
7284
+ * @type {{ [key: string]: Link; }}
7285
+ * @memberof SearchSessionData
7286
+ */
7287
+ links?: {
7288
+ [key: string]: Link;
7289
+ };
7290
+ }
7291
+ /**
7292
+ *
7293
+ * @export
7294
+ * @interface SearchSessionDataAttributes
7295
+ */
7296
+ export interface SearchSessionDataAttributes {
7297
+ /**
7298
+ *
7299
+ * @type {string}
7300
+ * @memberof SearchSessionDataAttributes
7301
+ */
7302
+ status: string;
7303
+ }
6662
7304
  /**
6663
7305
  *
6664
7306
  * @export
@@ -11128,7 +11770,7 @@ export declare class PartRenditionsApi extends BaseAPI {
11128
11770
  */
11129
11771
  export declare const PartRevisionInstancesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
11130
11772
  /**
11131
- * Gets a page of \'part-revision\' instances. An instance is an occurence of a revision that is a child of a parent revision. The returned data will have the ordinal used for ordering and the transform matrix for each occurrence.
11773
+ * Gets a page of \'part-revision\' instances. An instance is an occurrence of a revision that is a child of a parent revision. The returned data will have the ordinal used for ordering and the transform matrix for each occurrence.
11132
11774
  * @param {string} [filterParent] Parent ID to filter on.
11133
11775
  * @param {string} [pageCursor] The cursor for the next page of items.
11134
11776
  * @param {number} [pageSize] The number of items to return.
@@ -11143,7 +11785,7 @@ export declare const PartRevisionInstancesApiAxiosParamCreator: (configuration?:
11143
11785
  */
11144
11786
  export declare const PartRevisionInstancesApiFp: (configuration?: Configuration | undefined) => {
11145
11787
  /**
11146
- * Gets a page of \'part-revision\' instances. An instance is an occurence of a revision that is a child of a parent revision. The returned data will have the ordinal used for ordering and the transform matrix for each occurrence.
11788
+ * Gets a page of \'part-revision\' instances. An instance is an occurrence of a revision that is a child of a parent revision. The returned data will have the ordinal used for ordering and the transform matrix for each occurrence.
11147
11789
  * @param {string} [filterParent] Parent ID to filter on.
11148
11790
  * @param {string} [pageCursor] The cursor for the next page of items.
11149
11791
  * @param {number} [pageSize] The number of items to return.
@@ -11158,7 +11800,7 @@ export declare const PartRevisionInstancesApiFp: (configuration?: Configuration
11158
11800
  */
11159
11801
  export declare const PartRevisionInstancesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
11160
11802
  /**
11161
- * Gets a page of \'part-revision\' instances. An instance is an occurence of a revision that is a child of a parent revision. The returned data will have the ordinal used for ordering and the transform matrix for each occurrence.
11803
+ * Gets a page of \'part-revision\' instances. An instance is an occurrence of a revision that is a child of a parent revision. The returned data will have the ordinal used for ordering and the transform matrix for each occurrence.
11162
11804
  * @param {string} [filterParent] Parent ID to filter on.
11163
11805
  * @param {string} [pageCursor] The cursor for the next page of items.
11164
11806
  * @param {number} [pageSize] The number of items to return.
@@ -11200,7 +11842,7 @@ export interface PartRevisionInstancesApiGetPartRevisionInstanceListRequest {
11200
11842
  */
11201
11843
  export declare class PartRevisionInstancesApi extends BaseAPI {
11202
11844
  /**
11203
- * Gets a page of \'part-revision\' instances. An instance is an occurence of a revision that is a child of a parent revision. The returned data will have the ordinal used for ordering and the transform matrix for each occurrence.
11845
+ * Gets a page of \'part-revision\' instances. An instance is an occurrence of a revision that is a child of a parent revision. The returned data will have the ordinal used for ordering and the transform matrix for each occurrence.
11204
11846
  * @param {PartRevisionInstancesApiGetPartRevisionInstanceListRequest} requestParameters Request parameters.
11205
11847
  * @param {*} [options] Override http request option.
11206
11848
  * @throws {RequiredError}
@@ -11671,10 +12313,11 @@ export declare const PartsApiAxiosParamCreator: (configuration?: Configuration |
11671
12313
  * @param {string} [pageCursor] The cursor for the next page of items.
11672
12314
  * @param {number} [pageSize] The number of items to return.
11673
12315
  * @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
12316
+ * @param {string} [filterOwnerId] Owner ID to filter on.
11674
12317
  * @param {*} [options] Override http request option.
11675
12318
  * @throws {RequiredError}
11676
12319
  */
11677
- 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>;
11678
12321
  /**
11679
12322
  * Get a `queued-part-deletion` by ID.
11680
12323
  * @param {string} id The &#x60;queued-part-deletion&#x60; ID.
@@ -11715,10 +12358,11 @@ export declare const PartsApiFp: (configuration?: Configuration | undefined) =>
11715
12358
  * @param {string} [pageCursor] The cursor for the next page of items.
11716
12359
  * @param {number} [pageSize] The number of items to return.
11717
12360
  * @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
12361
+ * @param {string} [filterOwnerId] Owner ID to filter on.
11718
12362
  * @param {*} [options] Override http request option.
11719
12363
  * @throws {RequiredError}
11720
12364
  */
11721
- 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>>;
11722
12366
  /**
11723
12367
  * Get a `queued-part-deletion` by ID.
11724
12368
  * @param {string} id The &#x60;queued-part-deletion&#x60; ID.
@@ -11759,10 +12403,11 @@ export declare const PartsApiFactory: (configuration?: Configuration | undefined
11759
12403
  * @param {string} [pageCursor] The cursor for the next page of items.
11760
12404
  * @param {number} [pageSize] The number of items to return.
11761
12405
  * @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
12406
+ * @param {string} [filterOwnerId] Owner ID to filter on.
11762
12407
  * @param {*} [options] Override http request option.
11763
12408
  * @throws {RequiredError}
11764
12409
  */
11765
- 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>;
11766
12411
  /**
11767
12412
  * Get a `queued-part-deletion` by ID.
11768
12413
  * @param {string} id The &#x60;queued-part-deletion&#x60; ID.
@@ -11840,6 +12485,12 @@ export interface PartsApiGetPartsRequest {
11840
12485
  * @memberof PartsApiGetParts
11841
12486
  */
11842
12487
  readonly filterSuppliedId?: string;
12488
+ /**
12489
+ * Owner ID to filter on.
12490
+ * @type {string}
12491
+ * @memberof PartsApiGetParts
12492
+ */
12493
+ readonly filterOwnerId?: string;
11843
12494
  }
11844
12495
  /**
11845
12496
  * Request parameters for getQueuedPartDeletion operation in PartsApi.
@@ -11902,6 +12553,225 @@ export declare class PartsApi extends BaseAPI {
11902
12553
  */
11903
12554
  getQueuedPartDeletion(requestParameters: PartsApiGetQueuedPartDeletionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
11904
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
+ }
11905
12775
  /**
11906
12776
  * PmiApi - axios parameter creator
11907
12777
  * @export
@@ -12133,11 +13003,11 @@ export declare const SceneAlterationsApiAxiosParamCreator: (configuration?: Conf
12133
13003
  /**
12134
13004
  * Create a `scene-alteration` for a `scene-view`.
12135
13005
  * @param {string} id The &#x60;scene-view&#x60; ID.
12136
- * @param {CreateSceneAlterationRequest} createSceneAlterationRequest
13006
+ * @param {CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest} createSceneAlterationRequestCreateSceneExpressionAlterationRequest
12137
13007
  * @param {*} [options] Override http request option.
12138
13008
  * @throws {RequiredError}
12139
13009
  */
12140
- createSceneAlteration: (id: string, createSceneAlterationRequest: CreateSceneAlterationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
13010
+ createSceneAlteration: (id: string, createSceneAlterationRequestCreateSceneExpressionAlterationRequest: CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
12141
13011
  /**
12142
13012
  * Get a `queued-scene-alteration` by ID.
12143
13013
  * @param {string} id The &#x60;queued-scene-alteration&#x60; ID.
@@ -12168,11 +13038,11 @@ export declare const SceneAlterationsApiFp: (configuration?: Configuration | und
12168
13038
  /**
12169
13039
  * Create a `scene-alteration` for a `scene-view`.
12170
13040
  * @param {string} id The &#x60;scene-view&#x60; ID.
12171
- * @param {CreateSceneAlterationRequest} createSceneAlterationRequest
13041
+ * @param {CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest} createSceneAlterationRequestCreateSceneExpressionAlterationRequest
12172
13042
  * @param {*} [options] Override http request option.
12173
13043
  * @throws {RequiredError}
12174
13044
  */
12175
- 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>>;
12176
13046
  /**
12177
13047
  * Get a `queued-scene-alteration` by ID.
12178
13048
  * @param {string} id The &#x60;queued-scene-alteration&#x60; ID.
@@ -12203,11 +13073,11 @@ export declare const SceneAlterationsApiFactory: (configuration?: Configuration
12203
13073
  /**
12204
13074
  * Create a `scene-alteration` for a `scene-view`.
12205
13075
  * @param {string} id The &#x60;scene-view&#x60; ID.
12206
- * @param {CreateSceneAlterationRequest} createSceneAlterationRequest
13076
+ * @param {CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest} createSceneAlterationRequestCreateSceneExpressionAlterationRequest
12207
13077
  * @param {*} [options] Override http request option.
12208
13078
  * @throws {RequiredError}
12209
13079
  */
12210
- createSceneAlteration(id: string, createSceneAlterationRequest: CreateSceneAlterationRequest, options?: any): AxiosPromise<QueuedJob>;
13080
+ createSceneAlteration(id: string, createSceneAlterationRequestCreateSceneExpressionAlterationRequest: CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest, options?: any): AxiosPromise<QueuedJob>;
12211
13081
  /**
12212
13082
  * Get a `queued-scene-alteration` by ID.
12213
13083
  * @param {string} id The &#x60;queued-scene-alteration&#x60; ID.
@@ -12244,10 +13114,10 @@ export interface SceneAlterationsApiCreateSceneAlterationRequest {
12244
13114
  readonly id: string;
12245
13115
  /**
12246
13116
  *
12247
- * @type {CreateSceneAlterationRequest}
13117
+ * @type {CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest}
12248
13118
  * @memberof SceneAlterationsApiCreateSceneAlteration
12249
13119
  */
12250
- readonly createSceneAlterationRequest: CreateSceneAlterationRequest;
13120
+ readonly createSceneAlterationRequestCreateSceneExpressionAlterationRequest: CreateSceneAlterationRequest | CreateSceneExpressionAlterationRequest;
12251
13121
  }
12252
13122
  /**
12253
13123
  * Request parameters for getQueuedSceneAlteration operation in SceneAlterationsApi.
@@ -14624,6 +15494,116 @@ export declare class ScenesApi extends BaseAPI {
14624
15494
  */
14625
15495
  updateScene(requestParameters: ScenesApiUpdateSceneRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Scene, any>>;
14626
15496
  }
15497
+ /**
15498
+ * SearchSessionsApi - axios parameter creator
15499
+ * @export
15500
+ */
15501
+ export declare const SearchSessionsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
15502
+ /**
15503
+ * Create a `search-session`.
15504
+ * @param {CreateSearchSessionRequest} createSearchSessionRequest
15505
+ * @param {*} [options] Override http request option.
15506
+ * @throws {RequiredError}
15507
+ */
15508
+ createSearchSession: (createSearchSessionRequest: CreateSearchSessionRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15509
+ /**
15510
+ * Get a `search-session`.
15511
+ * @param {string} id The &#x60;search-session&#x60; ID.
15512
+ * @param {*} [options] Override http request option.
15513
+ * @throws {RequiredError}
15514
+ */
15515
+ getSearchSession: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
15516
+ };
15517
+ /**
15518
+ * SearchSessionsApi - functional programming interface
15519
+ * @export
15520
+ */
15521
+ export declare const SearchSessionsApiFp: (configuration?: Configuration | undefined) => {
15522
+ /**
15523
+ * Create a `search-session`.
15524
+ * @param {CreateSearchSessionRequest} createSearchSessionRequest
15525
+ * @param {*} [options] Override http request option.
15526
+ * @throws {RequiredError}
15527
+ */
15528
+ createSearchSession(createSearchSessionRequest: CreateSearchSessionRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SearchSession>>;
15529
+ /**
15530
+ * Get a `search-session`.
15531
+ * @param {string} id The &#x60;search-session&#x60; ID.
15532
+ * @param {*} [options] Override http request option.
15533
+ * @throws {RequiredError}
15534
+ */
15535
+ getSearchSession(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SearchSession>>;
15536
+ };
15537
+ /**
15538
+ * SearchSessionsApi - factory interface
15539
+ * @export
15540
+ */
15541
+ export declare const SearchSessionsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
15542
+ /**
15543
+ * Create a `search-session`.
15544
+ * @param {CreateSearchSessionRequest} createSearchSessionRequest
15545
+ * @param {*} [options] Override http request option.
15546
+ * @throws {RequiredError}
15547
+ */
15548
+ createSearchSession(createSearchSessionRequest: CreateSearchSessionRequest, options?: any): AxiosPromise<SearchSession>;
15549
+ /**
15550
+ * Get a `search-session`.
15551
+ * @param {string} id The &#x60;search-session&#x60; ID.
15552
+ * @param {*} [options] Override http request option.
15553
+ * @throws {RequiredError}
15554
+ */
15555
+ getSearchSession(id: string, options?: any): AxiosPromise<SearchSession>;
15556
+ };
15557
+ /**
15558
+ * Request parameters for createSearchSession operation in SearchSessionsApi.
15559
+ * @export
15560
+ * @interface SearchSessionsApiCreateSearchSessionRequest
15561
+ */
15562
+ export interface SearchSessionsApiCreateSearchSessionRequest {
15563
+ /**
15564
+ *
15565
+ * @type {CreateSearchSessionRequest}
15566
+ * @memberof SearchSessionsApiCreateSearchSession
15567
+ */
15568
+ readonly createSearchSessionRequest: CreateSearchSessionRequest;
15569
+ }
15570
+ /**
15571
+ * Request parameters for getSearchSession operation in SearchSessionsApi.
15572
+ * @export
15573
+ * @interface SearchSessionsApiGetSearchSessionRequest
15574
+ */
15575
+ export interface SearchSessionsApiGetSearchSessionRequest {
15576
+ /**
15577
+ * The &#x60;search-session&#x60; ID.
15578
+ * @type {string}
15579
+ * @memberof SearchSessionsApiGetSearchSession
15580
+ */
15581
+ readonly id: string;
15582
+ }
15583
+ /**
15584
+ * SearchSessionsApi - object-oriented interface
15585
+ * @export
15586
+ * @class SearchSessionsApi
15587
+ * @extends {BaseAPI}
15588
+ */
15589
+ export declare class SearchSessionsApi extends BaseAPI {
15590
+ /**
15591
+ * Create a `search-session`.
15592
+ * @param {SearchSessionsApiCreateSearchSessionRequest} requestParameters Request parameters.
15593
+ * @param {*} [options] Override http request option.
15594
+ * @throws {RequiredError}
15595
+ * @memberof SearchSessionsApi
15596
+ */
15597
+ createSearchSession(requestParameters: SearchSessionsApiCreateSearchSessionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchSession, any>>;
15598
+ /**
15599
+ * Get a `search-session`.
15600
+ * @param {SearchSessionsApiGetSearchSessionRequest} requestParameters Request parameters.
15601
+ * @param {*} [options] Override http request option.
15602
+ * @throws {RequiredError}
15603
+ * @memberof SearchSessionsApi
15604
+ */
15605
+ getSearchSession(requestParameters: SearchSessionsApiGetSearchSessionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SearchSession, any>>;
15606
+ }
14627
15607
  /**
14628
15608
  * StreamKeysApi - axios parameter creator
14629
15609
  * @export