@vertexvis/api-client-node 0.15.5 → 0.17.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/dist/cjs/api.d.ts +895 -503
  2. package/dist/cjs/api.js +501 -344
  3. package/dist/cjs/base.d.ts +2 -2
  4. package/dist/cjs/client/helpers/exports.d.ts +15 -0
  5. package/dist/cjs/client/helpers/exports.js +39 -0
  6. package/dist/cjs/client/helpers/files.d.ts +3 -12
  7. package/dist/cjs/client/helpers/files.js +5 -8
  8. package/dist/cjs/client/helpers/index.d.ts +1 -0
  9. package/dist/cjs/client/helpers/index.js +1 -0
  10. package/dist/cjs/client/helpers/parts.d.ts +4 -6
  11. package/dist/cjs/client/helpers/queued-jobs.js +1 -1
  12. package/dist/cjs/client/helpers/scenes.d.ts +1 -1
  13. package/dist/cjs/client/helpers/scenes.js +2 -11
  14. package/dist/cjs/client/version.d.ts +1 -1
  15. package/dist/cjs/client/version.js +1 -1
  16. package/dist/cjs/client/vertex-client.d.ts +2 -1
  17. package/dist/cjs/client/vertex-client.js +1 -0
  18. package/dist/cjs/common.d.ts +2 -2
  19. package/dist/esm/api.d.ts +895 -503
  20. package/dist/esm/api.js +494 -341
  21. package/dist/esm/base.d.ts +2 -2
  22. package/dist/esm/client/helpers/exports.d.ts +15 -0
  23. package/dist/esm/client/helpers/exports.js +35 -0
  24. package/dist/esm/client/helpers/files.d.ts +3 -12
  25. package/dist/esm/client/helpers/files.js +5 -8
  26. package/dist/esm/client/helpers/index.d.ts +1 -0
  27. package/dist/esm/client/helpers/index.js +1 -0
  28. package/dist/esm/client/helpers/parts.d.ts +4 -6
  29. package/dist/esm/client/helpers/queued-jobs.js +1 -1
  30. package/dist/esm/client/helpers/scenes.d.ts +1 -1
  31. package/dist/esm/client/helpers/scenes.js +2 -11
  32. package/dist/esm/client/version.d.ts +1 -1
  33. package/dist/esm/client/version.js +1 -1
  34. package/dist/esm/client/vertex-client.d.ts +2 -1
  35. package/dist/esm/client/vertex-client.js +2 -1
  36. package/dist/esm/common.d.ts +2 -2
  37. package/package.json +20 -20
package/dist/cjs/api.d.ts CHANGED
@@ -10,7 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import { Configuration } from './configuration';
13
- import { AxiosPromise, AxiosInstance } from 'axios';
13
+ import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
14
14
  import { RequestArgs, BaseAPI } from './base';
15
15
  /**
16
16
  *
@@ -438,7 +438,7 @@ export interface Batch {
438
438
  * @type {Array<RelationshipData | ApiError>}
439
439
  * @memberof Batch
440
440
  */
441
- vertexvis_batchresults: Array<RelationshipData | ApiError>;
441
+ 'vertexvis/batch:results': Array<RelationshipData | ApiError>;
442
442
  }
443
443
  /**
444
444
  *
@@ -465,13 +465,10 @@ export interface BatchOperation {
465
465
  */
466
466
  ref: BatchOperationRef;
467
467
  }
468
- /**
469
- * @export
470
- * @enum {string}
471
- */
472
- export declare enum BatchOperationOpEnum {
473
- Add = "add"
474
- }
468
+ export declare const BatchOperationOpEnum: {
469
+ readonly Add: "add";
470
+ };
471
+ export declare type BatchOperationOpEnum = typeof BatchOperationOpEnum[keyof typeof BatchOperationOpEnum];
475
472
  /**
476
473
  * Target of batch operation.
477
474
  * @export
@@ -491,13 +488,10 @@ export interface BatchOperationRef {
491
488
  */
492
489
  id: string;
493
490
  }
494
- /**
495
- * @export
496
- * @enum {string}
497
- */
498
- export declare enum BatchOperationRefTypeEnum {
499
- Scene = "scene"
500
- }
491
+ export declare const BatchOperationRefTypeEnum: {
492
+ readonly Scene: "scene";
493
+ };
494
+ export declare type BatchOperationRefTypeEnum = typeof BatchOperationRefTypeEnum[keyof typeof BatchOperationRefTypeEnum];
501
495
  /**
502
496
  * 3D bounding-box
503
497
  * @export
@@ -518,29 +512,11 @@ export interface BoundingBox {
518
512
  max: Vector3;
519
513
  }
520
514
  /**
521
- * Camera placement in 3D space.
515
+ * Describes the options for configuring a CAD file export.
522
516
  * @export
523
- * @interface Camera
517
+ * @interface CADExportConfig
524
518
  */
525
- export interface Camera {
526
- /**
527
- *
528
- * @type {Vector3}
529
- * @memberof Camera
530
- */
531
- position: Vector3;
532
- /**
533
- *
534
- * @type {Vector3}
535
- * @memberof Camera
536
- */
537
- lookAt: Vector3;
538
- /**
539
- *
540
- * @type {Vector3}
541
- * @memberof Camera
542
- */
543
- up: Vector3;
519
+ export interface CADExportConfig extends ExportConfig {
544
520
  }
545
521
  /**
546
522
  * Fit camera in 3D space based on items in scene.
@@ -555,14 +531,11 @@ export interface CameraFit {
555
531
  */
556
532
  type: CameraFitTypeEnum;
557
533
  }
558
- /**
559
- * @export
560
- * @enum {string}
561
- */
562
- export declare enum CameraFitTypeEnum {
563
- FitVisibleSceneItems = "fit-visible-scene-items",
564
- Reset = "reset"
565
- }
534
+ export declare const CameraFitTypeEnum: {
535
+ readonly FitVisibleSceneItems: "fit-visible-scene-items";
536
+ readonly Reset: "reset";
537
+ };
538
+ export declare type CameraFitTypeEnum = typeof CameraFitTypeEnum[keyof typeof CameraFitTypeEnum];
566
539
  /**
567
540
  *
568
541
  * @export
@@ -582,13 +555,10 @@ export interface ChangeMaterialOperation {
582
555
  */
583
556
  material: ColorMaterial;
584
557
  }
585
- /**
586
- * @export
587
- * @enum {string}
588
- */
589
- export declare enum ChangeMaterialOperationTypeEnum {
590
- ChangeMaterial = "change-material"
591
- }
558
+ export declare const ChangeMaterialOperationTypeEnum: {
559
+ readonly ChangeMaterial: "change-material";
560
+ };
561
+ export declare type ChangeMaterialOperationTypeEnum = typeof ChangeMaterialOperationTypeEnum[keyof typeof ChangeMaterialOperationTypeEnum];
592
562
  /**
593
563
  *
594
564
  * @export
@@ -608,13 +578,10 @@ export interface ChangeTransformOperation {
608
578
  */
609
579
  transform: Matrix4;
610
580
  }
611
- /**
612
- * @export
613
- * @enum {string}
614
- */
615
- export declare enum ChangeTransformOperationTypeEnum {
616
- ChangeTransform = "change-transform"
617
- }
581
+ export declare const ChangeTransformOperationTypeEnum: {
582
+ readonly ChangeTransform: "change-transform";
583
+ };
584
+ export declare type ChangeTransformOperationTypeEnum = typeof ChangeTransformOperationTypeEnum[keyof typeof ChangeTransformOperationTypeEnum];
618
585
  /**
619
586
  *
620
587
  * @export
@@ -634,13 +601,10 @@ export interface ChangeVisibilityOperation {
634
601
  */
635
602
  visible: boolean;
636
603
  }
637
- /**
638
- * @export
639
- * @enum {string}
640
- */
641
- export declare enum ChangeVisibilityOperationTypeEnum {
642
- ChangeVisibility = "change-visibility"
643
- }
604
+ export declare const ChangeVisibilityOperationTypeEnum: {
605
+ readonly ChangeVisibility: "change-visibility";
606
+ };
607
+ export declare type ChangeVisibilityOperationTypeEnum = typeof ChangeVisibilityOperationTypeEnum[keyof typeof ChangeVisibilityOperationTypeEnum];
644
608
  /**
645
609
  *
646
610
  * @export
@@ -654,13 +618,10 @@ export interface ClearMaterialOperation {
654
618
  */
655
619
  type: ClearMaterialOperationTypeEnum;
656
620
  }
657
- /**
658
- * @export
659
- * @enum {string}
660
- */
661
- export declare enum ClearMaterialOperationTypeEnum {
662
- ClearMaterial = "clear-material"
663
- }
621
+ export declare const ClearMaterialOperationTypeEnum: {
622
+ readonly ClearMaterial: "clear-material";
623
+ };
624
+ export declare type ClearMaterialOperationTypeEnum = typeof ClearMaterialOperationTypeEnum[keyof typeof ClearMaterialOperationTypeEnum];
664
625
  /**
665
626
  *
666
627
  * @export
@@ -674,13 +635,10 @@ export interface ClearTransformOperation {
674
635
  */
675
636
  type: ClearTransformOperationTypeEnum;
676
637
  }
677
- /**
678
- * @export
679
- * @enum {string}
680
- */
681
- export declare enum ClearTransformOperationTypeEnum {
682
- ClearTransform = "clear-transform"
683
- }
638
+ export declare const ClearTransformOperationTypeEnum: {
639
+ readonly ClearTransform: "clear-transform";
640
+ };
641
+ export declare type ClearTransformOperationTypeEnum = typeof ClearTransformOperationTypeEnum[keyof typeof ClearTransformOperationTypeEnum];
684
642
  /**
685
643
  * RGB color.
686
644
  * @export
@@ -861,7 +819,71 @@ export interface CreateBatchRequest {
861
819
  * @type {Array<BatchOperation>}
862
820
  * @memberof CreateBatchRequest
863
821
  */
864
- vertexvis_batchoperations: Array<BatchOperation>;
822
+ 'vertexvis/batch:operations': Array<BatchOperation>;
823
+ }
824
+ /**
825
+ *
826
+ * @export
827
+ * @interface CreateExportRequest
828
+ */
829
+ export interface CreateExportRequest {
830
+ /**
831
+ *
832
+ * @type {CreateExportRequestData}
833
+ * @memberof CreateExportRequest
834
+ */
835
+ data: CreateExportRequestData;
836
+ }
837
+ /**
838
+ *
839
+ * @export
840
+ * @interface CreateExportRequestData
841
+ */
842
+ export interface CreateExportRequestData {
843
+ /**
844
+ * Resource object type.
845
+ * @type {string}
846
+ * @memberof CreateExportRequestData
847
+ */
848
+ type: string;
849
+ /**
850
+ *
851
+ * @type {CreateExportRequestDataAttributes}
852
+ * @memberof CreateExportRequestData
853
+ */
854
+ attributes: CreateExportRequestDataAttributes;
855
+ /**
856
+ *
857
+ * @type {CreateExportRequestDataRelationships}
858
+ * @memberof CreateExportRequestData
859
+ */
860
+ relationships: CreateExportRequestDataRelationships;
861
+ }
862
+ /**
863
+ *
864
+ * @export
865
+ * @interface CreateExportRequestDataAttributes
866
+ */
867
+ export interface CreateExportRequestDataAttributes {
868
+ /**
869
+ * Specifies the export format and options to configure the export.
870
+ * @type {CADExportConfig}
871
+ * @memberof CreateExportRequestDataAttributes
872
+ */
873
+ config: CADExportConfig;
874
+ }
875
+ /**
876
+ *
877
+ * @export
878
+ * @interface CreateExportRequestDataRelationships
879
+ */
880
+ export interface CreateExportRequestDataRelationships {
881
+ /**
882
+ *
883
+ * @type {ExportRelationship}
884
+ * @memberof CreateExportRequestDataRelationships
885
+ */
886
+ source: ExportRelationship;
865
887
  }
866
888
  /**
867
889
  *
@@ -1341,6 +1363,12 @@ export interface CreateSceneItemRequestDataRelationships {
1341
1363
  * @memberof CreateSceneItemRequestDataRelationships
1342
1364
  */
1343
1365
  source?: GeometrySetRelationship | PartRevisionRelationship | SceneRelationship;
1366
+ /**
1367
+ *
1368
+ * @type {SceneItemRelationship}
1369
+ * @memberof CreateSceneItemRequestDataRelationships
1370
+ */
1371
+ referenceTree?: SceneItemRelationship;
1344
1372
  }
1345
1373
  /**
1346
1374
  *
@@ -1388,10 +1416,10 @@ export interface CreateSceneRequestData {
1388
1416
  export interface CreateSceneRequestDataAttributes {
1389
1417
  /**
1390
1418
  *
1391
- * @type {Camera}
1419
+ * @type {PerspectiveCamera | OrthographicCamera}
1392
1420
  * @memberof CreateSceneRequestDataAttributes
1393
1421
  */
1394
- camera?: Camera;
1422
+ camera?: PerspectiveCamera | OrthographicCamera;
1395
1423
  /**
1396
1424
  * ID provided for correlation. For example, an existing ID from a PLM system.
1397
1425
  * @type {string}
@@ -1476,10 +1504,10 @@ export interface CreateSceneViewRequestData {
1476
1504
  export interface CreateSceneViewRequestDataAttributes {
1477
1505
  /**
1478
1506
  *
1479
- * @type {Camera}
1507
+ * @type {PerspectiveCamera | OrthographicCamera}
1480
1508
  * @memberof CreateSceneViewRequestDataAttributes
1481
1509
  */
1482
- camera?: Camera;
1510
+ camera?: PerspectiveCamera | OrthographicCamera;
1483
1511
  /**
1484
1512
  *
1485
1513
  * @type {CrossSectioning}
@@ -1799,13 +1827,10 @@ export interface DeselectOperation {
1799
1827
  */
1800
1828
  type: DeselectOperationTypeEnum;
1801
1829
  }
1802
- /**
1803
- * @export
1804
- * @enum {string}
1805
- */
1806
- export declare enum DeselectOperationTypeEnum {
1807
- Deselect = "deselect"
1808
- }
1830
+ export declare const DeselectOperationTypeEnum: {
1831
+ readonly Deselect: "deselect";
1832
+ };
1833
+ export declare type DeselectOperationTypeEnum = typeof DeselectOperationTypeEnum[keyof typeof DeselectOperationTypeEnum];
1809
1834
  /**
1810
1835
  * An item\'s height and width.
1811
1836
  * @export
@@ -1825,6 +1850,128 @@ export interface Dimensions {
1825
1850
  */
1826
1851
  width: number;
1827
1852
  }
1853
+ /**
1854
+ *
1855
+ * @export
1856
+ * @interface Export
1857
+ */
1858
+ export interface Export {
1859
+ /**
1860
+ *
1861
+ * @type {ExportData}
1862
+ * @memberof Export
1863
+ */
1864
+ data: ExportData;
1865
+ /**
1866
+ *
1867
+ * @type {{ [key: string]: Link; }}
1868
+ * @memberof Export
1869
+ */
1870
+ links?: {
1871
+ [key: string]: Link;
1872
+ };
1873
+ }
1874
+ /**
1875
+ * Describes the options for configuring a file export.
1876
+ * @export
1877
+ * @interface ExportConfig
1878
+ */
1879
+ export interface ExportConfig {
1880
+ /**
1881
+ *
1882
+ * @type {string}
1883
+ * @memberof ExportConfig
1884
+ */
1885
+ format: string;
1886
+ }
1887
+ /**
1888
+ *
1889
+ * @export
1890
+ * @interface ExportData
1891
+ */
1892
+ export interface ExportData {
1893
+ /**
1894
+ *
1895
+ * @type {string}
1896
+ * @memberof ExportData
1897
+ */
1898
+ type: string;
1899
+ /**
1900
+ * ID of the resource.
1901
+ * @type {string}
1902
+ * @memberof ExportData
1903
+ */
1904
+ id: string;
1905
+ /**
1906
+ *
1907
+ * @type {ExportDataAttributes}
1908
+ * @memberof ExportData
1909
+ */
1910
+ attributes: ExportDataAttributes;
1911
+ /**
1912
+ *
1913
+ * @type {{ [key: string]: Link; }}
1914
+ * @memberof ExportData
1915
+ */
1916
+ links?: {
1917
+ [key: string]: Link;
1918
+ };
1919
+ }
1920
+ /**
1921
+ *
1922
+ * @export
1923
+ * @interface ExportDataAttributes
1924
+ */
1925
+ export interface ExportDataAttributes {
1926
+ /**
1927
+ *
1928
+ * @type {string}
1929
+ * @memberof ExportDataAttributes
1930
+ */
1931
+ created: string;
1932
+ /**
1933
+ *
1934
+ * @type {string}
1935
+ * @memberof ExportDataAttributes
1936
+ */
1937
+ downloadUrl: string;
1938
+ }
1939
+ /**
1940
+ * Relationship to an `export`.
1941
+ * @export
1942
+ * @interface ExportRelationship
1943
+ */
1944
+ export interface ExportRelationship {
1945
+ /**
1946
+ *
1947
+ * @type {ExportRelationshipData}
1948
+ * @memberof ExportRelationship
1949
+ */
1950
+ data: ExportRelationshipData;
1951
+ }
1952
+ /**
1953
+ *
1954
+ * @export
1955
+ * @interface ExportRelationshipData
1956
+ */
1957
+ export interface ExportRelationshipData {
1958
+ /**
1959
+ * Resource object type.
1960
+ * @type {string}
1961
+ * @memberof ExportRelationshipData
1962
+ */
1963
+ type: ExportRelationshipDataTypeEnum;
1964
+ /**
1965
+ * ID of the resource.
1966
+ * @type {string}
1967
+ * @memberof ExportRelationshipData
1968
+ */
1969
+ id: string;
1970
+ }
1971
+ export declare const ExportRelationshipDataTypeEnum: {
1972
+ readonly Scene: "scene";
1973
+ };
1974
+ export declare type ExportRelationshipDataTypeEnum = typeof ExportRelationshipDataTypeEnum[keyof typeof ExportRelationshipDataTypeEnum];
1828
1975
  /**
1829
1976
  *
1830
1977
  * @export
@@ -2010,13 +2157,10 @@ export interface FileRelationshipData {
2010
2157
  */
2011
2158
  id: string;
2012
2159
  }
2013
- /**
2014
- * @export
2015
- * @enum {string}
2016
- */
2017
- export declare enum FileRelationshipDataTypeEnum {
2018
- File = "file"
2019
- }
2160
+ export declare const FileRelationshipDataTypeEnum: {
2161
+ readonly File: "file";
2162
+ };
2163
+ export declare type FileRelationshipDataTypeEnum = typeof FileRelationshipDataTypeEnum[keyof typeof FileRelationshipDataTypeEnum];
2020
2164
  /**
2021
2165
  *
2022
2166
  * @export
@@ -2124,13 +2268,10 @@ export interface GeometrySetRelationshipData {
2124
2268
  */
2125
2269
  id: string;
2126
2270
  }
2127
- /**
2128
- * @export
2129
- * @enum {string}
2130
- */
2131
- export declare enum GeometrySetRelationshipDataTypeEnum {
2132
- GeometrySet = "geometry-set"
2133
- }
2271
+ export declare const GeometrySetRelationshipDataTypeEnum: {
2272
+ readonly GeometrySet: "geometry-set";
2273
+ };
2274
+ export declare type GeometrySetRelationshipDataTypeEnum = typeof GeometrySetRelationshipDataTypeEnum[keyof typeof GeometrySetRelationshipDataTypeEnum];
2134
2275
  /**
2135
2276
  *
2136
2277
  * @export
@@ -2385,17 +2526,14 @@ export interface MetadataValue {
2385
2526
  */
2386
2527
  type: MetadataValueTypeEnum;
2387
2528
  }
2388
- /**
2389
- * @export
2390
- * @enum {string}
2391
- */
2392
- export declare enum MetadataValueTypeEnum {
2393
- String = "string",
2394
- Long = "long",
2395
- Float = "float",
2396
- Date = "date",
2397
- Null = "null"
2398
- }
2529
+ export declare const MetadataValueTypeEnum: {
2530
+ readonly String: "string";
2531
+ readonly Long: "long";
2532
+ readonly Float: "float";
2533
+ readonly Date: "date";
2534
+ readonly Null: "null";
2535
+ };
2536
+ export declare type MetadataValueTypeEnum = typeof MetadataValueTypeEnum[keyof typeof MetadataValueTypeEnum];
2399
2537
  /**
2400
2538
  *
2401
2539
  * @export
@@ -2471,6 +2609,43 @@ export interface Orientation {
2471
2609
  */
2472
2610
  front: Vector3;
2473
2611
  }
2612
+ /**
2613
+ * A camera type where an object\'s size stays consistent regardless of its distance to the camera.
2614
+ * @export
2615
+ * @interface OrthographicCamera
2616
+ */
2617
+ export interface OrthographicCamera {
2618
+ /**
2619
+ *
2620
+ * @type {string}
2621
+ * @memberof OrthographicCamera
2622
+ */
2623
+ type?: string;
2624
+ /**
2625
+ *
2626
+ * @type {Vector3}
2627
+ * @memberof OrthographicCamera
2628
+ */
2629
+ viewVector: Vector3;
2630
+ /**
2631
+ *
2632
+ * @type {Vector3}
2633
+ * @memberof OrthographicCamera
2634
+ */
2635
+ lookAt: Vector3;
2636
+ /**
2637
+ *
2638
+ * @type {Vector3}
2639
+ * @memberof OrthographicCamera
2640
+ */
2641
+ up: Vector3;
2642
+ /**
2643
+ *
2644
+ * @type {number}
2645
+ * @memberof OrthographicCamera
2646
+ */
2647
+ fovHeight: number;
2648
+ }
2474
2649
  /**
2475
2650
  *
2476
2651
  * @export
@@ -2594,13 +2769,10 @@ export interface PartDataRelationshipsPartRevisions {
2594
2769
  */
2595
2770
  id: string;
2596
2771
  }
2597
- /**
2598
- * @export
2599
- * @enum {string}
2600
- */
2601
- export declare enum PartDataRelationshipsPartRevisionsTypeEnum {
2602
- PartRevision = "part-revision"
2603
- }
2772
+ export declare const PartDataRelationshipsPartRevisionsTypeEnum: {
2773
+ readonly PartRevision: "part-revision";
2774
+ };
2775
+ export declare type PartDataRelationshipsPartRevisionsTypeEnum = typeof PartDataRelationshipsPartRevisionsTypeEnum[keyof typeof PartDataRelationshipsPartRevisionsTypeEnum];
2604
2776
  /**
2605
2777
  *
2606
2778
  * @export
@@ -2641,13 +2813,10 @@ export interface PartRelationshipData {
2641
2813
  */
2642
2814
  id: string;
2643
2815
  }
2644
- /**
2645
- * @export
2646
- * @enum {string}
2647
- */
2648
- export declare enum PartRelationshipDataTypeEnum {
2649
- Part = "part"
2650
- }
2816
+ export declare const PartRelationshipDataTypeEnum: {
2817
+ readonly Part: "part";
2818
+ };
2819
+ export declare type PartRelationshipDataTypeEnum = typeof PartRelationshipDataTypeEnum[keyof typeof PartRelationshipDataTypeEnum];
2651
2820
  /**
2652
2821
  *
2653
2822
  * @export
@@ -2807,6 +2976,37 @@ export interface PartRevisionSuppliedId {
2807
2976
  */
2808
2977
  suppliedRevisionId: string;
2809
2978
  }
2979
+ /**
2980
+ * A camera type that mimics the way the human eye sees.
2981
+ * @export
2982
+ * @interface PerspectiveCamera
2983
+ */
2984
+ export interface PerspectiveCamera {
2985
+ /**
2986
+ *
2987
+ * @type {string}
2988
+ * @memberof PerspectiveCamera
2989
+ */
2990
+ type?: string;
2991
+ /**
2992
+ *
2993
+ * @type {Vector3}
2994
+ * @memberof PerspectiveCamera
2995
+ */
2996
+ position: Vector3;
2997
+ /**
2998
+ *
2999
+ * @type {Vector3}
3000
+ * @memberof PerspectiveCamera
3001
+ */
3002
+ lookAt: Vector3;
3003
+ /**
3004
+ *
3005
+ * @type {Vector3}
3006
+ * @memberof PerspectiveCamera
3007
+ */
3008
+ up: Vector3;
3009
+ }
2810
3010
  /**
2811
3011
  * 2D point.
2812
3012
  * @export
@@ -2831,9 +3031,10 @@ export interface Point {
2831
3031
  * @export
2832
3032
  * @enum {string}
2833
3033
  */
2834
- export declare enum QueryAll {
2835
- All = "all"
2836
- }
3034
+ export declare const QueryAll: {
3035
+ readonly All: "all";
3036
+ };
3037
+ export declare type QueryAll = typeof QueryAll[keyof typeof QueryAll];
2837
3038
  /**
2838
3039
  *
2839
3040
  * @export
@@ -2866,13 +3067,10 @@ export interface QueryByCollectionData {
2866
3067
  */
2867
3068
  attributes: QueryByCollectionDataAttributes;
2868
3069
  }
2869
- /**
2870
- * @export
2871
- * @enum {string}
2872
- */
2873
- export declare enum QueryByCollectionDataTypeEnum {
2874
- QueryByCollection = "query-by-collection"
2875
- }
3070
+ export declare const QueryByCollectionDataTypeEnum: {
3071
+ readonly QueryByCollection: "query-by-collection";
3072
+ };
3073
+ export declare type QueryByCollectionDataTypeEnum = typeof QueryByCollectionDataTypeEnum[keyof typeof QueryByCollectionDataTypeEnum];
2876
3074
  /**
2877
3075
  *
2878
3076
  * @export
@@ -2892,14 +3090,11 @@ export interface QueryByCollectionDataAttributes {
2892
3090
  */
2893
3091
  values: Array<QueryById>;
2894
3092
  }
2895
- /**
2896
- * @export
2897
- * @enum {string}
2898
- */
2899
- export declare enum QueryByCollectionDataAttributesTypeEnum {
2900
- And = "and",
2901
- Or = "or"
2902
- }
3093
+ export declare const QueryByCollectionDataAttributesTypeEnum: {
3094
+ readonly And: "and";
3095
+ readonly Or: "or";
3096
+ };
3097
+ export declare type QueryByCollectionDataAttributesTypeEnum = typeof QueryByCollectionDataAttributesTypeEnum[keyof typeof QueryByCollectionDataAttributesTypeEnum];
2903
3098
  /**
2904
3099
  *
2905
3100
  * @export
@@ -2932,13 +3127,10 @@ export interface QueryByIdData {
2932
3127
  */
2933
3128
  attributes: QueryByIdDataAttributes;
2934
3129
  }
2935
- /**
2936
- * @export
2937
- * @enum {string}
2938
- */
2939
- export declare enum QueryByIdDataTypeEnum {
2940
- QueryById = "query-by-id"
2941
- }
3130
+ export declare const QueryByIdDataTypeEnum: {
3131
+ readonly QueryById: "query-by-id";
3132
+ };
3133
+ export declare type QueryByIdDataTypeEnum = typeof QueryByIdDataTypeEnum[keyof typeof QueryByIdDataTypeEnum];
2942
3134
  /**
2943
3135
  *
2944
3136
  * @export
@@ -2958,14 +3150,11 @@ export interface QueryByIdDataAttributes {
2958
3150
  */
2959
3151
  value: string;
2960
3152
  }
2961
- /**
2962
- * @export
2963
- * @enum {string}
2964
- */
2965
- export declare enum QueryByIdDataAttributesTypeEnum {
2966
- Id = "id",
2967
- SuppliedId = "suppliedId"
2968
- }
3153
+ export declare const QueryByIdDataAttributesTypeEnum: {
3154
+ readonly Id: "id";
3155
+ readonly SuppliedId: "suppliedId";
3156
+ };
3157
+ export declare type QueryByIdDataAttributesTypeEnum = typeof QueryByIdDataAttributesTypeEnum[keyof typeof QueryByIdDataAttributesTypeEnum];
2969
3158
  /**
2970
3159
  *
2971
3160
  * @export
@@ -3299,10 +3488,10 @@ export interface SceneData {
3299
3488
  export interface SceneDataAttributes {
3300
3489
  /**
3301
3490
  *
3302
- * @type {Camera}
3491
+ * @type {PerspectiveCamera | OrthographicCamera}
3303
3492
  * @memberof SceneDataAttributes
3304
3493
  */
3305
- camera?: Camera;
3494
+ camera?: PerspectiveCamera | OrthographicCamera;
3306
3495
  /**
3307
3496
  *
3308
3497
  * @type {string}
@@ -3684,13 +3873,10 @@ export interface SceneItemRelationshipData {
3684
3873
  */
3685
3874
  id: string;
3686
3875
  }
3687
- /**
3688
- * @export
3689
- * @enum {string}
3690
- */
3691
- export declare enum SceneItemRelationshipDataTypeEnum {
3692
- SceneItem = "scene-item"
3693
- }
3876
+ export declare const SceneItemRelationshipDataTypeEnum: {
3877
+ readonly SceneItem: "scene-item";
3878
+ };
3879
+ export declare type SceneItemRelationshipDataTypeEnum = typeof SceneItemRelationshipDataTypeEnum[keyof typeof SceneItemRelationshipDataTypeEnum];
3694
3880
  /**
3695
3881
  *
3696
3882
  * @export
@@ -3763,13 +3949,10 @@ export interface SceneRelationshipData {
3763
3949
  */
3764
3950
  id: string;
3765
3951
  }
3766
- /**
3767
- * @export
3768
- * @enum {string}
3769
- */
3770
- export declare enum SceneRelationshipDataTypeEnum {
3771
- Scene = "scene"
3772
- }
3952
+ export declare const SceneRelationshipDataTypeEnum: {
3953
+ readonly Scene: "scene";
3954
+ };
3955
+ export declare type SceneRelationshipDataTypeEnum = typeof SceneRelationshipDataTypeEnum[keyof typeof SceneRelationshipDataTypeEnum];
3773
3956
  /**
3774
3957
  *
3775
3958
  * @export
@@ -3830,10 +4013,10 @@ export interface SceneViewData {
3830
4013
  export interface SceneViewDataAttributes {
3831
4014
  /**
3832
4015
  *
3833
- * @type {Camera}
4016
+ * @type {PerspectiveCamera | OrthographicCamera}
3834
4017
  * @memberof SceneViewDataAttributes
3835
4018
  */
3836
- camera: Camera;
4019
+ camera: PerspectiveCamera | OrthographicCamera;
3837
4020
  /**
3838
4021
  *
3839
4022
  * @type {string}
@@ -3946,13 +4129,10 @@ export interface SceneViewRelationshipData {
3946
4129
  */
3947
4130
  id: string;
3948
4131
  }
3949
- /**
3950
- * @export
3951
- * @enum {string}
3952
- */
3953
- export declare enum SceneViewRelationshipDataTypeEnum {
3954
- SceneView = "scene-view"
3955
- }
4132
+ export declare const SceneViewRelationshipDataTypeEnum: {
4133
+ readonly SceneView: "scene-view";
4134
+ };
4135
+ export declare type SceneViewRelationshipDataTypeEnum = typeof SceneViewRelationshipDataTypeEnum[keyof typeof SceneViewRelationshipDataTypeEnum];
3956
4136
  /**
3957
4137
  *
3958
4138
  * @export
@@ -4015,10 +4195,10 @@ export interface SceneViewStateData {
4015
4195
  export interface SceneViewStateDataAttributes {
4016
4196
  /**
4017
4197
  *
4018
- * @type {Camera}
4198
+ * @type {PerspectiveCamera | OrthographicCamera}
4019
4199
  * @memberof SceneViewStateDataAttributes
4020
4200
  */
4021
- camera?: Camera;
4201
+ camera?: PerspectiveCamera | OrthographicCamera;
4022
4202
  /**
4023
4203
  *
4024
4204
  * @type {string}
@@ -4091,13 +4271,10 @@ export interface SceneViewStateRelationshipData {
4091
4271
  */
4092
4272
  id: string;
4093
4273
  }
4094
- /**
4095
- * @export
4096
- * @enum {string}
4097
- */
4098
- export declare enum SceneViewStateRelationshipDataTypeEnum {
4099
- SceneViewState = "scene-view-state"
4100
- }
4274
+ export declare const SceneViewStateRelationshipDataTypeEnum: {
4275
+ readonly SceneViewState: "scene-view-state";
4276
+ };
4277
+ export declare type SceneViewStateRelationshipDataTypeEnum = typeof SceneViewStateRelationshipDataTypeEnum[keyof typeof SceneViewStateRelationshipDataTypeEnum];
4101
4278
  /**
4102
4279
  *
4103
4280
  * @export
@@ -4136,13 +4313,10 @@ export interface SelectOperation {
4136
4313
  */
4137
4314
  material: ColorMaterial;
4138
4315
  }
4139
- /**
4140
- * @export
4141
- * @enum {string}
4142
- */
4143
- export declare enum SelectOperationTypeEnum {
4144
- Select = "select"
4145
- }
4316
+ export declare const SelectOperationTypeEnum: {
4317
+ readonly Select: "select";
4318
+ };
4319
+ export declare type SelectOperationTypeEnum = typeof SelectOperationTypeEnum[keyof typeof SelectOperationTypeEnum];
4146
4320
  /**
4147
4321
  *
4148
4322
  * @export
@@ -4396,14 +4570,11 @@ export interface UpdateAccountRequestDataAttributes {
4396
4570
  */
4397
4571
  owner?: string;
4398
4572
  }
4399
- /**
4400
- * @export
4401
- * @enum {string}
4402
- */
4403
- export declare enum UpdateAccountRequestDataAttributesStatusEnum {
4404
- Active = "active",
4405
- Disabled = "disabled"
4406
- }
4573
+ export declare const UpdateAccountRequestDataAttributesStatusEnum: {
4574
+ readonly Active: "active";
4575
+ readonly Disabled: "disabled";
4576
+ };
4577
+ export declare type UpdateAccountRequestDataAttributesStatusEnum = typeof UpdateAccountRequestDataAttributesStatusEnum[keyof typeof UpdateAccountRequestDataAttributesStatusEnum];
4407
4578
  /**
4408
4579
  *
4409
4580
  * @export
@@ -4686,10 +4857,10 @@ export interface UpdateSceneRequestData {
4686
4857
  export interface UpdateSceneRequestDataAttributes {
4687
4858
  /**
4688
4859
  *
4689
- * @type {Camera | CameraFit}
4860
+ * @type {PerspectiveCamera | OrthographicCamera | CameraFit}
4690
4861
  * @memberof UpdateSceneRequestDataAttributes
4691
4862
  */
4692
- camera?: Camera | CameraFit;
4863
+ camera?: PerspectiveCamera | OrthographicCamera | CameraFit;
4693
4864
  /**
4694
4865
  * State of the scene.
4695
4866
  * @type {string}
@@ -4721,14 +4892,11 @@ export interface UpdateSceneRequestDataAttributes {
4721
4892
  */
4722
4893
  worldOrientation?: Orientation;
4723
4894
  }
4724
- /**
4725
- * @export
4726
- * @enum {string}
4727
- */
4728
- export declare enum UpdateSceneRequestDataAttributesStateEnum {
4729
- Draft = "draft",
4730
- Commit = "commit"
4731
- }
4895
+ export declare const UpdateSceneRequestDataAttributesStateEnum: {
4896
+ readonly Draft: "draft";
4897
+ readonly Commit: "commit";
4898
+ };
4899
+ export declare type UpdateSceneRequestDataAttributesStateEnum = typeof UpdateSceneRequestDataAttributesStateEnum[keyof typeof UpdateSceneRequestDataAttributesStateEnum];
4732
4900
  /**
4733
4901
  *
4734
4902
  * @export
@@ -4769,10 +4937,10 @@ export interface UpdateSceneViewRequestData {
4769
4937
  export interface UpdateSceneViewRequestDataAttributes {
4770
4938
  /**
4771
4939
  *
4772
- * @type {Camera | CameraFit}
4940
+ * @type {PerspectiveCamera | OrthographicCamera | CameraFit}
4773
4941
  * @memberof UpdateSceneViewRequestDataAttributes
4774
4942
  */
4775
- camera?: Camera | CameraFit;
4943
+ camera?: PerspectiveCamera | OrthographicCamera | CameraFit;
4776
4944
  /**
4777
4945
  *
4778
4946
  * @type {CrossSectioning}
@@ -4869,14 +5037,11 @@ export interface UpdateWebhookSubscriptionRequestDataAttributes {
4869
5037
  */
4870
5038
  url?: string;
4871
5039
  }
4872
- /**
4873
- * @export
4874
- * @enum {string}
4875
- */
4876
- export declare enum UpdateWebhookSubscriptionRequestDataAttributesStatusEnum {
4877
- Active = "active",
4878
- Paused = "paused"
4879
- }
5040
+ export declare const UpdateWebhookSubscriptionRequestDataAttributesStatusEnum: {
5041
+ readonly Active: "active";
5042
+ readonly Paused: "paused";
5043
+ };
5044
+ export declare type UpdateWebhookSubscriptionRequestDataAttributesStatusEnum = typeof UpdateWebhookSubscriptionRequestDataAttributesStatusEnum[keyof typeof UpdateWebhookSubscriptionRequestDataAttributesStatusEnum];
4880
5045
  /**
4881
5046
  * 3D vector.
4882
5047
  * @export
@@ -5069,13 +5234,10 @@ export interface WebhookEventDataRelationshipsOwnerData {
5069
5234
  */
5070
5235
  id: string;
5071
5236
  }
5072
- /**
5073
- * @export
5074
- * @enum {string}
5075
- */
5076
- export declare enum WebhookEventDataRelationshipsOwnerDataTypeEnum {
5077
- Account = "account"
5078
- }
5237
+ export declare const WebhookEventDataRelationshipsOwnerDataTypeEnum: {
5238
+ readonly Account: "account";
5239
+ };
5240
+ export declare type WebhookEventDataRelationshipsOwnerDataTypeEnum = typeof WebhookEventDataRelationshipsOwnerDataTypeEnum[keyof typeof WebhookEventDataRelationshipsOwnerDataTypeEnum];
5079
5241
  /**
5080
5242
  * Relationship to a `resource`.
5081
5243
  * @export
@@ -5205,14 +5367,11 @@ export interface WebhookSubscriptionDataAttributes {
5205
5367
  */
5206
5368
  created: string;
5207
5369
  }
5208
- /**
5209
- * @export
5210
- * @enum {string}
5211
- */
5212
- export declare enum WebhookSubscriptionDataAttributesStatusEnum {
5213
- Active = "active",
5214
- Paused = "paused"
5215
- }
5370
+ export declare const WebhookSubscriptionDataAttributesStatusEnum: {
5371
+ readonly Active: "active";
5372
+ readonly Paused: "paused";
5373
+ };
5374
+ export declare type WebhookSubscriptionDataAttributesStatusEnum = typeof WebhookSubscriptionDataAttributesStatusEnum[keyof typeof WebhookSubscriptionDataAttributesStatusEnum];
5216
5375
  /**
5217
5376
  *
5218
5377
  * @export
@@ -5245,7 +5404,7 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
5245
5404
  * @param {*} [options] Override http request option.
5246
5405
  * @throws {RequiredError}
5247
5406
  */
5248
- createAccount: (createAccountRequest: CreateAccountRequest, options?: any) => Promise<RequestArgs>;
5407
+ createAccount: (createAccountRequest: CreateAccountRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5249
5408
  /**
5250
5409
  * Create an `application` for an `account`.
5251
5410
  * @param {string} id The &#x60;account&#x60; ID.
@@ -5253,21 +5412,21 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
5253
5412
  * @param {*} [options] Override http request option.
5254
5413
  * @throws {RequiredError}
5255
5414
  */
5256
- createApplicationForAccount: (id: string, adminCreateApplicationRequest: AdminCreateApplicationRequest, options?: any) => Promise<RequestArgs>;
5415
+ createApplicationForAccount: (id: string, adminCreateApplicationRequest: AdminCreateApplicationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5257
5416
  /**
5258
5417
  * Delete an `account`.
5259
5418
  * @param {string} id The &#x60;account&#x60; ID.
5260
5419
  * @param {*} [options] Override http request option.
5261
5420
  * @throws {RequiredError}
5262
5421
  */
5263
- deleteAccount: (id: string, options?: any) => Promise<RequestArgs>;
5422
+ deleteAccount: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5264
5423
  /**
5265
5424
  * Get an `account`.
5266
5425
  * @param {string} id The &#x60;account&#x60; ID.
5267
5426
  * @param {*} [options] Override http request option.
5268
5427
  * @throws {RequiredError}
5269
5428
  */
5270
- getAccount: (id: string, options?: any) => Promise<RequestArgs>;
5429
+ getAccount: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5271
5430
  /**
5272
5431
  * Update an `account`.
5273
5432
  * @param {string} id The &#x60;account&#x60; ID.
@@ -5275,7 +5434,7 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
5275
5434
  * @param {*} [options] Override http request option.
5276
5435
  * @throws {RequiredError}
5277
5436
  */
5278
- updateAccount: (id: string, updateAccountRequest: UpdateAccountRequest, options?: any) => Promise<RequestArgs>;
5437
+ updateAccount: (id: string, updateAccountRequest: UpdateAccountRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5279
5438
  };
5280
5439
  /**
5281
5440
  * AccountsApi - functional programming interface
@@ -5288,7 +5447,7 @@ export declare const AccountsApiFp: (configuration?: Configuration | undefined)
5288
5447
  * @param {*} [options] Override http request option.
5289
5448
  * @throws {RequiredError}
5290
5449
  */
5291
- createAccount(createAccountRequest: CreateAccountRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Account>>;
5450
+ createAccount(createAccountRequest: CreateAccountRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Account>>;
5292
5451
  /**
5293
5452
  * Create an `application` for an `account`.
5294
5453
  * @param {string} id The &#x60;account&#x60; ID.
@@ -5296,21 +5455,21 @@ export declare const AccountsApiFp: (configuration?: Configuration | undefined)
5296
5455
  * @param {*} [options] Override http request option.
5297
5456
  * @throws {RequiredError}
5298
5457
  */
5299
- createApplicationForAccount(id: string, adminCreateApplicationRequest: AdminCreateApplicationRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CreatedApplication>>;
5458
+ createApplicationForAccount(id: string, adminCreateApplicationRequest: AdminCreateApplicationRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CreatedApplication>>;
5300
5459
  /**
5301
5460
  * Delete an `account`.
5302
5461
  * @param {string} id The &#x60;account&#x60; ID.
5303
5462
  * @param {*} [options] Override http request option.
5304
5463
  * @throws {RequiredError}
5305
5464
  */
5306
- deleteAccount(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
5465
+ deleteAccount(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
5307
5466
  /**
5308
5467
  * Get an `account`.
5309
5468
  * @param {string} id The &#x60;account&#x60; ID.
5310
5469
  * @param {*} [options] Override http request option.
5311
5470
  * @throws {RequiredError}
5312
5471
  */
5313
- getAccount(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Account>>;
5472
+ getAccount(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Account>>;
5314
5473
  /**
5315
5474
  * Update an `account`.
5316
5475
  * @param {string} id The &#x60;account&#x60; ID.
@@ -5318,7 +5477,7 @@ export declare const AccountsApiFp: (configuration?: Configuration | undefined)
5318
5477
  * @param {*} [options] Override http request option.
5319
5478
  * @throws {RequiredError}
5320
5479
  */
5321
- updateAccount(id: string, updateAccountRequest: UpdateAccountRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Account>>;
5480
+ updateAccount(id: string, updateAccountRequest: UpdateAccountRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Account>>;
5322
5481
  };
5323
5482
  /**
5324
5483
  * AccountsApi - factory interface
@@ -5454,7 +5613,7 @@ export declare class AccountsApi extends BaseAPI {
5454
5613
  * @throws {RequiredError}
5455
5614
  * @memberof AccountsApi
5456
5615
  */
5457
- createAccount(requestParameters: AccountsApiCreateAccountRequest, options?: any): Promise<import("axios").AxiosResponse<Account>>;
5616
+ createAccount(requestParameters: AccountsApiCreateAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Account, any>>;
5458
5617
  /**
5459
5618
  * Create an `application` for an `account`.
5460
5619
  * @param {AccountsApiCreateApplicationForAccountRequest} requestParameters Request parameters.
@@ -5462,7 +5621,7 @@ export declare class AccountsApi extends BaseAPI {
5462
5621
  * @throws {RequiredError}
5463
5622
  * @memberof AccountsApi
5464
5623
  */
5465
- createApplicationForAccount(requestParameters: AccountsApiCreateApplicationForAccountRequest, options?: any): Promise<import("axios").AxiosResponse<CreatedApplication>>;
5624
+ createApplicationForAccount(requestParameters: AccountsApiCreateApplicationForAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatedApplication, any>>;
5466
5625
  /**
5467
5626
  * Delete an `account`.
5468
5627
  * @param {AccountsApiDeleteAccountRequest} requestParameters Request parameters.
@@ -5470,7 +5629,7 @@ export declare class AccountsApi extends BaseAPI {
5470
5629
  * @throws {RequiredError}
5471
5630
  * @memberof AccountsApi
5472
5631
  */
5473
- deleteAccount(requestParameters: AccountsApiDeleteAccountRequest, options?: any): Promise<import("axios").AxiosResponse<void>>;
5632
+ deleteAccount(requestParameters: AccountsApiDeleteAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
5474
5633
  /**
5475
5634
  * Get an `account`.
5476
5635
  * @param {AccountsApiGetAccountRequest} requestParameters Request parameters.
@@ -5478,7 +5637,7 @@ export declare class AccountsApi extends BaseAPI {
5478
5637
  * @throws {RequiredError}
5479
5638
  * @memberof AccountsApi
5480
5639
  */
5481
- getAccount(requestParameters: AccountsApiGetAccountRequest, options?: any): Promise<import("axios").AxiosResponse<Account>>;
5640
+ getAccount(requestParameters: AccountsApiGetAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Account, any>>;
5482
5641
  /**
5483
5642
  * Update an `account`.
5484
5643
  * @param {AccountsApiUpdateAccountRequest} requestParameters Request parameters.
@@ -5486,7 +5645,7 @@ export declare class AccountsApi extends BaseAPI {
5486
5645
  * @throws {RequiredError}
5487
5646
  * @memberof AccountsApi
5488
5647
  */
5489
- updateAccount(requestParameters: AccountsApiUpdateAccountRequest, options?: any): Promise<import("axios").AxiosResponse<Account>>;
5648
+ updateAccount(requestParameters: AccountsApiUpdateAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Account, any>>;
5490
5649
  }
5491
5650
  /**
5492
5651
  * ApplicationsApi - axios parameter creator
@@ -5499,21 +5658,21 @@ export declare const ApplicationsApiAxiosParamCreator: (configuration?: Configur
5499
5658
  * @param {*} [options] Override http request option.
5500
5659
  * @throws {RequiredError}
5501
5660
  */
5502
- createApplication: (createApplicationRequest: CreateApplicationRequest, options?: any) => Promise<RequestArgs>;
5661
+ createApplication: (createApplicationRequest: CreateApplicationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5503
5662
  /**
5504
5663
  * Delete an `application`.
5505
5664
  * @param {string} id The &#x60;application&#x60; ID.
5506
5665
  * @param {*} [options] Override http request option.
5507
5666
  * @throws {RequiredError}
5508
5667
  */
5509
- deleteApplication: (id: string, options?: any) => Promise<RequestArgs>;
5668
+ deleteApplication: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5510
5669
  /**
5511
5670
  * Get an `application`.
5512
5671
  * @param {string} id The &#x60;application&#x60; ID.
5513
5672
  * @param {*} [options] Override http request option.
5514
5673
  * @throws {RequiredError}
5515
5674
  */
5516
- getApplication: (id: string, options?: any) => Promise<RequestArgs>;
5675
+ getApplication: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5517
5676
  /**
5518
5677
  * Get `applications`.
5519
5678
  * @param {string} [pageCursor] The cursor for the next page of items.
@@ -5521,7 +5680,7 @@ export declare const ApplicationsApiAxiosParamCreator: (configuration?: Configur
5521
5680
  * @param {*} [options] Override http request option.
5522
5681
  * @throws {RequiredError}
5523
5682
  */
5524
- getApplications: (pageCursor?: string | undefined, pageSize?: number | undefined, options?: any) => Promise<RequestArgs>;
5683
+ getApplications: (pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5525
5684
  /**
5526
5685
  * Update an `application`.
5527
5686
  * @param {string} id The &#x60;application&#x60; ID.
@@ -5529,7 +5688,7 @@ export declare const ApplicationsApiAxiosParamCreator: (configuration?: Configur
5529
5688
  * @param {*} [options] Override http request option.
5530
5689
  * @throws {RequiredError}
5531
5690
  */
5532
- updateApplication: (id: string, updateApplicationRequest: UpdateApplicationRequest, options?: any) => Promise<RequestArgs>;
5691
+ updateApplication: (id: string, updateApplicationRequest: UpdateApplicationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5533
5692
  };
5534
5693
  /**
5535
5694
  * ApplicationsApi - functional programming interface
@@ -5542,21 +5701,21 @@ export declare const ApplicationsApiFp: (configuration?: Configuration | undefin
5542
5701
  * @param {*} [options] Override http request option.
5543
5702
  * @throws {RequiredError}
5544
5703
  */
5545
- createApplication(createApplicationRequest: CreateApplicationRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CreatedApplication>>;
5704
+ createApplication(createApplicationRequest: CreateApplicationRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CreatedApplication>>;
5546
5705
  /**
5547
5706
  * Delete an `application`.
5548
5707
  * @param {string} id The &#x60;application&#x60; ID.
5549
5708
  * @param {*} [options] Override http request option.
5550
5709
  * @throws {RequiredError}
5551
5710
  */
5552
- deleteApplication(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
5711
+ deleteApplication(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
5553
5712
  /**
5554
5713
  * Get an `application`.
5555
5714
  * @param {string} id The &#x60;application&#x60; ID.
5556
5715
  * @param {*} [options] Override http request option.
5557
5716
  * @throws {RequiredError}
5558
5717
  */
5559
- getApplication(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Application>>;
5718
+ getApplication(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Application>>;
5560
5719
  /**
5561
5720
  * Get `applications`.
5562
5721
  * @param {string} [pageCursor] The cursor for the next page of items.
@@ -5564,7 +5723,7 @@ export declare const ApplicationsApiFp: (configuration?: Configuration | undefin
5564
5723
  * @param {*} [options] Override http request option.
5565
5724
  * @throws {RequiredError}
5566
5725
  */
5567
- getApplications(pageCursor?: string | undefined, pageSize?: number | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ApplicationList>>;
5726
+ getApplications(pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ApplicationList>>;
5568
5727
  /**
5569
5728
  * Update an `application`.
5570
5729
  * @param {string} id The &#x60;application&#x60; ID.
@@ -5572,7 +5731,7 @@ export declare const ApplicationsApiFp: (configuration?: Configuration | undefin
5572
5731
  * @param {*} [options] Override http request option.
5573
5732
  * @throws {RequiredError}
5574
5733
  */
5575
- updateApplication(id: string, updateApplicationRequest: UpdateApplicationRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Application>>;
5734
+ updateApplication(id: string, updateApplicationRequest: UpdateApplicationRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Application>>;
5576
5735
  };
5577
5736
  /**
5578
5737
  * ApplicationsApi - factory interface
@@ -5708,7 +5867,7 @@ export declare class ApplicationsApi extends BaseAPI {
5708
5867
  * @throws {RequiredError}
5709
5868
  * @memberof ApplicationsApi
5710
5869
  */
5711
- createApplication(requestParameters: ApplicationsApiCreateApplicationRequest, options?: any): Promise<import("axios").AxiosResponse<CreatedApplication>>;
5870
+ createApplication(requestParameters: ApplicationsApiCreateApplicationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatedApplication, any>>;
5712
5871
  /**
5713
5872
  * Delete an `application`.
5714
5873
  * @param {ApplicationsApiDeleteApplicationRequest} requestParameters Request parameters.
@@ -5716,7 +5875,7 @@ export declare class ApplicationsApi extends BaseAPI {
5716
5875
  * @throws {RequiredError}
5717
5876
  * @memberof ApplicationsApi
5718
5877
  */
5719
- deleteApplication(requestParameters: ApplicationsApiDeleteApplicationRequest, options?: any): Promise<import("axios").AxiosResponse<void>>;
5878
+ deleteApplication(requestParameters: ApplicationsApiDeleteApplicationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
5720
5879
  /**
5721
5880
  * Get an `application`.
5722
5881
  * @param {ApplicationsApiGetApplicationRequest} requestParameters Request parameters.
@@ -5724,7 +5883,7 @@ export declare class ApplicationsApi extends BaseAPI {
5724
5883
  * @throws {RequiredError}
5725
5884
  * @memberof ApplicationsApi
5726
5885
  */
5727
- getApplication(requestParameters: ApplicationsApiGetApplicationRequest, options?: any): Promise<import("axios").AxiosResponse<Application>>;
5886
+ getApplication(requestParameters: ApplicationsApiGetApplicationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Application, any>>;
5728
5887
  /**
5729
5888
  * Get `applications`.
5730
5889
  * @param {ApplicationsApiGetApplicationsRequest} requestParameters Request parameters.
@@ -5732,7 +5891,7 @@ export declare class ApplicationsApi extends BaseAPI {
5732
5891
  * @throws {RequiredError}
5733
5892
  * @memberof ApplicationsApi
5734
5893
  */
5735
- getApplications(requestParameters?: ApplicationsApiGetApplicationsRequest, options?: any): Promise<import("axios").AxiosResponse<ApplicationList>>;
5894
+ getApplications(requestParameters?: ApplicationsApiGetApplicationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationList, any>>;
5736
5895
  /**
5737
5896
  * Update an `application`.
5738
5897
  * @param {ApplicationsApiUpdateApplicationRequest} requestParameters Request parameters.
@@ -5740,7 +5899,7 @@ export declare class ApplicationsApi extends BaseAPI {
5740
5899
  * @throws {RequiredError}
5741
5900
  * @memberof ApplicationsApi
5742
5901
  */
5743
- updateApplication(requestParameters: ApplicationsApiUpdateApplicationRequest, options?: any): Promise<import("axios").AxiosResponse<Application>>;
5902
+ updateApplication(requestParameters: ApplicationsApiUpdateApplicationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Application, any>>;
5744
5903
  }
5745
5904
  /**
5746
5905
  * BatchesApi - axios parameter creator
@@ -5753,21 +5912,21 @@ export declare const BatchesApiAxiosParamCreator: (configuration?: Configuration
5753
5912
  * @param {*} [options] Override http request option.
5754
5913
  * @throws {RequiredError}
5755
5914
  */
5756
- createBatch: (createBatchRequest: CreateBatchRequest, options?: any) => Promise<RequestArgs>;
5915
+ createBatch: (createBatchRequest: CreateBatchRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5757
5916
  /**
5758
5917
  * Get a `batch` by ID.
5759
5918
  * @param {string} id The &#x60;file&#x60; ID.
5760
5919
  * @param {*} [options] Override http request option.
5761
5920
  * @throws {RequiredError}
5762
5921
  */
5763
- getBatch: (id: string, options?: any) => Promise<RequestArgs>;
5922
+ getBatch: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5764
5923
  /**
5765
5924
  * Get a `queued-batch`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `batch`.
5766
5925
  * @param {string} id The &#x60;queued-batch&#x60; ID.
5767
5926
  * @param {*} [options] Override http request option.
5768
5927
  * @throws {RequiredError}
5769
5928
  */
5770
- getQueuedBatch: (id: string, options?: any) => Promise<RequestArgs>;
5929
+ getQueuedBatch: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5771
5930
  };
5772
5931
  /**
5773
5932
  * BatchesApi - functional programming interface
@@ -5780,21 +5939,21 @@ export declare const BatchesApiFp: (configuration?: Configuration | undefined) =
5780
5939
  * @param {*} [options] Override http request option.
5781
5940
  * @throws {RequiredError}
5782
5941
  */
5783
- createBatch(createBatchRequest: CreateBatchRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
5942
+ createBatch(createBatchRequest: CreateBatchRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
5784
5943
  /**
5785
5944
  * Get a `batch` by ID.
5786
5945
  * @param {string} id The &#x60;file&#x60; ID.
5787
5946
  * @param {*} [options] Override http request option.
5788
5947
  * @throws {RequiredError}
5789
5948
  */
5790
- getBatch(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Batch>>;
5949
+ getBatch(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Batch>>;
5791
5950
  /**
5792
5951
  * Get a `queued-batch`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `batch`.
5793
5952
  * @param {string} id The &#x60;queued-batch&#x60; ID.
5794
5953
  * @param {*} [options] Override http request option.
5795
5954
  * @throws {RequiredError}
5796
5955
  */
5797
- getQueuedBatch(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
5956
+ getQueuedBatch(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
5798
5957
  };
5799
5958
  /**
5800
5959
  * BatchesApi - factory interface
@@ -5876,7 +6035,7 @@ export declare class BatchesApi extends BaseAPI {
5876
6035
  * @throws {RequiredError}
5877
6036
  * @memberof BatchesApi
5878
6037
  */
5879
- createBatch(requestParameters: BatchesApiCreateBatchRequest, options?: any): Promise<import("axios").AxiosResponse<QueuedJob>>;
6038
+ createBatch(requestParameters: BatchesApiCreateBatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
5880
6039
  /**
5881
6040
  * Get a `batch` by ID.
5882
6041
  * @param {BatchesApiGetBatchRequest} requestParameters Request parameters.
@@ -5884,7 +6043,7 @@ export declare class BatchesApi extends BaseAPI {
5884
6043
  * @throws {RequiredError}
5885
6044
  * @memberof BatchesApi
5886
6045
  */
5887
- getBatch(requestParameters: BatchesApiGetBatchRequest, options?: any): Promise<import("axios").AxiosResponse<Batch>>;
6046
+ getBatch(requestParameters: BatchesApiGetBatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Batch, any>>;
5888
6047
  /**
5889
6048
  * Get a `queued-batch`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `batch`.
5890
6049
  * @param {BatchesApiGetQueuedBatchRequest} requestParameters Request parameters.
@@ -5892,7 +6051,159 @@ export declare class BatchesApi extends BaseAPI {
5892
6051
  * @throws {RequiredError}
5893
6052
  * @memberof BatchesApi
5894
6053
  */
5895
- getQueuedBatch(requestParameters: BatchesApiGetQueuedBatchRequest, options?: any): Promise<import("axios").AxiosResponse<QueuedJob>>;
6054
+ getQueuedBatch(requestParameters: BatchesApiGetQueuedBatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
6055
+ }
6056
+ /**
6057
+ * ExportsApi - axios parameter creator
6058
+ * @export
6059
+ */
6060
+ export declare const ExportsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
6061
+ /**
6062
+ * Create an `export`. This API is asynchronous, returning the location of a `queued-export`. Check the status via the getQueuedExport API.
6063
+ * @param {CreateExportRequest} createExportRequest
6064
+ * @param {*} [options] Override http request option.
6065
+ * @throws {RequiredError}
6066
+ */
6067
+ createExport: (createExportRequest: CreateExportRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6068
+ /**
6069
+ * Get an `export` by ID.
6070
+ * @param {string} id The &#x60;export&#x60; ID.
6071
+ * @param {*} [options] Override http request option.
6072
+ * @throws {RequiredError}
6073
+ */
6074
+ getExport: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6075
+ /**
6076
+ * Get a `queued-export`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `export`.
6077
+ * @param {string} id The &#x60;queued-export&#x60; ID.
6078
+ * @param {*} [options] Override http request option.
6079
+ * @throws {RequiredError}
6080
+ */
6081
+ getQueuedExport: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6082
+ };
6083
+ /**
6084
+ * ExportsApi - functional programming interface
6085
+ * @export
6086
+ */
6087
+ export declare const ExportsApiFp: (configuration?: Configuration | undefined) => {
6088
+ /**
6089
+ * Create an `export`. This API is asynchronous, returning the location of a `queued-export`. Check the status via the getQueuedExport API.
6090
+ * @param {CreateExportRequest} createExportRequest
6091
+ * @param {*} [options] Override http request option.
6092
+ * @throws {RequiredError}
6093
+ */
6094
+ createExport(createExportRequest: CreateExportRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
6095
+ /**
6096
+ * Get an `export` by ID.
6097
+ * @param {string} id The &#x60;export&#x60; ID.
6098
+ * @param {*} [options] Override http request option.
6099
+ * @throws {RequiredError}
6100
+ */
6101
+ getExport(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Export>>;
6102
+ /**
6103
+ * Get a `queued-export`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `export`.
6104
+ * @param {string} id The &#x60;queued-export&#x60; ID.
6105
+ * @param {*} [options] Override http request option.
6106
+ * @throws {RequiredError}
6107
+ */
6108
+ getQueuedExport(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
6109
+ };
6110
+ /**
6111
+ * ExportsApi - factory interface
6112
+ * @export
6113
+ */
6114
+ export declare const ExportsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
6115
+ /**
6116
+ * Create an `export`. This API is asynchronous, returning the location of a `queued-export`. Check the status via the getQueuedExport API.
6117
+ * @param {CreateExportRequest} createExportRequest
6118
+ * @param {*} [options] Override http request option.
6119
+ * @throws {RequiredError}
6120
+ */
6121
+ createExport(createExportRequest: CreateExportRequest, options?: any): AxiosPromise<QueuedJob>;
6122
+ /**
6123
+ * Get an `export` by ID.
6124
+ * @param {string} id The &#x60;export&#x60; ID.
6125
+ * @param {*} [options] Override http request option.
6126
+ * @throws {RequiredError}
6127
+ */
6128
+ getExport(id: string, options?: any): AxiosPromise<Export>;
6129
+ /**
6130
+ * Get a `queued-export`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `export`.
6131
+ * @param {string} id The &#x60;queued-export&#x60; ID.
6132
+ * @param {*} [options] Override http request option.
6133
+ * @throws {RequiredError}
6134
+ */
6135
+ getQueuedExport(id: string, options?: any): AxiosPromise<QueuedJob>;
6136
+ };
6137
+ /**
6138
+ * Request parameters for createExport operation in ExportsApi.
6139
+ * @export
6140
+ * @interface ExportsApiCreateExportRequest
6141
+ */
6142
+ export interface ExportsApiCreateExportRequest {
6143
+ /**
6144
+ *
6145
+ * @type {CreateExportRequest}
6146
+ * @memberof ExportsApiCreateExport
6147
+ */
6148
+ readonly createExportRequest: CreateExportRequest;
6149
+ }
6150
+ /**
6151
+ * Request parameters for getExport operation in ExportsApi.
6152
+ * @export
6153
+ * @interface ExportsApiGetExportRequest
6154
+ */
6155
+ export interface ExportsApiGetExportRequest {
6156
+ /**
6157
+ * The &#x60;export&#x60; ID.
6158
+ * @type {string}
6159
+ * @memberof ExportsApiGetExport
6160
+ */
6161
+ readonly id: string;
6162
+ }
6163
+ /**
6164
+ * Request parameters for getQueuedExport operation in ExportsApi.
6165
+ * @export
6166
+ * @interface ExportsApiGetQueuedExportRequest
6167
+ */
6168
+ export interface ExportsApiGetQueuedExportRequest {
6169
+ /**
6170
+ * The &#x60;queued-export&#x60; ID.
6171
+ * @type {string}
6172
+ * @memberof ExportsApiGetQueuedExport
6173
+ */
6174
+ readonly id: string;
6175
+ }
6176
+ /**
6177
+ * ExportsApi - object-oriented interface
6178
+ * @export
6179
+ * @class ExportsApi
6180
+ * @extends {BaseAPI}
6181
+ */
6182
+ export declare class ExportsApi extends BaseAPI {
6183
+ /**
6184
+ * Create an `export`. This API is asynchronous, returning the location of a `queued-export`. Check the status via the getQueuedExport API.
6185
+ * @param {ExportsApiCreateExportRequest} requestParameters Request parameters.
6186
+ * @param {*} [options] Override http request option.
6187
+ * @throws {RequiredError}
6188
+ * @memberof ExportsApi
6189
+ */
6190
+ createExport(requestParameters: ExportsApiCreateExportRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
6191
+ /**
6192
+ * Get an `export` by ID.
6193
+ * @param {ExportsApiGetExportRequest} requestParameters Request parameters.
6194
+ * @param {*} [options] Override http request option.
6195
+ * @throws {RequiredError}
6196
+ * @memberof ExportsApi
6197
+ */
6198
+ getExport(requestParameters: ExportsApiGetExportRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Export, any>>;
6199
+ /**
6200
+ * Get a `queued-export`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `export`.
6201
+ * @param {ExportsApiGetQueuedExportRequest} requestParameters Request parameters.
6202
+ * @param {*} [options] Override http request option.
6203
+ * @throws {RequiredError}
6204
+ * @memberof ExportsApi
6205
+ */
6206
+ getQueuedExport(requestParameters: ExportsApiGetQueuedExportRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
5896
6207
  }
5897
6208
  /**
5898
6209
  * FilesApi - axios parameter creator
@@ -5905,21 +6216,21 @@ export declare const FilesApiAxiosParamCreator: (configuration?: Configuration |
5905
6216
  * @param {*} [options] Override http request option.
5906
6217
  * @throws {RequiredError}
5907
6218
  */
5908
- createFile: (createFileRequest: CreateFileRequest, options?: any) => Promise<RequestArgs>;
6219
+ createFile: (createFileRequest: CreateFileRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5909
6220
  /**
5910
6221
  * Delete a `file`.
5911
6222
  * @param {string} id The &#x60;file&#x60; ID.
5912
6223
  * @param {*} [options] Override http request option.
5913
6224
  * @throws {RequiredError}
5914
6225
  */
5915
- deleteFile: (id: string, options?: any) => Promise<RequestArgs>;
6226
+ deleteFile: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5916
6227
  /**
5917
6228
  * Get a `file` by ID.
5918
6229
  * @param {string} id The &#x60;file&#x60; ID.
5919
6230
  * @param {*} [options] Override http request option.
5920
6231
  * @throws {RequiredError}
5921
6232
  */
5922
- getFile: (id: string, options?: any) => Promise<RequestArgs>;
6233
+ getFile: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5923
6234
  /**
5924
6235
  * Get `files`.
5925
6236
  * @param {string} [pageCursor] The cursor for the next page of items.
@@ -5928,7 +6239,7 @@ export declare const FilesApiAxiosParamCreator: (configuration?: Configuration |
5928
6239
  * @param {*} [options] Override http request option.
5929
6240
  * @throws {RequiredError}
5930
6241
  */
5931
- getFiles: (pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: any) => Promise<RequestArgs>;
6242
+ getFiles: (pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5932
6243
  /**
5933
6244
  * Upload a `file`. Once uploaded, create either parts or geometry sets via the createPart or createGeometrySet APIs.
5934
6245
  * @param {string} id The &#x60;file&#x60; ID.
@@ -5936,7 +6247,7 @@ export declare const FilesApiAxiosParamCreator: (configuration?: Configuration |
5936
6247
  * @param {*} [options] Override http request option.
5937
6248
  * @throws {RequiredError}
5938
6249
  */
5939
- uploadFile: (id: string, body: any, options?: any) => Promise<RequestArgs>;
6250
+ uploadFile: (id: string, body: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5940
6251
  };
5941
6252
  /**
5942
6253
  * FilesApi - functional programming interface
@@ -5949,21 +6260,21 @@ export declare const FilesApiFp: (configuration?: Configuration | undefined) =>
5949
6260
  * @param {*} [options] Override http request option.
5950
6261
  * @throws {RequiredError}
5951
6262
  */
5952
- createFile(createFileRequest: CreateFileRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FileMetadata>>;
6263
+ createFile(createFileRequest: CreateFileRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FileMetadata>>;
5953
6264
  /**
5954
6265
  * Delete a `file`.
5955
6266
  * @param {string} id The &#x60;file&#x60; ID.
5956
6267
  * @param {*} [options] Override http request option.
5957
6268
  * @throws {RequiredError}
5958
6269
  */
5959
- deleteFile(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FileMetadata>>;
6270
+ deleteFile(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FileMetadata>>;
5960
6271
  /**
5961
6272
  * Get a `file` by ID.
5962
6273
  * @param {string} id The &#x60;file&#x60; ID.
5963
6274
  * @param {*} [options] Override http request option.
5964
6275
  * @throws {RequiredError}
5965
6276
  */
5966
- getFile(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FileMetadata>>;
6277
+ getFile(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FileMetadata>>;
5967
6278
  /**
5968
6279
  * Get `files`.
5969
6280
  * @param {string} [pageCursor] The cursor for the next page of items.
@@ -5972,7 +6283,7 @@ export declare const FilesApiFp: (configuration?: Configuration | undefined) =>
5972
6283
  * @param {*} [options] Override http request option.
5973
6284
  * @throws {RequiredError}
5974
6285
  */
5975
- getFiles(pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FileList>>;
6286
+ getFiles(pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FileList>>;
5976
6287
  /**
5977
6288
  * Upload a `file`. Once uploaded, create either parts or geometry sets via the createPart or createGeometrySet APIs.
5978
6289
  * @param {string} id The &#x60;file&#x60; ID.
@@ -5980,7 +6291,7 @@ export declare const FilesApiFp: (configuration?: Configuration | undefined) =>
5980
6291
  * @param {*} [options] Override http request option.
5981
6292
  * @throws {RequiredError}
5982
6293
  */
5983
- uploadFile(id: string, body: any, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
6294
+ uploadFile(id: string, body: any, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
5984
6295
  };
5985
6296
  /**
5986
6297
  * FilesApi - factory interface
@@ -6123,7 +6434,7 @@ export declare class FilesApi extends BaseAPI {
6123
6434
  * @throws {RequiredError}
6124
6435
  * @memberof FilesApi
6125
6436
  */
6126
- createFile(requestParameters: FilesApiCreateFileRequest, options?: any): Promise<import("axios").AxiosResponse<FileMetadata>>;
6437
+ createFile(requestParameters: FilesApiCreateFileRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FileMetadata, any>>;
6127
6438
  /**
6128
6439
  * Delete a `file`.
6129
6440
  * @param {FilesApiDeleteFileRequest} requestParameters Request parameters.
@@ -6131,7 +6442,7 @@ export declare class FilesApi extends BaseAPI {
6131
6442
  * @throws {RequiredError}
6132
6443
  * @memberof FilesApi
6133
6444
  */
6134
- deleteFile(requestParameters: FilesApiDeleteFileRequest, options?: any): Promise<import("axios").AxiosResponse<FileMetadata>>;
6445
+ deleteFile(requestParameters: FilesApiDeleteFileRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FileMetadata, any>>;
6135
6446
  /**
6136
6447
  * Get a `file` by ID.
6137
6448
  * @param {FilesApiGetFileRequest} requestParameters Request parameters.
@@ -6139,7 +6450,7 @@ export declare class FilesApi extends BaseAPI {
6139
6450
  * @throws {RequiredError}
6140
6451
  * @memberof FilesApi
6141
6452
  */
6142
- getFile(requestParameters: FilesApiGetFileRequest, options?: any): Promise<import("axios").AxiosResponse<FileMetadata>>;
6453
+ getFile(requestParameters: FilesApiGetFileRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FileMetadata, any>>;
6143
6454
  /**
6144
6455
  * Get `files`.
6145
6456
  * @param {FilesApiGetFilesRequest} requestParameters Request parameters.
@@ -6147,7 +6458,7 @@ export declare class FilesApi extends BaseAPI {
6147
6458
  * @throws {RequiredError}
6148
6459
  * @memberof FilesApi
6149
6460
  */
6150
- getFiles(requestParameters?: FilesApiGetFilesRequest, options?: any): Promise<import("axios").AxiosResponse<FileList>>;
6461
+ getFiles(requestParameters?: FilesApiGetFilesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FileList, any>>;
6151
6462
  /**
6152
6463
  * Upload a `file`. Once uploaded, create either parts or geometry sets via the createPart or createGeometrySet APIs.
6153
6464
  * @param {FilesApiUploadFileRequest} requestParameters Request parameters.
@@ -6155,7 +6466,7 @@ export declare class FilesApi extends BaseAPI {
6155
6466
  * @throws {RequiredError}
6156
6467
  * @memberof FilesApi
6157
6468
  */
6158
- uploadFile(requestParameters: FilesApiUploadFileRequest, options?: any): Promise<import("axios").AxiosResponse<void>>;
6469
+ uploadFile(requestParameters: FilesApiUploadFileRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
6159
6470
  }
6160
6471
  /**
6161
6472
  * GeometrySetsApi - axios parameter creator
@@ -6168,14 +6479,14 @@ export declare const GeometrySetsApiAxiosParamCreator: (configuration?: Configur
6168
6479
  * @param {*} [options] Override http request option.
6169
6480
  * @throws {RequiredError}
6170
6481
  */
6171
- createGeometrySet: (createGeometrySetRequest: CreateGeometrySetRequest, options?: any) => Promise<RequestArgs>;
6482
+ createGeometrySet: (createGeometrySetRequest: CreateGeometrySetRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6172
6483
  /**
6173
6484
  * Get a `geometry-set` by ID.
6174
6485
  * @param {string} id The &#x60;geometry-set&#x60; ID.
6175
6486
  * @param {*} [options] Override http request option.
6176
6487
  * @throws {RequiredError}
6177
6488
  */
6178
- getGeometrySet: (id: string, options?: any) => Promise<RequestArgs>;
6489
+ getGeometrySet: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6179
6490
  /**
6180
6491
  * Get `geometry-sets`.
6181
6492
  * @param {string} [pageCursor] The cursor for the next page of items.
@@ -6183,7 +6494,7 @@ export declare const GeometrySetsApiAxiosParamCreator: (configuration?: Configur
6183
6494
  * @param {*} [options] Override http request option.
6184
6495
  * @throws {RequiredError}
6185
6496
  */
6186
- getGeometrySets: (pageCursor?: string | undefined, pageSize?: number | undefined, options?: any) => Promise<RequestArgs>;
6497
+ getGeometrySets: (pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6187
6498
  };
6188
6499
  /**
6189
6500
  * GeometrySetsApi - functional programming interface
@@ -6196,14 +6507,14 @@ export declare const GeometrySetsApiFp: (configuration?: Configuration | undefin
6196
6507
  * @param {*} [options] Override http request option.
6197
6508
  * @throws {RequiredError}
6198
6509
  */
6199
- createGeometrySet(createGeometrySetRequest: CreateGeometrySetRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
6510
+ createGeometrySet(createGeometrySetRequest: CreateGeometrySetRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
6200
6511
  /**
6201
6512
  * Get a `geometry-set` by ID.
6202
6513
  * @param {string} id The &#x60;geometry-set&#x60; ID.
6203
6514
  * @param {*} [options] Override http request option.
6204
6515
  * @throws {RequiredError}
6205
6516
  */
6206
- getGeometrySet(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<GeometrySet>>;
6517
+ getGeometrySet(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<GeometrySet>>;
6207
6518
  /**
6208
6519
  * Get `geometry-sets`.
6209
6520
  * @param {string} [pageCursor] The cursor for the next page of items.
@@ -6211,7 +6522,7 @@ export declare const GeometrySetsApiFp: (configuration?: Configuration | undefin
6211
6522
  * @param {*} [options] Override http request option.
6212
6523
  * @throws {RequiredError}
6213
6524
  */
6214
- getGeometrySets(pageCursor?: string | undefined, pageSize?: number | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<GeometrySetList>>;
6525
+ getGeometrySets(pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<GeometrySetList>>;
6215
6526
  };
6216
6527
  /**
6217
6528
  * GeometrySetsApi - factory interface
@@ -6300,7 +6611,7 @@ export declare class GeometrySetsApi extends BaseAPI {
6300
6611
  * @throws {RequiredError}
6301
6612
  * @memberof GeometrySetsApi
6302
6613
  */
6303
- createGeometrySet(requestParameters: GeometrySetsApiCreateGeometrySetRequest, options?: any): Promise<import("axios").AxiosResponse<QueuedJob>>;
6614
+ createGeometrySet(requestParameters: GeometrySetsApiCreateGeometrySetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
6304
6615
  /**
6305
6616
  * Get a `geometry-set` by ID.
6306
6617
  * @param {GeometrySetsApiGetGeometrySetRequest} requestParameters Request parameters.
@@ -6308,7 +6619,7 @@ export declare class GeometrySetsApi extends BaseAPI {
6308
6619
  * @throws {RequiredError}
6309
6620
  * @memberof GeometrySetsApi
6310
6621
  */
6311
- getGeometrySet(requestParameters: GeometrySetsApiGetGeometrySetRequest, options?: any): Promise<import("axios").AxiosResponse<GeometrySet>>;
6622
+ getGeometrySet(requestParameters: GeometrySetsApiGetGeometrySetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GeometrySet, any>>;
6312
6623
  /**
6313
6624
  * Get `geometry-sets`.
6314
6625
  * @param {GeometrySetsApiGetGeometrySetsRequest} requestParameters Request parameters.
@@ -6316,7 +6627,7 @@ export declare class GeometrySetsApi extends BaseAPI {
6316
6627
  * @throws {RequiredError}
6317
6628
  * @memberof GeometrySetsApi
6318
6629
  */
6319
- getGeometrySets(requestParameters?: GeometrySetsApiGetGeometrySetsRequest, options?: any): Promise<import("axios").AxiosResponse<GeometrySetList>>;
6630
+ getGeometrySets(requestParameters?: GeometrySetsApiGetGeometrySetsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GeometrySetList, any>>;
6320
6631
  }
6321
6632
  /**
6322
6633
  * HitsApi - axios parameter creator
@@ -6332,7 +6643,7 @@ export declare const HitsApiAxiosParamCreator: (configuration?: Configuration |
6332
6643
  * @param {*} [options] Override http request option.
6333
6644
  * @throws {RequiredError}
6334
6645
  */
6335
- createSceneHit: (id: string, createHitRequest: CreateHitRequest, include?: string | undefined, fieldsPartRevision?: string | undefined, options?: any) => Promise<RequestArgs>;
6646
+ createSceneHit: (id: string, createHitRequest: CreateHitRequest, include?: string | undefined, fieldsPartRevision?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6336
6647
  /**
6337
6648
  * Create a `hit` for a `scene-view`.
6338
6649
  * @param {string} id The &#x60;scene-view&#x60; ID.
@@ -6342,7 +6653,7 @@ export declare const HitsApiAxiosParamCreator: (configuration?: Configuration |
6342
6653
  * @param {*} [options] Override http request option.
6343
6654
  * @throws {RequiredError}
6344
6655
  */
6345
- createSceneViewHit: (id: string, createHitRequest: CreateHitRequest, include?: string | undefined, fieldsPartRevision?: string | undefined, options?: any) => Promise<RequestArgs>;
6656
+ createSceneViewHit: (id: string, createHitRequest: CreateHitRequest, include?: string | undefined, fieldsPartRevision?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6346
6657
  };
6347
6658
  /**
6348
6659
  * HitsApi - functional programming interface
@@ -6358,7 +6669,7 @@ export declare const HitsApiFp: (configuration?: Configuration | undefined) => {
6358
6669
  * @param {*} [options] Override http request option.
6359
6670
  * @throws {RequiredError}
6360
6671
  */
6361
- createSceneHit(id: string, createHitRequest: CreateHitRequest, include?: string | undefined, fieldsPartRevision?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Hit>>;
6672
+ createSceneHit(id: string, createHitRequest: CreateHitRequest, include?: string | undefined, fieldsPartRevision?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Hit>>;
6362
6673
  /**
6363
6674
  * Create a `hit` for a `scene-view`.
6364
6675
  * @param {string} id The &#x60;scene-view&#x60; ID.
@@ -6368,7 +6679,7 @@ export declare const HitsApiFp: (configuration?: Configuration | undefined) => {
6368
6679
  * @param {*} [options] Override http request option.
6369
6680
  * @throws {RequiredError}
6370
6681
  */
6371
- createSceneViewHit(id: string, createHitRequest: CreateHitRequest, include?: string | undefined, fieldsPartRevision?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Hit>>;
6682
+ createSceneViewHit(id: string, createHitRequest: CreateHitRequest, include?: string | undefined, fieldsPartRevision?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Hit>>;
6372
6683
  };
6373
6684
  /**
6374
6685
  * HitsApi - factory interface
@@ -6472,7 +6783,7 @@ export declare class HitsApi extends BaseAPI {
6472
6783
  * @throws {RequiredError}
6473
6784
  * @memberof HitsApi
6474
6785
  */
6475
- createSceneHit(requestParameters: HitsApiCreateSceneHitRequest, options?: any): Promise<import("axios").AxiosResponse<Hit>>;
6786
+ createSceneHit(requestParameters: HitsApiCreateSceneHitRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Hit, any>>;
6476
6787
  /**
6477
6788
  * Create a `hit` for a `scene-view`.
6478
6789
  * @param {HitsApiCreateSceneViewHitRequest} requestParameters Request parameters.
@@ -6480,7 +6791,7 @@ export declare class HitsApi extends BaseAPI {
6480
6791
  * @throws {RequiredError}
6481
6792
  * @memberof HitsApi
6482
6793
  */
6483
- createSceneViewHit(requestParameters: HitsApiCreateSceneViewHitRequest, options?: any): Promise<import("axios").AxiosResponse<Hit>>;
6794
+ createSceneViewHit(requestParameters: HitsApiCreateSceneViewHitRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Hit, any>>;
6484
6795
  }
6485
6796
  /**
6486
6797
  * Oauth2Api - axios parameter creator
@@ -6494,7 +6805,7 @@ export declare const Oauth2ApiAxiosParamCreator: (configuration?: Configuration
6494
6805
  * @param {*} [options] Override http request option.
6495
6806
  * @throws {RequiredError}
6496
6807
  */
6497
- adminAcceptConsent: (challenge: string, adminConsentAcceptRequest?: AdminConsentAcceptRequest | undefined, options?: any) => Promise<RequestArgs>;
6808
+ adminAcceptConsent: (challenge: string, adminConsentAcceptRequest?: AdminConsentAcceptRequest | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6498
6809
  /**
6499
6810
  * Accept Login Challenge with subject & login challenge
6500
6811
  * @param {string} loginChallenge Login Challenge ID from oauth2 flow
@@ -6502,7 +6813,7 @@ export declare const Oauth2ApiAxiosParamCreator: (configuration?: Configuration
6502
6813
  * @param {*} [options] Override http request option.
6503
6814
  * @throws {RequiredError}
6504
6815
  */
6505
- adminAcceptLogin: (loginChallenge: string, adminLoginAcceptRequest: AdminLoginAcceptRequest, options?: any) => Promise<RequestArgs>;
6816
+ adminAcceptLogin: (loginChallenge: string, adminLoginAcceptRequest: AdminLoginAcceptRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6506
6817
  /**
6507
6818
  * Create an OAuth2 access token. For details, see our [Authentication](https://developer.vertexvis.com/docs/guides/authentication) guide.
6508
6819
  * @param {string} grantType
@@ -6513,14 +6824,14 @@ export declare const Oauth2ApiAxiosParamCreator: (configuration?: Configuration
6513
6824
  * @param {*} [options] Override http request option.
6514
6825
  * @throws {RequiredError}
6515
6826
  */
6516
- createToken: (grantType: string, scope?: string | undefined, code?: string | undefined, redirectUri?: string | undefined, refreshToken?: string | undefined, options?: any) => Promise<RequestArgs>;
6827
+ createToken: (grantType: string, scope?: string | undefined, code?: string | undefined, redirectUri?: string | undefined, refreshToken?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6517
6828
  /**
6518
6829
  * Revoke an OAuth2 access token.
6519
6830
  * @param {RevokeOAuth2TokenRequest} revokeOAuth2TokenRequest
6520
6831
  * @param {*} [options] Override http request option.
6521
6832
  * @throws {RequiredError}
6522
6833
  */
6523
- revokeToken: (revokeOAuth2TokenRequest: RevokeOAuth2TokenRequest, options?: any) => Promise<RequestArgs>;
6834
+ revokeToken: (revokeOAuth2TokenRequest: RevokeOAuth2TokenRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6524
6835
  };
6525
6836
  /**
6526
6837
  * Oauth2Api - functional programming interface
@@ -6534,7 +6845,7 @@ export declare const Oauth2ApiFp: (configuration?: Configuration | undefined) =>
6534
6845
  * @param {*} [options] Override http request option.
6535
6846
  * @throws {RequiredError}
6536
6847
  */
6537
- adminAcceptConsent(challenge: string, adminConsentAcceptRequest?: AdminConsentAcceptRequest | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AdminRedirectTo>>;
6848
+ adminAcceptConsent(challenge: string, adminConsentAcceptRequest?: AdminConsentAcceptRequest | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AdminRedirectTo>>;
6538
6849
  /**
6539
6850
  * Accept Login Challenge with subject & login challenge
6540
6851
  * @param {string} loginChallenge Login Challenge ID from oauth2 flow
@@ -6542,7 +6853,7 @@ export declare const Oauth2ApiFp: (configuration?: Configuration | undefined) =>
6542
6853
  * @param {*} [options] Override http request option.
6543
6854
  * @throws {RequiredError}
6544
6855
  */
6545
- adminAcceptLogin(loginChallenge: string, adminLoginAcceptRequest: AdminLoginAcceptRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AdminRedirectTo>>;
6856
+ adminAcceptLogin(loginChallenge: string, adminLoginAcceptRequest: AdminLoginAcceptRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AdminRedirectTo>>;
6546
6857
  /**
6547
6858
  * Create an OAuth2 access token. For details, see our [Authentication](https://developer.vertexvis.com/docs/guides/authentication) guide.
6548
6859
  * @param {string} grantType
@@ -6553,14 +6864,14 @@ export declare const Oauth2ApiFp: (configuration?: Configuration | undefined) =>
6553
6864
  * @param {*} [options] Override http request option.
6554
6865
  * @throws {RequiredError}
6555
6866
  */
6556
- createToken(grantType: string, scope?: string | undefined, code?: string | undefined, redirectUri?: string | undefined, refreshToken?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<OAuth2Token>>;
6867
+ createToken(grantType: string, scope?: string | undefined, code?: string | undefined, redirectUri?: string | undefined, refreshToken?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<OAuth2Token>>;
6557
6868
  /**
6558
6869
  * Revoke an OAuth2 access token.
6559
6870
  * @param {RevokeOAuth2TokenRequest} revokeOAuth2TokenRequest
6560
6871
  * @param {*} [options] Override http request option.
6561
6872
  * @throws {RequiredError}
6562
6873
  */
6563
- revokeToken(revokeOAuth2TokenRequest: RevokeOAuth2TokenRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
6874
+ revokeToken(revokeOAuth2TokenRequest: RevokeOAuth2TokenRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
6564
6875
  };
6565
6876
  /**
6566
6877
  * Oauth2Api - factory interface
@@ -6704,7 +7015,7 @@ export declare class Oauth2Api extends BaseAPI {
6704
7015
  * @throws {RequiredError}
6705
7016
  * @memberof Oauth2Api
6706
7017
  */
6707
- adminAcceptConsent(requestParameters: Oauth2ApiAdminAcceptConsentRequest, options?: any): Promise<import("axios").AxiosResponse<AdminRedirectTo>>;
7018
+ adminAcceptConsent(requestParameters: Oauth2ApiAdminAcceptConsentRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminRedirectTo, any>>;
6708
7019
  /**
6709
7020
  * Accept Login Challenge with subject & login challenge
6710
7021
  * @param {Oauth2ApiAdminAcceptLoginRequest} requestParameters Request parameters.
@@ -6712,7 +7023,7 @@ export declare class Oauth2Api extends BaseAPI {
6712
7023
  * @throws {RequiredError}
6713
7024
  * @memberof Oauth2Api
6714
7025
  */
6715
- adminAcceptLogin(requestParameters: Oauth2ApiAdminAcceptLoginRequest, options?: any): Promise<import("axios").AxiosResponse<AdminRedirectTo>>;
7026
+ adminAcceptLogin(requestParameters: Oauth2ApiAdminAcceptLoginRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminRedirectTo, any>>;
6716
7027
  /**
6717
7028
  * Create an OAuth2 access token. For details, see our [Authentication](https://developer.vertexvis.com/docs/guides/authentication) guide.
6718
7029
  * @param {Oauth2ApiCreateTokenRequest} requestParameters Request parameters.
@@ -6720,7 +7031,7 @@ export declare class Oauth2Api extends BaseAPI {
6720
7031
  * @throws {RequiredError}
6721
7032
  * @memberof Oauth2Api
6722
7033
  */
6723
- createToken(requestParameters: Oauth2ApiCreateTokenRequest, options?: any): Promise<import("axios").AxiosResponse<OAuth2Token>>;
7034
+ createToken(requestParameters: Oauth2ApiCreateTokenRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<OAuth2Token, any>>;
6724
7035
  /**
6725
7036
  * Revoke an OAuth2 access token.
6726
7037
  * @param {Oauth2ApiRevokeTokenRequest} requestParameters Request parameters.
@@ -6728,7 +7039,7 @@ export declare class Oauth2Api extends BaseAPI {
6728
7039
  * @throws {RequiredError}
6729
7040
  * @memberof Oauth2Api
6730
7041
  */
6731
- revokeToken(requestParameters: Oauth2ApiRevokeTokenRequest, options?: any): Promise<import("axios").AxiosResponse<void>>;
7042
+ revokeToken(requestParameters: Oauth2ApiRevokeTokenRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
6732
7043
  }
6733
7044
  /**
6734
7045
  * PartRevisionsApi - axios parameter creator
@@ -6741,7 +7052,7 @@ export declare const PartRevisionsApiAxiosParamCreator: (configuration?: Configu
6741
7052
  * @param {*} [options] Override http request option.
6742
7053
  * @throws {RequiredError}
6743
7054
  */
6744
- deletePartRevision: (id: string, options?: any) => Promise<RequestArgs>;
7055
+ deletePartRevision: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6745
7056
  /**
6746
7057
  * Get a `part-revision` by ID.
6747
7058
  * @param {string} id The &#x60;part-revision&#x60; ID.
@@ -6749,7 +7060,7 @@ export declare const PartRevisionsApiAxiosParamCreator: (configuration?: Configu
6749
7060
  * @param {*} [options] Override http request option.
6750
7061
  * @throws {RequiredError}
6751
7062
  */
6752
- getPartRevision: (id: string, fieldsPartRevision?: string | undefined, options?: any) => Promise<RequestArgs>;
7063
+ getPartRevision: (id: string, fieldsPartRevision?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6753
7064
  /**
6754
7065
  * Get `part-revisions` for a `part`.
6755
7066
  * @param {string} id The &#x60;part&#x60; ID.
@@ -6759,14 +7070,14 @@ export declare const PartRevisionsApiAxiosParamCreator: (configuration?: Configu
6759
7070
  * @param {*} [options] Override http request option.
6760
7071
  * @throws {RequiredError}
6761
7072
  */
6762
- getPartRevisions: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: any) => Promise<RequestArgs>;
7073
+ getPartRevisions: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6763
7074
  /**
6764
7075
  * Get a `queued-part-revision-deletion` by ID.
6765
7076
  * @param {string} id The &#x60;queued-part-revision-deletion&#x60; ID.
6766
7077
  * @param {*} [options] Override http request option.
6767
7078
  * @throws {RequiredError}
6768
7079
  */
6769
- getQueuedPartRevisionDeletion: (id: string, options?: any) => Promise<RequestArgs>;
7080
+ getQueuedPartRevisionDeletion: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6770
7081
  /**
6771
7082
  * Get a rendered image of a `part-revision`.
6772
7083
  * @param {string} id The &#x60;part-revision&#x60; ID.
@@ -6775,10 +7086,17 @@ export declare const PartRevisionsApiAxiosParamCreator: (configuration?: Configu
6775
7086
  * @param {Vector3} [cameraPosition] The &#x60;camera&#x60; position vector.
6776
7087
  * @param {Vector3} [cameraUp] The &#x60;camera&#x60; up vector.
6777
7088
  * @param {Vector3} [cameraLookAt] The &#x60;camera&#x60; lookAt vector.
7089
+ * @param {Vector3} [cameraPerspectivePosition] The perspective camera position.
7090
+ * @param {Vector3} [cameraPerspectiveLookAt] The perspective camera look at position.
7091
+ * @param {Vector3} [cameraPerspectiveUp] The perspective camera up vector.
7092
+ * @param {Vector3} [cameraOrthographicViewVector] The orthographic camera view vector.
7093
+ * @param {Vector3} [cameraOrthographicLookAt] The orthographic camera look at position.
7094
+ * @param {Vector3} [cameraOrthographicUp] The orthographic camera up vector.
7095
+ * @param {number} [cameraOrthographicFovHeight] The orthographic field-of-view height.
6778
7096
  * @param {*} [options] Override http request option.
6779
7097
  * @throws {RequiredError}
6780
7098
  */
6781
- renderPartRevision: (id: string, height?: number | undefined, width?: number | undefined, cameraPosition?: Vector3 | undefined, cameraUp?: Vector3 | undefined, cameraLookAt?: Vector3 | undefined, options?: any) => Promise<RequestArgs>;
7099
+ renderPartRevision: (id: string, height?: number | undefined, width?: number | undefined, cameraPosition?: Vector3 | undefined, cameraUp?: Vector3 | undefined, cameraLookAt?: Vector3 | undefined, cameraPerspectivePosition?: Vector3 | undefined, cameraPerspectiveLookAt?: Vector3 | undefined, cameraPerspectiveUp?: Vector3 | undefined, cameraOrthographicViewVector?: Vector3 | undefined, cameraOrthographicLookAt?: Vector3 | undefined, cameraOrthographicUp?: Vector3 | undefined, cameraOrthographicFovHeight?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6782
7100
  /**
6783
7101
  * Update a `part-revision`. Note that metadata updates are eventually consistent.
6784
7102
  * @param {string} id The &#x60;part-revision&#x60; ID.
@@ -6786,7 +7104,7 @@ export declare const PartRevisionsApiAxiosParamCreator: (configuration?: Configu
6786
7104
  * @param {*} [options] Override http request option.
6787
7105
  * @throws {RequiredError}
6788
7106
  */
6789
- updatePartRevision: (id: string, updatePartRevisionRequest: UpdatePartRevisionRequest, options?: any) => Promise<RequestArgs>;
7107
+ updatePartRevision: (id: string, updatePartRevisionRequest: UpdatePartRevisionRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6790
7108
  };
6791
7109
  /**
6792
7110
  * PartRevisionsApi - functional programming interface
@@ -6799,7 +7117,7 @@ export declare const PartRevisionsApiFp: (configuration?: Configuration | undefi
6799
7117
  * @param {*} [options] Override http request option.
6800
7118
  * @throws {RequiredError}
6801
7119
  */
6802
- deletePartRevision(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
7120
+ deletePartRevision(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
6803
7121
  /**
6804
7122
  * Get a `part-revision` by ID.
6805
7123
  * @param {string} id The &#x60;part-revision&#x60; ID.
@@ -6807,7 +7125,7 @@ export declare const PartRevisionsApiFp: (configuration?: Configuration | undefi
6807
7125
  * @param {*} [options] Override http request option.
6808
7126
  * @throws {RequiredError}
6809
7127
  */
6810
- getPartRevision(id: string, fieldsPartRevision?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PartRevision>>;
7128
+ getPartRevision(id: string, fieldsPartRevision?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PartRevision>>;
6811
7129
  /**
6812
7130
  * Get `part-revisions` for a `part`.
6813
7131
  * @param {string} id The &#x60;part&#x60; ID.
@@ -6817,14 +7135,14 @@ export declare const PartRevisionsApiFp: (configuration?: Configuration | undefi
6817
7135
  * @param {*} [options] Override http request option.
6818
7136
  * @throws {RequiredError}
6819
7137
  */
6820
- getPartRevisions(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PartRevisionList>>;
7138
+ getPartRevisions(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PartRevisionList>>;
6821
7139
  /**
6822
7140
  * Get a `queued-part-revision-deletion` by ID.
6823
7141
  * @param {string} id The &#x60;queued-part-revision-deletion&#x60; ID.
6824
7142
  * @param {*} [options] Override http request option.
6825
7143
  * @throws {RequiredError}
6826
7144
  */
6827
- getQueuedPartRevisionDeletion(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
7145
+ getQueuedPartRevisionDeletion(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
6828
7146
  /**
6829
7147
  * Get a rendered image of a `part-revision`.
6830
7148
  * @param {string} id The &#x60;part-revision&#x60; ID.
@@ -6833,10 +7151,17 @@ export declare const PartRevisionsApiFp: (configuration?: Configuration | undefi
6833
7151
  * @param {Vector3} [cameraPosition] The &#x60;camera&#x60; position vector.
6834
7152
  * @param {Vector3} [cameraUp] The &#x60;camera&#x60; up vector.
6835
7153
  * @param {Vector3} [cameraLookAt] The &#x60;camera&#x60; lookAt vector.
7154
+ * @param {Vector3} [cameraPerspectivePosition] The perspective camera position.
7155
+ * @param {Vector3} [cameraPerspectiveLookAt] The perspective camera look at position.
7156
+ * @param {Vector3} [cameraPerspectiveUp] The perspective camera up vector.
7157
+ * @param {Vector3} [cameraOrthographicViewVector] The orthographic camera view vector.
7158
+ * @param {Vector3} [cameraOrthographicLookAt] The orthographic camera look at position.
7159
+ * @param {Vector3} [cameraOrthographicUp] The orthographic camera up vector.
7160
+ * @param {number} [cameraOrthographicFovHeight] The orthographic field-of-view height.
6836
7161
  * @param {*} [options] Override http request option.
6837
7162
  * @throws {RequiredError}
6838
7163
  */
6839
- renderPartRevision(id: string, height?: number | undefined, width?: number | undefined, cameraPosition?: Vector3 | undefined, cameraUp?: Vector3 | undefined, cameraLookAt?: Vector3 | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<any>>;
7164
+ renderPartRevision(id: string, height?: number | undefined, width?: number | undefined, cameraPosition?: Vector3 | undefined, cameraUp?: Vector3 | undefined, cameraLookAt?: Vector3 | undefined, cameraPerspectivePosition?: Vector3 | undefined, cameraPerspectiveLookAt?: Vector3 | undefined, cameraPerspectiveUp?: Vector3 | undefined, cameraOrthographicViewVector?: Vector3 | undefined, cameraOrthographicLookAt?: Vector3 | undefined, cameraOrthographicUp?: Vector3 | undefined, cameraOrthographicFovHeight?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<any>>;
6840
7165
  /**
6841
7166
  * Update a `part-revision`. Note that metadata updates are eventually consistent.
6842
7167
  * @param {string} id The &#x60;part-revision&#x60; ID.
@@ -6844,7 +7169,7 @@ export declare const PartRevisionsApiFp: (configuration?: Configuration | undefi
6844
7169
  * @param {*} [options] Override http request option.
6845
7170
  * @throws {RequiredError}
6846
7171
  */
6847
- updatePartRevision(id: string, updatePartRevisionRequest: UpdatePartRevisionRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PartRevision>>;
7172
+ updatePartRevision(id: string, updatePartRevisionRequest: UpdatePartRevisionRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PartRevision>>;
6848
7173
  };
6849
7174
  /**
6850
7175
  * PartRevisionsApi - factory interface
@@ -6891,10 +7216,17 @@ export declare const PartRevisionsApiFactory: (configuration?: Configuration | u
6891
7216
  * @param {Vector3} [cameraPosition] The &#x60;camera&#x60; position vector.
6892
7217
  * @param {Vector3} [cameraUp] The &#x60;camera&#x60; up vector.
6893
7218
  * @param {Vector3} [cameraLookAt] The &#x60;camera&#x60; lookAt vector.
7219
+ * @param {Vector3} [cameraPerspectivePosition] The perspective camera position.
7220
+ * @param {Vector3} [cameraPerspectiveLookAt] The perspective camera look at position.
7221
+ * @param {Vector3} [cameraPerspectiveUp] The perspective camera up vector.
7222
+ * @param {Vector3} [cameraOrthographicViewVector] The orthographic camera view vector.
7223
+ * @param {Vector3} [cameraOrthographicLookAt] The orthographic camera look at position.
7224
+ * @param {Vector3} [cameraOrthographicUp] The orthographic camera up vector.
7225
+ * @param {number} [cameraOrthographicFovHeight] The orthographic field-of-view height.
6894
7226
  * @param {*} [options] Override http request option.
6895
7227
  * @throws {RequiredError}
6896
7228
  */
6897
- renderPartRevision(id: string, height?: number | undefined, width?: number | undefined, cameraPosition?: Vector3 | undefined, cameraUp?: Vector3 | undefined, cameraLookAt?: Vector3 | undefined, options?: any): AxiosPromise<any>;
7229
+ renderPartRevision(id: string, height?: number | undefined, width?: number | undefined, cameraPosition?: Vector3 | undefined, cameraUp?: Vector3 | undefined, cameraLookAt?: Vector3 | undefined, cameraPerspectivePosition?: Vector3 | undefined, cameraPerspectiveLookAt?: Vector3 | undefined, cameraPerspectiveUp?: Vector3 | undefined, cameraOrthographicViewVector?: Vector3 | undefined, cameraOrthographicLookAt?: Vector3 | undefined, cameraOrthographicUp?: Vector3 | undefined, cameraOrthographicFovHeight?: number | undefined, options?: any): AxiosPromise<any>;
6898
7230
  /**
6899
7231
  * Update a `part-revision`. Note that metadata updates are eventually consistent.
6900
7232
  * @param {string} id The &#x60;part-revision&#x60; ID.
@@ -7022,6 +7354,48 @@ export interface PartRevisionsApiRenderPartRevisionRequest {
7022
7354
  * @memberof PartRevisionsApiRenderPartRevision
7023
7355
  */
7024
7356
  readonly cameraLookAt?: Vector3;
7357
+ /**
7358
+ * The perspective camera position.
7359
+ * @type {Vector3}
7360
+ * @memberof PartRevisionsApiRenderPartRevision
7361
+ */
7362
+ readonly cameraPerspectivePosition?: Vector3;
7363
+ /**
7364
+ * The perspective camera look at position.
7365
+ * @type {Vector3}
7366
+ * @memberof PartRevisionsApiRenderPartRevision
7367
+ */
7368
+ readonly cameraPerspectiveLookAt?: Vector3;
7369
+ /**
7370
+ * The perspective camera up vector.
7371
+ * @type {Vector3}
7372
+ * @memberof PartRevisionsApiRenderPartRevision
7373
+ */
7374
+ readonly cameraPerspectiveUp?: Vector3;
7375
+ /**
7376
+ * The orthographic camera view vector.
7377
+ * @type {Vector3}
7378
+ * @memberof PartRevisionsApiRenderPartRevision
7379
+ */
7380
+ readonly cameraOrthographicViewVector?: Vector3;
7381
+ /**
7382
+ * The orthographic camera look at position.
7383
+ * @type {Vector3}
7384
+ * @memberof PartRevisionsApiRenderPartRevision
7385
+ */
7386
+ readonly cameraOrthographicLookAt?: Vector3;
7387
+ /**
7388
+ * The orthographic camera up vector.
7389
+ * @type {Vector3}
7390
+ * @memberof PartRevisionsApiRenderPartRevision
7391
+ */
7392
+ readonly cameraOrthographicUp?: Vector3;
7393
+ /**
7394
+ * The orthographic field-of-view height.
7395
+ * @type {number}
7396
+ * @memberof PartRevisionsApiRenderPartRevision
7397
+ */
7398
+ readonly cameraOrthographicFovHeight?: number;
7025
7399
  }
7026
7400
  /**
7027
7401
  * Request parameters for updatePartRevision operation in PartRevisionsApi.
@@ -7056,7 +7430,7 @@ export declare class PartRevisionsApi extends BaseAPI {
7056
7430
  * @throws {RequiredError}
7057
7431
  * @memberof PartRevisionsApi
7058
7432
  */
7059
- deletePartRevision(requestParameters: PartRevisionsApiDeletePartRevisionRequest, options?: any): Promise<import("axios").AxiosResponse<QueuedJob>>;
7433
+ deletePartRevision(requestParameters: PartRevisionsApiDeletePartRevisionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
7060
7434
  /**
7061
7435
  * Get a `part-revision` by ID.
7062
7436
  * @param {PartRevisionsApiGetPartRevisionRequest} requestParameters Request parameters.
@@ -7064,7 +7438,7 @@ export declare class PartRevisionsApi extends BaseAPI {
7064
7438
  * @throws {RequiredError}
7065
7439
  * @memberof PartRevisionsApi
7066
7440
  */
7067
- getPartRevision(requestParameters: PartRevisionsApiGetPartRevisionRequest, options?: any): Promise<import("axios").AxiosResponse<PartRevision>>;
7441
+ getPartRevision(requestParameters: PartRevisionsApiGetPartRevisionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PartRevision, any>>;
7068
7442
  /**
7069
7443
  * Get `part-revisions` for a `part`.
7070
7444
  * @param {PartRevisionsApiGetPartRevisionsRequest} requestParameters Request parameters.
@@ -7072,7 +7446,7 @@ export declare class PartRevisionsApi extends BaseAPI {
7072
7446
  * @throws {RequiredError}
7073
7447
  * @memberof PartRevisionsApi
7074
7448
  */
7075
- getPartRevisions(requestParameters: PartRevisionsApiGetPartRevisionsRequest, options?: any): Promise<import("axios").AxiosResponse<PartRevisionList>>;
7449
+ getPartRevisions(requestParameters: PartRevisionsApiGetPartRevisionsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PartRevisionList, any>>;
7076
7450
  /**
7077
7451
  * Get a `queued-part-revision-deletion` by ID.
7078
7452
  * @param {PartRevisionsApiGetQueuedPartRevisionDeletionRequest} requestParameters Request parameters.
@@ -7080,7 +7454,7 @@ export declare class PartRevisionsApi extends BaseAPI {
7080
7454
  * @throws {RequiredError}
7081
7455
  * @memberof PartRevisionsApi
7082
7456
  */
7083
- getQueuedPartRevisionDeletion(requestParameters: PartRevisionsApiGetQueuedPartRevisionDeletionRequest, options?: any): Promise<import("axios").AxiosResponse<QueuedJob>>;
7457
+ getQueuedPartRevisionDeletion(requestParameters: PartRevisionsApiGetQueuedPartRevisionDeletionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
7084
7458
  /**
7085
7459
  * Get a rendered image of a `part-revision`.
7086
7460
  * @param {PartRevisionsApiRenderPartRevisionRequest} requestParameters Request parameters.
@@ -7088,7 +7462,7 @@ export declare class PartRevisionsApi extends BaseAPI {
7088
7462
  * @throws {RequiredError}
7089
7463
  * @memberof PartRevisionsApi
7090
7464
  */
7091
- renderPartRevision(requestParameters: PartRevisionsApiRenderPartRevisionRequest, options?: any): Promise<import("axios").AxiosResponse<any>>;
7465
+ renderPartRevision(requestParameters: PartRevisionsApiRenderPartRevisionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
7092
7466
  /**
7093
7467
  * Update a `part-revision`. Note that metadata updates are eventually consistent.
7094
7468
  * @param {PartRevisionsApiUpdatePartRevisionRequest} requestParameters Request parameters.
@@ -7096,7 +7470,7 @@ export declare class PartRevisionsApi extends BaseAPI {
7096
7470
  * @throws {RequiredError}
7097
7471
  * @memberof PartRevisionsApi
7098
7472
  */
7099
- updatePartRevision(requestParameters: PartRevisionsApiUpdatePartRevisionRequest, options?: any): Promise<import("axios").AxiosResponse<PartRevision>>;
7473
+ updatePartRevision(requestParameters: PartRevisionsApiUpdatePartRevisionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PartRevision, any>>;
7100
7474
  }
7101
7475
  /**
7102
7476
  * PartsApi - axios parameter creator
@@ -7109,14 +7483,14 @@ export declare const PartsApiAxiosParamCreator: (configuration?: Configuration |
7109
7483
  * @param {*} [options] Override http request option.
7110
7484
  * @throws {RequiredError}
7111
7485
  */
7112
- createPart: (createPartRequest: CreatePartRequest, options?: any) => Promise<RequestArgs>;
7486
+ createPart: (createPartRequest: CreatePartRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7113
7487
  /**
7114
7488
  * Delete a `part`.
7115
7489
  * @param {string} id The &#x60;part&#x60; ID.
7116
7490
  * @param {*} [options] Override http request option.
7117
7491
  * @throws {RequiredError}
7118
7492
  */
7119
- deletePart: (id: string, options?: any) => Promise<RequestArgs>;
7493
+ deletePart: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7120
7494
  /**
7121
7495
  * Get a `part` by ID.
7122
7496
  * @param {string} id The &#x60;part&#x60; ID.
@@ -7124,7 +7498,7 @@ export declare const PartsApiAxiosParamCreator: (configuration?: Configuration |
7124
7498
  * @param {*} [options] Override http request option.
7125
7499
  * @throws {RequiredError}
7126
7500
  */
7127
- getPart: (id: string, include?: string | undefined, options?: any) => Promise<RequestArgs>;
7501
+ getPart: (id: string, include?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7128
7502
  /**
7129
7503
  * Get `parts`.
7130
7504
  * @param {string} [pageCursor] The cursor for the next page of items.
@@ -7133,14 +7507,14 @@ export declare const PartsApiAxiosParamCreator: (configuration?: Configuration |
7133
7507
  * @param {*} [options] Override http request option.
7134
7508
  * @throws {RequiredError}
7135
7509
  */
7136
- getParts: (pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: any) => Promise<RequestArgs>;
7510
+ getParts: (pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7137
7511
  /**
7138
7512
  * Get a `queued-part-deletion` by ID.
7139
7513
  * @param {string} id The &#x60;queued-part-deletion&#x60; ID.
7140
7514
  * @param {*} [options] Override http request option.
7141
7515
  * @throws {RequiredError}
7142
7516
  */
7143
- getQueuedPartDeletion: (id: string, options?: any) => Promise<RequestArgs>;
7517
+ getQueuedPartDeletion: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7144
7518
  };
7145
7519
  /**
7146
7520
  * PartsApi - functional programming interface
@@ -7153,14 +7527,14 @@ export declare const PartsApiFp: (configuration?: Configuration | undefined) =>
7153
7527
  * @param {*} [options] Override http request option.
7154
7528
  * @throws {RequiredError}
7155
7529
  */
7156
- createPart(createPartRequest: CreatePartRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
7530
+ createPart(createPartRequest: CreatePartRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
7157
7531
  /**
7158
7532
  * Delete a `part`.
7159
7533
  * @param {string} id The &#x60;part&#x60; ID.
7160
7534
  * @param {*} [options] Override http request option.
7161
7535
  * @throws {RequiredError}
7162
7536
  */
7163
- deletePart(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
7537
+ deletePart(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
7164
7538
  /**
7165
7539
  * Get a `part` by ID.
7166
7540
  * @param {string} id The &#x60;part&#x60; ID.
@@ -7168,7 +7542,7 @@ export declare const PartsApiFp: (configuration?: Configuration | undefined) =>
7168
7542
  * @param {*} [options] Override http request option.
7169
7543
  * @throws {RequiredError}
7170
7544
  */
7171
- getPart(id: string, include?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Part>>;
7545
+ getPart(id: string, include?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Part>>;
7172
7546
  /**
7173
7547
  * Get `parts`.
7174
7548
  * @param {string} [pageCursor] The cursor for the next page of items.
@@ -7177,14 +7551,14 @@ export declare const PartsApiFp: (configuration?: Configuration | undefined) =>
7177
7551
  * @param {*} [options] Override http request option.
7178
7552
  * @throws {RequiredError}
7179
7553
  */
7180
- getParts(pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PartList>>;
7554
+ getParts(pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PartList>>;
7181
7555
  /**
7182
7556
  * Get a `queued-part-deletion` by ID.
7183
7557
  * @param {string} id The &#x60;queued-part-deletion&#x60; ID.
7184
7558
  * @param {*} [options] Override http request option.
7185
7559
  * @throws {RequiredError}
7186
7560
  */
7187
- getQueuedPartDeletion(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
7561
+ getQueuedPartDeletion(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
7188
7562
  };
7189
7563
  /**
7190
7564
  * PartsApi - factory interface
@@ -7327,7 +7701,7 @@ export declare class PartsApi extends BaseAPI {
7327
7701
  * @throws {RequiredError}
7328
7702
  * @memberof PartsApi
7329
7703
  */
7330
- createPart(requestParameters: PartsApiCreatePartRequest, options?: any): Promise<import("axios").AxiosResponse<QueuedJob>>;
7704
+ createPart(requestParameters: PartsApiCreatePartRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
7331
7705
  /**
7332
7706
  * Delete a `part`.
7333
7707
  * @param {PartsApiDeletePartRequest} requestParameters Request parameters.
@@ -7335,7 +7709,7 @@ export declare class PartsApi extends BaseAPI {
7335
7709
  * @throws {RequiredError}
7336
7710
  * @memberof PartsApi
7337
7711
  */
7338
- deletePart(requestParameters: PartsApiDeletePartRequest, options?: any): Promise<import("axios").AxiosResponse<QueuedJob>>;
7712
+ deletePart(requestParameters: PartsApiDeletePartRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
7339
7713
  /**
7340
7714
  * Get a `part` by ID.
7341
7715
  * @param {PartsApiGetPartRequest} requestParameters Request parameters.
@@ -7343,7 +7717,7 @@ export declare class PartsApi extends BaseAPI {
7343
7717
  * @throws {RequiredError}
7344
7718
  * @memberof PartsApi
7345
7719
  */
7346
- getPart(requestParameters: PartsApiGetPartRequest, options?: any): Promise<import("axios").AxiosResponse<Part>>;
7720
+ getPart(requestParameters: PartsApiGetPartRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Part, any>>;
7347
7721
  /**
7348
7722
  * Get `parts`.
7349
7723
  * @param {PartsApiGetPartsRequest} requestParameters Request parameters.
@@ -7351,7 +7725,7 @@ export declare class PartsApi extends BaseAPI {
7351
7725
  * @throws {RequiredError}
7352
7726
  * @memberof PartsApi
7353
7727
  */
7354
- getParts(requestParameters?: PartsApiGetPartsRequest, options?: any): Promise<import("axios").AxiosResponse<PartList>>;
7728
+ getParts(requestParameters?: PartsApiGetPartsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PartList, any>>;
7355
7729
  /**
7356
7730
  * Get a `queued-part-deletion` by ID.
7357
7731
  * @param {PartsApiGetQueuedPartDeletionRequest} requestParameters Request parameters.
@@ -7359,7 +7733,7 @@ export declare class PartsApi extends BaseAPI {
7359
7733
  * @throws {RequiredError}
7360
7734
  * @memberof PartsApi
7361
7735
  */
7362
- getQueuedPartDeletion(requestParameters: PartsApiGetQueuedPartDeletionRequest, options?: any): Promise<import("axios").AxiosResponse<QueuedJob>>;
7736
+ getQueuedPartDeletion(requestParameters: PartsApiGetQueuedPartDeletionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
7363
7737
  }
7364
7738
  /**
7365
7739
  * SceneAlterationsApi - axios parameter creator
@@ -7373,28 +7747,28 @@ export declare const SceneAlterationsApiAxiosParamCreator: (configuration?: Conf
7373
7747
  * @param {*} [options] Override http request option.
7374
7748
  * @throws {RequiredError}
7375
7749
  */
7376
- createSceneAlteration: (id: string, createSceneAlterationRequest: CreateSceneAlterationRequest, options?: any) => Promise<RequestArgs>;
7750
+ createSceneAlteration: (id: string, createSceneAlterationRequest: CreateSceneAlterationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7377
7751
  /**
7378
7752
  * Get a `queued-scene-alteration` by ID.
7379
7753
  * @param {string} id The &#x60;queued-scene-alteration&#x60; ID.
7380
7754
  * @param {*} [options] Override http request option.
7381
7755
  * @throws {RequiredError}
7382
7756
  */
7383
- getQueuedSceneAlteration: (id: string, options?: any) => Promise<RequestArgs>;
7757
+ getQueuedSceneAlteration: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7384
7758
  /**
7385
7759
  * Get a `scene-alteration` by ID.
7386
7760
  * @param {string} id The &#x60;scene-alteration&#x60; ID.
7387
7761
  * @param {*} [options] Override http request option.
7388
7762
  * @throws {RequiredError}
7389
7763
  */
7390
- getSceneAlteration: (id: string, options?: any) => Promise<RequestArgs>;
7764
+ getSceneAlteration: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7391
7765
  /**
7392
7766
  * Get `scene-alterations` for a `scene-view`.
7393
7767
  * @param {string} id The &#x60;scene-view&#x60; ID.
7394
7768
  * @param {*} [options] Override http request option.
7395
7769
  * @throws {RequiredError}
7396
7770
  */
7397
- getSceneAlterations: (id: string, options?: any) => Promise<RequestArgs>;
7771
+ getSceneAlterations: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7398
7772
  };
7399
7773
  /**
7400
7774
  * SceneAlterationsApi - functional programming interface
@@ -7408,28 +7782,28 @@ export declare const SceneAlterationsApiFp: (configuration?: Configuration | und
7408
7782
  * @param {*} [options] Override http request option.
7409
7783
  * @throws {RequiredError}
7410
7784
  */
7411
- createSceneAlteration(id: string, createSceneAlterationRequest: CreateSceneAlterationRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
7785
+ createSceneAlteration(id: string, createSceneAlterationRequest: CreateSceneAlterationRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
7412
7786
  /**
7413
7787
  * Get a `queued-scene-alteration` by ID.
7414
7788
  * @param {string} id The &#x60;queued-scene-alteration&#x60; ID.
7415
7789
  * @param {*} [options] Override http request option.
7416
7790
  * @throws {RequiredError}
7417
7791
  */
7418
- getQueuedSceneAlteration(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
7792
+ getQueuedSceneAlteration(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
7419
7793
  /**
7420
7794
  * Get a `scene-alteration` by ID.
7421
7795
  * @param {string} id The &#x60;scene-alteration&#x60; ID.
7422
7796
  * @param {*} [options] Override http request option.
7423
7797
  * @throws {RequiredError}
7424
7798
  */
7425
- getSceneAlteration(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneAlteration>>;
7799
+ getSceneAlteration(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneAlteration>>;
7426
7800
  /**
7427
7801
  * Get `scene-alterations` for a `scene-view`.
7428
7802
  * @param {string} id The &#x60;scene-view&#x60; ID.
7429
7803
  * @param {*} [options] Override http request option.
7430
7804
  * @throws {RequiredError}
7431
7805
  */
7432
- getSceneAlterations(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneAlterationList>>;
7806
+ getSceneAlterations(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneAlterationList>>;
7433
7807
  };
7434
7808
  /**
7435
7809
  * SceneAlterationsApi - factory interface
@@ -7538,7 +7912,7 @@ export declare class SceneAlterationsApi extends BaseAPI {
7538
7912
  * @throws {RequiredError}
7539
7913
  * @memberof SceneAlterationsApi
7540
7914
  */
7541
- createSceneAlteration(requestParameters: SceneAlterationsApiCreateSceneAlterationRequest, options?: any): Promise<import("axios").AxiosResponse<QueuedJob>>;
7915
+ createSceneAlteration(requestParameters: SceneAlterationsApiCreateSceneAlterationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
7542
7916
  /**
7543
7917
  * Get a `queued-scene-alteration` by ID.
7544
7918
  * @param {SceneAlterationsApiGetQueuedSceneAlterationRequest} requestParameters Request parameters.
@@ -7546,7 +7920,7 @@ export declare class SceneAlterationsApi extends BaseAPI {
7546
7920
  * @throws {RequiredError}
7547
7921
  * @memberof SceneAlterationsApi
7548
7922
  */
7549
- getQueuedSceneAlteration(requestParameters: SceneAlterationsApiGetQueuedSceneAlterationRequest, options?: any): Promise<import("axios").AxiosResponse<QueuedJob>>;
7923
+ getQueuedSceneAlteration(requestParameters: SceneAlterationsApiGetQueuedSceneAlterationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
7550
7924
  /**
7551
7925
  * Get a `scene-alteration` by ID.
7552
7926
  * @param {SceneAlterationsApiGetSceneAlterationRequest} requestParameters Request parameters.
@@ -7554,7 +7928,7 @@ export declare class SceneAlterationsApi extends BaseAPI {
7554
7928
  * @throws {RequiredError}
7555
7929
  * @memberof SceneAlterationsApi
7556
7930
  */
7557
- getSceneAlteration(requestParameters: SceneAlterationsApiGetSceneAlterationRequest, options?: any): Promise<import("axios").AxiosResponse<SceneAlteration>>;
7931
+ getSceneAlteration(requestParameters: SceneAlterationsApiGetSceneAlterationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneAlteration, any>>;
7558
7932
  /**
7559
7933
  * Get `scene-alterations` for a `scene-view`.
7560
7934
  * @param {SceneAlterationsApiGetSceneAlterationsRequest} requestParameters Request parameters.
@@ -7562,7 +7936,7 @@ export declare class SceneAlterationsApi extends BaseAPI {
7562
7936
  * @throws {RequiredError}
7563
7937
  * @memberof SceneAlterationsApi
7564
7938
  */
7565
- getSceneAlterations(requestParameters: SceneAlterationsApiGetSceneAlterationsRequest, options?: any): Promise<import("axios").AxiosResponse<SceneAlterationList>>;
7939
+ getSceneAlterations(requestParameters: SceneAlterationsApiGetSceneAlterationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneAlterationList, any>>;
7566
7940
  }
7567
7941
  /**
7568
7942
  * SceneItemOverridesApi - axios parameter creator
@@ -7576,21 +7950,21 @@ export declare const SceneItemOverridesApiAxiosParamCreator: (configuration?: Co
7576
7950
  * @param {*} [options] Override http request option.
7577
7951
  * @throws {RequiredError}
7578
7952
  */
7579
- createSceneItemOverride: (id: string, createSceneItemOverrideRequest: CreateSceneItemOverrideRequest, options?: any) => Promise<RequestArgs>;
7953
+ createSceneItemOverride: (id: string, createSceneItemOverrideRequest: CreateSceneItemOverrideRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7580
7954
  /**
7581
7955
  * Delete a `scene-item-override`.
7582
7956
  * @param {string} id The &#x60;scene-item-override&#x60; ID.
7583
7957
  * @param {*} [options] Override http request option.
7584
7958
  * @throws {RequiredError}
7585
7959
  */
7586
- deleteSceneItemOverride: (id: string, options?: any) => Promise<RequestArgs>;
7960
+ deleteSceneItemOverride: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7587
7961
  /**
7588
7962
  * Get `scene-item-overrides` for a `scene-view`.
7589
7963
  * @param {string} id The &#x60;scene-view&#x60; ID.
7590
7964
  * @param {*} [options] Override http request option.
7591
7965
  * @throws {RequiredError}
7592
7966
  */
7593
- getSceneItemOverrides: (id: string, options?: any) => Promise<RequestArgs>;
7967
+ getSceneItemOverrides: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7594
7968
  /**
7595
7969
  * Update a `scene-item-override`.
7596
7970
  * @param {string} id The &#x60;scene-item-override&#x60; ID.
@@ -7598,7 +7972,7 @@ export declare const SceneItemOverridesApiAxiosParamCreator: (configuration?: Co
7598
7972
  * @param {*} [options] Override http request option.
7599
7973
  * @throws {RequiredError}
7600
7974
  */
7601
- updateSceneItemOverride: (id: string, updateSceneItemOverrideRequest: UpdateSceneItemOverrideRequest, options?: any) => Promise<RequestArgs>;
7975
+ updateSceneItemOverride: (id: string, updateSceneItemOverrideRequest: UpdateSceneItemOverrideRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7602
7976
  };
7603
7977
  /**
7604
7978
  * SceneItemOverridesApi - functional programming interface
@@ -7612,21 +7986,21 @@ export declare const SceneItemOverridesApiFp: (configuration?: Configuration | u
7612
7986
  * @param {*} [options] Override http request option.
7613
7987
  * @throws {RequiredError}
7614
7988
  */
7615
- createSceneItemOverride(id: string, createSceneItemOverrideRequest: CreateSceneItemOverrideRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneItemOverride>>;
7989
+ createSceneItemOverride(id: string, createSceneItemOverrideRequest: CreateSceneItemOverrideRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneItemOverride>>;
7616
7990
  /**
7617
7991
  * Delete a `scene-item-override`.
7618
7992
  * @param {string} id The &#x60;scene-item-override&#x60; ID.
7619
7993
  * @param {*} [options] Override http request option.
7620
7994
  * @throws {RequiredError}
7621
7995
  */
7622
- deleteSceneItemOverride(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
7996
+ deleteSceneItemOverride(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
7623
7997
  /**
7624
7998
  * Get `scene-item-overrides` for a `scene-view`.
7625
7999
  * @param {string} id The &#x60;scene-view&#x60; ID.
7626
8000
  * @param {*} [options] Override http request option.
7627
8001
  * @throws {RequiredError}
7628
8002
  */
7629
- getSceneItemOverrides(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneItemOverrideList>>;
8003
+ getSceneItemOverrides(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneItemOverrideList>>;
7630
8004
  /**
7631
8005
  * Update a `scene-item-override`.
7632
8006
  * @param {string} id The &#x60;scene-item-override&#x60; ID.
@@ -7634,7 +8008,7 @@ export declare const SceneItemOverridesApiFp: (configuration?: Configuration | u
7634
8008
  * @param {*} [options] Override http request option.
7635
8009
  * @throws {RequiredError}
7636
8010
  */
7637
- updateSceneItemOverride(id: string, updateSceneItemOverrideRequest: UpdateSceneItemOverrideRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneItemOverride>>;
8011
+ updateSceneItemOverride(id: string, updateSceneItemOverrideRequest: UpdateSceneItemOverrideRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneItemOverride>>;
7638
8012
  };
7639
8013
  /**
7640
8014
  * SceneItemOverridesApi - factory interface
@@ -7750,7 +8124,7 @@ export declare class SceneItemOverridesApi extends BaseAPI {
7750
8124
  * @throws {RequiredError}
7751
8125
  * @memberof SceneItemOverridesApi
7752
8126
  */
7753
- createSceneItemOverride(requestParameters: SceneItemOverridesApiCreateSceneItemOverrideRequest, options?: any): Promise<import("axios").AxiosResponse<SceneItemOverride>>;
8127
+ createSceneItemOverride(requestParameters: SceneItemOverridesApiCreateSceneItemOverrideRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneItemOverride, any>>;
7754
8128
  /**
7755
8129
  * Delete a `scene-item-override`.
7756
8130
  * @param {SceneItemOverridesApiDeleteSceneItemOverrideRequest} requestParameters Request parameters.
@@ -7758,7 +8132,7 @@ export declare class SceneItemOverridesApi extends BaseAPI {
7758
8132
  * @throws {RequiredError}
7759
8133
  * @memberof SceneItemOverridesApi
7760
8134
  */
7761
- deleteSceneItemOverride(requestParameters: SceneItemOverridesApiDeleteSceneItemOverrideRequest, options?: any): Promise<import("axios").AxiosResponse<void>>;
8135
+ deleteSceneItemOverride(requestParameters: SceneItemOverridesApiDeleteSceneItemOverrideRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
7762
8136
  /**
7763
8137
  * Get `scene-item-overrides` for a `scene-view`.
7764
8138
  * @param {SceneItemOverridesApiGetSceneItemOverridesRequest} requestParameters Request parameters.
@@ -7766,7 +8140,7 @@ export declare class SceneItemOverridesApi extends BaseAPI {
7766
8140
  * @throws {RequiredError}
7767
8141
  * @memberof SceneItemOverridesApi
7768
8142
  */
7769
- getSceneItemOverrides(requestParameters: SceneItemOverridesApiGetSceneItemOverridesRequest, options?: any): Promise<import("axios").AxiosResponse<SceneItemOverrideList>>;
8143
+ getSceneItemOverrides(requestParameters: SceneItemOverridesApiGetSceneItemOverridesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneItemOverrideList, any>>;
7770
8144
  /**
7771
8145
  * Update a `scene-item-override`.
7772
8146
  * @param {SceneItemOverridesApiUpdateSceneItemOverrideRequest} requestParameters Request parameters.
@@ -7774,7 +8148,7 @@ export declare class SceneItemOverridesApi extends BaseAPI {
7774
8148
  * @throws {RequiredError}
7775
8149
  * @memberof SceneItemOverridesApi
7776
8150
  */
7777
- updateSceneItemOverride(requestParameters: SceneItemOverridesApiUpdateSceneItemOverrideRequest, options?: any): Promise<import("axios").AxiosResponse<SceneItemOverride>>;
8151
+ updateSceneItemOverride(requestParameters: SceneItemOverridesApiUpdateSceneItemOverrideRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneItemOverride, any>>;
7778
8152
  }
7779
8153
  /**
7780
8154
  * SceneItemsApi - axios parameter creator
@@ -7788,28 +8162,28 @@ export declare const SceneItemsApiAxiosParamCreator: (configuration?: Configurat
7788
8162
  * @param {*} [options] Override http request option.
7789
8163
  * @throws {RequiredError}
7790
8164
  */
7791
- createSceneItem: (id: string, createSceneItemRequest: CreateSceneItemRequest, options?: any) => Promise<RequestArgs>;
8165
+ createSceneItem: (id: string, createSceneItemRequest: CreateSceneItemRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7792
8166
  /**
7793
8167
  * Delete a `scene-item`.
7794
8168
  * @param {string} id The &#x60;scene-item&#x60; ID.
7795
8169
  * @param {*} [options] Override http request option.
7796
8170
  * @throws {RequiredError}
7797
8171
  */
7798
- deleteSceneItem: (id: string, options?: any) => Promise<RequestArgs>;
8172
+ deleteSceneItem: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7799
8173
  /**
7800
8174
  * Get a `queued-scene-item`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `scene-item`. Once created, commit the scene via the updateScene API. For details, see our [Render static scenes](https://developer.vertexvis.com/docs/guides/render-static-scenes) guide.
7801
8175
  * @param {string} id The &#x60;queued-scene-item&#x60; ID.
7802
8176
  * @param {*} [options] Override http request option.
7803
8177
  * @throws {RequiredError}
7804
8178
  */
7805
- getQueuedSceneItem: (id: string, options?: any) => Promise<RequestArgs>;
8179
+ getQueuedSceneItem: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7806
8180
  /**
7807
8181
  * Get a `queued-scene-item-deletion` by ID.
7808
8182
  * @param {string} id The &#x60;queued-scene-item-deletion&#x60; ID.
7809
8183
  * @param {*} [options] Override http request option.
7810
8184
  * @throws {RequiredError}
7811
8185
  */
7812
- getQueuedSceneItemDeletion: (id: string, options?: any) => Promise<RequestArgs>;
8186
+ getQueuedSceneItemDeletion: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7813
8187
  /**
7814
8188
  * Get a `scene-item` by ID.
7815
8189
  * @param {string} id The &#x60;scene-item&#x60; ID.
@@ -7817,7 +8191,7 @@ export declare const SceneItemsApiAxiosParamCreator: (configuration?: Configurat
7817
8191
  * @param {*} [options] Override http request option.
7818
8192
  * @throws {RequiredError}
7819
8193
  */
7820
- getSceneItem: (id: string, fieldsSceneItem?: string | undefined, options?: any) => Promise<RequestArgs>;
8194
+ getSceneItem: (id: string, fieldsSceneItem?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7821
8195
  /**
7822
8196
  * Get `scene-items` for a `scene`.
7823
8197
  * @param {string} id The &#x60;scene&#x60; ID.
@@ -7829,7 +8203,7 @@ export declare const SceneItemsApiAxiosParamCreator: (configuration?: Configurat
7829
8203
  * @param {*} [options] Override http request option.
7830
8204
  * @throws {RequiredError}
7831
8205
  */
7832
- getSceneItems: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, filterSource?: string | undefined, filterSuppliedId?: string | undefined, filterParent?: string | undefined, options?: any) => Promise<RequestArgs>;
8206
+ getSceneItems: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, filterSource?: string | undefined, filterSuppliedId?: string | undefined, filterParent?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7833
8207
  /**
7834
8208
  * Update a `scene-item`.
7835
8209
  * @param {string} id The &#x60;scene-item&#x60; ID.
@@ -7837,7 +8211,7 @@ export declare const SceneItemsApiAxiosParamCreator: (configuration?: Configurat
7837
8211
  * @param {*} [options] Override http request option.
7838
8212
  * @throws {RequiredError}
7839
8213
  */
7840
- updateSceneItem: (id: string, updateSceneItemRequest: UpdateSceneItemRequest, options?: any) => Promise<RequestArgs>;
8214
+ updateSceneItem: (id: string, updateSceneItemRequest: UpdateSceneItemRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
7841
8215
  };
7842
8216
  /**
7843
8217
  * SceneItemsApi - functional programming interface
@@ -7851,28 +8225,28 @@ export declare const SceneItemsApiFp: (configuration?: Configuration | undefined
7851
8225
  * @param {*} [options] Override http request option.
7852
8226
  * @throws {RequiredError}
7853
8227
  */
7854
- createSceneItem(id: string, createSceneItemRequest: CreateSceneItemRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
8228
+ createSceneItem(id: string, createSceneItemRequest: CreateSceneItemRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
7855
8229
  /**
7856
8230
  * Delete a `scene-item`.
7857
8231
  * @param {string} id The &#x60;scene-item&#x60; ID.
7858
8232
  * @param {*} [options] Override http request option.
7859
8233
  * @throws {RequiredError}
7860
8234
  */
7861
- deleteSceneItem(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
8235
+ deleteSceneItem(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
7862
8236
  /**
7863
8237
  * Get a `queued-scene-item`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `scene-item`. Once created, commit the scene via the updateScene API. For details, see our [Render static scenes](https://developer.vertexvis.com/docs/guides/render-static-scenes) guide.
7864
8238
  * @param {string} id The &#x60;queued-scene-item&#x60; ID.
7865
8239
  * @param {*} [options] Override http request option.
7866
8240
  * @throws {RequiredError}
7867
8241
  */
7868
- getQueuedSceneItem(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
8242
+ getQueuedSceneItem(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
7869
8243
  /**
7870
8244
  * Get a `queued-scene-item-deletion` by ID.
7871
8245
  * @param {string} id The &#x60;queued-scene-item-deletion&#x60; ID.
7872
8246
  * @param {*} [options] Override http request option.
7873
8247
  * @throws {RequiredError}
7874
8248
  */
7875
- getQueuedSceneItemDeletion(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
8249
+ getQueuedSceneItemDeletion(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
7876
8250
  /**
7877
8251
  * Get a `scene-item` by ID.
7878
8252
  * @param {string} id The &#x60;scene-item&#x60; ID.
@@ -7880,7 +8254,7 @@ export declare const SceneItemsApiFp: (configuration?: Configuration | undefined
7880
8254
  * @param {*} [options] Override http request option.
7881
8255
  * @throws {RequiredError}
7882
8256
  */
7883
- getSceneItem(id: string, fieldsSceneItem?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneItem>>;
8257
+ getSceneItem(id: string, fieldsSceneItem?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneItem>>;
7884
8258
  /**
7885
8259
  * Get `scene-items` for a `scene`.
7886
8260
  * @param {string} id The &#x60;scene&#x60; ID.
@@ -7892,7 +8266,7 @@ export declare const SceneItemsApiFp: (configuration?: Configuration | undefined
7892
8266
  * @param {*} [options] Override http request option.
7893
8267
  * @throws {RequiredError}
7894
8268
  */
7895
- getSceneItems(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, filterSource?: string | undefined, filterSuppliedId?: string | undefined, filterParent?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneItemList>>;
8269
+ getSceneItems(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, filterSource?: string | undefined, filterSuppliedId?: string | undefined, filterParent?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneItemList>>;
7896
8270
  /**
7897
8271
  * Update a `scene-item`.
7898
8272
  * @param {string} id The &#x60;scene-item&#x60; ID.
@@ -7900,7 +8274,7 @@ export declare const SceneItemsApiFp: (configuration?: Configuration | undefined
7900
8274
  * @param {*} [options] Override http request option.
7901
8275
  * @throws {RequiredError}
7902
8276
  */
7903
- updateSceneItem(id: string, updateSceneItemRequest: UpdateSceneItemRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
8277
+ updateSceneItem(id: string, updateSceneItemRequest: UpdateSceneItemRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
7904
8278
  };
7905
8279
  /**
7906
8280
  * SceneItemsApi - factory interface
@@ -8118,7 +8492,7 @@ export declare class SceneItemsApi extends BaseAPI {
8118
8492
  * @throws {RequiredError}
8119
8493
  * @memberof SceneItemsApi
8120
8494
  */
8121
- createSceneItem(requestParameters: SceneItemsApiCreateSceneItemRequest, options?: any): Promise<import("axios").AxiosResponse<QueuedJob>>;
8495
+ createSceneItem(requestParameters: SceneItemsApiCreateSceneItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
8122
8496
  /**
8123
8497
  * Delete a `scene-item`.
8124
8498
  * @param {SceneItemsApiDeleteSceneItemRequest} requestParameters Request parameters.
@@ -8126,7 +8500,7 @@ export declare class SceneItemsApi extends BaseAPI {
8126
8500
  * @throws {RequiredError}
8127
8501
  * @memberof SceneItemsApi
8128
8502
  */
8129
- deleteSceneItem(requestParameters: SceneItemsApiDeleteSceneItemRequest, options?: any): Promise<import("axios").AxiosResponse<void>>;
8503
+ deleteSceneItem(requestParameters: SceneItemsApiDeleteSceneItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
8130
8504
  /**
8131
8505
  * Get a `queued-scene-item`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `scene-item`. Once created, commit the scene via the updateScene API. For details, see our [Render static scenes](https://developer.vertexvis.com/docs/guides/render-static-scenes) guide.
8132
8506
  * @param {SceneItemsApiGetQueuedSceneItemRequest} requestParameters Request parameters.
@@ -8134,7 +8508,7 @@ export declare class SceneItemsApi extends BaseAPI {
8134
8508
  * @throws {RequiredError}
8135
8509
  * @memberof SceneItemsApi
8136
8510
  */
8137
- getQueuedSceneItem(requestParameters: SceneItemsApiGetQueuedSceneItemRequest, options?: any): Promise<import("axios").AxiosResponse<QueuedJob>>;
8511
+ getQueuedSceneItem(requestParameters: SceneItemsApiGetQueuedSceneItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
8138
8512
  /**
8139
8513
  * Get a `queued-scene-item-deletion` by ID.
8140
8514
  * @param {SceneItemsApiGetQueuedSceneItemDeletionRequest} requestParameters Request parameters.
@@ -8142,7 +8516,7 @@ export declare class SceneItemsApi extends BaseAPI {
8142
8516
  * @throws {RequiredError}
8143
8517
  * @memberof SceneItemsApi
8144
8518
  */
8145
- getQueuedSceneItemDeletion(requestParameters: SceneItemsApiGetQueuedSceneItemDeletionRequest, options?: any): Promise<import("axios").AxiosResponse<QueuedJob>>;
8519
+ getQueuedSceneItemDeletion(requestParameters: SceneItemsApiGetQueuedSceneItemDeletionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
8146
8520
  /**
8147
8521
  * Get a `scene-item` by ID.
8148
8522
  * @param {SceneItemsApiGetSceneItemRequest} requestParameters Request parameters.
@@ -8150,7 +8524,7 @@ export declare class SceneItemsApi extends BaseAPI {
8150
8524
  * @throws {RequiredError}
8151
8525
  * @memberof SceneItemsApi
8152
8526
  */
8153
- getSceneItem(requestParameters: SceneItemsApiGetSceneItemRequest, options?: any): Promise<import("axios").AxiosResponse<SceneItem>>;
8527
+ getSceneItem(requestParameters: SceneItemsApiGetSceneItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneItem, any>>;
8154
8528
  /**
8155
8529
  * Get `scene-items` for a `scene`.
8156
8530
  * @param {SceneItemsApiGetSceneItemsRequest} requestParameters Request parameters.
@@ -8158,7 +8532,7 @@ export declare class SceneItemsApi extends BaseAPI {
8158
8532
  * @throws {RequiredError}
8159
8533
  * @memberof SceneItemsApi
8160
8534
  */
8161
- getSceneItems(requestParameters: SceneItemsApiGetSceneItemsRequest, options?: any): Promise<import("axios").AxiosResponse<SceneItemList>>;
8535
+ getSceneItems(requestParameters: SceneItemsApiGetSceneItemsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneItemList, any>>;
8162
8536
  /**
8163
8537
  * Update a `scene-item`.
8164
8538
  * @param {SceneItemsApiUpdateSceneItemRequest} requestParameters Request parameters.
@@ -8166,7 +8540,7 @@ export declare class SceneItemsApi extends BaseAPI {
8166
8540
  * @throws {RequiredError}
8167
8541
  * @memberof SceneItemsApi
8168
8542
  */
8169
- updateSceneItem(requestParameters: SceneItemsApiUpdateSceneItemRequest, options?: any): Promise<import("axios").AxiosResponse<QueuedJob>>;
8543
+ updateSceneItem(requestParameters: SceneItemsApiUpdateSceneItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
8170
8544
  }
8171
8545
  /**
8172
8546
  * SceneViewStatesApi - axios parameter creator
@@ -8180,14 +8554,14 @@ export declare const SceneViewStatesApiAxiosParamCreator: (configuration?: Confi
8180
8554
  * @param {*} [options] Override http request option.
8181
8555
  * @throws {RequiredError}
8182
8556
  */
8183
- createSceneViewState: (id: string, createSceneViewStateRequest: CreateSceneViewStateRequest, options?: any) => Promise<RequestArgs>;
8557
+ createSceneViewState: (id: string, createSceneViewStateRequest: CreateSceneViewStateRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8184
8558
  /**
8185
8559
  * Delete a `scene-view-state`.
8186
8560
  * @param {string} id The &#x60;scene-view-state&#x60; ID.
8187
8561
  * @param {*} [options] Override http request option.
8188
8562
  * @throws {RequiredError}
8189
8563
  */
8190
- deleteSceneViewState: (id: string, options?: any) => Promise<RequestArgs>;
8564
+ deleteSceneViewState: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8191
8565
  /**
8192
8566
  * Get a `scene-view-state` by ID.
8193
8567
  * @param {string} id The &#x60;scene-view-state&#x60; ID.
@@ -8195,17 +8569,18 @@ export declare const SceneViewStatesApiAxiosParamCreator: (configuration?: Confi
8195
8569
  * @param {*} [options] Override http request option.
8196
8570
  * @throws {RequiredError}
8197
8571
  */
8198
- getSceneViewState: (id: string, fieldsSceneViewState?: string | undefined, options?: any) => Promise<RequestArgs>;
8572
+ getSceneViewState: (id: string, fieldsSceneViewState?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8199
8573
  /**
8200
8574
  * Get `scene-view-states` for a `scene`.
8201
8575
  * @param {string} id The &#x60;scene&#x60; ID.
8202
8576
  * @param {string} [pageCursor] The cursor for the next page of items.
8203
8577
  * @param {number} [pageSize] The number of items to return.
8204
8578
  * @param {string} [fieldsSceneViewState] Comma-separated list of fields to return in response. An empty value returns no fields. &#x60;thumbnails&#x60; is only returned if explicitly requested.
8579
+ * @param {string} [filterId] Comma-separated list of IDs to filter on.
8205
8580
  * @param {*} [options] Override http request option.
8206
8581
  * @throws {RequiredError}
8207
8582
  */
8208
- getSceneViewStates: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, fieldsSceneViewState?: string | undefined, options?: any) => Promise<RequestArgs>;
8583
+ getSceneViewStates: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, fieldsSceneViewState?: string | undefined, filterId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8209
8584
  /**
8210
8585
  * Update a `scene-view-state`.
8211
8586
  * @param {string} id The &#x60;scene-view-state&#x60; ID.
@@ -8213,7 +8588,7 @@ export declare const SceneViewStatesApiAxiosParamCreator: (configuration?: Confi
8213
8588
  * @param {*} [options] Override http request option.
8214
8589
  * @throws {RequiredError}
8215
8590
  */
8216
- updateSceneViewState: (id: string, updateSceneViewStateRequest: UpdateSceneViewStateRequest, options?: any) => Promise<RequestArgs>;
8591
+ updateSceneViewState: (id: string, updateSceneViewStateRequest: UpdateSceneViewStateRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8217
8592
  };
8218
8593
  /**
8219
8594
  * SceneViewStatesApi - functional programming interface
@@ -8227,14 +8602,14 @@ export declare const SceneViewStatesApiFp: (configuration?: Configuration | unde
8227
8602
  * @param {*} [options] Override http request option.
8228
8603
  * @throws {RequiredError}
8229
8604
  */
8230
- createSceneViewState(id: string, createSceneViewStateRequest: CreateSceneViewStateRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewState>>;
8605
+ createSceneViewState(id: string, createSceneViewStateRequest: CreateSceneViewStateRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewState>>;
8231
8606
  /**
8232
8607
  * Delete a `scene-view-state`.
8233
8608
  * @param {string} id The &#x60;scene-view-state&#x60; ID.
8234
8609
  * @param {*} [options] Override http request option.
8235
8610
  * @throws {RequiredError}
8236
8611
  */
8237
- deleteSceneViewState(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
8612
+ deleteSceneViewState(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
8238
8613
  /**
8239
8614
  * Get a `scene-view-state` by ID.
8240
8615
  * @param {string} id The &#x60;scene-view-state&#x60; ID.
@@ -8242,17 +8617,18 @@ export declare const SceneViewStatesApiFp: (configuration?: Configuration | unde
8242
8617
  * @param {*} [options] Override http request option.
8243
8618
  * @throws {RequiredError}
8244
8619
  */
8245
- getSceneViewState(id: string, fieldsSceneViewState?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewState>>;
8620
+ getSceneViewState(id: string, fieldsSceneViewState?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewState>>;
8246
8621
  /**
8247
8622
  * Get `scene-view-states` for a `scene`.
8248
8623
  * @param {string} id The &#x60;scene&#x60; ID.
8249
8624
  * @param {string} [pageCursor] The cursor for the next page of items.
8250
8625
  * @param {number} [pageSize] The number of items to return.
8251
8626
  * @param {string} [fieldsSceneViewState] Comma-separated list of fields to return in response. An empty value returns no fields. &#x60;thumbnails&#x60; is only returned if explicitly requested.
8627
+ * @param {string} [filterId] Comma-separated list of IDs to filter on.
8252
8628
  * @param {*} [options] Override http request option.
8253
8629
  * @throws {RequiredError}
8254
8630
  */
8255
- getSceneViewStates(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, fieldsSceneViewState?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewStateList>>;
8631
+ getSceneViewStates(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, fieldsSceneViewState?: string | undefined, filterId?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewStateList>>;
8256
8632
  /**
8257
8633
  * Update a `scene-view-state`.
8258
8634
  * @param {string} id The &#x60;scene-view-state&#x60; ID.
@@ -8260,7 +8636,7 @@ export declare const SceneViewStatesApiFp: (configuration?: Configuration | unde
8260
8636
  * @param {*} [options] Override http request option.
8261
8637
  * @throws {RequiredError}
8262
8638
  */
8263
- updateSceneViewState(id: string, updateSceneViewStateRequest: UpdateSceneViewStateRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewState>>;
8639
+ updateSceneViewState(id: string, updateSceneViewStateRequest: UpdateSceneViewStateRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewState>>;
8264
8640
  };
8265
8641
  /**
8266
8642
  * SceneViewStatesApi - factory interface
@@ -8296,10 +8672,11 @@ export declare const SceneViewStatesApiFactory: (configuration?: Configuration |
8296
8672
  * @param {string} [pageCursor] The cursor for the next page of items.
8297
8673
  * @param {number} [pageSize] The number of items to return.
8298
8674
  * @param {string} [fieldsSceneViewState] Comma-separated list of fields to return in response. An empty value returns no fields. &#x60;thumbnails&#x60; is only returned if explicitly requested.
8675
+ * @param {string} [filterId] Comma-separated list of IDs to filter on.
8299
8676
  * @param {*} [options] Override http request option.
8300
8677
  * @throws {RequiredError}
8301
8678
  */
8302
- getSceneViewStates(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, fieldsSceneViewState?: string | undefined, options?: any): AxiosPromise<SceneViewStateList>;
8679
+ getSceneViewStates(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, fieldsSceneViewState?: string | undefined, filterId?: string | undefined, options?: any): AxiosPromise<SceneViewStateList>;
8303
8680
  /**
8304
8681
  * Update a `scene-view-state`.
8305
8682
  * @param {string} id The &#x60;scene-view-state&#x60; ID.
@@ -8390,6 +8767,12 @@ export interface SceneViewStatesApiGetSceneViewStatesRequest {
8390
8767
  * @memberof SceneViewStatesApiGetSceneViewStates
8391
8768
  */
8392
8769
  readonly fieldsSceneViewState?: string;
8770
+ /**
8771
+ * Comma-separated list of IDs to filter on.
8772
+ * @type {string}
8773
+ * @memberof SceneViewStatesApiGetSceneViewStates
8774
+ */
8775
+ readonly filterId?: string;
8393
8776
  }
8394
8777
  /**
8395
8778
  * Request parameters for updateSceneViewState operation in SceneViewStatesApi.
@@ -8424,7 +8807,7 @@ export declare class SceneViewStatesApi extends BaseAPI {
8424
8807
  * @throws {RequiredError}
8425
8808
  * @memberof SceneViewStatesApi
8426
8809
  */
8427
- createSceneViewState(requestParameters: SceneViewStatesApiCreateSceneViewStateRequest, options?: any): Promise<import("axios").AxiosResponse<SceneViewState>>;
8810
+ createSceneViewState(requestParameters: SceneViewStatesApiCreateSceneViewStateRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneViewState, any>>;
8428
8811
  /**
8429
8812
  * Delete a `scene-view-state`.
8430
8813
  * @param {SceneViewStatesApiDeleteSceneViewStateRequest} requestParameters Request parameters.
@@ -8432,7 +8815,7 @@ export declare class SceneViewStatesApi extends BaseAPI {
8432
8815
  * @throws {RequiredError}
8433
8816
  * @memberof SceneViewStatesApi
8434
8817
  */
8435
- deleteSceneViewState(requestParameters: SceneViewStatesApiDeleteSceneViewStateRequest, options?: any): Promise<import("axios").AxiosResponse<void>>;
8818
+ deleteSceneViewState(requestParameters: SceneViewStatesApiDeleteSceneViewStateRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
8436
8819
  /**
8437
8820
  * Get a `scene-view-state` by ID.
8438
8821
  * @param {SceneViewStatesApiGetSceneViewStateRequest} requestParameters Request parameters.
@@ -8440,7 +8823,7 @@ export declare class SceneViewStatesApi extends BaseAPI {
8440
8823
  * @throws {RequiredError}
8441
8824
  * @memberof SceneViewStatesApi
8442
8825
  */
8443
- getSceneViewState(requestParameters: SceneViewStatesApiGetSceneViewStateRequest, options?: any): Promise<import("axios").AxiosResponse<SceneViewState>>;
8826
+ getSceneViewState(requestParameters: SceneViewStatesApiGetSceneViewStateRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneViewState, any>>;
8444
8827
  /**
8445
8828
  * Get `scene-view-states` for a `scene`.
8446
8829
  * @param {SceneViewStatesApiGetSceneViewStatesRequest} requestParameters Request parameters.
@@ -8448,7 +8831,7 @@ export declare class SceneViewStatesApi extends BaseAPI {
8448
8831
  * @throws {RequiredError}
8449
8832
  * @memberof SceneViewStatesApi
8450
8833
  */
8451
- getSceneViewStates(requestParameters: SceneViewStatesApiGetSceneViewStatesRequest, options?: any): Promise<import("axios").AxiosResponse<SceneViewStateList>>;
8834
+ getSceneViewStates(requestParameters: SceneViewStatesApiGetSceneViewStatesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneViewStateList, any>>;
8452
8835
  /**
8453
8836
  * Update a `scene-view-state`.
8454
8837
  * @param {SceneViewStatesApiUpdateSceneViewStateRequest} requestParameters Request parameters.
@@ -8456,7 +8839,7 @@ export declare class SceneViewStatesApi extends BaseAPI {
8456
8839
  * @throws {RequiredError}
8457
8840
  * @memberof SceneViewStatesApi
8458
8841
  */
8459
- updateSceneViewState(requestParameters: SceneViewStatesApiUpdateSceneViewStateRequest, options?: any): Promise<import("axios").AxiosResponse<SceneViewState>>;
8842
+ updateSceneViewState(requestParameters: SceneViewStatesApiUpdateSceneViewStateRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneViewState, any>>;
8460
8843
  }
8461
8844
  /**
8462
8845
  * SceneViewsApi - axios parameter creator
@@ -8470,21 +8853,21 @@ export declare const SceneViewsApiAxiosParamCreator: (configuration?: Configurat
8470
8853
  * @param {*} [options] Override http request option.
8471
8854
  * @throws {RequiredError}
8472
8855
  */
8473
- createSceneView: (id: string, createSceneViewRequest: CreateSceneViewRequest, options?: any) => Promise<RequestArgs>;
8856
+ createSceneView: (id: string, createSceneViewRequest: CreateSceneViewRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8474
8857
  /**
8475
8858
  * Delete a `scene-view`.
8476
8859
  * @param {string} id The &#x60;scene-view&#x60; ID.
8477
8860
  * @param {*} [options] Override http request option.
8478
8861
  * @throws {RequiredError}
8479
8862
  */
8480
- deleteSceneView: (id: string, options?: any) => Promise<RequestArgs>;
8863
+ deleteSceneView: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8481
8864
  /**
8482
8865
  * Get a `scene-view` by ID.
8483
8866
  * @param {string} id The &#x60;scene-view&#x60; ID.
8484
8867
  * @param {*} [options] Override http request option.
8485
8868
  * @throws {RequiredError}
8486
8869
  */
8487
- getSceneView: (id: string, options?: any) => Promise<RequestArgs>;
8870
+ getSceneView: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8488
8871
  /**
8489
8872
  * Get `scene-view`s for a `scene`.
8490
8873
  * @param {string} id The &#x60;scene&#x60; ID.
@@ -8493,7 +8876,7 @@ export declare const SceneViewsApiAxiosParamCreator: (configuration?: Configurat
8493
8876
  * @param {*} [options] Override http request option.
8494
8877
  * @throws {RequiredError}
8495
8878
  */
8496
- getSceneViews: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, options?: any) => Promise<RequestArgs>;
8879
+ getSceneViews: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8497
8880
  /**
8498
8881
  * Get a `scene-item` within a view by ID.
8499
8882
  * @param {string} id The &#x60;scene-view&#x60; ID.
@@ -8503,7 +8886,7 @@ export declare const SceneViewsApiAxiosParamCreator: (configuration?: Configurat
8503
8886
  * @param {*} [options] Override http request option.
8504
8887
  * @throws {RequiredError}
8505
8888
  */
8506
- getViewSceneItem: (id: string, itemId: string, fieldsSceneItem?: string | undefined, include?: string | undefined, options?: any) => Promise<RequestArgs>;
8889
+ getViewSceneItem: (id: string, itemId: string, fieldsSceneItem?: string | undefined, include?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8507
8890
  /**
8508
8891
  * Get a rendered image of a `scene-view`. If a single pixel is returned, ensure the `scene` is in the `commit` state and contains scene items.
8509
8892
  * @param {string} id The &#x60;scene-view&#x60; ID.
@@ -8512,7 +8895,7 @@ export declare const SceneViewsApiAxiosParamCreator: (configuration?: Configurat
8512
8895
  * @param {*} [options] Override http request option.
8513
8896
  * @throws {RequiredError}
8514
8897
  */
8515
- renderSceneView: (id: string, height?: number | undefined, width?: number | undefined, options?: any) => Promise<RequestArgs>;
8898
+ renderSceneView: (id: string, height?: number | undefined, width?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8516
8899
  /**
8517
8900
  * Update a `scene-view`.
8518
8901
  * @param {string} id The &#x60;scene-view&#x60; ID.
@@ -8520,7 +8903,7 @@ export declare const SceneViewsApiAxiosParamCreator: (configuration?: Configurat
8520
8903
  * @param {*} [options] Override http request option.
8521
8904
  * @throws {RequiredError}
8522
8905
  */
8523
- updateSceneView: (id: string, updateSceneViewRequest: UpdateSceneViewRequest, options?: any) => Promise<RequestArgs>;
8906
+ updateSceneView: (id: string, updateSceneViewRequest: UpdateSceneViewRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8524
8907
  };
8525
8908
  /**
8526
8909
  * SceneViewsApi - functional programming interface
@@ -8534,21 +8917,21 @@ export declare const SceneViewsApiFp: (configuration?: Configuration | undefined
8534
8917
  * @param {*} [options] Override http request option.
8535
8918
  * @throws {RequiredError}
8536
8919
  */
8537
- createSceneView(id: string, createSceneViewRequest: CreateSceneViewRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneView>>;
8920
+ createSceneView(id: string, createSceneViewRequest: CreateSceneViewRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneView>>;
8538
8921
  /**
8539
8922
  * Delete a `scene-view`.
8540
8923
  * @param {string} id The &#x60;scene-view&#x60; ID.
8541
8924
  * @param {*} [options] Override http request option.
8542
8925
  * @throws {RequiredError}
8543
8926
  */
8544
- deleteSceneView(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
8927
+ deleteSceneView(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
8545
8928
  /**
8546
8929
  * Get a `scene-view` by ID.
8547
8930
  * @param {string} id The &#x60;scene-view&#x60; ID.
8548
8931
  * @param {*} [options] Override http request option.
8549
8932
  * @throws {RequiredError}
8550
8933
  */
8551
- getSceneView(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneView>>;
8934
+ getSceneView(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneView>>;
8552
8935
  /**
8553
8936
  * Get `scene-view`s for a `scene`.
8554
8937
  * @param {string} id The &#x60;scene&#x60; ID.
@@ -8557,7 +8940,7 @@ export declare const SceneViewsApiFp: (configuration?: Configuration | undefined
8557
8940
  * @param {*} [options] Override http request option.
8558
8941
  * @throws {RequiredError}
8559
8942
  */
8560
- getSceneViews(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewList>>;
8943
+ getSceneViews(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewList>>;
8561
8944
  /**
8562
8945
  * Get a `scene-item` within a view by ID.
8563
8946
  * @param {string} id The &#x60;scene-view&#x60; ID.
@@ -8567,7 +8950,7 @@ export declare const SceneViewsApiFp: (configuration?: Configuration | undefined
8567
8950
  * @param {*} [options] Override http request option.
8568
8951
  * @throws {RequiredError}
8569
8952
  */
8570
- getViewSceneItem(id: string, itemId: string, fieldsSceneItem?: string | undefined, include?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewItem>>;
8953
+ getViewSceneItem(id: string, itemId: string, fieldsSceneItem?: string | undefined, include?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewItem>>;
8571
8954
  /**
8572
8955
  * Get a rendered image of a `scene-view`. If a single pixel is returned, ensure the `scene` is in the `commit` state and contains scene items.
8573
8956
  * @param {string} id The &#x60;scene-view&#x60; ID.
@@ -8576,7 +8959,7 @@ export declare const SceneViewsApiFp: (configuration?: Configuration | undefined
8576
8959
  * @param {*} [options] Override http request option.
8577
8960
  * @throws {RequiredError}
8578
8961
  */
8579
- renderSceneView(id: string, height?: number | undefined, width?: number | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<any>>;
8962
+ renderSceneView(id: string, height?: number | undefined, width?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<any>>;
8580
8963
  /**
8581
8964
  * Update a `scene-view`.
8582
8965
  * @param {string} id The &#x60;scene-view&#x60; ID.
@@ -8584,7 +8967,7 @@ export declare const SceneViewsApiFp: (configuration?: Configuration | undefined
8584
8967
  * @param {*} [options] Override http request option.
8585
8968
  * @throws {RequiredError}
8586
8969
  */
8587
- updateSceneView(id: string, updateSceneViewRequest: UpdateSceneViewRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneView>>;
8970
+ updateSceneView(id: string, updateSceneViewRequest: UpdateSceneViewRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneView>>;
8588
8971
  };
8589
8972
  /**
8590
8973
  * SceneViewsApi - factory interface
@@ -8809,7 +9192,7 @@ export declare class SceneViewsApi extends BaseAPI {
8809
9192
  * @throws {RequiredError}
8810
9193
  * @memberof SceneViewsApi
8811
9194
  */
8812
- createSceneView(requestParameters: SceneViewsApiCreateSceneViewRequest, options?: any): Promise<import("axios").AxiosResponse<SceneView>>;
9195
+ createSceneView(requestParameters: SceneViewsApiCreateSceneViewRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneView, any>>;
8813
9196
  /**
8814
9197
  * Delete a `scene-view`.
8815
9198
  * @param {SceneViewsApiDeleteSceneViewRequest} requestParameters Request parameters.
@@ -8817,7 +9200,7 @@ export declare class SceneViewsApi extends BaseAPI {
8817
9200
  * @throws {RequiredError}
8818
9201
  * @memberof SceneViewsApi
8819
9202
  */
8820
- deleteSceneView(requestParameters: SceneViewsApiDeleteSceneViewRequest, options?: any): Promise<import("axios").AxiosResponse<void>>;
9203
+ deleteSceneView(requestParameters: SceneViewsApiDeleteSceneViewRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
8821
9204
  /**
8822
9205
  * Get a `scene-view` by ID.
8823
9206
  * @param {SceneViewsApiGetSceneViewRequest} requestParameters Request parameters.
@@ -8825,7 +9208,7 @@ export declare class SceneViewsApi extends BaseAPI {
8825
9208
  * @throws {RequiredError}
8826
9209
  * @memberof SceneViewsApi
8827
9210
  */
8828
- getSceneView(requestParameters: SceneViewsApiGetSceneViewRequest, options?: any): Promise<import("axios").AxiosResponse<SceneView>>;
9211
+ getSceneView(requestParameters: SceneViewsApiGetSceneViewRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneView, any>>;
8829
9212
  /**
8830
9213
  * Get `scene-view`s for a `scene`.
8831
9214
  * @param {SceneViewsApiGetSceneViewsRequest} requestParameters Request parameters.
@@ -8833,7 +9216,7 @@ export declare class SceneViewsApi extends BaseAPI {
8833
9216
  * @throws {RequiredError}
8834
9217
  * @memberof SceneViewsApi
8835
9218
  */
8836
- getSceneViews(requestParameters: SceneViewsApiGetSceneViewsRequest, options?: any): Promise<import("axios").AxiosResponse<SceneViewList>>;
9219
+ getSceneViews(requestParameters: SceneViewsApiGetSceneViewsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneViewList, any>>;
8837
9220
  /**
8838
9221
  * Get a `scene-item` within a view by ID.
8839
9222
  * @param {SceneViewsApiGetViewSceneItemRequest} requestParameters Request parameters.
@@ -8841,7 +9224,7 @@ export declare class SceneViewsApi extends BaseAPI {
8841
9224
  * @throws {RequiredError}
8842
9225
  * @memberof SceneViewsApi
8843
9226
  */
8844
- getViewSceneItem(requestParameters: SceneViewsApiGetViewSceneItemRequest, options?: any): Promise<import("axios").AxiosResponse<SceneViewItem>>;
9227
+ getViewSceneItem(requestParameters: SceneViewsApiGetViewSceneItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneViewItem, any>>;
8845
9228
  /**
8846
9229
  * Get a rendered image of a `scene-view`. If a single pixel is returned, ensure the `scene` is in the `commit` state and contains scene items.
8847
9230
  * @param {SceneViewsApiRenderSceneViewRequest} requestParameters Request parameters.
@@ -8849,7 +9232,7 @@ export declare class SceneViewsApi extends BaseAPI {
8849
9232
  * @throws {RequiredError}
8850
9233
  * @memberof SceneViewsApi
8851
9234
  */
8852
- renderSceneView(requestParameters: SceneViewsApiRenderSceneViewRequest, options?: any): Promise<import("axios").AxiosResponse<any>>;
9235
+ renderSceneView(requestParameters: SceneViewsApiRenderSceneViewRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
8853
9236
  /**
8854
9237
  * Update a `scene-view`.
8855
9238
  * @param {SceneViewsApiUpdateSceneViewRequest} requestParameters Request parameters.
@@ -8857,7 +9240,7 @@ export declare class SceneViewsApi extends BaseAPI {
8857
9240
  * @throws {RequiredError}
8858
9241
  * @memberof SceneViewsApi
8859
9242
  */
8860
- updateSceneView(requestParameters: SceneViewsApiUpdateSceneViewRequest, options?: any): Promise<import("axios").AxiosResponse<SceneView>>;
9243
+ updateSceneView(requestParameters: SceneViewsApiUpdateSceneViewRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneView, any>>;
8861
9244
  }
8862
9245
  /**
8863
9246
  * ScenesApi - axios parameter creator
@@ -8870,21 +9253,21 @@ export declare const ScenesApiAxiosParamCreator: (configuration?: Configuration
8870
9253
  * @param {*} [options] Override http request option.
8871
9254
  * @throws {RequiredError}
8872
9255
  */
8873
- createScene: (createSceneRequest: CreateSceneRequest, options?: any) => Promise<RequestArgs>;
9256
+ createScene: (createSceneRequest: CreateSceneRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8874
9257
  /**
8875
9258
  * Delete a `scene`.
8876
9259
  * @param {string} id The &#x60;scene&#x60; ID.
8877
9260
  * @param {*} [options] Override http request option.
8878
9261
  * @throws {RequiredError}
8879
9262
  */
8880
- deleteScene: (id: string, options?: any) => Promise<RequestArgs>;
9263
+ deleteScene: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8881
9264
  /**
8882
9265
  * Get a `queued-scene`.
8883
9266
  * @param {string} id The &#x60;scene&#x60; ID.
8884
9267
  * @param {*} [options] Override http request option.
8885
9268
  * @throws {RequiredError}
8886
9269
  */
8887
- getQueuedScene: (id: string, options?: any) => Promise<RequestArgs>;
9270
+ getQueuedScene: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8888
9271
  /**
8889
9272
  * Get a `scene` by ID.
8890
9273
  * @param {string} id The &#x60;scene&#x60; ID.
@@ -8892,16 +9275,17 @@ export declare const ScenesApiAxiosParamCreator: (configuration?: Configuration
8892
9275
  * @param {*} [options] Override http request option.
8893
9276
  * @throws {RequiredError}
8894
9277
  */
8895
- getScene: (id: string, fieldsScene?: string | undefined, options?: any) => Promise<RequestArgs>;
9278
+ getScene: (id: string, fieldsScene?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8896
9279
  /**
8897
9280
  * Get `scenes`.
8898
9281
  * @param {string} [pageCursor] The cursor for the next page of items.
8899
9282
  * @param {number} [pageSize] The number of items to return.
9283
+ * @param {string} [filterName] Comma-separated list of names to filter on.
8900
9284
  * @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
8901
9285
  * @param {*} [options] Override http request option.
8902
9286
  * @throws {RequiredError}
8903
9287
  */
8904
- getScenes: (pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: any) => Promise<RequestArgs>;
9288
+ getScenes: (pageCursor?: string | undefined, pageSize?: number | undefined, filterName?: string | undefined, filterSuppliedId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8905
9289
  /**
8906
9290
  * Get a rendered image of a `scene`. If only a single pixel is returned, ensure the `scene` is in the `commit` state and contains scene items.
8907
9291
  * @param {string} id The &#x60;scene&#x60; ID.
@@ -8910,7 +9294,7 @@ export declare const ScenesApiAxiosParamCreator: (configuration?: Configuration
8910
9294
  * @param {*} [options] Override http request option.
8911
9295
  * @throws {RequiredError}
8912
9296
  */
8913
- renderScene: (id: string, height?: number | undefined, width?: number | undefined, options?: any) => Promise<RequestArgs>;
9297
+ renderScene: (id: string, height?: number | undefined, width?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8914
9298
  /**
8915
9299
  * Update a `scene` camera and/or state. Once updated, view the scene via the renderScene API or with the Viewer SDK. For details, see our [Render static scenes](https://developer.vertexvis.com/docs/guides/render-static-scenes) guide.
8916
9300
  * @param {string} id The &#x60;scene&#x60; ID.
@@ -8918,7 +9302,7 @@ export declare const ScenesApiAxiosParamCreator: (configuration?: Configuration
8918
9302
  * @param {*} [options] Override http request option.
8919
9303
  * @throws {RequiredError}
8920
9304
  */
8921
- updateScene: (id: string, updateSceneRequest: UpdateSceneRequest, options?: any) => Promise<RequestArgs>;
9305
+ updateScene: (id: string, updateSceneRequest: UpdateSceneRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
8922
9306
  };
8923
9307
  /**
8924
9308
  * ScenesApi - functional programming interface
@@ -8931,21 +9315,21 @@ export declare const ScenesApiFp: (configuration?: Configuration | undefined) =>
8931
9315
  * @param {*} [options] Override http request option.
8932
9316
  * @throws {RequiredError}
8933
9317
  */
8934
- createScene(createSceneRequest: CreateSceneRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Scene>>;
9318
+ createScene(createSceneRequest: CreateSceneRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Scene>>;
8935
9319
  /**
8936
9320
  * Delete a `scene`.
8937
9321
  * @param {string} id The &#x60;scene&#x60; ID.
8938
9322
  * @param {*} [options] Override http request option.
8939
9323
  * @throws {RequiredError}
8940
9324
  */
8941
- deleteScene(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
9325
+ deleteScene(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
8942
9326
  /**
8943
9327
  * Get a `queued-scene`.
8944
9328
  * @param {string} id The &#x60;scene&#x60; ID.
8945
9329
  * @param {*} [options] Override http request option.
8946
9330
  * @throws {RequiredError}
8947
9331
  */
8948
- getQueuedScene(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
9332
+ getQueuedScene(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
8949
9333
  /**
8950
9334
  * Get a `scene` by ID.
8951
9335
  * @param {string} id The &#x60;scene&#x60; ID.
@@ -8953,16 +9337,17 @@ export declare const ScenesApiFp: (configuration?: Configuration | undefined) =>
8953
9337
  * @param {*} [options] Override http request option.
8954
9338
  * @throws {RequiredError}
8955
9339
  */
8956
- getScene(id: string, fieldsScene?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Scene>>;
9340
+ getScene(id: string, fieldsScene?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Scene>>;
8957
9341
  /**
8958
9342
  * Get `scenes`.
8959
9343
  * @param {string} [pageCursor] The cursor for the next page of items.
8960
9344
  * @param {number} [pageSize] The number of items to return.
9345
+ * @param {string} [filterName] Comma-separated list of names to filter on.
8961
9346
  * @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
8962
9347
  * @param {*} [options] Override http request option.
8963
9348
  * @throws {RequiredError}
8964
9349
  */
8965
- getScenes(pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneList>>;
9350
+ getScenes(pageCursor?: string | undefined, pageSize?: number | undefined, filterName?: string | undefined, filterSuppliedId?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneList>>;
8966
9351
  /**
8967
9352
  * Get a rendered image of a `scene`. If only a single pixel is returned, ensure the `scene` is in the `commit` state and contains scene items.
8968
9353
  * @param {string} id The &#x60;scene&#x60; ID.
@@ -8971,7 +9356,7 @@ export declare const ScenesApiFp: (configuration?: Configuration | undefined) =>
8971
9356
  * @param {*} [options] Override http request option.
8972
9357
  * @throws {RequiredError}
8973
9358
  */
8974
- renderScene(id: string, height?: number | undefined, width?: number | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<any>>;
9359
+ renderScene(id: string, height?: number | undefined, width?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<any>>;
8975
9360
  /**
8976
9361
  * Update a `scene` camera and/or state. Once updated, view the scene via the renderScene API or with the Viewer SDK. For details, see our [Render static scenes](https://developer.vertexvis.com/docs/guides/render-static-scenes) guide.
8977
9362
  * @param {string} id The &#x60;scene&#x60; ID.
@@ -8979,7 +9364,7 @@ export declare const ScenesApiFp: (configuration?: Configuration | undefined) =>
8979
9364
  * @param {*} [options] Override http request option.
8980
9365
  * @throws {RequiredError}
8981
9366
  */
8982
- updateScene(id: string, updateSceneRequest: UpdateSceneRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Scene>>;
9367
+ updateScene(id: string, updateSceneRequest: UpdateSceneRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Scene>>;
8983
9368
  };
8984
9369
  /**
8985
9370
  * ScenesApi - factory interface
@@ -9019,11 +9404,12 @@ export declare const ScenesApiFactory: (configuration?: Configuration | undefine
9019
9404
  * Get `scenes`.
9020
9405
  * @param {string} [pageCursor] The cursor for the next page of items.
9021
9406
  * @param {number} [pageSize] The number of items to return.
9407
+ * @param {string} [filterName] Comma-separated list of names to filter on.
9022
9408
  * @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
9023
9409
  * @param {*} [options] Override http request option.
9024
9410
  * @throws {RequiredError}
9025
9411
  */
9026
- getScenes(pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: any): AxiosPromise<SceneList>;
9412
+ getScenes(pageCursor?: string | undefined, pageSize?: number | undefined, filterName?: string | undefined, filterSuppliedId?: string | undefined, options?: any): AxiosPromise<SceneList>;
9027
9413
  /**
9028
9414
  * Get a rendered image of a `scene`. If only a single pixel is returned, ensure the `scene` is in the `commit` state and contains scene items.
9029
9415
  * @param {string} id The &#x60;scene&#x60; ID.
@@ -9118,6 +9504,12 @@ export interface ScenesApiGetScenesRequest {
9118
9504
  * @memberof ScenesApiGetScenes
9119
9505
  */
9120
9506
  readonly pageSize?: number;
9507
+ /**
9508
+ * Comma-separated list of names to filter on.
9509
+ * @type {string}
9510
+ * @memberof ScenesApiGetScenes
9511
+ */
9512
+ readonly filterName?: string;
9121
9513
  /**
9122
9514
  * Comma-separated list of supplied IDs to filter on.
9123
9515
  * @type {string}
@@ -9183,7 +9575,7 @@ export declare class ScenesApi extends BaseAPI {
9183
9575
  * @throws {RequiredError}
9184
9576
  * @memberof ScenesApi
9185
9577
  */
9186
- createScene(requestParameters: ScenesApiCreateSceneRequest, options?: any): Promise<import("axios").AxiosResponse<Scene>>;
9578
+ createScene(requestParameters: ScenesApiCreateSceneRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Scene, any>>;
9187
9579
  /**
9188
9580
  * Delete a `scene`.
9189
9581
  * @param {ScenesApiDeleteSceneRequest} requestParameters Request parameters.
@@ -9191,7 +9583,7 @@ export declare class ScenesApi extends BaseAPI {
9191
9583
  * @throws {RequiredError}
9192
9584
  * @memberof ScenesApi
9193
9585
  */
9194
- deleteScene(requestParameters: ScenesApiDeleteSceneRequest, options?: any): Promise<import("axios").AxiosResponse<void>>;
9586
+ deleteScene(requestParameters: ScenesApiDeleteSceneRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
9195
9587
  /**
9196
9588
  * Get a `queued-scene`.
9197
9589
  * @param {ScenesApiGetQueuedSceneRequest} requestParameters Request parameters.
@@ -9199,7 +9591,7 @@ export declare class ScenesApi extends BaseAPI {
9199
9591
  * @throws {RequiredError}
9200
9592
  * @memberof ScenesApi
9201
9593
  */
9202
- getQueuedScene(requestParameters: ScenesApiGetQueuedSceneRequest, options?: any): Promise<import("axios").AxiosResponse<QueuedJob>>;
9594
+ getQueuedScene(requestParameters: ScenesApiGetQueuedSceneRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
9203
9595
  /**
9204
9596
  * Get a `scene` by ID.
9205
9597
  * @param {ScenesApiGetSceneRequest} requestParameters Request parameters.
@@ -9207,7 +9599,7 @@ export declare class ScenesApi extends BaseAPI {
9207
9599
  * @throws {RequiredError}
9208
9600
  * @memberof ScenesApi
9209
9601
  */
9210
- getScene(requestParameters: ScenesApiGetSceneRequest, options?: any): Promise<import("axios").AxiosResponse<Scene>>;
9602
+ getScene(requestParameters: ScenesApiGetSceneRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Scene, any>>;
9211
9603
  /**
9212
9604
  * Get `scenes`.
9213
9605
  * @param {ScenesApiGetScenesRequest} requestParameters Request parameters.
@@ -9215,7 +9607,7 @@ export declare class ScenesApi extends BaseAPI {
9215
9607
  * @throws {RequiredError}
9216
9608
  * @memberof ScenesApi
9217
9609
  */
9218
- getScenes(requestParameters?: ScenesApiGetScenesRequest, options?: any): Promise<import("axios").AxiosResponse<SceneList>>;
9610
+ getScenes(requestParameters?: ScenesApiGetScenesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneList, any>>;
9219
9611
  /**
9220
9612
  * Get a rendered image of a `scene`. If only a single pixel is returned, ensure the `scene` is in the `commit` state and contains scene items.
9221
9613
  * @param {ScenesApiRenderSceneRequest} requestParameters Request parameters.
@@ -9223,7 +9615,7 @@ export declare class ScenesApi extends BaseAPI {
9223
9615
  * @throws {RequiredError}
9224
9616
  * @memberof ScenesApi
9225
9617
  */
9226
- renderScene(requestParameters: ScenesApiRenderSceneRequest, options?: any): Promise<import("axios").AxiosResponse<any>>;
9618
+ renderScene(requestParameters: ScenesApiRenderSceneRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
9227
9619
  /**
9228
9620
  * Update a `scene` camera and/or state. Once updated, view the scene via the renderScene API or with the Viewer SDK. For details, see our [Render static scenes](https://developer.vertexvis.com/docs/guides/render-static-scenes) guide.
9229
9621
  * @param {ScenesApiUpdateSceneRequest} requestParameters Request parameters.
@@ -9231,7 +9623,7 @@ export declare class ScenesApi extends BaseAPI {
9231
9623
  * @throws {RequiredError}
9232
9624
  * @memberof ScenesApi
9233
9625
  */
9234
- updateScene(requestParameters: ScenesApiUpdateSceneRequest, options?: any): Promise<import("axios").AxiosResponse<Scene>>;
9626
+ updateScene(requestParameters: ScenesApiUpdateSceneRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Scene, any>>;
9235
9627
  }
9236
9628
  /**
9237
9629
  * StreamKeysApi - axios parameter creator
@@ -9245,14 +9637,14 @@ export declare const StreamKeysApiAxiosParamCreator: (configuration?: Configurat
9245
9637
  * @param {*} [options] Override http request option.
9246
9638
  * @throws {RequiredError}
9247
9639
  */
9248
- createSceneStreamKey: (id: string, createStreamKeyRequest: CreateStreamKeyRequest, options?: any) => Promise<RequestArgs>;
9640
+ createSceneStreamKey: (id: string, createStreamKeyRequest: CreateStreamKeyRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9249
9641
  /**
9250
9642
  * Delete a `stream-key`.
9251
9643
  * @param {string} id The &#x60;stream-key&#x60; ID.
9252
9644
  * @param {*} [options] Override http request option.
9253
9645
  * @throws {RequiredError}
9254
9646
  */
9255
- deleteStreamKey: (id: string, options?: any) => Promise<RequestArgs>;
9647
+ deleteStreamKey: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9256
9648
  /**
9257
9649
  * Get `stream-key`s.
9258
9650
  * @param {string} [pageCursor] The cursor for the next page of items.
@@ -9261,7 +9653,7 @@ export declare const StreamKeysApiAxiosParamCreator: (configuration?: Configurat
9261
9653
  * @param {*} [options] Override http request option.
9262
9654
  * @throws {RequiredError}
9263
9655
  */
9264
- getStreamKeys: (pageCursor?: string | undefined, pageSize?: number | undefined, filterKey?: string | undefined, options?: any) => Promise<RequestArgs>;
9656
+ getStreamKeys: (pageCursor?: string | undefined, pageSize?: number | undefined, filterKey?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9265
9657
  };
9266
9658
  /**
9267
9659
  * StreamKeysApi - functional programming interface
@@ -9275,14 +9667,14 @@ export declare const StreamKeysApiFp: (configuration?: Configuration | undefined
9275
9667
  * @param {*} [options] Override http request option.
9276
9668
  * @throws {RequiredError}
9277
9669
  */
9278
- createSceneStreamKey(id: string, createStreamKeyRequest: CreateStreamKeyRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<StreamKey>>;
9670
+ createSceneStreamKey(id: string, createStreamKeyRequest: CreateStreamKeyRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<StreamKey>>;
9279
9671
  /**
9280
9672
  * Delete a `stream-key`.
9281
9673
  * @param {string} id The &#x60;stream-key&#x60; ID.
9282
9674
  * @param {*} [options] Override http request option.
9283
9675
  * @throws {RequiredError}
9284
9676
  */
9285
- deleteStreamKey(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
9677
+ deleteStreamKey(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
9286
9678
  /**
9287
9679
  * Get `stream-key`s.
9288
9680
  * @param {string} [pageCursor] The cursor for the next page of items.
@@ -9291,7 +9683,7 @@ export declare const StreamKeysApiFp: (configuration?: Configuration | undefined
9291
9683
  * @param {*} [options] Override http request option.
9292
9684
  * @throws {RequiredError}
9293
9685
  */
9294
- getStreamKeys(pageCursor?: string | undefined, pageSize?: number | undefined, filterKey?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<StreamKeyList>>;
9686
+ getStreamKeys(pageCursor?: string | undefined, pageSize?: number | undefined, filterKey?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<StreamKeyList>>;
9295
9687
  };
9296
9688
  /**
9297
9689
  * StreamKeysApi - factory interface
@@ -9394,7 +9786,7 @@ export declare class StreamKeysApi extends BaseAPI {
9394
9786
  * @throws {RequiredError}
9395
9787
  * @memberof StreamKeysApi
9396
9788
  */
9397
- createSceneStreamKey(requestParameters: StreamKeysApiCreateSceneStreamKeyRequest, options?: any): Promise<import("axios").AxiosResponse<StreamKey>>;
9789
+ createSceneStreamKey(requestParameters: StreamKeysApiCreateSceneStreamKeyRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<StreamKey, any>>;
9398
9790
  /**
9399
9791
  * Delete a `stream-key`.
9400
9792
  * @param {StreamKeysApiDeleteStreamKeyRequest} requestParameters Request parameters.
@@ -9402,7 +9794,7 @@ export declare class StreamKeysApi extends BaseAPI {
9402
9794
  * @throws {RequiredError}
9403
9795
  * @memberof StreamKeysApi
9404
9796
  */
9405
- deleteStreamKey(requestParameters: StreamKeysApiDeleteStreamKeyRequest, options?: any): Promise<import("axios").AxiosResponse<void>>;
9797
+ deleteStreamKey(requestParameters: StreamKeysApiDeleteStreamKeyRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
9406
9798
  /**
9407
9799
  * Get `stream-key`s.
9408
9800
  * @param {StreamKeysApiGetStreamKeysRequest} requestParameters Request parameters.
@@ -9410,7 +9802,7 @@ export declare class StreamKeysApi extends BaseAPI {
9410
9802
  * @throws {RequiredError}
9411
9803
  * @memberof StreamKeysApi
9412
9804
  */
9413
- getStreamKeys(requestParameters?: StreamKeysApiGetStreamKeysRequest, options?: any): Promise<import("axios").AxiosResponse<StreamKeyList>>;
9805
+ getStreamKeys(requestParameters?: StreamKeysApiGetStreamKeysRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<StreamKeyList, any>>;
9414
9806
  }
9415
9807
  /**
9416
9808
  * TranslationInspectionsApi - axios parameter creator
@@ -9423,21 +9815,21 @@ export declare const TranslationInspectionsApiAxiosParamCreator: (configuration?
9423
9815
  * @param {*} [options] Override http request option.
9424
9816
  * @throws {RequiredError}
9425
9817
  */
9426
- createTranslationInspection: (createTranslationInspectionRequest: CreateTranslationInspectionRequest, options?: any) => Promise<RequestArgs>;
9818
+ createTranslationInspection: (createTranslationInspectionRequest: CreateTranslationInspectionRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9427
9819
  /**
9428
9820
  * Get a `translation-inspection` by ID.
9429
9821
  * @param {string} id The &#x60;translation-inspection&#x60; ID.
9430
9822
  * @param {*} [options] Override http request option.
9431
9823
  * @throws {RequiredError}
9432
9824
  */
9433
- getInspectionJob: (id: string, options?: any) => Promise<RequestArgs>;
9825
+ getInspectionJob: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9434
9826
  /**
9435
9827
  * Get a `queued-translation`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `part-revision`. Once created, create scenes via the createScene API. For details, see our [Render static scenes](https://developer.vertexvis.com/docs/guides/render-static-scenes) guide.
9436
9828
  * @param {string} id The &#x60;queued-translation&#x60; ID.
9437
9829
  * @param {*} [options] Override http request option.
9438
9830
  * @throws {RequiredError}
9439
9831
  */
9440
- getQueuedTranslation: (id: string, options?: any) => Promise<RequestArgs>;
9832
+ getQueuedTranslation: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9441
9833
  /**
9442
9834
  * Get `queued-translation`s.
9443
9835
  * @param {string} [pageCursor] The cursor for the next page of items.
@@ -9446,7 +9838,7 @@ export declare const TranslationInspectionsApiAxiosParamCreator: (configuration?
9446
9838
  * @param {*} [options] Override http request option.
9447
9839
  * @throws {RequiredError}
9448
9840
  */
9449
- getQueuedTranslations: (pageCursor?: string | undefined, pageSize?: number | undefined, filterStatus?: string | undefined, options?: any) => Promise<RequestArgs>;
9841
+ getQueuedTranslations: (pageCursor?: string | undefined, pageSize?: number | undefined, filterStatus?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9450
9842
  };
9451
9843
  /**
9452
9844
  * TranslationInspectionsApi - functional programming interface
@@ -9459,21 +9851,21 @@ export declare const TranslationInspectionsApiFp: (configuration?: Configuration
9459
9851
  * @param {*} [options] Override http request option.
9460
9852
  * @throws {RequiredError}
9461
9853
  */
9462
- createTranslationInspection(createTranslationInspectionRequest: CreateTranslationInspectionRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TranslationInspectionJob>>;
9854
+ createTranslationInspection(createTranslationInspectionRequest: CreateTranslationInspectionRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TranslationInspectionJob>>;
9463
9855
  /**
9464
9856
  * Get a `translation-inspection` by ID.
9465
9857
  * @param {string} id The &#x60;translation-inspection&#x60; ID.
9466
9858
  * @param {*} [options] Override http request option.
9467
9859
  * @throws {RequiredError}
9468
9860
  */
9469
- getInspectionJob(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TranslationInspectionJob>>;
9861
+ getInspectionJob(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TranslationInspectionJob>>;
9470
9862
  /**
9471
9863
  * Get a `queued-translation`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `part-revision`. Once created, create scenes via the createScene API. For details, see our [Render static scenes](https://developer.vertexvis.com/docs/guides/render-static-scenes) guide.
9472
9864
  * @param {string} id The &#x60;queued-translation&#x60; ID.
9473
9865
  * @param {*} [options] Override http request option.
9474
9866
  * @throws {RequiredError}
9475
9867
  */
9476
- getQueuedTranslation(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
9868
+ getQueuedTranslation(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
9477
9869
  /**
9478
9870
  * Get `queued-translation`s.
9479
9871
  * @param {string} [pageCursor] The cursor for the next page of items.
@@ -9482,7 +9874,7 @@ export declare const TranslationInspectionsApiFp: (configuration?: Configuration
9482
9874
  * @param {*} [options] Override http request option.
9483
9875
  * @throws {RequiredError}
9484
9876
  */
9485
- getQueuedTranslations(pageCursor?: string | undefined, pageSize?: number | undefined, filterStatus?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJobList>>;
9877
+ getQueuedTranslations(pageCursor?: string | undefined, pageSize?: number | undefined, filterStatus?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJobList>>;
9486
9878
  };
9487
9879
  /**
9488
9880
  * TranslationInspectionsApi - factory interface
@@ -9598,7 +9990,7 @@ export declare class TranslationInspectionsApi extends BaseAPI {
9598
9990
  * @throws {RequiredError}
9599
9991
  * @memberof TranslationInspectionsApi
9600
9992
  */
9601
- createTranslationInspection(requestParameters: TranslationInspectionsApiCreateTranslationInspectionRequest, options?: any): Promise<import("axios").AxiosResponse<TranslationInspectionJob>>;
9993
+ createTranslationInspection(requestParameters: TranslationInspectionsApiCreateTranslationInspectionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TranslationInspectionJob, any>>;
9602
9994
  /**
9603
9995
  * Get a `translation-inspection` by ID.
9604
9996
  * @param {TranslationInspectionsApiGetInspectionJobRequest} requestParameters Request parameters.
@@ -9606,7 +9998,7 @@ export declare class TranslationInspectionsApi extends BaseAPI {
9606
9998
  * @throws {RequiredError}
9607
9999
  * @memberof TranslationInspectionsApi
9608
10000
  */
9609
- getInspectionJob(requestParameters: TranslationInspectionsApiGetInspectionJobRequest, options?: any): Promise<import("axios").AxiosResponse<TranslationInspectionJob>>;
10001
+ getInspectionJob(requestParameters: TranslationInspectionsApiGetInspectionJobRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TranslationInspectionJob, any>>;
9610
10002
  /**
9611
10003
  * Get a `queued-translation`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `part-revision`. Once created, create scenes via the createScene API. For details, see our [Render static scenes](https://developer.vertexvis.com/docs/guides/render-static-scenes) guide.
9612
10004
  * @param {TranslationInspectionsApiGetQueuedTranslationRequest} requestParameters Request parameters.
@@ -9614,7 +10006,7 @@ export declare class TranslationInspectionsApi extends BaseAPI {
9614
10006
  * @throws {RequiredError}
9615
10007
  * @memberof TranslationInspectionsApi
9616
10008
  */
9617
- getQueuedTranslation(requestParameters: TranslationInspectionsApiGetQueuedTranslationRequest, options?: any): Promise<import("axios").AxiosResponse<QueuedJob>>;
10009
+ getQueuedTranslation(requestParameters: TranslationInspectionsApiGetQueuedTranslationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
9618
10010
  /**
9619
10011
  * Get `queued-translation`s.
9620
10012
  * @param {TranslationInspectionsApiGetQueuedTranslationsRequest} requestParameters Request parameters.
@@ -9622,7 +10014,7 @@ export declare class TranslationInspectionsApi extends BaseAPI {
9622
10014
  * @throws {RequiredError}
9623
10015
  * @memberof TranslationInspectionsApi
9624
10016
  */
9625
- getQueuedTranslations(requestParameters?: TranslationInspectionsApiGetQueuedTranslationsRequest, options?: any): Promise<import("axios").AxiosResponse<QueuedJobList>>;
10017
+ getQueuedTranslations(requestParameters?: TranslationInspectionsApiGetQueuedTranslationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJobList, any>>;
9626
10018
  }
9627
10019
  /**
9628
10020
  * WebhookSubscriptionsApi - axios parameter creator
@@ -9635,21 +10027,21 @@ export declare const WebhookSubscriptionsApiAxiosParamCreator: (configuration?:
9635
10027
  * @param {*} [options] Override http request option.
9636
10028
  * @throws {RequiredError}
9637
10029
  */
9638
- createWebhookSubscription: (createWebhookSubscriptionRequest: CreateWebhookSubscriptionRequest, options?: any) => Promise<RequestArgs>;
10030
+ createWebhookSubscription: (createWebhookSubscriptionRequest: CreateWebhookSubscriptionRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9639
10031
  /**
9640
10032
  * Delete a `webhook-subscription`.
9641
10033
  * @param {string} id The &#x60;webhook-subscription&#x60; ID.
9642
10034
  * @param {*} [options] Override http request option.
9643
10035
  * @throws {RequiredError}
9644
10036
  */
9645
- deleteWebhookSubscription: (id: string, options?: any) => Promise<RequestArgs>;
10037
+ deleteWebhookSubscription: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9646
10038
  /**
9647
10039
  * Get a `webhook-subscription`.
9648
10040
  * @param {string} id The &#x60;webhook-subscription&#x60; ID.
9649
10041
  * @param {*} [options] Override http request option.
9650
10042
  * @throws {RequiredError}
9651
10043
  */
9652
- getWebhookSubscription: (id: string, options?: any) => Promise<RequestArgs>;
10044
+ getWebhookSubscription: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9653
10045
  /**
9654
10046
  * Get `webhook-subscription`s.
9655
10047
  * @param {string} [pageCursor] The cursor for the next page of items.
@@ -9657,7 +10049,7 @@ export declare const WebhookSubscriptionsApiAxiosParamCreator: (configuration?:
9657
10049
  * @param {*} [options] Override http request option.
9658
10050
  * @throws {RequiredError}
9659
10051
  */
9660
- getWebhookSubscriptions: (pageCursor?: string | undefined, pageSize?: number | undefined, options?: any) => Promise<RequestArgs>;
10052
+ getWebhookSubscriptions: (pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9661
10053
  /**
9662
10054
  * Update a `webhook-subscription`.
9663
10055
  * @param {string} id The &#x60;webhook-subscription&#x60; ID.
@@ -9665,7 +10057,7 @@ export declare const WebhookSubscriptionsApiAxiosParamCreator: (configuration?:
9665
10057
  * @param {*} [options] Override http request option.
9666
10058
  * @throws {RequiredError}
9667
10059
  */
9668
- updateWebhookSubscription: (id: string, updateWebhookSubscriptionRequest: UpdateWebhookSubscriptionRequest, options?: any) => Promise<RequestArgs>;
10060
+ updateWebhookSubscription: (id: string, updateWebhookSubscriptionRequest: UpdateWebhookSubscriptionRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9669
10061
  };
9670
10062
  /**
9671
10063
  * WebhookSubscriptionsApi - functional programming interface
@@ -9678,21 +10070,21 @@ export declare const WebhookSubscriptionsApiFp: (configuration?: Configuration |
9678
10070
  * @param {*} [options] Override http request option.
9679
10071
  * @throws {RequiredError}
9680
10072
  */
9681
- createWebhookSubscription(createWebhookSubscriptionRequest: CreateWebhookSubscriptionRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WebhookSubscription>>;
10073
+ createWebhookSubscription(createWebhookSubscriptionRequest: CreateWebhookSubscriptionRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WebhookSubscription>>;
9682
10074
  /**
9683
10075
  * Delete a `webhook-subscription`.
9684
10076
  * @param {string} id The &#x60;webhook-subscription&#x60; ID.
9685
10077
  * @param {*} [options] Override http request option.
9686
10078
  * @throws {RequiredError}
9687
10079
  */
9688
- deleteWebhookSubscription(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
10080
+ deleteWebhookSubscription(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
9689
10081
  /**
9690
10082
  * Get a `webhook-subscription`.
9691
10083
  * @param {string} id The &#x60;webhook-subscription&#x60; ID.
9692
10084
  * @param {*} [options] Override http request option.
9693
10085
  * @throws {RequiredError}
9694
10086
  */
9695
- getWebhookSubscription(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WebhookSubscription>>;
10087
+ getWebhookSubscription(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WebhookSubscription>>;
9696
10088
  /**
9697
10089
  * Get `webhook-subscription`s.
9698
10090
  * @param {string} [pageCursor] The cursor for the next page of items.
@@ -9700,7 +10092,7 @@ export declare const WebhookSubscriptionsApiFp: (configuration?: Configuration |
9700
10092
  * @param {*} [options] Override http request option.
9701
10093
  * @throws {RequiredError}
9702
10094
  */
9703
- getWebhookSubscriptions(pageCursor?: string | undefined, pageSize?: number | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WebhookSubscriptionList>>;
10095
+ getWebhookSubscriptions(pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WebhookSubscriptionList>>;
9704
10096
  /**
9705
10097
  * Update a `webhook-subscription`.
9706
10098
  * @param {string} id The &#x60;webhook-subscription&#x60; ID.
@@ -9708,7 +10100,7 @@ export declare const WebhookSubscriptionsApiFp: (configuration?: Configuration |
9708
10100
  * @param {*} [options] Override http request option.
9709
10101
  * @throws {RequiredError}
9710
10102
  */
9711
- updateWebhookSubscription(id: string, updateWebhookSubscriptionRequest: UpdateWebhookSubscriptionRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WebhookSubscription>>;
10103
+ updateWebhookSubscription(id: string, updateWebhookSubscriptionRequest: UpdateWebhookSubscriptionRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WebhookSubscription>>;
9712
10104
  };
9713
10105
  /**
9714
10106
  * WebhookSubscriptionsApi - factory interface
@@ -9844,7 +10236,7 @@ export declare class WebhookSubscriptionsApi extends BaseAPI {
9844
10236
  * @throws {RequiredError}
9845
10237
  * @memberof WebhookSubscriptionsApi
9846
10238
  */
9847
- createWebhookSubscription(requestParameters: WebhookSubscriptionsApiCreateWebhookSubscriptionRequest, options?: any): Promise<import("axios").AxiosResponse<WebhookSubscription>>;
10239
+ createWebhookSubscription(requestParameters: WebhookSubscriptionsApiCreateWebhookSubscriptionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WebhookSubscription, any>>;
9848
10240
  /**
9849
10241
  * Delete a `webhook-subscription`.
9850
10242
  * @param {WebhookSubscriptionsApiDeleteWebhookSubscriptionRequest} requestParameters Request parameters.
@@ -9852,7 +10244,7 @@ export declare class WebhookSubscriptionsApi extends BaseAPI {
9852
10244
  * @throws {RequiredError}
9853
10245
  * @memberof WebhookSubscriptionsApi
9854
10246
  */
9855
- deleteWebhookSubscription(requestParameters: WebhookSubscriptionsApiDeleteWebhookSubscriptionRequest, options?: any): Promise<import("axios").AxiosResponse<void>>;
10247
+ deleteWebhookSubscription(requestParameters: WebhookSubscriptionsApiDeleteWebhookSubscriptionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
9856
10248
  /**
9857
10249
  * Get a `webhook-subscription`.
9858
10250
  * @param {WebhookSubscriptionsApiGetWebhookSubscriptionRequest} requestParameters Request parameters.
@@ -9860,7 +10252,7 @@ export declare class WebhookSubscriptionsApi extends BaseAPI {
9860
10252
  * @throws {RequiredError}
9861
10253
  * @memberof WebhookSubscriptionsApi
9862
10254
  */
9863
- getWebhookSubscription(requestParameters: WebhookSubscriptionsApiGetWebhookSubscriptionRequest, options?: any): Promise<import("axios").AxiosResponse<WebhookSubscription>>;
10255
+ getWebhookSubscription(requestParameters: WebhookSubscriptionsApiGetWebhookSubscriptionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WebhookSubscription, any>>;
9864
10256
  /**
9865
10257
  * Get `webhook-subscription`s.
9866
10258
  * @param {WebhookSubscriptionsApiGetWebhookSubscriptionsRequest} requestParameters Request parameters.
@@ -9868,7 +10260,7 @@ export declare class WebhookSubscriptionsApi extends BaseAPI {
9868
10260
  * @throws {RequiredError}
9869
10261
  * @memberof WebhookSubscriptionsApi
9870
10262
  */
9871
- getWebhookSubscriptions(requestParameters?: WebhookSubscriptionsApiGetWebhookSubscriptionsRequest, options?: any): Promise<import("axios").AxiosResponse<WebhookSubscriptionList>>;
10263
+ getWebhookSubscriptions(requestParameters?: WebhookSubscriptionsApiGetWebhookSubscriptionsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WebhookSubscriptionList, any>>;
9872
10264
  /**
9873
10265
  * Update a `webhook-subscription`.
9874
10266
  * @param {WebhookSubscriptionsApiUpdateWebhookSubscriptionRequest} requestParameters Request parameters.
@@ -9876,5 +10268,5 @@ export declare class WebhookSubscriptionsApi extends BaseAPI {
9876
10268
  * @throws {RequiredError}
9877
10269
  * @memberof WebhookSubscriptionsApi
9878
10270
  */
9879
- updateWebhookSubscription(requestParameters: WebhookSubscriptionsApiUpdateWebhookSubscriptionRequest, options?: any): Promise<import("axios").AxiosResponse<WebhookSubscription>>;
10271
+ updateWebhookSubscription(requestParameters: WebhookSubscriptionsApiUpdateWebhookSubscriptionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WebhookSubscription, any>>;
9880
10272
  }