@vertexvis/api-client-node 0.15.4 → 0.16.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.
- package/dist/cjs/api.d.ts +554 -507
- package/dist/cjs/api.js +260 -341
- package/dist/cjs/base.d.ts +2 -2
- package/dist/cjs/client/helpers/files.d.ts +3 -13
- package/dist/cjs/client/helpers/files.js +8 -48
- package/dist/cjs/client/helpers/parts.d.ts +3 -5
- package/dist/cjs/client/helpers/queued-jobs.js +1 -1
- package/dist/cjs/client/helpers/scenes.d.ts +1 -1
- package/dist/cjs/client/helpers/scenes.js +2 -11
- package/dist/cjs/client/utils.js +1 -0
- package/dist/cjs/client/version.d.ts +1 -1
- package/dist/cjs/client/version.js +1 -1
- package/dist/cjs/common.d.ts +2 -2
- package/dist/esm/api.d.ts +554 -507
- package/dist/esm/api.js +260 -341
- package/dist/esm/base.d.ts +2 -2
- package/dist/esm/client/helpers/files.d.ts +3 -13
- package/dist/esm/client/helpers/files.js +8 -44
- package/dist/esm/client/helpers/parts.d.ts +3 -5
- package/dist/esm/client/helpers/queued-jobs.js +1 -1
- package/dist/esm/client/helpers/scenes.d.ts +1 -1
- package/dist/esm/client/helpers/scenes.js +2 -11
- package/dist/esm/client/utils.js +1 -0
- package/dist/esm/client/version.d.ts +1 -1
- package/dist/esm/client/version.js +1 -1
- package/dist/esm/common.d.ts +2 -2
- package/package.json +20 -20
package/dist/esm/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
|
-
|
|
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
|
-
|
|
470
|
-
|
|
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
|
-
|
|
496
|
-
|
|
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
|
|
@@ -517,31 +511,6 @@ export interface BoundingBox {
|
|
|
517
511
|
*/
|
|
518
512
|
max: Vector3;
|
|
519
513
|
}
|
|
520
|
-
/**
|
|
521
|
-
* Camera placement in 3D space.
|
|
522
|
-
* @export
|
|
523
|
-
* @interface Camera
|
|
524
|
-
*/
|
|
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;
|
|
544
|
-
}
|
|
545
514
|
/**
|
|
546
515
|
* Fit camera in 3D space based on items in scene.
|
|
547
516
|
* @export
|
|
@@ -555,14 +524,11 @@ export interface CameraFit {
|
|
|
555
524
|
*/
|
|
556
525
|
type: CameraFitTypeEnum;
|
|
557
526
|
}
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
export declare
|
|
563
|
-
FitVisibleSceneItems = "fit-visible-scene-items",
|
|
564
|
-
Reset = "reset"
|
|
565
|
-
}
|
|
527
|
+
export declare const CameraFitTypeEnum: {
|
|
528
|
+
readonly FitVisibleSceneItems: "fit-visible-scene-items";
|
|
529
|
+
readonly Reset: "reset";
|
|
530
|
+
};
|
|
531
|
+
export declare type CameraFitTypeEnum = typeof CameraFitTypeEnum[keyof typeof CameraFitTypeEnum];
|
|
566
532
|
/**
|
|
567
533
|
*
|
|
568
534
|
* @export
|
|
@@ -582,13 +548,10 @@ export interface ChangeMaterialOperation {
|
|
|
582
548
|
*/
|
|
583
549
|
material: ColorMaterial;
|
|
584
550
|
}
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
export declare enum ChangeMaterialOperationTypeEnum {
|
|
590
|
-
ChangeMaterial = "change-material"
|
|
591
|
-
}
|
|
551
|
+
export declare const ChangeMaterialOperationTypeEnum: {
|
|
552
|
+
readonly ChangeMaterial: "change-material";
|
|
553
|
+
};
|
|
554
|
+
export declare type ChangeMaterialOperationTypeEnum = typeof ChangeMaterialOperationTypeEnum[keyof typeof ChangeMaterialOperationTypeEnum];
|
|
592
555
|
/**
|
|
593
556
|
*
|
|
594
557
|
* @export
|
|
@@ -608,13 +571,10 @@ export interface ChangeTransformOperation {
|
|
|
608
571
|
*/
|
|
609
572
|
transform: Matrix4;
|
|
610
573
|
}
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
export declare enum ChangeTransformOperationTypeEnum {
|
|
616
|
-
ChangeTransform = "change-transform"
|
|
617
|
-
}
|
|
574
|
+
export declare const ChangeTransformOperationTypeEnum: {
|
|
575
|
+
readonly ChangeTransform: "change-transform";
|
|
576
|
+
};
|
|
577
|
+
export declare type ChangeTransformOperationTypeEnum = typeof ChangeTransformOperationTypeEnum[keyof typeof ChangeTransformOperationTypeEnum];
|
|
618
578
|
/**
|
|
619
579
|
*
|
|
620
580
|
* @export
|
|
@@ -634,13 +594,10 @@ export interface ChangeVisibilityOperation {
|
|
|
634
594
|
*/
|
|
635
595
|
visible: boolean;
|
|
636
596
|
}
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
export declare enum ChangeVisibilityOperationTypeEnum {
|
|
642
|
-
ChangeVisibility = "change-visibility"
|
|
643
|
-
}
|
|
597
|
+
export declare const ChangeVisibilityOperationTypeEnum: {
|
|
598
|
+
readonly ChangeVisibility: "change-visibility";
|
|
599
|
+
};
|
|
600
|
+
export declare type ChangeVisibilityOperationTypeEnum = typeof ChangeVisibilityOperationTypeEnum[keyof typeof ChangeVisibilityOperationTypeEnum];
|
|
644
601
|
/**
|
|
645
602
|
*
|
|
646
603
|
* @export
|
|
@@ -654,13 +611,10 @@ export interface ClearMaterialOperation {
|
|
|
654
611
|
*/
|
|
655
612
|
type: ClearMaterialOperationTypeEnum;
|
|
656
613
|
}
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
export declare enum ClearMaterialOperationTypeEnum {
|
|
662
|
-
ClearMaterial = "clear-material"
|
|
663
|
-
}
|
|
614
|
+
export declare const ClearMaterialOperationTypeEnum: {
|
|
615
|
+
readonly ClearMaterial: "clear-material";
|
|
616
|
+
};
|
|
617
|
+
export declare type ClearMaterialOperationTypeEnum = typeof ClearMaterialOperationTypeEnum[keyof typeof ClearMaterialOperationTypeEnum];
|
|
664
618
|
/**
|
|
665
619
|
*
|
|
666
620
|
* @export
|
|
@@ -674,13 +628,10 @@ export interface ClearTransformOperation {
|
|
|
674
628
|
*/
|
|
675
629
|
type: ClearTransformOperationTypeEnum;
|
|
676
630
|
}
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
export declare enum ClearTransformOperationTypeEnum {
|
|
682
|
-
ClearTransform = "clear-transform"
|
|
683
|
-
}
|
|
631
|
+
export declare const ClearTransformOperationTypeEnum: {
|
|
632
|
+
readonly ClearTransform: "clear-transform";
|
|
633
|
+
};
|
|
634
|
+
export declare type ClearTransformOperationTypeEnum = typeof ClearTransformOperationTypeEnum[keyof typeof ClearTransformOperationTypeEnum];
|
|
684
635
|
/**
|
|
685
636
|
* RGB color.
|
|
686
637
|
* @export
|
|
@@ -861,7 +812,7 @@ export interface CreateBatchRequest {
|
|
|
861
812
|
* @type {Array<BatchOperation>}
|
|
862
813
|
* @memberof CreateBatchRequest
|
|
863
814
|
*/
|
|
864
|
-
|
|
815
|
+
'vertexvis/batch:operations': Array<BatchOperation>;
|
|
865
816
|
}
|
|
866
817
|
/**
|
|
867
818
|
*
|
|
@@ -1341,6 +1292,12 @@ export interface CreateSceneItemRequestDataRelationships {
|
|
|
1341
1292
|
* @memberof CreateSceneItemRequestDataRelationships
|
|
1342
1293
|
*/
|
|
1343
1294
|
source?: GeometrySetRelationship | PartRevisionRelationship | SceneRelationship;
|
|
1295
|
+
/**
|
|
1296
|
+
*
|
|
1297
|
+
* @type {SceneItemRelationship}
|
|
1298
|
+
* @memberof CreateSceneItemRequestDataRelationships
|
|
1299
|
+
*/
|
|
1300
|
+
referenceTree?: SceneItemRelationship;
|
|
1344
1301
|
}
|
|
1345
1302
|
/**
|
|
1346
1303
|
*
|
|
@@ -1388,10 +1345,10 @@ export interface CreateSceneRequestData {
|
|
|
1388
1345
|
export interface CreateSceneRequestDataAttributes {
|
|
1389
1346
|
/**
|
|
1390
1347
|
*
|
|
1391
|
-
* @type {
|
|
1348
|
+
* @type {PerspectiveCamera | OrthographicCamera}
|
|
1392
1349
|
* @memberof CreateSceneRequestDataAttributes
|
|
1393
1350
|
*/
|
|
1394
|
-
camera?:
|
|
1351
|
+
camera?: PerspectiveCamera | OrthographicCamera;
|
|
1395
1352
|
/**
|
|
1396
1353
|
* ID provided for correlation. For example, an existing ID from a PLM system.
|
|
1397
1354
|
* @type {string}
|
|
@@ -1476,10 +1433,10 @@ export interface CreateSceneViewRequestData {
|
|
|
1476
1433
|
export interface CreateSceneViewRequestDataAttributes {
|
|
1477
1434
|
/**
|
|
1478
1435
|
*
|
|
1479
|
-
* @type {
|
|
1436
|
+
* @type {PerspectiveCamera | OrthographicCamera}
|
|
1480
1437
|
* @memberof CreateSceneViewRequestDataAttributes
|
|
1481
1438
|
*/
|
|
1482
|
-
camera?:
|
|
1439
|
+
camera?: PerspectiveCamera | OrthographicCamera;
|
|
1483
1440
|
/**
|
|
1484
1441
|
*
|
|
1485
1442
|
* @type {CrossSectioning}
|
|
@@ -1799,13 +1756,10 @@ export interface DeselectOperation {
|
|
|
1799
1756
|
*/
|
|
1800
1757
|
type: DeselectOperationTypeEnum;
|
|
1801
1758
|
}
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
export declare enum DeselectOperationTypeEnum {
|
|
1807
|
-
Deselect = "deselect"
|
|
1808
|
-
}
|
|
1759
|
+
export declare const DeselectOperationTypeEnum: {
|
|
1760
|
+
readonly Deselect: "deselect";
|
|
1761
|
+
};
|
|
1762
|
+
export declare type DeselectOperationTypeEnum = typeof DeselectOperationTypeEnum[keyof typeof DeselectOperationTypeEnum];
|
|
1809
1763
|
/**
|
|
1810
1764
|
* An item\'s height and width.
|
|
1811
1765
|
* @export
|
|
@@ -2010,13 +1964,10 @@ export interface FileRelationshipData {
|
|
|
2010
1964
|
*/
|
|
2011
1965
|
id: string;
|
|
2012
1966
|
}
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
export declare enum FileRelationshipDataTypeEnum {
|
|
2018
|
-
File = "file"
|
|
2019
|
-
}
|
|
1967
|
+
export declare const FileRelationshipDataTypeEnum: {
|
|
1968
|
+
readonly File: "file";
|
|
1969
|
+
};
|
|
1970
|
+
export declare type FileRelationshipDataTypeEnum = typeof FileRelationshipDataTypeEnum[keyof typeof FileRelationshipDataTypeEnum];
|
|
2020
1971
|
/**
|
|
2021
1972
|
*
|
|
2022
1973
|
* @export
|
|
@@ -2124,13 +2075,10 @@ export interface GeometrySetRelationshipData {
|
|
|
2124
2075
|
*/
|
|
2125
2076
|
id: string;
|
|
2126
2077
|
}
|
|
2127
|
-
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
export declare enum GeometrySetRelationshipDataTypeEnum {
|
|
2132
|
-
GeometrySet = "geometry-set"
|
|
2133
|
-
}
|
|
2078
|
+
export declare const GeometrySetRelationshipDataTypeEnum: {
|
|
2079
|
+
readonly GeometrySet: "geometry-set";
|
|
2080
|
+
};
|
|
2081
|
+
export declare type GeometrySetRelationshipDataTypeEnum = typeof GeometrySetRelationshipDataTypeEnum[keyof typeof GeometrySetRelationshipDataTypeEnum];
|
|
2134
2082
|
/**
|
|
2135
2083
|
*
|
|
2136
2084
|
* @export
|
|
@@ -2385,17 +2333,14 @@ export interface MetadataValue {
|
|
|
2385
2333
|
*/
|
|
2386
2334
|
type: MetadataValueTypeEnum;
|
|
2387
2335
|
}
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
Date = "date",
|
|
2397
|
-
Null = "null"
|
|
2398
|
-
}
|
|
2336
|
+
export declare const MetadataValueTypeEnum: {
|
|
2337
|
+
readonly String: "string";
|
|
2338
|
+
readonly Long: "long";
|
|
2339
|
+
readonly Float: "float";
|
|
2340
|
+
readonly Date: "date";
|
|
2341
|
+
readonly Null: "null";
|
|
2342
|
+
};
|
|
2343
|
+
export declare type MetadataValueTypeEnum = typeof MetadataValueTypeEnum[keyof typeof MetadataValueTypeEnum];
|
|
2399
2344
|
/**
|
|
2400
2345
|
*
|
|
2401
2346
|
* @export
|
|
@@ -2471,6 +2416,43 @@ export interface Orientation {
|
|
|
2471
2416
|
*/
|
|
2472
2417
|
front: Vector3;
|
|
2473
2418
|
}
|
|
2419
|
+
/**
|
|
2420
|
+
* A camera type where an object\'s size stays consistent regardless of its distance to the camera.
|
|
2421
|
+
* @export
|
|
2422
|
+
* @interface OrthographicCamera
|
|
2423
|
+
*/
|
|
2424
|
+
export interface OrthographicCamera {
|
|
2425
|
+
/**
|
|
2426
|
+
*
|
|
2427
|
+
* @type {string}
|
|
2428
|
+
* @memberof OrthographicCamera
|
|
2429
|
+
*/
|
|
2430
|
+
type?: string;
|
|
2431
|
+
/**
|
|
2432
|
+
*
|
|
2433
|
+
* @type {Vector3}
|
|
2434
|
+
* @memberof OrthographicCamera
|
|
2435
|
+
*/
|
|
2436
|
+
viewVector: Vector3;
|
|
2437
|
+
/**
|
|
2438
|
+
*
|
|
2439
|
+
* @type {Vector3}
|
|
2440
|
+
* @memberof OrthographicCamera
|
|
2441
|
+
*/
|
|
2442
|
+
lookAt: Vector3;
|
|
2443
|
+
/**
|
|
2444
|
+
*
|
|
2445
|
+
* @type {Vector3}
|
|
2446
|
+
* @memberof OrthographicCamera
|
|
2447
|
+
*/
|
|
2448
|
+
up: Vector3;
|
|
2449
|
+
/**
|
|
2450
|
+
*
|
|
2451
|
+
* @type {number}
|
|
2452
|
+
* @memberof OrthographicCamera
|
|
2453
|
+
*/
|
|
2454
|
+
fovHeight: number;
|
|
2455
|
+
}
|
|
2474
2456
|
/**
|
|
2475
2457
|
*
|
|
2476
2458
|
* @export
|
|
@@ -2594,13 +2576,10 @@ export interface PartDataRelationshipsPartRevisions {
|
|
|
2594
2576
|
*/
|
|
2595
2577
|
id: string;
|
|
2596
2578
|
}
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
|
|
2600
|
-
|
|
2601
|
-
export declare enum PartDataRelationshipsPartRevisionsTypeEnum {
|
|
2602
|
-
PartRevision = "part-revision"
|
|
2603
|
-
}
|
|
2579
|
+
export declare const PartDataRelationshipsPartRevisionsTypeEnum: {
|
|
2580
|
+
readonly PartRevision: "part-revision";
|
|
2581
|
+
};
|
|
2582
|
+
export declare type PartDataRelationshipsPartRevisionsTypeEnum = typeof PartDataRelationshipsPartRevisionsTypeEnum[keyof typeof PartDataRelationshipsPartRevisionsTypeEnum];
|
|
2604
2583
|
/**
|
|
2605
2584
|
*
|
|
2606
2585
|
* @export
|
|
@@ -2641,13 +2620,10 @@ export interface PartRelationshipData {
|
|
|
2641
2620
|
*/
|
|
2642
2621
|
id: string;
|
|
2643
2622
|
}
|
|
2644
|
-
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
|
|
2648
|
-
export declare enum PartRelationshipDataTypeEnum {
|
|
2649
|
-
Part = "part"
|
|
2650
|
-
}
|
|
2623
|
+
export declare const PartRelationshipDataTypeEnum: {
|
|
2624
|
+
readonly Part: "part";
|
|
2625
|
+
};
|
|
2626
|
+
export declare type PartRelationshipDataTypeEnum = typeof PartRelationshipDataTypeEnum[keyof typeof PartRelationshipDataTypeEnum];
|
|
2651
2627
|
/**
|
|
2652
2628
|
*
|
|
2653
2629
|
* @export
|
|
@@ -2807,6 +2783,37 @@ export interface PartRevisionSuppliedId {
|
|
|
2807
2783
|
*/
|
|
2808
2784
|
suppliedRevisionId: string;
|
|
2809
2785
|
}
|
|
2786
|
+
/**
|
|
2787
|
+
* A camera type that mimics the way the human eye sees.
|
|
2788
|
+
* @export
|
|
2789
|
+
* @interface PerspectiveCamera
|
|
2790
|
+
*/
|
|
2791
|
+
export interface PerspectiveCamera {
|
|
2792
|
+
/**
|
|
2793
|
+
*
|
|
2794
|
+
* @type {string}
|
|
2795
|
+
* @memberof PerspectiveCamera
|
|
2796
|
+
*/
|
|
2797
|
+
type?: string;
|
|
2798
|
+
/**
|
|
2799
|
+
*
|
|
2800
|
+
* @type {Vector3}
|
|
2801
|
+
* @memberof PerspectiveCamera
|
|
2802
|
+
*/
|
|
2803
|
+
position: Vector3;
|
|
2804
|
+
/**
|
|
2805
|
+
*
|
|
2806
|
+
* @type {Vector3}
|
|
2807
|
+
* @memberof PerspectiveCamera
|
|
2808
|
+
*/
|
|
2809
|
+
lookAt: Vector3;
|
|
2810
|
+
/**
|
|
2811
|
+
*
|
|
2812
|
+
* @type {Vector3}
|
|
2813
|
+
* @memberof PerspectiveCamera
|
|
2814
|
+
*/
|
|
2815
|
+
up: Vector3;
|
|
2816
|
+
}
|
|
2810
2817
|
/**
|
|
2811
2818
|
* 2D point.
|
|
2812
2819
|
* @export
|
|
@@ -2831,9 +2838,10 @@ export interface Point {
|
|
|
2831
2838
|
* @export
|
|
2832
2839
|
* @enum {string}
|
|
2833
2840
|
*/
|
|
2834
|
-
export declare
|
|
2835
|
-
All
|
|
2836
|
-
}
|
|
2841
|
+
export declare const QueryAll: {
|
|
2842
|
+
readonly All: "all";
|
|
2843
|
+
};
|
|
2844
|
+
export declare type QueryAll = typeof QueryAll[keyof typeof QueryAll];
|
|
2837
2845
|
/**
|
|
2838
2846
|
*
|
|
2839
2847
|
* @export
|
|
@@ -2866,13 +2874,10 @@ export interface QueryByCollectionData {
|
|
|
2866
2874
|
*/
|
|
2867
2875
|
attributes: QueryByCollectionDataAttributes;
|
|
2868
2876
|
}
|
|
2869
|
-
|
|
2870
|
-
|
|
2871
|
-
|
|
2872
|
-
|
|
2873
|
-
export declare enum QueryByCollectionDataTypeEnum {
|
|
2874
|
-
QueryByCollection = "query-by-collection"
|
|
2875
|
-
}
|
|
2877
|
+
export declare const QueryByCollectionDataTypeEnum: {
|
|
2878
|
+
readonly QueryByCollection: "query-by-collection";
|
|
2879
|
+
};
|
|
2880
|
+
export declare type QueryByCollectionDataTypeEnum = typeof QueryByCollectionDataTypeEnum[keyof typeof QueryByCollectionDataTypeEnum];
|
|
2876
2881
|
/**
|
|
2877
2882
|
*
|
|
2878
2883
|
* @export
|
|
@@ -2892,14 +2897,11 @@ export interface QueryByCollectionDataAttributes {
|
|
|
2892
2897
|
*/
|
|
2893
2898
|
values: Array<QueryById>;
|
|
2894
2899
|
}
|
|
2895
|
-
|
|
2896
|
-
|
|
2897
|
-
|
|
2898
|
-
|
|
2899
|
-
export declare
|
|
2900
|
-
And = "and",
|
|
2901
|
-
Or = "or"
|
|
2902
|
-
}
|
|
2900
|
+
export declare const QueryByCollectionDataAttributesTypeEnum: {
|
|
2901
|
+
readonly And: "and";
|
|
2902
|
+
readonly Or: "or";
|
|
2903
|
+
};
|
|
2904
|
+
export declare type QueryByCollectionDataAttributesTypeEnum = typeof QueryByCollectionDataAttributesTypeEnum[keyof typeof QueryByCollectionDataAttributesTypeEnum];
|
|
2903
2905
|
/**
|
|
2904
2906
|
*
|
|
2905
2907
|
* @export
|
|
@@ -2932,13 +2934,10 @@ export interface QueryByIdData {
|
|
|
2932
2934
|
*/
|
|
2933
2935
|
attributes: QueryByIdDataAttributes;
|
|
2934
2936
|
}
|
|
2935
|
-
|
|
2936
|
-
|
|
2937
|
-
|
|
2938
|
-
|
|
2939
|
-
export declare enum QueryByIdDataTypeEnum {
|
|
2940
|
-
QueryById = "query-by-id"
|
|
2941
|
-
}
|
|
2937
|
+
export declare const QueryByIdDataTypeEnum: {
|
|
2938
|
+
readonly QueryById: "query-by-id";
|
|
2939
|
+
};
|
|
2940
|
+
export declare type QueryByIdDataTypeEnum = typeof QueryByIdDataTypeEnum[keyof typeof QueryByIdDataTypeEnum];
|
|
2942
2941
|
/**
|
|
2943
2942
|
*
|
|
2944
2943
|
* @export
|
|
@@ -2958,14 +2957,11 @@ export interface QueryByIdDataAttributes {
|
|
|
2958
2957
|
*/
|
|
2959
2958
|
value: string;
|
|
2960
2959
|
}
|
|
2961
|
-
|
|
2962
|
-
|
|
2963
|
-
|
|
2964
|
-
|
|
2965
|
-
export declare
|
|
2966
|
-
Id = "id",
|
|
2967
|
-
SuppliedId = "suppliedId"
|
|
2968
|
-
}
|
|
2960
|
+
export declare const QueryByIdDataAttributesTypeEnum: {
|
|
2961
|
+
readonly Id: "id";
|
|
2962
|
+
readonly SuppliedId: "suppliedId";
|
|
2963
|
+
};
|
|
2964
|
+
export declare type QueryByIdDataAttributesTypeEnum = typeof QueryByIdDataAttributesTypeEnum[keyof typeof QueryByIdDataAttributesTypeEnum];
|
|
2969
2965
|
/**
|
|
2970
2966
|
*
|
|
2971
2967
|
* @export
|
|
@@ -3299,10 +3295,10 @@ export interface SceneData {
|
|
|
3299
3295
|
export interface SceneDataAttributes {
|
|
3300
3296
|
/**
|
|
3301
3297
|
*
|
|
3302
|
-
* @type {
|
|
3298
|
+
* @type {PerspectiveCamera | OrthographicCamera}
|
|
3303
3299
|
* @memberof SceneDataAttributes
|
|
3304
3300
|
*/
|
|
3305
|
-
camera?:
|
|
3301
|
+
camera?: PerspectiveCamera | OrthographicCamera;
|
|
3306
3302
|
/**
|
|
3307
3303
|
*
|
|
3308
3304
|
* @type {string}
|
|
@@ -3684,13 +3680,10 @@ export interface SceneItemRelationshipData {
|
|
|
3684
3680
|
*/
|
|
3685
3681
|
id: string;
|
|
3686
3682
|
}
|
|
3687
|
-
|
|
3688
|
-
|
|
3689
|
-
|
|
3690
|
-
|
|
3691
|
-
export declare enum SceneItemRelationshipDataTypeEnum {
|
|
3692
|
-
SceneItem = "scene-item"
|
|
3693
|
-
}
|
|
3683
|
+
export declare const SceneItemRelationshipDataTypeEnum: {
|
|
3684
|
+
readonly SceneItem: "scene-item";
|
|
3685
|
+
};
|
|
3686
|
+
export declare type SceneItemRelationshipDataTypeEnum = typeof SceneItemRelationshipDataTypeEnum[keyof typeof SceneItemRelationshipDataTypeEnum];
|
|
3694
3687
|
/**
|
|
3695
3688
|
*
|
|
3696
3689
|
* @export
|
|
@@ -3763,13 +3756,10 @@ export interface SceneRelationshipData {
|
|
|
3763
3756
|
*/
|
|
3764
3757
|
id: string;
|
|
3765
3758
|
}
|
|
3766
|
-
|
|
3767
|
-
|
|
3768
|
-
|
|
3769
|
-
|
|
3770
|
-
export declare enum SceneRelationshipDataTypeEnum {
|
|
3771
|
-
Scene = "scene"
|
|
3772
|
-
}
|
|
3759
|
+
export declare const SceneRelationshipDataTypeEnum: {
|
|
3760
|
+
readonly Scene: "scene";
|
|
3761
|
+
};
|
|
3762
|
+
export declare type SceneRelationshipDataTypeEnum = typeof SceneRelationshipDataTypeEnum[keyof typeof SceneRelationshipDataTypeEnum];
|
|
3773
3763
|
/**
|
|
3774
3764
|
*
|
|
3775
3765
|
* @export
|
|
@@ -3830,10 +3820,10 @@ export interface SceneViewData {
|
|
|
3830
3820
|
export interface SceneViewDataAttributes {
|
|
3831
3821
|
/**
|
|
3832
3822
|
*
|
|
3833
|
-
* @type {
|
|
3823
|
+
* @type {PerspectiveCamera | OrthographicCamera}
|
|
3834
3824
|
* @memberof SceneViewDataAttributes
|
|
3835
3825
|
*/
|
|
3836
|
-
camera:
|
|
3826
|
+
camera: PerspectiveCamera | OrthographicCamera;
|
|
3837
3827
|
/**
|
|
3838
3828
|
*
|
|
3839
3829
|
* @type {string}
|
|
@@ -3946,13 +3936,10 @@ export interface SceneViewRelationshipData {
|
|
|
3946
3936
|
*/
|
|
3947
3937
|
id: string;
|
|
3948
3938
|
}
|
|
3949
|
-
|
|
3950
|
-
|
|
3951
|
-
|
|
3952
|
-
|
|
3953
|
-
export declare enum SceneViewRelationshipDataTypeEnum {
|
|
3954
|
-
SceneView = "scene-view"
|
|
3955
|
-
}
|
|
3939
|
+
export declare const SceneViewRelationshipDataTypeEnum: {
|
|
3940
|
+
readonly SceneView: "scene-view";
|
|
3941
|
+
};
|
|
3942
|
+
export declare type SceneViewRelationshipDataTypeEnum = typeof SceneViewRelationshipDataTypeEnum[keyof typeof SceneViewRelationshipDataTypeEnum];
|
|
3956
3943
|
/**
|
|
3957
3944
|
*
|
|
3958
3945
|
* @export
|
|
@@ -4015,10 +4002,10 @@ export interface SceneViewStateData {
|
|
|
4015
4002
|
export interface SceneViewStateDataAttributes {
|
|
4016
4003
|
/**
|
|
4017
4004
|
*
|
|
4018
|
-
* @type {
|
|
4005
|
+
* @type {PerspectiveCamera | OrthographicCamera}
|
|
4019
4006
|
* @memberof SceneViewStateDataAttributes
|
|
4020
4007
|
*/
|
|
4021
|
-
camera?:
|
|
4008
|
+
camera?: PerspectiveCamera | OrthographicCamera;
|
|
4022
4009
|
/**
|
|
4023
4010
|
*
|
|
4024
4011
|
* @type {string}
|
|
@@ -4091,13 +4078,10 @@ export interface SceneViewStateRelationshipData {
|
|
|
4091
4078
|
*/
|
|
4092
4079
|
id: string;
|
|
4093
4080
|
}
|
|
4094
|
-
|
|
4095
|
-
|
|
4096
|
-
|
|
4097
|
-
|
|
4098
|
-
export declare enum SceneViewStateRelationshipDataTypeEnum {
|
|
4099
|
-
SceneViewState = "scene-view-state"
|
|
4100
|
-
}
|
|
4081
|
+
export declare const SceneViewStateRelationshipDataTypeEnum: {
|
|
4082
|
+
readonly SceneViewState: "scene-view-state";
|
|
4083
|
+
};
|
|
4084
|
+
export declare type SceneViewStateRelationshipDataTypeEnum = typeof SceneViewStateRelationshipDataTypeEnum[keyof typeof SceneViewStateRelationshipDataTypeEnum];
|
|
4101
4085
|
/**
|
|
4102
4086
|
*
|
|
4103
4087
|
* @export
|
|
@@ -4136,13 +4120,10 @@ export interface SelectOperation {
|
|
|
4136
4120
|
*/
|
|
4137
4121
|
material: ColorMaterial;
|
|
4138
4122
|
}
|
|
4139
|
-
|
|
4140
|
-
|
|
4141
|
-
|
|
4142
|
-
|
|
4143
|
-
export declare enum SelectOperationTypeEnum {
|
|
4144
|
-
Select = "select"
|
|
4145
|
-
}
|
|
4123
|
+
export declare const SelectOperationTypeEnum: {
|
|
4124
|
+
readonly Select: "select";
|
|
4125
|
+
};
|
|
4126
|
+
export declare type SelectOperationTypeEnum = typeof SelectOperationTypeEnum[keyof typeof SelectOperationTypeEnum];
|
|
4146
4127
|
/**
|
|
4147
4128
|
*
|
|
4148
4129
|
* @export
|
|
@@ -4396,14 +4377,11 @@ export interface UpdateAccountRequestDataAttributes {
|
|
|
4396
4377
|
*/
|
|
4397
4378
|
owner?: string;
|
|
4398
4379
|
}
|
|
4399
|
-
|
|
4400
|
-
|
|
4401
|
-
|
|
4402
|
-
|
|
4403
|
-
export declare
|
|
4404
|
-
Active = "active",
|
|
4405
|
-
Disabled = "disabled"
|
|
4406
|
-
}
|
|
4380
|
+
export declare const UpdateAccountRequestDataAttributesStatusEnum: {
|
|
4381
|
+
readonly Active: "active";
|
|
4382
|
+
readonly Disabled: "disabled";
|
|
4383
|
+
};
|
|
4384
|
+
export declare type UpdateAccountRequestDataAttributesStatusEnum = typeof UpdateAccountRequestDataAttributesStatusEnum[keyof typeof UpdateAccountRequestDataAttributesStatusEnum];
|
|
4407
4385
|
/**
|
|
4408
4386
|
*
|
|
4409
4387
|
* @export
|
|
@@ -4686,10 +4664,10 @@ export interface UpdateSceneRequestData {
|
|
|
4686
4664
|
export interface UpdateSceneRequestDataAttributes {
|
|
4687
4665
|
/**
|
|
4688
4666
|
*
|
|
4689
|
-
* @type {
|
|
4667
|
+
* @type {PerspectiveCamera | OrthographicCamera | CameraFit}
|
|
4690
4668
|
* @memberof UpdateSceneRequestDataAttributes
|
|
4691
4669
|
*/
|
|
4692
|
-
camera?:
|
|
4670
|
+
camera?: PerspectiveCamera | OrthographicCamera | CameraFit;
|
|
4693
4671
|
/**
|
|
4694
4672
|
* State of the scene.
|
|
4695
4673
|
* @type {string}
|
|
@@ -4721,14 +4699,11 @@ export interface UpdateSceneRequestDataAttributes {
|
|
|
4721
4699
|
*/
|
|
4722
4700
|
worldOrientation?: Orientation;
|
|
4723
4701
|
}
|
|
4724
|
-
|
|
4725
|
-
|
|
4726
|
-
|
|
4727
|
-
|
|
4728
|
-
export declare
|
|
4729
|
-
Draft = "draft",
|
|
4730
|
-
Commit = "commit"
|
|
4731
|
-
}
|
|
4702
|
+
export declare const UpdateSceneRequestDataAttributesStateEnum: {
|
|
4703
|
+
readonly Draft: "draft";
|
|
4704
|
+
readonly Commit: "commit";
|
|
4705
|
+
};
|
|
4706
|
+
export declare type UpdateSceneRequestDataAttributesStateEnum = typeof UpdateSceneRequestDataAttributesStateEnum[keyof typeof UpdateSceneRequestDataAttributesStateEnum];
|
|
4732
4707
|
/**
|
|
4733
4708
|
*
|
|
4734
4709
|
* @export
|
|
@@ -4769,10 +4744,10 @@ export interface UpdateSceneViewRequestData {
|
|
|
4769
4744
|
export interface UpdateSceneViewRequestDataAttributes {
|
|
4770
4745
|
/**
|
|
4771
4746
|
*
|
|
4772
|
-
* @type {
|
|
4747
|
+
* @type {PerspectiveCamera | OrthographicCamera | CameraFit}
|
|
4773
4748
|
* @memberof UpdateSceneViewRequestDataAttributes
|
|
4774
4749
|
*/
|
|
4775
|
-
camera?:
|
|
4750
|
+
camera?: PerspectiveCamera | OrthographicCamera | CameraFit;
|
|
4776
4751
|
/**
|
|
4777
4752
|
*
|
|
4778
4753
|
* @type {CrossSectioning}
|
|
@@ -4869,14 +4844,11 @@ export interface UpdateWebhookSubscriptionRequestDataAttributes {
|
|
|
4869
4844
|
*/
|
|
4870
4845
|
url?: string;
|
|
4871
4846
|
}
|
|
4872
|
-
|
|
4873
|
-
|
|
4874
|
-
|
|
4875
|
-
|
|
4876
|
-
export declare
|
|
4877
|
-
Active = "active",
|
|
4878
|
-
Paused = "paused"
|
|
4879
|
-
}
|
|
4847
|
+
export declare const UpdateWebhookSubscriptionRequestDataAttributesStatusEnum: {
|
|
4848
|
+
readonly Active: "active";
|
|
4849
|
+
readonly Paused: "paused";
|
|
4850
|
+
};
|
|
4851
|
+
export declare type UpdateWebhookSubscriptionRequestDataAttributesStatusEnum = typeof UpdateWebhookSubscriptionRequestDataAttributesStatusEnum[keyof typeof UpdateWebhookSubscriptionRequestDataAttributesStatusEnum];
|
|
4880
4852
|
/**
|
|
4881
4853
|
* 3D vector.
|
|
4882
4854
|
* @export
|
|
@@ -5069,13 +5041,10 @@ export interface WebhookEventDataRelationshipsOwnerData {
|
|
|
5069
5041
|
*/
|
|
5070
5042
|
id: string;
|
|
5071
5043
|
}
|
|
5072
|
-
|
|
5073
|
-
|
|
5074
|
-
|
|
5075
|
-
|
|
5076
|
-
export declare enum WebhookEventDataRelationshipsOwnerDataTypeEnum {
|
|
5077
|
-
Account = "account"
|
|
5078
|
-
}
|
|
5044
|
+
export declare const WebhookEventDataRelationshipsOwnerDataTypeEnum: {
|
|
5045
|
+
readonly Account: "account";
|
|
5046
|
+
};
|
|
5047
|
+
export declare type WebhookEventDataRelationshipsOwnerDataTypeEnum = typeof WebhookEventDataRelationshipsOwnerDataTypeEnum[keyof typeof WebhookEventDataRelationshipsOwnerDataTypeEnum];
|
|
5079
5048
|
/**
|
|
5080
5049
|
* Relationship to a `resource`.
|
|
5081
5050
|
* @export
|
|
@@ -5205,14 +5174,11 @@ export interface WebhookSubscriptionDataAttributes {
|
|
|
5205
5174
|
*/
|
|
5206
5175
|
created: string;
|
|
5207
5176
|
}
|
|
5208
|
-
|
|
5209
|
-
|
|
5210
|
-
|
|
5211
|
-
|
|
5212
|
-
export declare
|
|
5213
|
-
Active = "active",
|
|
5214
|
-
Paused = "paused"
|
|
5215
|
-
}
|
|
5177
|
+
export declare const WebhookSubscriptionDataAttributesStatusEnum: {
|
|
5178
|
+
readonly Active: "active";
|
|
5179
|
+
readonly Paused: "paused";
|
|
5180
|
+
};
|
|
5181
|
+
export declare type WebhookSubscriptionDataAttributesStatusEnum = typeof WebhookSubscriptionDataAttributesStatusEnum[keyof typeof WebhookSubscriptionDataAttributesStatusEnum];
|
|
5216
5182
|
/**
|
|
5217
5183
|
*
|
|
5218
5184
|
* @export
|
|
@@ -5245,7 +5211,7 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
5245
5211
|
* @param {*} [options] Override http request option.
|
|
5246
5212
|
* @throws {RequiredError}
|
|
5247
5213
|
*/
|
|
5248
|
-
createAccount: (createAccountRequest: CreateAccountRequest, options?:
|
|
5214
|
+
createAccount: (createAccountRequest: CreateAccountRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5249
5215
|
/**
|
|
5250
5216
|
* Create an `application` for an `account`.
|
|
5251
5217
|
* @param {string} id The `account` ID.
|
|
@@ -5253,21 +5219,21 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
5253
5219
|
* @param {*} [options] Override http request option.
|
|
5254
5220
|
* @throws {RequiredError}
|
|
5255
5221
|
*/
|
|
5256
|
-
createApplicationForAccount: (id: string, adminCreateApplicationRequest: AdminCreateApplicationRequest, options?:
|
|
5222
|
+
createApplicationForAccount: (id: string, adminCreateApplicationRequest: AdminCreateApplicationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5257
5223
|
/**
|
|
5258
5224
|
* Delete an `account`.
|
|
5259
5225
|
* @param {string} id The `account` ID.
|
|
5260
5226
|
* @param {*} [options] Override http request option.
|
|
5261
5227
|
* @throws {RequiredError}
|
|
5262
5228
|
*/
|
|
5263
|
-
deleteAccount: (id: string, options?:
|
|
5229
|
+
deleteAccount: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5264
5230
|
/**
|
|
5265
5231
|
* Get an `account`.
|
|
5266
5232
|
* @param {string} id The `account` ID.
|
|
5267
5233
|
* @param {*} [options] Override http request option.
|
|
5268
5234
|
* @throws {RequiredError}
|
|
5269
5235
|
*/
|
|
5270
|
-
getAccount: (id: string, options?:
|
|
5236
|
+
getAccount: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5271
5237
|
/**
|
|
5272
5238
|
* Update an `account`.
|
|
5273
5239
|
* @param {string} id The `account` ID.
|
|
@@ -5275,7 +5241,7 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
5275
5241
|
* @param {*} [options] Override http request option.
|
|
5276
5242
|
* @throws {RequiredError}
|
|
5277
5243
|
*/
|
|
5278
|
-
updateAccount: (id: string, updateAccountRequest: UpdateAccountRequest, options?:
|
|
5244
|
+
updateAccount: (id: string, updateAccountRequest: UpdateAccountRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5279
5245
|
};
|
|
5280
5246
|
/**
|
|
5281
5247
|
* AccountsApi - functional programming interface
|
|
@@ -5288,7 +5254,7 @@ export declare const AccountsApiFp: (configuration?: Configuration | undefined)
|
|
|
5288
5254
|
* @param {*} [options] Override http request option.
|
|
5289
5255
|
* @throws {RequiredError}
|
|
5290
5256
|
*/
|
|
5291
|
-
createAccount(createAccountRequest: CreateAccountRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Account>>;
|
|
5257
|
+
createAccount(createAccountRequest: CreateAccountRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Account>>;
|
|
5292
5258
|
/**
|
|
5293
5259
|
* Create an `application` for an `account`.
|
|
5294
5260
|
* @param {string} id The `account` ID.
|
|
@@ -5296,21 +5262,21 @@ export declare const AccountsApiFp: (configuration?: Configuration | undefined)
|
|
|
5296
5262
|
* @param {*} [options] Override http request option.
|
|
5297
5263
|
* @throws {RequiredError}
|
|
5298
5264
|
*/
|
|
5299
|
-
createApplicationForAccount(id: string, adminCreateApplicationRequest: AdminCreateApplicationRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CreatedApplication>>;
|
|
5265
|
+
createApplicationForAccount(id: string, adminCreateApplicationRequest: AdminCreateApplicationRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CreatedApplication>>;
|
|
5300
5266
|
/**
|
|
5301
5267
|
* Delete an `account`.
|
|
5302
5268
|
* @param {string} id The `account` ID.
|
|
5303
5269
|
* @param {*} [options] Override http request option.
|
|
5304
5270
|
* @throws {RequiredError}
|
|
5305
5271
|
*/
|
|
5306
|
-
deleteAccount(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
5272
|
+
deleteAccount(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
5307
5273
|
/**
|
|
5308
5274
|
* Get an `account`.
|
|
5309
5275
|
* @param {string} id The `account` ID.
|
|
5310
5276
|
* @param {*} [options] Override http request option.
|
|
5311
5277
|
* @throws {RequiredError}
|
|
5312
5278
|
*/
|
|
5313
|
-
getAccount(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Account>>;
|
|
5279
|
+
getAccount(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Account>>;
|
|
5314
5280
|
/**
|
|
5315
5281
|
* Update an `account`.
|
|
5316
5282
|
* @param {string} id The `account` ID.
|
|
@@ -5318,7 +5284,7 @@ export declare const AccountsApiFp: (configuration?: Configuration | undefined)
|
|
|
5318
5284
|
* @param {*} [options] Override http request option.
|
|
5319
5285
|
* @throws {RequiredError}
|
|
5320
5286
|
*/
|
|
5321
|
-
updateAccount(id: string, updateAccountRequest: UpdateAccountRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Account>>;
|
|
5287
|
+
updateAccount(id: string, updateAccountRequest: UpdateAccountRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Account>>;
|
|
5322
5288
|
};
|
|
5323
5289
|
/**
|
|
5324
5290
|
* AccountsApi - factory interface
|
|
@@ -5454,7 +5420,7 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
5454
5420
|
* @throws {RequiredError}
|
|
5455
5421
|
* @memberof AccountsApi
|
|
5456
5422
|
*/
|
|
5457
|
-
createAccount(requestParameters: AccountsApiCreateAccountRequest, options?:
|
|
5423
|
+
createAccount(requestParameters: AccountsApiCreateAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Account, any>>;
|
|
5458
5424
|
/**
|
|
5459
5425
|
* Create an `application` for an `account`.
|
|
5460
5426
|
* @param {AccountsApiCreateApplicationForAccountRequest} requestParameters Request parameters.
|
|
@@ -5462,7 +5428,7 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
5462
5428
|
* @throws {RequiredError}
|
|
5463
5429
|
* @memberof AccountsApi
|
|
5464
5430
|
*/
|
|
5465
|
-
createApplicationForAccount(requestParameters: AccountsApiCreateApplicationForAccountRequest, options?:
|
|
5431
|
+
createApplicationForAccount(requestParameters: AccountsApiCreateApplicationForAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatedApplication, any>>;
|
|
5466
5432
|
/**
|
|
5467
5433
|
* Delete an `account`.
|
|
5468
5434
|
* @param {AccountsApiDeleteAccountRequest} requestParameters Request parameters.
|
|
@@ -5470,7 +5436,7 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
5470
5436
|
* @throws {RequiredError}
|
|
5471
5437
|
* @memberof AccountsApi
|
|
5472
5438
|
*/
|
|
5473
|
-
deleteAccount(requestParameters: AccountsApiDeleteAccountRequest, options?:
|
|
5439
|
+
deleteAccount(requestParameters: AccountsApiDeleteAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
5474
5440
|
/**
|
|
5475
5441
|
* Get an `account`.
|
|
5476
5442
|
* @param {AccountsApiGetAccountRequest} requestParameters Request parameters.
|
|
@@ -5478,7 +5444,7 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
5478
5444
|
* @throws {RequiredError}
|
|
5479
5445
|
* @memberof AccountsApi
|
|
5480
5446
|
*/
|
|
5481
|
-
getAccount(requestParameters: AccountsApiGetAccountRequest, options?:
|
|
5447
|
+
getAccount(requestParameters: AccountsApiGetAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Account, any>>;
|
|
5482
5448
|
/**
|
|
5483
5449
|
* Update an `account`.
|
|
5484
5450
|
* @param {AccountsApiUpdateAccountRequest} requestParameters Request parameters.
|
|
@@ -5486,7 +5452,7 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
5486
5452
|
* @throws {RequiredError}
|
|
5487
5453
|
* @memberof AccountsApi
|
|
5488
5454
|
*/
|
|
5489
|
-
updateAccount(requestParameters: AccountsApiUpdateAccountRequest, options?:
|
|
5455
|
+
updateAccount(requestParameters: AccountsApiUpdateAccountRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Account, any>>;
|
|
5490
5456
|
}
|
|
5491
5457
|
/**
|
|
5492
5458
|
* ApplicationsApi - axios parameter creator
|
|
@@ -5499,21 +5465,21 @@ export declare const ApplicationsApiAxiosParamCreator: (configuration?: Configur
|
|
|
5499
5465
|
* @param {*} [options] Override http request option.
|
|
5500
5466
|
* @throws {RequiredError}
|
|
5501
5467
|
*/
|
|
5502
|
-
createApplication: (createApplicationRequest: CreateApplicationRequest, options?:
|
|
5468
|
+
createApplication: (createApplicationRequest: CreateApplicationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5503
5469
|
/**
|
|
5504
5470
|
* Delete an `application`.
|
|
5505
5471
|
* @param {string} id The `application` ID.
|
|
5506
5472
|
* @param {*} [options] Override http request option.
|
|
5507
5473
|
* @throws {RequiredError}
|
|
5508
5474
|
*/
|
|
5509
|
-
deleteApplication: (id: string, options?:
|
|
5475
|
+
deleteApplication: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5510
5476
|
/**
|
|
5511
5477
|
* Get an `application`.
|
|
5512
5478
|
* @param {string} id The `application` ID.
|
|
5513
5479
|
* @param {*} [options] Override http request option.
|
|
5514
5480
|
* @throws {RequiredError}
|
|
5515
5481
|
*/
|
|
5516
|
-
getApplication: (id: string, options?:
|
|
5482
|
+
getApplication: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5517
5483
|
/**
|
|
5518
5484
|
* Get `applications`.
|
|
5519
5485
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
@@ -5521,7 +5487,7 @@ export declare const ApplicationsApiAxiosParamCreator: (configuration?: Configur
|
|
|
5521
5487
|
* @param {*} [options] Override http request option.
|
|
5522
5488
|
* @throws {RequiredError}
|
|
5523
5489
|
*/
|
|
5524
|
-
getApplications: (pageCursor?: string | undefined, pageSize?: number | undefined, options?:
|
|
5490
|
+
getApplications: (pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5525
5491
|
/**
|
|
5526
5492
|
* Update an `application`.
|
|
5527
5493
|
* @param {string} id The `application` ID.
|
|
@@ -5529,7 +5495,7 @@ export declare const ApplicationsApiAxiosParamCreator: (configuration?: Configur
|
|
|
5529
5495
|
* @param {*} [options] Override http request option.
|
|
5530
5496
|
* @throws {RequiredError}
|
|
5531
5497
|
*/
|
|
5532
|
-
updateApplication: (id: string, updateApplicationRequest: UpdateApplicationRequest, options?:
|
|
5498
|
+
updateApplication: (id: string, updateApplicationRequest: UpdateApplicationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5533
5499
|
};
|
|
5534
5500
|
/**
|
|
5535
5501
|
* ApplicationsApi - functional programming interface
|
|
@@ -5542,21 +5508,21 @@ export declare const ApplicationsApiFp: (configuration?: Configuration | undefin
|
|
|
5542
5508
|
* @param {*} [options] Override http request option.
|
|
5543
5509
|
* @throws {RequiredError}
|
|
5544
5510
|
*/
|
|
5545
|
-
createApplication(createApplicationRequest: CreateApplicationRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CreatedApplication>>;
|
|
5511
|
+
createApplication(createApplicationRequest: CreateApplicationRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<CreatedApplication>>;
|
|
5546
5512
|
/**
|
|
5547
5513
|
* Delete an `application`.
|
|
5548
5514
|
* @param {string} id The `application` ID.
|
|
5549
5515
|
* @param {*} [options] Override http request option.
|
|
5550
5516
|
* @throws {RequiredError}
|
|
5551
5517
|
*/
|
|
5552
|
-
deleteApplication(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
5518
|
+
deleteApplication(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
5553
5519
|
/**
|
|
5554
5520
|
* Get an `application`.
|
|
5555
5521
|
* @param {string} id The `application` ID.
|
|
5556
5522
|
* @param {*} [options] Override http request option.
|
|
5557
5523
|
* @throws {RequiredError}
|
|
5558
5524
|
*/
|
|
5559
|
-
getApplication(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Application>>;
|
|
5525
|
+
getApplication(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Application>>;
|
|
5560
5526
|
/**
|
|
5561
5527
|
* Get `applications`.
|
|
5562
5528
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
@@ -5564,7 +5530,7 @@ export declare const ApplicationsApiFp: (configuration?: Configuration | undefin
|
|
|
5564
5530
|
* @param {*} [options] Override http request option.
|
|
5565
5531
|
* @throws {RequiredError}
|
|
5566
5532
|
*/
|
|
5567
|
-
getApplications(pageCursor?: string | undefined, pageSize?: number | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ApplicationList>>;
|
|
5533
|
+
getApplications(pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ApplicationList>>;
|
|
5568
5534
|
/**
|
|
5569
5535
|
* Update an `application`.
|
|
5570
5536
|
* @param {string} id The `application` ID.
|
|
@@ -5572,7 +5538,7 @@ export declare const ApplicationsApiFp: (configuration?: Configuration | undefin
|
|
|
5572
5538
|
* @param {*} [options] Override http request option.
|
|
5573
5539
|
* @throws {RequiredError}
|
|
5574
5540
|
*/
|
|
5575
|
-
updateApplication(id: string, updateApplicationRequest: UpdateApplicationRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Application>>;
|
|
5541
|
+
updateApplication(id: string, updateApplicationRequest: UpdateApplicationRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Application>>;
|
|
5576
5542
|
};
|
|
5577
5543
|
/**
|
|
5578
5544
|
* ApplicationsApi - factory interface
|
|
@@ -5708,7 +5674,7 @@ export declare class ApplicationsApi extends BaseAPI {
|
|
|
5708
5674
|
* @throws {RequiredError}
|
|
5709
5675
|
* @memberof ApplicationsApi
|
|
5710
5676
|
*/
|
|
5711
|
-
createApplication(requestParameters: ApplicationsApiCreateApplicationRequest, options?:
|
|
5677
|
+
createApplication(requestParameters: ApplicationsApiCreateApplicationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatedApplication, any>>;
|
|
5712
5678
|
/**
|
|
5713
5679
|
* Delete an `application`.
|
|
5714
5680
|
* @param {ApplicationsApiDeleteApplicationRequest} requestParameters Request parameters.
|
|
@@ -5716,7 +5682,7 @@ export declare class ApplicationsApi extends BaseAPI {
|
|
|
5716
5682
|
* @throws {RequiredError}
|
|
5717
5683
|
* @memberof ApplicationsApi
|
|
5718
5684
|
*/
|
|
5719
|
-
deleteApplication(requestParameters: ApplicationsApiDeleteApplicationRequest, options?:
|
|
5685
|
+
deleteApplication(requestParameters: ApplicationsApiDeleteApplicationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
5720
5686
|
/**
|
|
5721
5687
|
* Get an `application`.
|
|
5722
5688
|
* @param {ApplicationsApiGetApplicationRequest} requestParameters Request parameters.
|
|
@@ -5724,7 +5690,7 @@ export declare class ApplicationsApi extends BaseAPI {
|
|
|
5724
5690
|
* @throws {RequiredError}
|
|
5725
5691
|
* @memberof ApplicationsApi
|
|
5726
5692
|
*/
|
|
5727
|
-
getApplication(requestParameters: ApplicationsApiGetApplicationRequest, options?:
|
|
5693
|
+
getApplication(requestParameters: ApplicationsApiGetApplicationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Application, any>>;
|
|
5728
5694
|
/**
|
|
5729
5695
|
* Get `applications`.
|
|
5730
5696
|
* @param {ApplicationsApiGetApplicationsRequest} requestParameters Request parameters.
|
|
@@ -5732,7 +5698,7 @@ export declare class ApplicationsApi extends BaseAPI {
|
|
|
5732
5698
|
* @throws {RequiredError}
|
|
5733
5699
|
* @memberof ApplicationsApi
|
|
5734
5700
|
*/
|
|
5735
|
-
getApplications(requestParameters?: ApplicationsApiGetApplicationsRequest, options?:
|
|
5701
|
+
getApplications(requestParameters?: ApplicationsApiGetApplicationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ApplicationList, any>>;
|
|
5736
5702
|
/**
|
|
5737
5703
|
* Update an `application`.
|
|
5738
5704
|
* @param {ApplicationsApiUpdateApplicationRequest} requestParameters Request parameters.
|
|
@@ -5740,7 +5706,7 @@ export declare class ApplicationsApi extends BaseAPI {
|
|
|
5740
5706
|
* @throws {RequiredError}
|
|
5741
5707
|
* @memberof ApplicationsApi
|
|
5742
5708
|
*/
|
|
5743
|
-
updateApplication(requestParameters: ApplicationsApiUpdateApplicationRequest, options?:
|
|
5709
|
+
updateApplication(requestParameters: ApplicationsApiUpdateApplicationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Application, any>>;
|
|
5744
5710
|
}
|
|
5745
5711
|
/**
|
|
5746
5712
|
* BatchesApi - axios parameter creator
|
|
@@ -5753,21 +5719,21 @@ export declare const BatchesApiAxiosParamCreator: (configuration?: Configuration
|
|
|
5753
5719
|
* @param {*} [options] Override http request option.
|
|
5754
5720
|
* @throws {RequiredError}
|
|
5755
5721
|
*/
|
|
5756
|
-
createBatch: (createBatchRequest: CreateBatchRequest, options?:
|
|
5722
|
+
createBatch: (createBatchRequest: CreateBatchRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5757
5723
|
/**
|
|
5758
5724
|
* Get a `batch` by ID.
|
|
5759
5725
|
* @param {string} id The `file` ID.
|
|
5760
5726
|
* @param {*} [options] Override http request option.
|
|
5761
5727
|
* @throws {RequiredError}
|
|
5762
5728
|
*/
|
|
5763
|
-
getBatch: (id: string, options?:
|
|
5729
|
+
getBatch: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5764
5730
|
/**
|
|
5765
5731
|
* Get a `queued-batch`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `batch`.
|
|
5766
5732
|
* @param {string} id The `queued-batch` ID.
|
|
5767
5733
|
* @param {*} [options] Override http request option.
|
|
5768
5734
|
* @throws {RequiredError}
|
|
5769
5735
|
*/
|
|
5770
|
-
getQueuedBatch: (id: string, options?:
|
|
5736
|
+
getQueuedBatch: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5771
5737
|
};
|
|
5772
5738
|
/**
|
|
5773
5739
|
* BatchesApi - functional programming interface
|
|
@@ -5780,21 +5746,21 @@ export declare const BatchesApiFp: (configuration?: Configuration | undefined) =
|
|
|
5780
5746
|
* @param {*} [options] Override http request option.
|
|
5781
5747
|
* @throws {RequiredError}
|
|
5782
5748
|
*/
|
|
5783
|
-
createBatch(createBatchRequest: CreateBatchRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
5749
|
+
createBatch(createBatchRequest: CreateBatchRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
5784
5750
|
/**
|
|
5785
5751
|
* Get a `batch` by ID.
|
|
5786
5752
|
* @param {string} id The `file` ID.
|
|
5787
5753
|
* @param {*} [options] Override http request option.
|
|
5788
5754
|
* @throws {RequiredError}
|
|
5789
5755
|
*/
|
|
5790
|
-
getBatch(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Batch>>;
|
|
5756
|
+
getBatch(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Batch>>;
|
|
5791
5757
|
/**
|
|
5792
5758
|
* Get a `queued-batch`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `batch`.
|
|
5793
5759
|
* @param {string} id The `queued-batch` ID.
|
|
5794
5760
|
* @param {*} [options] Override http request option.
|
|
5795
5761
|
* @throws {RequiredError}
|
|
5796
5762
|
*/
|
|
5797
|
-
getQueuedBatch(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
5763
|
+
getQueuedBatch(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
5798
5764
|
};
|
|
5799
5765
|
/**
|
|
5800
5766
|
* BatchesApi - factory interface
|
|
@@ -5876,7 +5842,7 @@ export declare class BatchesApi extends BaseAPI {
|
|
|
5876
5842
|
* @throws {RequiredError}
|
|
5877
5843
|
* @memberof BatchesApi
|
|
5878
5844
|
*/
|
|
5879
|
-
createBatch(requestParameters: BatchesApiCreateBatchRequest, options?:
|
|
5845
|
+
createBatch(requestParameters: BatchesApiCreateBatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
|
|
5880
5846
|
/**
|
|
5881
5847
|
* Get a `batch` by ID.
|
|
5882
5848
|
* @param {BatchesApiGetBatchRequest} requestParameters Request parameters.
|
|
@@ -5884,7 +5850,7 @@ export declare class BatchesApi extends BaseAPI {
|
|
|
5884
5850
|
* @throws {RequiredError}
|
|
5885
5851
|
* @memberof BatchesApi
|
|
5886
5852
|
*/
|
|
5887
|
-
getBatch(requestParameters: BatchesApiGetBatchRequest, options?:
|
|
5853
|
+
getBatch(requestParameters: BatchesApiGetBatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Batch, any>>;
|
|
5888
5854
|
/**
|
|
5889
5855
|
* Get a `queued-batch`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `batch`.
|
|
5890
5856
|
* @param {BatchesApiGetQueuedBatchRequest} requestParameters Request parameters.
|
|
@@ -5892,7 +5858,7 @@ export declare class BatchesApi extends BaseAPI {
|
|
|
5892
5858
|
* @throws {RequiredError}
|
|
5893
5859
|
* @memberof BatchesApi
|
|
5894
5860
|
*/
|
|
5895
|
-
getQueuedBatch(requestParameters: BatchesApiGetQueuedBatchRequest, options?:
|
|
5861
|
+
getQueuedBatch(requestParameters: BatchesApiGetQueuedBatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
|
|
5896
5862
|
}
|
|
5897
5863
|
/**
|
|
5898
5864
|
* FilesApi - axios parameter creator
|
|
@@ -5905,21 +5871,21 @@ export declare const FilesApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
5905
5871
|
* @param {*} [options] Override http request option.
|
|
5906
5872
|
* @throws {RequiredError}
|
|
5907
5873
|
*/
|
|
5908
|
-
createFile: (createFileRequest: CreateFileRequest, options?:
|
|
5874
|
+
createFile: (createFileRequest: CreateFileRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5909
5875
|
/**
|
|
5910
5876
|
* Delete a `file`.
|
|
5911
5877
|
* @param {string} id The `file` ID.
|
|
5912
5878
|
* @param {*} [options] Override http request option.
|
|
5913
5879
|
* @throws {RequiredError}
|
|
5914
5880
|
*/
|
|
5915
|
-
deleteFile: (id: string, options?:
|
|
5881
|
+
deleteFile: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5916
5882
|
/**
|
|
5917
5883
|
* Get a `file` by ID.
|
|
5918
5884
|
* @param {string} id The `file` ID.
|
|
5919
5885
|
* @param {*} [options] Override http request option.
|
|
5920
5886
|
* @throws {RequiredError}
|
|
5921
5887
|
*/
|
|
5922
|
-
getFile: (id: string, options?:
|
|
5888
|
+
getFile: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5923
5889
|
/**
|
|
5924
5890
|
* Get `files`.
|
|
5925
5891
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
@@ -5928,7 +5894,7 @@ export declare const FilesApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
5928
5894
|
* @param {*} [options] Override http request option.
|
|
5929
5895
|
* @throws {RequiredError}
|
|
5930
5896
|
*/
|
|
5931
|
-
getFiles: (pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?:
|
|
5897
|
+
getFiles: (pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5932
5898
|
/**
|
|
5933
5899
|
* Upload a `file`. Once uploaded, create either parts or geometry sets via the createPart or createGeometrySet APIs.
|
|
5934
5900
|
* @param {string} id The `file` ID.
|
|
@@ -5936,7 +5902,7 @@ export declare const FilesApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
5936
5902
|
* @param {*} [options] Override http request option.
|
|
5937
5903
|
* @throws {RequiredError}
|
|
5938
5904
|
*/
|
|
5939
|
-
uploadFile: (id: string, body: any, options?:
|
|
5905
|
+
uploadFile: (id: string, body: any, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
5940
5906
|
};
|
|
5941
5907
|
/**
|
|
5942
5908
|
* FilesApi - functional programming interface
|
|
@@ -5949,21 +5915,21 @@ export declare const FilesApiFp: (configuration?: Configuration | undefined) =>
|
|
|
5949
5915
|
* @param {*} [options] Override http request option.
|
|
5950
5916
|
* @throws {RequiredError}
|
|
5951
5917
|
*/
|
|
5952
|
-
createFile(createFileRequest: CreateFileRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FileMetadata>>;
|
|
5918
|
+
createFile(createFileRequest: CreateFileRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FileMetadata>>;
|
|
5953
5919
|
/**
|
|
5954
5920
|
* Delete a `file`.
|
|
5955
5921
|
* @param {string} id The `file` ID.
|
|
5956
5922
|
* @param {*} [options] Override http request option.
|
|
5957
5923
|
* @throws {RequiredError}
|
|
5958
5924
|
*/
|
|
5959
|
-
deleteFile(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FileMetadata>>;
|
|
5925
|
+
deleteFile(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FileMetadata>>;
|
|
5960
5926
|
/**
|
|
5961
5927
|
* Get a `file` by ID.
|
|
5962
5928
|
* @param {string} id The `file` ID.
|
|
5963
5929
|
* @param {*} [options] Override http request option.
|
|
5964
5930
|
* @throws {RequiredError}
|
|
5965
5931
|
*/
|
|
5966
|
-
getFile(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FileMetadata>>;
|
|
5932
|
+
getFile(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FileMetadata>>;
|
|
5967
5933
|
/**
|
|
5968
5934
|
* Get `files`.
|
|
5969
5935
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
@@ -5972,7 +5938,7 @@ export declare const FilesApiFp: (configuration?: Configuration | undefined) =>
|
|
|
5972
5938
|
* @param {*} [options] Override http request option.
|
|
5973
5939
|
* @throws {RequiredError}
|
|
5974
5940
|
*/
|
|
5975
|
-
getFiles(pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FileList>>;
|
|
5941
|
+
getFiles(pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FileList>>;
|
|
5976
5942
|
/**
|
|
5977
5943
|
* Upload a `file`. Once uploaded, create either parts or geometry sets via the createPart or createGeometrySet APIs.
|
|
5978
5944
|
* @param {string} id The `file` ID.
|
|
@@ -5980,7 +5946,7 @@ export declare const FilesApiFp: (configuration?: Configuration | undefined) =>
|
|
|
5980
5946
|
* @param {*} [options] Override http request option.
|
|
5981
5947
|
* @throws {RequiredError}
|
|
5982
5948
|
*/
|
|
5983
|
-
uploadFile(id: string, body: any, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
5949
|
+
uploadFile(id: string, body: any, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
5984
5950
|
};
|
|
5985
5951
|
/**
|
|
5986
5952
|
* FilesApi - factory interface
|
|
@@ -6123,7 +6089,7 @@ export declare class FilesApi extends BaseAPI {
|
|
|
6123
6089
|
* @throws {RequiredError}
|
|
6124
6090
|
* @memberof FilesApi
|
|
6125
6091
|
*/
|
|
6126
|
-
createFile(requestParameters: FilesApiCreateFileRequest, options?:
|
|
6092
|
+
createFile(requestParameters: FilesApiCreateFileRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FileMetadata, any>>;
|
|
6127
6093
|
/**
|
|
6128
6094
|
* Delete a `file`.
|
|
6129
6095
|
* @param {FilesApiDeleteFileRequest} requestParameters Request parameters.
|
|
@@ -6131,7 +6097,7 @@ export declare class FilesApi extends BaseAPI {
|
|
|
6131
6097
|
* @throws {RequiredError}
|
|
6132
6098
|
* @memberof FilesApi
|
|
6133
6099
|
*/
|
|
6134
|
-
deleteFile(requestParameters: FilesApiDeleteFileRequest, options?:
|
|
6100
|
+
deleteFile(requestParameters: FilesApiDeleteFileRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FileMetadata, any>>;
|
|
6135
6101
|
/**
|
|
6136
6102
|
* Get a `file` by ID.
|
|
6137
6103
|
* @param {FilesApiGetFileRequest} requestParameters Request parameters.
|
|
@@ -6139,7 +6105,7 @@ export declare class FilesApi extends BaseAPI {
|
|
|
6139
6105
|
* @throws {RequiredError}
|
|
6140
6106
|
* @memberof FilesApi
|
|
6141
6107
|
*/
|
|
6142
|
-
getFile(requestParameters: FilesApiGetFileRequest, options?:
|
|
6108
|
+
getFile(requestParameters: FilesApiGetFileRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FileMetadata, any>>;
|
|
6143
6109
|
/**
|
|
6144
6110
|
* Get `files`.
|
|
6145
6111
|
* @param {FilesApiGetFilesRequest} requestParameters Request parameters.
|
|
@@ -6147,7 +6113,7 @@ export declare class FilesApi extends BaseAPI {
|
|
|
6147
6113
|
* @throws {RequiredError}
|
|
6148
6114
|
* @memberof FilesApi
|
|
6149
6115
|
*/
|
|
6150
|
-
getFiles(requestParameters?: FilesApiGetFilesRequest, options?:
|
|
6116
|
+
getFiles(requestParameters?: FilesApiGetFilesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FileList, any>>;
|
|
6151
6117
|
/**
|
|
6152
6118
|
* Upload a `file`. Once uploaded, create either parts or geometry sets via the createPart or createGeometrySet APIs.
|
|
6153
6119
|
* @param {FilesApiUploadFileRequest} requestParameters Request parameters.
|
|
@@ -6155,7 +6121,7 @@ export declare class FilesApi extends BaseAPI {
|
|
|
6155
6121
|
* @throws {RequiredError}
|
|
6156
6122
|
* @memberof FilesApi
|
|
6157
6123
|
*/
|
|
6158
|
-
uploadFile(requestParameters: FilesApiUploadFileRequest, options?:
|
|
6124
|
+
uploadFile(requestParameters: FilesApiUploadFileRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
6159
6125
|
}
|
|
6160
6126
|
/**
|
|
6161
6127
|
* GeometrySetsApi - axios parameter creator
|
|
@@ -6168,14 +6134,14 @@ export declare const GeometrySetsApiAxiosParamCreator: (configuration?: Configur
|
|
|
6168
6134
|
* @param {*} [options] Override http request option.
|
|
6169
6135
|
* @throws {RequiredError}
|
|
6170
6136
|
*/
|
|
6171
|
-
createGeometrySet: (createGeometrySetRequest: CreateGeometrySetRequest, options?:
|
|
6137
|
+
createGeometrySet: (createGeometrySetRequest: CreateGeometrySetRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6172
6138
|
/**
|
|
6173
6139
|
* Get a `geometry-set` by ID.
|
|
6174
6140
|
* @param {string} id The `geometry-set` ID.
|
|
6175
6141
|
* @param {*} [options] Override http request option.
|
|
6176
6142
|
* @throws {RequiredError}
|
|
6177
6143
|
*/
|
|
6178
|
-
getGeometrySet: (id: string, options?:
|
|
6144
|
+
getGeometrySet: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6179
6145
|
/**
|
|
6180
6146
|
* Get `geometry-sets`.
|
|
6181
6147
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
@@ -6183,7 +6149,7 @@ export declare const GeometrySetsApiAxiosParamCreator: (configuration?: Configur
|
|
|
6183
6149
|
* @param {*} [options] Override http request option.
|
|
6184
6150
|
* @throws {RequiredError}
|
|
6185
6151
|
*/
|
|
6186
|
-
getGeometrySets: (pageCursor?: string | undefined, pageSize?: number | undefined, options?:
|
|
6152
|
+
getGeometrySets: (pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6187
6153
|
};
|
|
6188
6154
|
/**
|
|
6189
6155
|
* GeometrySetsApi - functional programming interface
|
|
@@ -6196,14 +6162,14 @@ export declare const GeometrySetsApiFp: (configuration?: Configuration | undefin
|
|
|
6196
6162
|
* @param {*} [options] Override http request option.
|
|
6197
6163
|
* @throws {RequiredError}
|
|
6198
6164
|
*/
|
|
6199
|
-
createGeometrySet(createGeometrySetRequest: CreateGeometrySetRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
6165
|
+
createGeometrySet(createGeometrySetRequest: CreateGeometrySetRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
6200
6166
|
/**
|
|
6201
6167
|
* Get a `geometry-set` by ID.
|
|
6202
6168
|
* @param {string} id The `geometry-set` ID.
|
|
6203
6169
|
* @param {*} [options] Override http request option.
|
|
6204
6170
|
* @throws {RequiredError}
|
|
6205
6171
|
*/
|
|
6206
|
-
getGeometrySet(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<GeometrySet>>;
|
|
6172
|
+
getGeometrySet(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<GeometrySet>>;
|
|
6207
6173
|
/**
|
|
6208
6174
|
* Get `geometry-sets`.
|
|
6209
6175
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
@@ -6211,7 +6177,7 @@ export declare const GeometrySetsApiFp: (configuration?: Configuration | undefin
|
|
|
6211
6177
|
* @param {*} [options] Override http request option.
|
|
6212
6178
|
* @throws {RequiredError}
|
|
6213
6179
|
*/
|
|
6214
|
-
getGeometrySets(pageCursor?: string | undefined, pageSize?: number | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<GeometrySetList>>;
|
|
6180
|
+
getGeometrySets(pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<GeometrySetList>>;
|
|
6215
6181
|
};
|
|
6216
6182
|
/**
|
|
6217
6183
|
* GeometrySetsApi - factory interface
|
|
@@ -6300,7 +6266,7 @@ export declare class GeometrySetsApi extends BaseAPI {
|
|
|
6300
6266
|
* @throws {RequiredError}
|
|
6301
6267
|
* @memberof GeometrySetsApi
|
|
6302
6268
|
*/
|
|
6303
|
-
createGeometrySet(requestParameters: GeometrySetsApiCreateGeometrySetRequest, options?:
|
|
6269
|
+
createGeometrySet(requestParameters: GeometrySetsApiCreateGeometrySetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
|
|
6304
6270
|
/**
|
|
6305
6271
|
* Get a `geometry-set` by ID.
|
|
6306
6272
|
* @param {GeometrySetsApiGetGeometrySetRequest} requestParameters Request parameters.
|
|
@@ -6308,7 +6274,7 @@ export declare class GeometrySetsApi extends BaseAPI {
|
|
|
6308
6274
|
* @throws {RequiredError}
|
|
6309
6275
|
* @memberof GeometrySetsApi
|
|
6310
6276
|
*/
|
|
6311
|
-
getGeometrySet(requestParameters: GeometrySetsApiGetGeometrySetRequest, options?:
|
|
6277
|
+
getGeometrySet(requestParameters: GeometrySetsApiGetGeometrySetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GeometrySet, any>>;
|
|
6312
6278
|
/**
|
|
6313
6279
|
* Get `geometry-sets`.
|
|
6314
6280
|
* @param {GeometrySetsApiGetGeometrySetsRequest} requestParameters Request parameters.
|
|
@@ -6316,7 +6282,7 @@ export declare class GeometrySetsApi extends BaseAPI {
|
|
|
6316
6282
|
* @throws {RequiredError}
|
|
6317
6283
|
* @memberof GeometrySetsApi
|
|
6318
6284
|
*/
|
|
6319
|
-
getGeometrySets(requestParameters?: GeometrySetsApiGetGeometrySetsRequest, options?:
|
|
6285
|
+
getGeometrySets(requestParameters?: GeometrySetsApiGetGeometrySetsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GeometrySetList, any>>;
|
|
6320
6286
|
}
|
|
6321
6287
|
/**
|
|
6322
6288
|
* HitsApi - axios parameter creator
|
|
@@ -6332,7 +6298,7 @@ export declare const HitsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
6332
6298
|
* @param {*} [options] Override http request option.
|
|
6333
6299
|
* @throws {RequiredError}
|
|
6334
6300
|
*/
|
|
6335
|
-
createSceneHit: (id: string, createHitRequest: CreateHitRequest, include?: string | undefined, fieldsPartRevision?: string | undefined, options?:
|
|
6301
|
+
createSceneHit: (id: string, createHitRequest: CreateHitRequest, include?: string | undefined, fieldsPartRevision?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6336
6302
|
/**
|
|
6337
6303
|
* Create a `hit` for a `scene-view`.
|
|
6338
6304
|
* @param {string} id The `scene-view` ID.
|
|
@@ -6342,7 +6308,7 @@ export declare const HitsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
6342
6308
|
* @param {*} [options] Override http request option.
|
|
6343
6309
|
* @throws {RequiredError}
|
|
6344
6310
|
*/
|
|
6345
|
-
createSceneViewHit: (id: string, createHitRequest: CreateHitRequest, include?: string | undefined, fieldsPartRevision?: string | undefined, options?:
|
|
6311
|
+
createSceneViewHit: (id: string, createHitRequest: CreateHitRequest, include?: string | undefined, fieldsPartRevision?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6346
6312
|
};
|
|
6347
6313
|
/**
|
|
6348
6314
|
* HitsApi - functional programming interface
|
|
@@ -6358,7 +6324,7 @@ export declare const HitsApiFp: (configuration?: Configuration | undefined) => {
|
|
|
6358
6324
|
* @param {*} [options] Override http request option.
|
|
6359
6325
|
* @throws {RequiredError}
|
|
6360
6326
|
*/
|
|
6361
|
-
createSceneHit(id: string, createHitRequest: CreateHitRequest, include?: string | undefined, fieldsPartRevision?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Hit>>;
|
|
6327
|
+
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
6328
|
/**
|
|
6363
6329
|
* Create a `hit` for a `scene-view`.
|
|
6364
6330
|
* @param {string} id The `scene-view` ID.
|
|
@@ -6368,7 +6334,7 @@ export declare const HitsApiFp: (configuration?: Configuration | undefined) => {
|
|
|
6368
6334
|
* @param {*} [options] Override http request option.
|
|
6369
6335
|
* @throws {RequiredError}
|
|
6370
6336
|
*/
|
|
6371
|
-
createSceneViewHit(id: string, createHitRequest: CreateHitRequest, include?: string | undefined, fieldsPartRevision?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Hit>>;
|
|
6337
|
+
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
6338
|
};
|
|
6373
6339
|
/**
|
|
6374
6340
|
* HitsApi - factory interface
|
|
@@ -6472,7 +6438,7 @@ export declare class HitsApi extends BaseAPI {
|
|
|
6472
6438
|
* @throws {RequiredError}
|
|
6473
6439
|
* @memberof HitsApi
|
|
6474
6440
|
*/
|
|
6475
|
-
createSceneHit(requestParameters: HitsApiCreateSceneHitRequest, options?:
|
|
6441
|
+
createSceneHit(requestParameters: HitsApiCreateSceneHitRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Hit, any>>;
|
|
6476
6442
|
/**
|
|
6477
6443
|
* Create a `hit` for a `scene-view`.
|
|
6478
6444
|
* @param {HitsApiCreateSceneViewHitRequest} requestParameters Request parameters.
|
|
@@ -6480,7 +6446,7 @@ export declare class HitsApi extends BaseAPI {
|
|
|
6480
6446
|
* @throws {RequiredError}
|
|
6481
6447
|
* @memberof HitsApi
|
|
6482
6448
|
*/
|
|
6483
|
-
createSceneViewHit(requestParameters: HitsApiCreateSceneViewHitRequest, options?:
|
|
6449
|
+
createSceneViewHit(requestParameters: HitsApiCreateSceneViewHitRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Hit, any>>;
|
|
6484
6450
|
}
|
|
6485
6451
|
/**
|
|
6486
6452
|
* Oauth2Api - axios parameter creator
|
|
@@ -6494,7 +6460,7 @@ export declare const Oauth2ApiAxiosParamCreator: (configuration?: Configuration
|
|
|
6494
6460
|
* @param {*} [options] Override http request option.
|
|
6495
6461
|
* @throws {RequiredError}
|
|
6496
6462
|
*/
|
|
6497
|
-
adminAcceptConsent: (challenge: string, adminConsentAcceptRequest?: AdminConsentAcceptRequest | undefined, options?:
|
|
6463
|
+
adminAcceptConsent: (challenge: string, adminConsentAcceptRequest?: AdminConsentAcceptRequest | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6498
6464
|
/**
|
|
6499
6465
|
* Accept Login Challenge with subject & login challenge
|
|
6500
6466
|
* @param {string} loginChallenge Login Challenge ID from oauth2 flow
|
|
@@ -6502,7 +6468,7 @@ export declare const Oauth2ApiAxiosParamCreator: (configuration?: Configuration
|
|
|
6502
6468
|
* @param {*} [options] Override http request option.
|
|
6503
6469
|
* @throws {RequiredError}
|
|
6504
6470
|
*/
|
|
6505
|
-
adminAcceptLogin: (loginChallenge: string, adminLoginAcceptRequest: AdminLoginAcceptRequest, options?:
|
|
6471
|
+
adminAcceptLogin: (loginChallenge: string, adminLoginAcceptRequest: AdminLoginAcceptRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6506
6472
|
/**
|
|
6507
6473
|
* Create an OAuth2 access token. For details, see our [Authentication](https://developer.vertexvis.com/docs/guides/authentication) guide.
|
|
6508
6474
|
* @param {string} grantType
|
|
@@ -6513,14 +6479,14 @@ export declare const Oauth2ApiAxiosParamCreator: (configuration?: Configuration
|
|
|
6513
6479
|
* @param {*} [options] Override http request option.
|
|
6514
6480
|
* @throws {RequiredError}
|
|
6515
6481
|
*/
|
|
6516
|
-
createToken: (grantType: string, scope?: string | undefined, code?: string | undefined, redirectUri?: string | undefined, refreshToken?: string | undefined, options?:
|
|
6482
|
+
createToken: (grantType: string, scope?: string | undefined, code?: string | undefined, redirectUri?: string | undefined, refreshToken?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6517
6483
|
/**
|
|
6518
6484
|
* Revoke an OAuth2 access token.
|
|
6519
6485
|
* @param {RevokeOAuth2TokenRequest} revokeOAuth2TokenRequest
|
|
6520
6486
|
* @param {*} [options] Override http request option.
|
|
6521
6487
|
* @throws {RequiredError}
|
|
6522
6488
|
*/
|
|
6523
|
-
revokeToken: (revokeOAuth2TokenRequest: RevokeOAuth2TokenRequest, options?:
|
|
6489
|
+
revokeToken: (revokeOAuth2TokenRequest: RevokeOAuth2TokenRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6524
6490
|
};
|
|
6525
6491
|
/**
|
|
6526
6492
|
* Oauth2Api - functional programming interface
|
|
@@ -6534,7 +6500,7 @@ export declare const Oauth2ApiFp: (configuration?: Configuration | undefined) =>
|
|
|
6534
6500
|
* @param {*} [options] Override http request option.
|
|
6535
6501
|
* @throws {RequiredError}
|
|
6536
6502
|
*/
|
|
6537
|
-
adminAcceptConsent(challenge: string, adminConsentAcceptRequest?: AdminConsentAcceptRequest | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AdminRedirectTo>>;
|
|
6503
|
+
adminAcceptConsent(challenge: string, adminConsentAcceptRequest?: AdminConsentAcceptRequest | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AdminRedirectTo>>;
|
|
6538
6504
|
/**
|
|
6539
6505
|
* Accept Login Challenge with subject & login challenge
|
|
6540
6506
|
* @param {string} loginChallenge Login Challenge ID from oauth2 flow
|
|
@@ -6542,7 +6508,7 @@ export declare const Oauth2ApiFp: (configuration?: Configuration | undefined) =>
|
|
|
6542
6508
|
* @param {*} [options] Override http request option.
|
|
6543
6509
|
* @throws {RequiredError}
|
|
6544
6510
|
*/
|
|
6545
|
-
adminAcceptLogin(loginChallenge: string, adminLoginAcceptRequest: AdminLoginAcceptRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AdminRedirectTo>>;
|
|
6511
|
+
adminAcceptLogin(loginChallenge: string, adminLoginAcceptRequest: AdminLoginAcceptRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<AdminRedirectTo>>;
|
|
6546
6512
|
/**
|
|
6547
6513
|
* Create an OAuth2 access token. For details, see our [Authentication](https://developer.vertexvis.com/docs/guides/authentication) guide.
|
|
6548
6514
|
* @param {string} grantType
|
|
@@ -6553,14 +6519,14 @@ export declare const Oauth2ApiFp: (configuration?: Configuration | undefined) =>
|
|
|
6553
6519
|
* @param {*} [options] Override http request option.
|
|
6554
6520
|
* @throws {RequiredError}
|
|
6555
6521
|
*/
|
|
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>>;
|
|
6522
|
+
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
6523
|
/**
|
|
6558
6524
|
* Revoke an OAuth2 access token.
|
|
6559
6525
|
* @param {RevokeOAuth2TokenRequest} revokeOAuth2TokenRequest
|
|
6560
6526
|
* @param {*} [options] Override http request option.
|
|
6561
6527
|
* @throws {RequiredError}
|
|
6562
6528
|
*/
|
|
6563
|
-
revokeToken(revokeOAuth2TokenRequest: RevokeOAuth2TokenRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
6529
|
+
revokeToken(revokeOAuth2TokenRequest: RevokeOAuth2TokenRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
6564
6530
|
};
|
|
6565
6531
|
/**
|
|
6566
6532
|
* Oauth2Api - factory interface
|
|
@@ -6704,7 +6670,7 @@ export declare class Oauth2Api extends BaseAPI {
|
|
|
6704
6670
|
* @throws {RequiredError}
|
|
6705
6671
|
* @memberof Oauth2Api
|
|
6706
6672
|
*/
|
|
6707
|
-
adminAcceptConsent(requestParameters: Oauth2ApiAdminAcceptConsentRequest, options?:
|
|
6673
|
+
adminAcceptConsent(requestParameters: Oauth2ApiAdminAcceptConsentRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminRedirectTo, any>>;
|
|
6708
6674
|
/**
|
|
6709
6675
|
* Accept Login Challenge with subject & login challenge
|
|
6710
6676
|
* @param {Oauth2ApiAdminAcceptLoginRequest} requestParameters Request parameters.
|
|
@@ -6712,7 +6678,7 @@ export declare class Oauth2Api extends BaseAPI {
|
|
|
6712
6678
|
* @throws {RequiredError}
|
|
6713
6679
|
* @memberof Oauth2Api
|
|
6714
6680
|
*/
|
|
6715
|
-
adminAcceptLogin(requestParameters: Oauth2ApiAdminAcceptLoginRequest, options?:
|
|
6681
|
+
adminAcceptLogin(requestParameters: Oauth2ApiAdminAcceptLoginRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminRedirectTo, any>>;
|
|
6716
6682
|
/**
|
|
6717
6683
|
* Create an OAuth2 access token. For details, see our [Authentication](https://developer.vertexvis.com/docs/guides/authentication) guide.
|
|
6718
6684
|
* @param {Oauth2ApiCreateTokenRequest} requestParameters Request parameters.
|
|
@@ -6720,7 +6686,7 @@ export declare class Oauth2Api extends BaseAPI {
|
|
|
6720
6686
|
* @throws {RequiredError}
|
|
6721
6687
|
* @memberof Oauth2Api
|
|
6722
6688
|
*/
|
|
6723
|
-
createToken(requestParameters: Oauth2ApiCreateTokenRequest, options?:
|
|
6689
|
+
createToken(requestParameters: Oauth2ApiCreateTokenRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<OAuth2Token, any>>;
|
|
6724
6690
|
/**
|
|
6725
6691
|
* Revoke an OAuth2 access token.
|
|
6726
6692
|
* @param {Oauth2ApiRevokeTokenRequest} requestParameters Request parameters.
|
|
@@ -6728,7 +6694,7 @@ export declare class Oauth2Api extends BaseAPI {
|
|
|
6728
6694
|
* @throws {RequiredError}
|
|
6729
6695
|
* @memberof Oauth2Api
|
|
6730
6696
|
*/
|
|
6731
|
-
revokeToken(requestParameters: Oauth2ApiRevokeTokenRequest, options?:
|
|
6697
|
+
revokeToken(requestParameters: Oauth2ApiRevokeTokenRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
6732
6698
|
}
|
|
6733
6699
|
/**
|
|
6734
6700
|
* PartRevisionsApi - axios parameter creator
|
|
@@ -6741,7 +6707,7 @@ export declare const PartRevisionsApiAxiosParamCreator: (configuration?: Configu
|
|
|
6741
6707
|
* @param {*} [options] Override http request option.
|
|
6742
6708
|
* @throws {RequiredError}
|
|
6743
6709
|
*/
|
|
6744
|
-
deletePartRevision: (id: string, options?:
|
|
6710
|
+
deletePartRevision: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6745
6711
|
/**
|
|
6746
6712
|
* Get a `part-revision` by ID.
|
|
6747
6713
|
* @param {string} id The `part-revision` ID.
|
|
@@ -6749,7 +6715,7 @@ export declare const PartRevisionsApiAxiosParamCreator: (configuration?: Configu
|
|
|
6749
6715
|
* @param {*} [options] Override http request option.
|
|
6750
6716
|
* @throws {RequiredError}
|
|
6751
6717
|
*/
|
|
6752
|
-
getPartRevision: (id: string, fieldsPartRevision?: string | undefined, options?:
|
|
6718
|
+
getPartRevision: (id: string, fieldsPartRevision?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6753
6719
|
/**
|
|
6754
6720
|
* Get `part-revisions` for a `part`.
|
|
6755
6721
|
* @param {string} id The `part` ID.
|
|
@@ -6759,14 +6725,14 @@ export declare const PartRevisionsApiAxiosParamCreator: (configuration?: Configu
|
|
|
6759
6725
|
* @param {*} [options] Override http request option.
|
|
6760
6726
|
* @throws {RequiredError}
|
|
6761
6727
|
*/
|
|
6762
|
-
getPartRevisions: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?:
|
|
6728
|
+
getPartRevisions: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6763
6729
|
/**
|
|
6764
6730
|
* Get a `queued-part-revision-deletion` by ID.
|
|
6765
6731
|
* @param {string} id The `queued-part-revision-deletion` ID.
|
|
6766
6732
|
* @param {*} [options] Override http request option.
|
|
6767
6733
|
* @throws {RequiredError}
|
|
6768
6734
|
*/
|
|
6769
|
-
getQueuedPartRevisionDeletion: (id: string, options?:
|
|
6735
|
+
getQueuedPartRevisionDeletion: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6770
6736
|
/**
|
|
6771
6737
|
* Get a rendered image of a `part-revision`.
|
|
6772
6738
|
* @param {string} id The `part-revision` ID.
|
|
@@ -6775,10 +6741,17 @@ export declare const PartRevisionsApiAxiosParamCreator: (configuration?: Configu
|
|
|
6775
6741
|
* @param {Vector3} [cameraPosition] The `camera` position vector.
|
|
6776
6742
|
* @param {Vector3} [cameraUp] The `camera` up vector.
|
|
6777
6743
|
* @param {Vector3} [cameraLookAt] The `camera` lookAt vector.
|
|
6744
|
+
* @param {Vector3} [cameraPerspectivePosition] The perspective camera position.
|
|
6745
|
+
* @param {Vector3} [cameraPerspectiveLookAt] The perspective camera look at position.
|
|
6746
|
+
* @param {Vector3} [cameraPerspectiveUp] The perspective camera up vector.
|
|
6747
|
+
* @param {Vector3} [cameraOrthographicViewVector] The orthographic camera view vector.
|
|
6748
|
+
* @param {Vector3} [cameraOrthographicLookAt] The orthographic camera look at position.
|
|
6749
|
+
* @param {Vector3} [cameraOrthographicUp] The orthographic camera up vector.
|
|
6750
|
+
* @param {number} [cameraOrthographicFovHeight] The orthographic field-of-view height.
|
|
6778
6751
|
* @param {*} [options] Override http request option.
|
|
6779
6752
|
* @throws {RequiredError}
|
|
6780
6753
|
*/
|
|
6781
|
-
renderPartRevision: (id: string, height?: number | undefined, width?: number | undefined, cameraPosition?: Vector3 | undefined, cameraUp?: Vector3 | undefined, cameraLookAt?: Vector3 | undefined, options?:
|
|
6754
|
+
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
6755
|
/**
|
|
6783
6756
|
* Update a `part-revision`. Note that metadata updates are eventually consistent.
|
|
6784
6757
|
* @param {string} id The `part-revision` ID.
|
|
@@ -6786,7 +6759,7 @@ export declare const PartRevisionsApiAxiosParamCreator: (configuration?: Configu
|
|
|
6786
6759
|
* @param {*} [options] Override http request option.
|
|
6787
6760
|
* @throws {RequiredError}
|
|
6788
6761
|
*/
|
|
6789
|
-
updatePartRevision: (id: string, updatePartRevisionRequest: UpdatePartRevisionRequest, options?:
|
|
6762
|
+
updatePartRevision: (id: string, updatePartRevisionRequest: UpdatePartRevisionRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6790
6763
|
};
|
|
6791
6764
|
/**
|
|
6792
6765
|
* PartRevisionsApi - functional programming interface
|
|
@@ -6799,7 +6772,7 @@ export declare const PartRevisionsApiFp: (configuration?: Configuration | undefi
|
|
|
6799
6772
|
* @param {*} [options] Override http request option.
|
|
6800
6773
|
* @throws {RequiredError}
|
|
6801
6774
|
*/
|
|
6802
|
-
deletePartRevision(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
6775
|
+
deletePartRevision(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
6803
6776
|
/**
|
|
6804
6777
|
* Get a `part-revision` by ID.
|
|
6805
6778
|
* @param {string} id The `part-revision` ID.
|
|
@@ -6807,7 +6780,7 @@ export declare const PartRevisionsApiFp: (configuration?: Configuration | undefi
|
|
|
6807
6780
|
* @param {*} [options] Override http request option.
|
|
6808
6781
|
* @throws {RequiredError}
|
|
6809
6782
|
*/
|
|
6810
|
-
getPartRevision(id: string, fieldsPartRevision?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PartRevision>>;
|
|
6783
|
+
getPartRevision(id: string, fieldsPartRevision?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PartRevision>>;
|
|
6811
6784
|
/**
|
|
6812
6785
|
* Get `part-revisions` for a `part`.
|
|
6813
6786
|
* @param {string} id The `part` ID.
|
|
@@ -6817,14 +6790,14 @@ export declare const PartRevisionsApiFp: (configuration?: Configuration | undefi
|
|
|
6817
6790
|
* @param {*} [options] Override http request option.
|
|
6818
6791
|
* @throws {RequiredError}
|
|
6819
6792
|
*/
|
|
6820
|
-
getPartRevisions(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PartRevisionList>>;
|
|
6793
|
+
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
6794
|
/**
|
|
6822
6795
|
* Get a `queued-part-revision-deletion` by ID.
|
|
6823
6796
|
* @param {string} id The `queued-part-revision-deletion` ID.
|
|
6824
6797
|
* @param {*} [options] Override http request option.
|
|
6825
6798
|
* @throws {RequiredError}
|
|
6826
6799
|
*/
|
|
6827
|
-
getQueuedPartRevisionDeletion(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
6800
|
+
getQueuedPartRevisionDeletion(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
6828
6801
|
/**
|
|
6829
6802
|
* Get a rendered image of a `part-revision`.
|
|
6830
6803
|
* @param {string} id The `part-revision` ID.
|
|
@@ -6833,10 +6806,17 @@ export declare const PartRevisionsApiFp: (configuration?: Configuration | undefi
|
|
|
6833
6806
|
* @param {Vector3} [cameraPosition] The `camera` position vector.
|
|
6834
6807
|
* @param {Vector3} [cameraUp] The `camera` up vector.
|
|
6835
6808
|
* @param {Vector3} [cameraLookAt] The `camera` lookAt vector.
|
|
6809
|
+
* @param {Vector3} [cameraPerspectivePosition] The perspective camera position.
|
|
6810
|
+
* @param {Vector3} [cameraPerspectiveLookAt] The perspective camera look at position.
|
|
6811
|
+
* @param {Vector3} [cameraPerspectiveUp] The perspective camera up vector.
|
|
6812
|
+
* @param {Vector3} [cameraOrthographicViewVector] The orthographic camera view vector.
|
|
6813
|
+
* @param {Vector3} [cameraOrthographicLookAt] The orthographic camera look at position.
|
|
6814
|
+
* @param {Vector3} [cameraOrthographicUp] The orthographic camera up vector.
|
|
6815
|
+
* @param {number} [cameraOrthographicFovHeight] The orthographic field-of-view height.
|
|
6836
6816
|
* @param {*} [options] Override http request option.
|
|
6837
6817
|
* @throws {RequiredError}
|
|
6838
6818
|
*/
|
|
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>>;
|
|
6819
|
+
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
6820
|
/**
|
|
6841
6821
|
* Update a `part-revision`. Note that metadata updates are eventually consistent.
|
|
6842
6822
|
* @param {string} id The `part-revision` ID.
|
|
@@ -6844,7 +6824,7 @@ export declare const PartRevisionsApiFp: (configuration?: Configuration | undefi
|
|
|
6844
6824
|
* @param {*} [options] Override http request option.
|
|
6845
6825
|
* @throws {RequiredError}
|
|
6846
6826
|
*/
|
|
6847
|
-
updatePartRevision(id: string, updatePartRevisionRequest: UpdatePartRevisionRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PartRevision>>;
|
|
6827
|
+
updatePartRevision(id: string, updatePartRevisionRequest: UpdatePartRevisionRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PartRevision>>;
|
|
6848
6828
|
};
|
|
6849
6829
|
/**
|
|
6850
6830
|
* PartRevisionsApi - factory interface
|
|
@@ -6891,10 +6871,17 @@ export declare const PartRevisionsApiFactory: (configuration?: Configuration | u
|
|
|
6891
6871
|
* @param {Vector3} [cameraPosition] The `camera` position vector.
|
|
6892
6872
|
* @param {Vector3} [cameraUp] The `camera` up vector.
|
|
6893
6873
|
* @param {Vector3} [cameraLookAt] The `camera` lookAt vector.
|
|
6874
|
+
* @param {Vector3} [cameraPerspectivePosition] The perspective camera position.
|
|
6875
|
+
* @param {Vector3} [cameraPerspectiveLookAt] The perspective camera look at position.
|
|
6876
|
+
* @param {Vector3} [cameraPerspectiveUp] The perspective camera up vector.
|
|
6877
|
+
* @param {Vector3} [cameraOrthographicViewVector] The orthographic camera view vector.
|
|
6878
|
+
* @param {Vector3} [cameraOrthographicLookAt] The orthographic camera look at position.
|
|
6879
|
+
* @param {Vector3} [cameraOrthographicUp] The orthographic camera up vector.
|
|
6880
|
+
* @param {number} [cameraOrthographicFovHeight] The orthographic field-of-view height.
|
|
6894
6881
|
* @param {*} [options] Override http request option.
|
|
6895
6882
|
* @throws {RequiredError}
|
|
6896
6883
|
*/
|
|
6897
|
-
renderPartRevision(id: string, height?: number | undefined, width?: number | undefined, cameraPosition?: Vector3 | undefined, cameraUp?: Vector3 | undefined, cameraLookAt?: Vector3 | undefined, options?: any): AxiosPromise<any>;
|
|
6884
|
+
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
6885
|
/**
|
|
6899
6886
|
* Update a `part-revision`. Note that metadata updates are eventually consistent.
|
|
6900
6887
|
* @param {string} id The `part-revision` ID.
|
|
@@ -7022,6 +7009,48 @@ export interface PartRevisionsApiRenderPartRevisionRequest {
|
|
|
7022
7009
|
* @memberof PartRevisionsApiRenderPartRevision
|
|
7023
7010
|
*/
|
|
7024
7011
|
readonly cameraLookAt?: Vector3;
|
|
7012
|
+
/**
|
|
7013
|
+
* The perspective camera position.
|
|
7014
|
+
* @type {Vector3}
|
|
7015
|
+
* @memberof PartRevisionsApiRenderPartRevision
|
|
7016
|
+
*/
|
|
7017
|
+
readonly cameraPerspectivePosition?: Vector3;
|
|
7018
|
+
/**
|
|
7019
|
+
* The perspective camera look at position.
|
|
7020
|
+
* @type {Vector3}
|
|
7021
|
+
* @memberof PartRevisionsApiRenderPartRevision
|
|
7022
|
+
*/
|
|
7023
|
+
readonly cameraPerspectiveLookAt?: Vector3;
|
|
7024
|
+
/**
|
|
7025
|
+
* The perspective camera up vector.
|
|
7026
|
+
* @type {Vector3}
|
|
7027
|
+
* @memberof PartRevisionsApiRenderPartRevision
|
|
7028
|
+
*/
|
|
7029
|
+
readonly cameraPerspectiveUp?: Vector3;
|
|
7030
|
+
/**
|
|
7031
|
+
* The orthographic camera view vector.
|
|
7032
|
+
* @type {Vector3}
|
|
7033
|
+
* @memberof PartRevisionsApiRenderPartRevision
|
|
7034
|
+
*/
|
|
7035
|
+
readonly cameraOrthographicViewVector?: Vector3;
|
|
7036
|
+
/**
|
|
7037
|
+
* The orthographic camera look at position.
|
|
7038
|
+
* @type {Vector3}
|
|
7039
|
+
* @memberof PartRevisionsApiRenderPartRevision
|
|
7040
|
+
*/
|
|
7041
|
+
readonly cameraOrthographicLookAt?: Vector3;
|
|
7042
|
+
/**
|
|
7043
|
+
* The orthographic camera up vector.
|
|
7044
|
+
* @type {Vector3}
|
|
7045
|
+
* @memberof PartRevisionsApiRenderPartRevision
|
|
7046
|
+
*/
|
|
7047
|
+
readonly cameraOrthographicUp?: Vector3;
|
|
7048
|
+
/**
|
|
7049
|
+
* The orthographic field-of-view height.
|
|
7050
|
+
* @type {number}
|
|
7051
|
+
* @memberof PartRevisionsApiRenderPartRevision
|
|
7052
|
+
*/
|
|
7053
|
+
readonly cameraOrthographicFovHeight?: number;
|
|
7025
7054
|
}
|
|
7026
7055
|
/**
|
|
7027
7056
|
* Request parameters for updatePartRevision operation in PartRevisionsApi.
|
|
@@ -7056,7 +7085,7 @@ export declare class PartRevisionsApi extends BaseAPI {
|
|
|
7056
7085
|
* @throws {RequiredError}
|
|
7057
7086
|
* @memberof PartRevisionsApi
|
|
7058
7087
|
*/
|
|
7059
|
-
deletePartRevision(requestParameters: PartRevisionsApiDeletePartRevisionRequest, options?:
|
|
7088
|
+
deletePartRevision(requestParameters: PartRevisionsApiDeletePartRevisionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
|
|
7060
7089
|
/**
|
|
7061
7090
|
* Get a `part-revision` by ID.
|
|
7062
7091
|
* @param {PartRevisionsApiGetPartRevisionRequest} requestParameters Request parameters.
|
|
@@ -7064,7 +7093,7 @@ export declare class PartRevisionsApi extends BaseAPI {
|
|
|
7064
7093
|
* @throws {RequiredError}
|
|
7065
7094
|
* @memberof PartRevisionsApi
|
|
7066
7095
|
*/
|
|
7067
|
-
getPartRevision(requestParameters: PartRevisionsApiGetPartRevisionRequest, options?:
|
|
7096
|
+
getPartRevision(requestParameters: PartRevisionsApiGetPartRevisionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PartRevision, any>>;
|
|
7068
7097
|
/**
|
|
7069
7098
|
* Get `part-revisions` for a `part`.
|
|
7070
7099
|
* @param {PartRevisionsApiGetPartRevisionsRequest} requestParameters Request parameters.
|
|
@@ -7072,7 +7101,7 @@ export declare class PartRevisionsApi extends BaseAPI {
|
|
|
7072
7101
|
* @throws {RequiredError}
|
|
7073
7102
|
* @memberof PartRevisionsApi
|
|
7074
7103
|
*/
|
|
7075
|
-
getPartRevisions(requestParameters: PartRevisionsApiGetPartRevisionsRequest, options?:
|
|
7104
|
+
getPartRevisions(requestParameters: PartRevisionsApiGetPartRevisionsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PartRevisionList, any>>;
|
|
7076
7105
|
/**
|
|
7077
7106
|
* Get a `queued-part-revision-deletion` by ID.
|
|
7078
7107
|
* @param {PartRevisionsApiGetQueuedPartRevisionDeletionRequest} requestParameters Request parameters.
|
|
@@ -7080,7 +7109,7 @@ export declare class PartRevisionsApi extends BaseAPI {
|
|
|
7080
7109
|
* @throws {RequiredError}
|
|
7081
7110
|
* @memberof PartRevisionsApi
|
|
7082
7111
|
*/
|
|
7083
|
-
getQueuedPartRevisionDeletion(requestParameters: PartRevisionsApiGetQueuedPartRevisionDeletionRequest, options?:
|
|
7112
|
+
getQueuedPartRevisionDeletion(requestParameters: PartRevisionsApiGetQueuedPartRevisionDeletionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
|
|
7084
7113
|
/**
|
|
7085
7114
|
* Get a rendered image of a `part-revision`.
|
|
7086
7115
|
* @param {PartRevisionsApiRenderPartRevisionRequest} requestParameters Request parameters.
|
|
@@ -7088,7 +7117,7 @@ export declare class PartRevisionsApi extends BaseAPI {
|
|
|
7088
7117
|
* @throws {RequiredError}
|
|
7089
7118
|
* @memberof PartRevisionsApi
|
|
7090
7119
|
*/
|
|
7091
|
-
renderPartRevision(requestParameters: PartRevisionsApiRenderPartRevisionRequest, options?:
|
|
7120
|
+
renderPartRevision(requestParameters: PartRevisionsApiRenderPartRevisionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
|
|
7092
7121
|
/**
|
|
7093
7122
|
* Update a `part-revision`. Note that metadata updates are eventually consistent.
|
|
7094
7123
|
* @param {PartRevisionsApiUpdatePartRevisionRequest} requestParameters Request parameters.
|
|
@@ -7096,7 +7125,7 @@ export declare class PartRevisionsApi extends BaseAPI {
|
|
|
7096
7125
|
* @throws {RequiredError}
|
|
7097
7126
|
* @memberof PartRevisionsApi
|
|
7098
7127
|
*/
|
|
7099
|
-
updatePartRevision(requestParameters: PartRevisionsApiUpdatePartRevisionRequest, options?:
|
|
7128
|
+
updatePartRevision(requestParameters: PartRevisionsApiUpdatePartRevisionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PartRevision, any>>;
|
|
7100
7129
|
}
|
|
7101
7130
|
/**
|
|
7102
7131
|
* PartsApi - axios parameter creator
|
|
@@ -7109,14 +7138,14 @@ export declare const PartsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
7109
7138
|
* @param {*} [options] Override http request option.
|
|
7110
7139
|
* @throws {RequiredError}
|
|
7111
7140
|
*/
|
|
7112
|
-
createPart: (createPartRequest: CreatePartRequest, options?:
|
|
7141
|
+
createPart: (createPartRequest: CreatePartRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7113
7142
|
/**
|
|
7114
7143
|
* Delete a `part`.
|
|
7115
7144
|
* @param {string} id The `part` ID.
|
|
7116
7145
|
* @param {*} [options] Override http request option.
|
|
7117
7146
|
* @throws {RequiredError}
|
|
7118
7147
|
*/
|
|
7119
|
-
deletePart: (id: string, options?:
|
|
7148
|
+
deletePart: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7120
7149
|
/**
|
|
7121
7150
|
* Get a `part` by ID.
|
|
7122
7151
|
* @param {string} id The `part` ID.
|
|
@@ -7124,7 +7153,7 @@ export declare const PartsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
7124
7153
|
* @param {*} [options] Override http request option.
|
|
7125
7154
|
* @throws {RequiredError}
|
|
7126
7155
|
*/
|
|
7127
|
-
getPart: (id: string, include?: string | undefined, options?:
|
|
7156
|
+
getPart: (id: string, include?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7128
7157
|
/**
|
|
7129
7158
|
* Get `parts`.
|
|
7130
7159
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
@@ -7133,14 +7162,14 @@ export declare const PartsApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
7133
7162
|
* @param {*} [options] Override http request option.
|
|
7134
7163
|
* @throws {RequiredError}
|
|
7135
7164
|
*/
|
|
7136
|
-
getParts: (pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?:
|
|
7165
|
+
getParts: (pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7137
7166
|
/**
|
|
7138
7167
|
* Get a `queued-part-deletion` by ID.
|
|
7139
7168
|
* @param {string} id The `queued-part-deletion` ID.
|
|
7140
7169
|
* @param {*} [options] Override http request option.
|
|
7141
7170
|
* @throws {RequiredError}
|
|
7142
7171
|
*/
|
|
7143
|
-
getQueuedPartDeletion: (id: string, options?:
|
|
7172
|
+
getQueuedPartDeletion: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7144
7173
|
};
|
|
7145
7174
|
/**
|
|
7146
7175
|
* PartsApi - functional programming interface
|
|
@@ -7153,14 +7182,14 @@ export declare const PartsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
7153
7182
|
* @param {*} [options] Override http request option.
|
|
7154
7183
|
* @throws {RequiredError}
|
|
7155
7184
|
*/
|
|
7156
|
-
createPart(createPartRequest: CreatePartRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
7185
|
+
createPart(createPartRequest: CreatePartRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
7157
7186
|
/**
|
|
7158
7187
|
* Delete a `part`.
|
|
7159
7188
|
* @param {string} id The `part` ID.
|
|
7160
7189
|
* @param {*} [options] Override http request option.
|
|
7161
7190
|
* @throws {RequiredError}
|
|
7162
7191
|
*/
|
|
7163
|
-
deletePart(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
7192
|
+
deletePart(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
7164
7193
|
/**
|
|
7165
7194
|
* Get a `part` by ID.
|
|
7166
7195
|
* @param {string} id The `part` ID.
|
|
@@ -7168,7 +7197,7 @@ export declare const PartsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
7168
7197
|
* @param {*} [options] Override http request option.
|
|
7169
7198
|
* @throws {RequiredError}
|
|
7170
7199
|
*/
|
|
7171
|
-
getPart(id: string, include?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Part>>;
|
|
7200
|
+
getPart(id: string, include?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Part>>;
|
|
7172
7201
|
/**
|
|
7173
7202
|
* Get `parts`.
|
|
7174
7203
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
@@ -7177,14 +7206,14 @@ export declare const PartsApiFp: (configuration?: Configuration | undefined) =>
|
|
|
7177
7206
|
* @param {*} [options] Override http request option.
|
|
7178
7207
|
* @throws {RequiredError}
|
|
7179
7208
|
*/
|
|
7180
|
-
getParts(pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PartList>>;
|
|
7209
|
+
getParts(pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PartList>>;
|
|
7181
7210
|
/**
|
|
7182
7211
|
* Get a `queued-part-deletion` by ID.
|
|
7183
7212
|
* @param {string} id The `queued-part-deletion` ID.
|
|
7184
7213
|
* @param {*} [options] Override http request option.
|
|
7185
7214
|
* @throws {RequiredError}
|
|
7186
7215
|
*/
|
|
7187
|
-
getQueuedPartDeletion(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
7216
|
+
getQueuedPartDeletion(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
7188
7217
|
};
|
|
7189
7218
|
/**
|
|
7190
7219
|
* PartsApi - factory interface
|
|
@@ -7327,7 +7356,7 @@ export declare class PartsApi extends BaseAPI {
|
|
|
7327
7356
|
* @throws {RequiredError}
|
|
7328
7357
|
* @memberof PartsApi
|
|
7329
7358
|
*/
|
|
7330
|
-
createPart(requestParameters: PartsApiCreatePartRequest, options?:
|
|
7359
|
+
createPart(requestParameters: PartsApiCreatePartRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
|
|
7331
7360
|
/**
|
|
7332
7361
|
* Delete a `part`.
|
|
7333
7362
|
* @param {PartsApiDeletePartRequest} requestParameters Request parameters.
|
|
@@ -7335,7 +7364,7 @@ export declare class PartsApi extends BaseAPI {
|
|
|
7335
7364
|
* @throws {RequiredError}
|
|
7336
7365
|
* @memberof PartsApi
|
|
7337
7366
|
*/
|
|
7338
|
-
deletePart(requestParameters: PartsApiDeletePartRequest, options?:
|
|
7367
|
+
deletePart(requestParameters: PartsApiDeletePartRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
|
|
7339
7368
|
/**
|
|
7340
7369
|
* Get a `part` by ID.
|
|
7341
7370
|
* @param {PartsApiGetPartRequest} requestParameters Request parameters.
|
|
@@ -7343,7 +7372,7 @@ export declare class PartsApi extends BaseAPI {
|
|
|
7343
7372
|
* @throws {RequiredError}
|
|
7344
7373
|
* @memberof PartsApi
|
|
7345
7374
|
*/
|
|
7346
|
-
getPart(requestParameters: PartsApiGetPartRequest, options?:
|
|
7375
|
+
getPart(requestParameters: PartsApiGetPartRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Part, any>>;
|
|
7347
7376
|
/**
|
|
7348
7377
|
* Get `parts`.
|
|
7349
7378
|
* @param {PartsApiGetPartsRequest} requestParameters Request parameters.
|
|
@@ -7351,7 +7380,7 @@ export declare class PartsApi extends BaseAPI {
|
|
|
7351
7380
|
* @throws {RequiredError}
|
|
7352
7381
|
* @memberof PartsApi
|
|
7353
7382
|
*/
|
|
7354
|
-
getParts(requestParameters?: PartsApiGetPartsRequest, options?:
|
|
7383
|
+
getParts(requestParameters?: PartsApiGetPartsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PartList, any>>;
|
|
7355
7384
|
/**
|
|
7356
7385
|
* Get a `queued-part-deletion` by ID.
|
|
7357
7386
|
* @param {PartsApiGetQueuedPartDeletionRequest} requestParameters Request parameters.
|
|
@@ -7359,7 +7388,7 @@ export declare class PartsApi extends BaseAPI {
|
|
|
7359
7388
|
* @throws {RequiredError}
|
|
7360
7389
|
* @memberof PartsApi
|
|
7361
7390
|
*/
|
|
7362
|
-
getQueuedPartDeletion(requestParameters: PartsApiGetQueuedPartDeletionRequest, options?:
|
|
7391
|
+
getQueuedPartDeletion(requestParameters: PartsApiGetQueuedPartDeletionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
|
|
7363
7392
|
}
|
|
7364
7393
|
/**
|
|
7365
7394
|
* SceneAlterationsApi - axios parameter creator
|
|
@@ -7373,28 +7402,28 @@ export declare const SceneAlterationsApiAxiosParamCreator: (configuration?: Conf
|
|
|
7373
7402
|
* @param {*} [options] Override http request option.
|
|
7374
7403
|
* @throws {RequiredError}
|
|
7375
7404
|
*/
|
|
7376
|
-
createSceneAlteration: (id: string, createSceneAlterationRequest: CreateSceneAlterationRequest, options?:
|
|
7405
|
+
createSceneAlteration: (id: string, createSceneAlterationRequest: CreateSceneAlterationRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7377
7406
|
/**
|
|
7378
7407
|
* Get a `queued-scene-alteration` by ID.
|
|
7379
7408
|
* @param {string} id The `queued-scene-alteration` ID.
|
|
7380
7409
|
* @param {*} [options] Override http request option.
|
|
7381
7410
|
* @throws {RequiredError}
|
|
7382
7411
|
*/
|
|
7383
|
-
getQueuedSceneAlteration: (id: string, options?:
|
|
7412
|
+
getQueuedSceneAlteration: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7384
7413
|
/**
|
|
7385
7414
|
* Get a `scene-alteration` by ID.
|
|
7386
7415
|
* @param {string} id The `scene-alteration` ID.
|
|
7387
7416
|
* @param {*} [options] Override http request option.
|
|
7388
7417
|
* @throws {RequiredError}
|
|
7389
7418
|
*/
|
|
7390
|
-
getSceneAlteration: (id: string, options?:
|
|
7419
|
+
getSceneAlteration: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7391
7420
|
/**
|
|
7392
7421
|
* Get `scene-alterations` for a `scene-view`.
|
|
7393
7422
|
* @param {string} id The `scene-view` ID.
|
|
7394
7423
|
* @param {*} [options] Override http request option.
|
|
7395
7424
|
* @throws {RequiredError}
|
|
7396
7425
|
*/
|
|
7397
|
-
getSceneAlterations: (id: string, options?:
|
|
7426
|
+
getSceneAlterations: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7398
7427
|
};
|
|
7399
7428
|
/**
|
|
7400
7429
|
* SceneAlterationsApi - functional programming interface
|
|
@@ -7408,28 +7437,28 @@ export declare const SceneAlterationsApiFp: (configuration?: Configuration | und
|
|
|
7408
7437
|
* @param {*} [options] Override http request option.
|
|
7409
7438
|
* @throws {RequiredError}
|
|
7410
7439
|
*/
|
|
7411
|
-
createSceneAlteration(id: string, createSceneAlterationRequest: CreateSceneAlterationRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
7440
|
+
createSceneAlteration(id: string, createSceneAlterationRequest: CreateSceneAlterationRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
7412
7441
|
/**
|
|
7413
7442
|
* Get a `queued-scene-alteration` by ID.
|
|
7414
7443
|
* @param {string} id The `queued-scene-alteration` ID.
|
|
7415
7444
|
* @param {*} [options] Override http request option.
|
|
7416
7445
|
* @throws {RequiredError}
|
|
7417
7446
|
*/
|
|
7418
|
-
getQueuedSceneAlteration(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
7447
|
+
getQueuedSceneAlteration(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
7419
7448
|
/**
|
|
7420
7449
|
* Get a `scene-alteration` by ID.
|
|
7421
7450
|
* @param {string} id The `scene-alteration` ID.
|
|
7422
7451
|
* @param {*} [options] Override http request option.
|
|
7423
7452
|
* @throws {RequiredError}
|
|
7424
7453
|
*/
|
|
7425
|
-
getSceneAlteration(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneAlteration>>;
|
|
7454
|
+
getSceneAlteration(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneAlteration>>;
|
|
7426
7455
|
/**
|
|
7427
7456
|
* Get `scene-alterations` for a `scene-view`.
|
|
7428
7457
|
* @param {string} id The `scene-view` ID.
|
|
7429
7458
|
* @param {*} [options] Override http request option.
|
|
7430
7459
|
* @throws {RequiredError}
|
|
7431
7460
|
*/
|
|
7432
|
-
getSceneAlterations(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneAlterationList>>;
|
|
7461
|
+
getSceneAlterations(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneAlterationList>>;
|
|
7433
7462
|
};
|
|
7434
7463
|
/**
|
|
7435
7464
|
* SceneAlterationsApi - factory interface
|
|
@@ -7538,7 +7567,7 @@ export declare class SceneAlterationsApi extends BaseAPI {
|
|
|
7538
7567
|
* @throws {RequiredError}
|
|
7539
7568
|
* @memberof SceneAlterationsApi
|
|
7540
7569
|
*/
|
|
7541
|
-
createSceneAlteration(requestParameters: SceneAlterationsApiCreateSceneAlterationRequest, options?:
|
|
7570
|
+
createSceneAlteration(requestParameters: SceneAlterationsApiCreateSceneAlterationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
|
|
7542
7571
|
/**
|
|
7543
7572
|
* Get a `queued-scene-alteration` by ID.
|
|
7544
7573
|
* @param {SceneAlterationsApiGetQueuedSceneAlterationRequest} requestParameters Request parameters.
|
|
@@ -7546,7 +7575,7 @@ export declare class SceneAlterationsApi extends BaseAPI {
|
|
|
7546
7575
|
* @throws {RequiredError}
|
|
7547
7576
|
* @memberof SceneAlterationsApi
|
|
7548
7577
|
*/
|
|
7549
|
-
getQueuedSceneAlteration(requestParameters: SceneAlterationsApiGetQueuedSceneAlterationRequest, options?:
|
|
7578
|
+
getQueuedSceneAlteration(requestParameters: SceneAlterationsApiGetQueuedSceneAlterationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
|
|
7550
7579
|
/**
|
|
7551
7580
|
* Get a `scene-alteration` by ID.
|
|
7552
7581
|
* @param {SceneAlterationsApiGetSceneAlterationRequest} requestParameters Request parameters.
|
|
@@ -7554,7 +7583,7 @@ export declare class SceneAlterationsApi extends BaseAPI {
|
|
|
7554
7583
|
* @throws {RequiredError}
|
|
7555
7584
|
* @memberof SceneAlterationsApi
|
|
7556
7585
|
*/
|
|
7557
|
-
getSceneAlteration(requestParameters: SceneAlterationsApiGetSceneAlterationRequest, options?:
|
|
7586
|
+
getSceneAlteration(requestParameters: SceneAlterationsApiGetSceneAlterationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneAlteration, any>>;
|
|
7558
7587
|
/**
|
|
7559
7588
|
* Get `scene-alterations` for a `scene-view`.
|
|
7560
7589
|
* @param {SceneAlterationsApiGetSceneAlterationsRequest} requestParameters Request parameters.
|
|
@@ -7562,7 +7591,7 @@ export declare class SceneAlterationsApi extends BaseAPI {
|
|
|
7562
7591
|
* @throws {RequiredError}
|
|
7563
7592
|
* @memberof SceneAlterationsApi
|
|
7564
7593
|
*/
|
|
7565
|
-
getSceneAlterations(requestParameters: SceneAlterationsApiGetSceneAlterationsRequest, options?:
|
|
7594
|
+
getSceneAlterations(requestParameters: SceneAlterationsApiGetSceneAlterationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneAlterationList, any>>;
|
|
7566
7595
|
}
|
|
7567
7596
|
/**
|
|
7568
7597
|
* SceneItemOverridesApi - axios parameter creator
|
|
@@ -7576,21 +7605,21 @@ export declare const SceneItemOverridesApiAxiosParamCreator: (configuration?: Co
|
|
|
7576
7605
|
* @param {*} [options] Override http request option.
|
|
7577
7606
|
* @throws {RequiredError}
|
|
7578
7607
|
*/
|
|
7579
|
-
createSceneItemOverride: (id: string, createSceneItemOverrideRequest: CreateSceneItemOverrideRequest, options?:
|
|
7608
|
+
createSceneItemOverride: (id: string, createSceneItemOverrideRequest: CreateSceneItemOverrideRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7580
7609
|
/**
|
|
7581
7610
|
* Delete a `scene-item-override`.
|
|
7582
7611
|
* @param {string} id The `scene-item-override` ID.
|
|
7583
7612
|
* @param {*} [options] Override http request option.
|
|
7584
7613
|
* @throws {RequiredError}
|
|
7585
7614
|
*/
|
|
7586
|
-
deleteSceneItemOverride: (id: string, options?:
|
|
7615
|
+
deleteSceneItemOverride: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7587
7616
|
/**
|
|
7588
7617
|
* Get `scene-item-overrides` for a `scene-view`.
|
|
7589
7618
|
* @param {string} id The `scene-view` ID.
|
|
7590
7619
|
* @param {*} [options] Override http request option.
|
|
7591
7620
|
* @throws {RequiredError}
|
|
7592
7621
|
*/
|
|
7593
|
-
getSceneItemOverrides: (id: string, options?:
|
|
7622
|
+
getSceneItemOverrides: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7594
7623
|
/**
|
|
7595
7624
|
* Update a `scene-item-override`.
|
|
7596
7625
|
* @param {string} id The `scene-item-override` ID.
|
|
@@ -7598,7 +7627,7 @@ export declare const SceneItemOverridesApiAxiosParamCreator: (configuration?: Co
|
|
|
7598
7627
|
* @param {*} [options] Override http request option.
|
|
7599
7628
|
* @throws {RequiredError}
|
|
7600
7629
|
*/
|
|
7601
|
-
updateSceneItemOverride: (id: string, updateSceneItemOverrideRequest: UpdateSceneItemOverrideRequest, options?:
|
|
7630
|
+
updateSceneItemOverride: (id: string, updateSceneItemOverrideRequest: UpdateSceneItemOverrideRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7602
7631
|
};
|
|
7603
7632
|
/**
|
|
7604
7633
|
* SceneItemOverridesApi - functional programming interface
|
|
@@ -7612,21 +7641,21 @@ export declare const SceneItemOverridesApiFp: (configuration?: Configuration | u
|
|
|
7612
7641
|
* @param {*} [options] Override http request option.
|
|
7613
7642
|
* @throws {RequiredError}
|
|
7614
7643
|
*/
|
|
7615
|
-
createSceneItemOverride(id: string, createSceneItemOverrideRequest: CreateSceneItemOverrideRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneItemOverride>>;
|
|
7644
|
+
createSceneItemOverride(id: string, createSceneItemOverrideRequest: CreateSceneItemOverrideRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneItemOverride>>;
|
|
7616
7645
|
/**
|
|
7617
7646
|
* Delete a `scene-item-override`.
|
|
7618
7647
|
* @param {string} id The `scene-item-override` ID.
|
|
7619
7648
|
* @param {*} [options] Override http request option.
|
|
7620
7649
|
* @throws {RequiredError}
|
|
7621
7650
|
*/
|
|
7622
|
-
deleteSceneItemOverride(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
7651
|
+
deleteSceneItemOverride(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
7623
7652
|
/**
|
|
7624
7653
|
* Get `scene-item-overrides` for a `scene-view`.
|
|
7625
7654
|
* @param {string} id The `scene-view` ID.
|
|
7626
7655
|
* @param {*} [options] Override http request option.
|
|
7627
7656
|
* @throws {RequiredError}
|
|
7628
7657
|
*/
|
|
7629
|
-
getSceneItemOverrides(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneItemOverrideList>>;
|
|
7658
|
+
getSceneItemOverrides(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneItemOverrideList>>;
|
|
7630
7659
|
/**
|
|
7631
7660
|
* Update a `scene-item-override`.
|
|
7632
7661
|
* @param {string} id The `scene-item-override` ID.
|
|
@@ -7634,7 +7663,7 @@ export declare const SceneItemOverridesApiFp: (configuration?: Configuration | u
|
|
|
7634
7663
|
* @param {*} [options] Override http request option.
|
|
7635
7664
|
* @throws {RequiredError}
|
|
7636
7665
|
*/
|
|
7637
|
-
updateSceneItemOverride(id: string, updateSceneItemOverrideRequest: UpdateSceneItemOverrideRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneItemOverride>>;
|
|
7666
|
+
updateSceneItemOverride(id: string, updateSceneItemOverrideRequest: UpdateSceneItemOverrideRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneItemOverride>>;
|
|
7638
7667
|
};
|
|
7639
7668
|
/**
|
|
7640
7669
|
* SceneItemOverridesApi - factory interface
|
|
@@ -7750,7 +7779,7 @@ export declare class SceneItemOverridesApi extends BaseAPI {
|
|
|
7750
7779
|
* @throws {RequiredError}
|
|
7751
7780
|
* @memberof SceneItemOverridesApi
|
|
7752
7781
|
*/
|
|
7753
|
-
createSceneItemOverride(requestParameters: SceneItemOverridesApiCreateSceneItemOverrideRequest, options?:
|
|
7782
|
+
createSceneItemOverride(requestParameters: SceneItemOverridesApiCreateSceneItemOverrideRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneItemOverride, any>>;
|
|
7754
7783
|
/**
|
|
7755
7784
|
* Delete a `scene-item-override`.
|
|
7756
7785
|
* @param {SceneItemOverridesApiDeleteSceneItemOverrideRequest} requestParameters Request parameters.
|
|
@@ -7758,7 +7787,7 @@ export declare class SceneItemOverridesApi extends BaseAPI {
|
|
|
7758
7787
|
* @throws {RequiredError}
|
|
7759
7788
|
* @memberof SceneItemOverridesApi
|
|
7760
7789
|
*/
|
|
7761
|
-
deleteSceneItemOverride(requestParameters: SceneItemOverridesApiDeleteSceneItemOverrideRequest, options?:
|
|
7790
|
+
deleteSceneItemOverride(requestParameters: SceneItemOverridesApiDeleteSceneItemOverrideRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
7762
7791
|
/**
|
|
7763
7792
|
* Get `scene-item-overrides` for a `scene-view`.
|
|
7764
7793
|
* @param {SceneItemOverridesApiGetSceneItemOverridesRequest} requestParameters Request parameters.
|
|
@@ -7766,7 +7795,7 @@ export declare class SceneItemOverridesApi extends BaseAPI {
|
|
|
7766
7795
|
* @throws {RequiredError}
|
|
7767
7796
|
* @memberof SceneItemOverridesApi
|
|
7768
7797
|
*/
|
|
7769
|
-
getSceneItemOverrides(requestParameters: SceneItemOverridesApiGetSceneItemOverridesRequest, options?:
|
|
7798
|
+
getSceneItemOverrides(requestParameters: SceneItemOverridesApiGetSceneItemOverridesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneItemOverrideList, any>>;
|
|
7770
7799
|
/**
|
|
7771
7800
|
* Update a `scene-item-override`.
|
|
7772
7801
|
* @param {SceneItemOverridesApiUpdateSceneItemOverrideRequest} requestParameters Request parameters.
|
|
@@ -7774,7 +7803,7 @@ export declare class SceneItemOverridesApi extends BaseAPI {
|
|
|
7774
7803
|
* @throws {RequiredError}
|
|
7775
7804
|
* @memberof SceneItemOverridesApi
|
|
7776
7805
|
*/
|
|
7777
|
-
updateSceneItemOverride(requestParameters: SceneItemOverridesApiUpdateSceneItemOverrideRequest, options?:
|
|
7806
|
+
updateSceneItemOverride(requestParameters: SceneItemOverridesApiUpdateSceneItemOverrideRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneItemOverride, any>>;
|
|
7778
7807
|
}
|
|
7779
7808
|
/**
|
|
7780
7809
|
* SceneItemsApi - axios parameter creator
|
|
@@ -7788,28 +7817,28 @@ export declare const SceneItemsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
7788
7817
|
* @param {*} [options] Override http request option.
|
|
7789
7818
|
* @throws {RequiredError}
|
|
7790
7819
|
*/
|
|
7791
|
-
createSceneItem: (id: string, createSceneItemRequest: CreateSceneItemRequest, options?:
|
|
7820
|
+
createSceneItem: (id: string, createSceneItemRequest: CreateSceneItemRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7792
7821
|
/**
|
|
7793
7822
|
* Delete a `scene-item`.
|
|
7794
7823
|
* @param {string} id The `scene-item` ID.
|
|
7795
7824
|
* @param {*} [options] Override http request option.
|
|
7796
7825
|
* @throws {RequiredError}
|
|
7797
7826
|
*/
|
|
7798
|
-
deleteSceneItem: (id: string, options?:
|
|
7827
|
+
deleteSceneItem: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7799
7828
|
/**
|
|
7800
7829
|
* 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
7830
|
* @param {string} id The `queued-scene-item` ID.
|
|
7802
7831
|
* @param {*} [options] Override http request option.
|
|
7803
7832
|
* @throws {RequiredError}
|
|
7804
7833
|
*/
|
|
7805
|
-
getQueuedSceneItem: (id: string, options?:
|
|
7834
|
+
getQueuedSceneItem: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7806
7835
|
/**
|
|
7807
7836
|
* Get a `queued-scene-item-deletion` by ID.
|
|
7808
7837
|
* @param {string} id The `queued-scene-item-deletion` ID.
|
|
7809
7838
|
* @param {*} [options] Override http request option.
|
|
7810
7839
|
* @throws {RequiredError}
|
|
7811
7840
|
*/
|
|
7812
|
-
getQueuedSceneItemDeletion: (id: string, options?:
|
|
7841
|
+
getQueuedSceneItemDeletion: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7813
7842
|
/**
|
|
7814
7843
|
* Get a `scene-item` by ID.
|
|
7815
7844
|
* @param {string} id The `scene-item` ID.
|
|
@@ -7817,7 +7846,7 @@ export declare const SceneItemsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
7817
7846
|
* @param {*} [options] Override http request option.
|
|
7818
7847
|
* @throws {RequiredError}
|
|
7819
7848
|
*/
|
|
7820
|
-
getSceneItem: (id: string, fieldsSceneItem?: string | undefined, options?:
|
|
7849
|
+
getSceneItem: (id: string, fieldsSceneItem?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7821
7850
|
/**
|
|
7822
7851
|
* Get `scene-items` for a `scene`.
|
|
7823
7852
|
* @param {string} id The `scene` ID.
|
|
@@ -7829,7 +7858,7 @@ export declare const SceneItemsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
7829
7858
|
* @param {*} [options] Override http request option.
|
|
7830
7859
|
* @throws {RequiredError}
|
|
7831
7860
|
*/
|
|
7832
|
-
getSceneItems: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, filterSource?: string | undefined, filterSuppliedId?: string | undefined, filterParent?: string | undefined, options?:
|
|
7861
|
+
getSceneItems: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, filterSource?: string | undefined, filterSuppliedId?: string | undefined, filterParent?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7833
7862
|
/**
|
|
7834
7863
|
* Update a `scene-item`.
|
|
7835
7864
|
* @param {string} id The `scene-item` ID.
|
|
@@ -7837,7 +7866,7 @@ export declare const SceneItemsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
7837
7866
|
* @param {*} [options] Override http request option.
|
|
7838
7867
|
* @throws {RequiredError}
|
|
7839
7868
|
*/
|
|
7840
|
-
updateSceneItem: (id: string, updateSceneItemRequest: UpdateSceneItemRequest, options?:
|
|
7869
|
+
updateSceneItem: (id: string, updateSceneItemRequest: UpdateSceneItemRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7841
7870
|
};
|
|
7842
7871
|
/**
|
|
7843
7872
|
* SceneItemsApi - functional programming interface
|
|
@@ -7851,28 +7880,28 @@ export declare const SceneItemsApiFp: (configuration?: Configuration | undefined
|
|
|
7851
7880
|
* @param {*} [options] Override http request option.
|
|
7852
7881
|
* @throws {RequiredError}
|
|
7853
7882
|
*/
|
|
7854
|
-
createSceneItem(id: string, createSceneItemRequest: CreateSceneItemRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
7883
|
+
createSceneItem(id: string, createSceneItemRequest: CreateSceneItemRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
7855
7884
|
/**
|
|
7856
7885
|
* Delete a `scene-item`.
|
|
7857
7886
|
* @param {string} id The `scene-item` ID.
|
|
7858
7887
|
* @param {*} [options] Override http request option.
|
|
7859
7888
|
* @throws {RequiredError}
|
|
7860
7889
|
*/
|
|
7861
|
-
deleteSceneItem(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
7890
|
+
deleteSceneItem(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
7862
7891
|
/**
|
|
7863
7892
|
* 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
7893
|
* @param {string} id The `queued-scene-item` ID.
|
|
7865
7894
|
* @param {*} [options] Override http request option.
|
|
7866
7895
|
* @throws {RequiredError}
|
|
7867
7896
|
*/
|
|
7868
|
-
getQueuedSceneItem(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
7897
|
+
getQueuedSceneItem(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
7869
7898
|
/**
|
|
7870
7899
|
* Get a `queued-scene-item-deletion` by ID.
|
|
7871
7900
|
* @param {string} id The `queued-scene-item-deletion` ID.
|
|
7872
7901
|
* @param {*} [options] Override http request option.
|
|
7873
7902
|
* @throws {RequiredError}
|
|
7874
7903
|
*/
|
|
7875
|
-
getQueuedSceneItemDeletion(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
7904
|
+
getQueuedSceneItemDeletion(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
7876
7905
|
/**
|
|
7877
7906
|
* Get a `scene-item` by ID.
|
|
7878
7907
|
* @param {string} id The `scene-item` ID.
|
|
@@ -7880,7 +7909,7 @@ export declare const SceneItemsApiFp: (configuration?: Configuration | undefined
|
|
|
7880
7909
|
* @param {*} [options] Override http request option.
|
|
7881
7910
|
* @throws {RequiredError}
|
|
7882
7911
|
*/
|
|
7883
|
-
getSceneItem(id: string, fieldsSceneItem?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneItem>>;
|
|
7912
|
+
getSceneItem(id: string, fieldsSceneItem?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneItem>>;
|
|
7884
7913
|
/**
|
|
7885
7914
|
* Get `scene-items` for a `scene`.
|
|
7886
7915
|
* @param {string} id The `scene` ID.
|
|
@@ -7892,7 +7921,7 @@ export declare const SceneItemsApiFp: (configuration?: Configuration | undefined
|
|
|
7892
7921
|
* @param {*} [options] Override http request option.
|
|
7893
7922
|
* @throws {RequiredError}
|
|
7894
7923
|
*/
|
|
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>>;
|
|
7924
|
+
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
7925
|
/**
|
|
7897
7926
|
* Update a `scene-item`.
|
|
7898
7927
|
* @param {string} id The `scene-item` ID.
|
|
@@ -7900,7 +7929,7 @@ export declare const SceneItemsApiFp: (configuration?: Configuration | undefined
|
|
|
7900
7929
|
* @param {*} [options] Override http request option.
|
|
7901
7930
|
* @throws {RequiredError}
|
|
7902
7931
|
*/
|
|
7903
|
-
updateSceneItem(id: string, updateSceneItemRequest: UpdateSceneItemRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
7932
|
+
updateSceneItem(id: string, updateSceneItemRequest: UpdateSceneItemRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
7904
7933
|
};
|
|
7905
7934
|
/**
|
|
7906
7935
|
* SceneItemsApi - factory interface
|
|
@@ -8118,7 +8147,7 @@ export declare class SceneItemsApi extends BaseAPI {
|
|
|
8118
8147
|
* @throws {RequiredError}
|
|
8119
8148
|
* @memberof SceneItemsApi
|
|
8120
8149
|
*/
|
|
8121
|
-
createSceneItem(requestParameters: SceneItemsApiCreateSceneItemRequest, options?:
|
|
8150
|
+
createSceneItem(requestParameters: SceneItemsApiCreateSceneItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
|
|
8122
8151
|
/**
|
|
8123
8152
|
* Delete a `scene-item`.
|
|
8124
8153
|
* @param {SceneItemsApiDeleteSceneItemRequest} requestParameters Request parameters.
|
|
@@ -8126,7 +8155,7 @@ export declare class SceneItemsApi extends BaseAPI {
|
|
|
8126
8155
|
* @throws {RequiredError}
|
|
8127
8156
|
* @memberof SceneItemsApi
|
|
8128
8157
|
*/
|
|
8129
|
-
deleteSceneItem(requestParameters: SceneItemsApiDeleteSceneItemRequest, options?:
|
|
8158
|
+
deleteSceneItem(requestParameters: SceneItemsApiDeleteSceneItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
8130
8159
|
/**
|
|
8131
8160
|
* 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
8161
|
* @param {SceneItemsApiGetQueuedSceneItemRequest} requestParameters Request parameters.
|
|
@@ -8134,7 +8163,7 @@ export declare class SceneItemsApi extends BaseAPI {
|
|
|
8134
8163
|
* @throws {RequiredError}
|
|
8135
8164
|
* @memberof SceneItemsApi
|
|
8136
8165
|
*/
|
|
8137
|
-
getQueuedSceneItem(requestParameters: SceneItemsApiGetQueuedSceneItemRequest, options?:
|
|
8166
|
+
getQueuedSceneItem(requestParameters: SceneItemsApiGetQueuedSceneItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
|
|
8138
8167
|
/**
|
|
8139
8168
|
* Get a `queued-scene-item-deletion` by ID.
|
|
8140
8169
|
* @param {SceneItemsApiGetQueuedSceneItemDeletionRequest} requestParameters Request parameters.
|
|
@@ -8142,7 +8171,7 @@ export declare class SceneItemsApi extends BaseAPI {
|
|
|
8142
8171
|
* @throws {RequiredError}
|
|
8143
8172
|
* @memberof SceneItemsApi
|
|
8144
8173
|
*/
|
|
8145
|
-
getQueuedSceneItemDeletion(requestParameters: SceneItemsApiGetQueuedSceneItemDeletionRequest, options?:
|
|
8174
|
+
getQueuedSceneItemDeletion(requestParameters: SceneItemsApiGetQueuedSceneItemDeletionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
|
|
8146
8175
|
/**
|
|
8147
8176
|
* Get a `scene-item` by ID.
|
|
8148
8177
|
* @param {SceneItemsApiGetSceneItemRequest} requestParameters Request parameters.
|
|
@@ -8150,7 +8179,7 @@ export declare class SceneItemsApi extends BaseAPI {
|
|
|
8150
8179
|
* @throws {RequiredError}
|
|
8151
8180
|
* @memberof SceneItemsApi
|
|
8152
8181
|
*/
|
|
8153
|
-
getSceneItem(requestParameters: SceneItemsApiGetSceneItemRequest, options?:
|
|
8182
|
+
getSceneItem(requestParameters: SceneItemsApiGetSceneItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneItem, any>>;
|
|
8154
8183
|
/**
|
|
8155
8184
|
* Get `scene-items` for a `scene`.
|
|
8156
8185
|
* @param {SceneItemsApiGetSceneItemsRequest} requestParameters Request parameters.
|
|
@@ -8158,7 +8187,7 @@ export declare class SceneItemsApi extends BaseAPI {
|
|
|
8158
8187
|
* @throws {RequiredError}
|
|
8159
8188
|
* @memberof SceneItemsApi
|
|
8160
8189
|
*/
|
|
8161
|
-
getSceneItems(requestParameters: SceneItemsApiGetSceneItemsRequest, options?:
|
|
8190
|
+
getSceneItems(requestParameters: SceneItemsApiGetSceneItemsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneItemList, any>>;
|
|
8162
8191
|
/**
|
|
8163
8192
|
* Update a `scene-item`.
|
|
8164
8193
|
* @param {SceneItemsApiUpdateSceneItemRequest} requestParameters Request parameters.
|
|
@@ -8166,7 +8195,7 @@ export declare class SceneItemsApi extends BaseAPI {
|
|
|
8166
8195
|
* @throws {RequiredError}
|
|
8167
8196
|
* @memberof SceneItemsApi
|
|
8168
8197
|
*/
|
|
8169
|
-
updateSceneItem(requestParameters: SceneItemsApiUpdateSceneItemRequest, options?:
|
|
8198
|
+
updateSceneItem(requestParameters: SceneItemsApiUpdateSceneItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
|
|
8170
8199
|
}
|
|
8171
8200
|
/**
|
|
8172
8201
|
* SceneViewStatesApi - axios parameter creator
|
|
@@ -8180,14 +8209,14 @@ export declare const SceneViewStatesApiAxiosParamCreator: (configuration?: Confi
|
|
|
8180
8209
|
* @param {*} [options] Override http request option.
|
|
8181
8210
|
* @throws {RequiredError}
|
|
8182
8211
|
*/
|
|
8183
|
-
createSceneViewState: (id: string, createSceneViewStateRequest: CreateSceneViewStateRequest, options?:
|
|
8212
|
+
createSceneViewState: (id: string, createSceneViewStateRequest: CreateSceneViewStateRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8184
8213
|
/**
|
|
8185
8214
|
* Delete a `scene-view-state`.
|
|
8186
8215
|
* @param {string} id The `scene-view-state` ID.
|
|
8187
8216
|
* @param {*} [options] Override http request option.
|
|
8188
8217
|
* @throws {RequiredError}
|
|
8189
8218
|
*/
|
|
8190
|
-
deleteSceneViewState: (id: string, options?:
|
|
8219
|
+
deleteSceneViewState: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8191
8220
|
/**
|
|
8192
8221
|
* Get a `scene-view-state` by ID.
|
|
8193
8222
|
* @param {string} id The `scene-view-state` ID.
|
|
@@ -8195,17 +8224,18 @@ export declare const SceneViewStatesApiAxiosParamCreator: (configuration?: Confi
|
|
|
8195
8224
|
* @param {*} [options] Override http request option.
|
|
8196
8225
|
* @throws {RequiredError}
|
|
8197
8226
|
*/
|
|
8198
|
-
getSceneViewState: (id: string, fieldsSceneViewState?: string | undefined, options?:
|
|
8227
|
+
getSceneViewState: (id: string, fieldsSceneViewState?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8199
8228
|
/**
|
|
8200
8229
|
* Get `scene-view-states` for a `scene`.
|
|
8201
8230
|
* @param {string} id The `scene` ID.
|
|
8202
8231
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
8203
8232
|
* @param {number} [pageSize] The number of items to return.
|
|
8204
8233
|
* @param {string} [fieldsSceneViewState] Comma-separated list of fields to return in response. An empty value returns no fields. `thumbnails` is only returned if explicitly requested.
|
|
8234
|
+
* @param {string} [filterId] Comma-separated list of IDs to filter on.
|
|
8205
8235
|
* @param {*} [options] Override http request option.
|
|
8206
8236
|
* @throws {RequiredError}
|
|
8207
8237
|
*/
|
|
8208
|
-
getSceneViewStates: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, fieldsSceneViewState?: string | undefined, options?:
|
|
8238
|
+
getSceneViewStates: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, fieldsSceneViewState?: string | undefined, filterId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8209
8239
|
/**
|
|
8210
8240
|
* Update a `scene-view-state`.
|
|
8211
8241
|
* @param {string} id The `scene-view-state` ID.
|
|
@@ -8213,7 +8243,7 @@ export declare const SceneViewStatesApiAxiosParamCreator: (configuration?: Confi
|
|
|
8213
8243
|
* @param {*} [options] Override http request option.
|
|
8214
8244
|
* @throws {RequiredError}
|
|
8215
8245
|
*/
|
|
8216
|
-
updateSceneViewState: (id: string, updateSceneViewStateRequest: UpdateSceneViewStateRequest, options?:
|
|
8246
|
+
updateSceneViewState: (id: string, updateSceneViewStateRequest: UpdateSceneViewStateRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8217
8247
|
};
|
|
8218
8248
|
/**
|
|
8219
8249
|
* SceneViewStatesApi - functional programming interface
|
|
@@ -8227,14 +8257,14 @@ export declare const SceneViewStatesApiFp: (configuration?: Configuration | unde
|
|
|
8227
8257
|
* @param {*} [options] Override http request option.
|
|
8228
8258
|
* @throws {RequiredError}
|
|
8229
8259
|
*/
|
|
8230
|
-
createSceneViewState(id: string, createSceneViewStateRequest: CreateSceneViewStateRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewState>>;
|
|
8260
|
+
createSceneViewState(id: string, createSceneViewStateRequest: CreateSceneViewStateRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewState>>;
|
|
8231
8261
|
/**
|
|
8232
8262
|
* Delete a `scene-view-state`.
|
|
8233
8263
|
* @param {string} id The `scene-view-state` ID.
|
|
8234
8264
|
* @param {*} [options] Override http request option.
|
|
8235
8265
|
* @throws {RequiredError}
|
|
8236
8266
|
*/
|
|
8237
|
-
deleteSceneViewState(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
8267
|
+
deleteSceneViewState(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
8238
8268
|
/**
|
|
8239
8269
|
* Get a `scene-view-state` by ID.
|
|
8240
8270
|
* @param {string} id The `scene-view-state` ID.
|
|
@@ -8242,17 +8272,18 @@ export declare const SceneViewStatesApiFp: (configuration?: Configuration | unde
|
|
|
8242
8272
|
* @param {*} [options] Override http request option.
|
|
8243
8273
|
* @throws {RequiredError}
|
|
8244
8274
|
*/
|
|
8245
|
-
getSceneViewState(id: string, fieldsSceneViewState?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewState>>;
|
|
8275
|
+
getSceneViewState(id: string, fieldsSceneViewState?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewState>>;
|
|
8246
8276
|
/**
|
|
8247
8277
|
* Get `scene-view-states` for a `scene`.
|
|
8248
8278
|
* @param {string} id The `scene` ID.
|
|
8249
8279
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
8250
8280
|
* @param {number} [pageSize] The number of items to return.
|
|
8251
8281
|
* @param {string} [fieldsSceneViewState] Comma-separated list of fields to return in response. An empty value returns no fields. `thumbnails` is only returned if explicitly requested.
|
|
8282
|
+
* @param {string} [filterId] Comma-separated list of IDs to filter on.
|
|
8252
8283
|
* @param {*} [options] Override http request option.
|
|
8253
8284
|
* @throws {RequiredError}
|
|
8254
8285
|
*/
|
|
8255
|
-
getSceneViewStates(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, fieldsSceneViewState?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewStateList>>;
|
|
8286
|
+
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
8287
|
/**
|
|
8257
8288
|
* Update a `scene-view-state`.
|
|
8258
8289
|
* @param {string} id The `scene-view-state` ID.
|
|
@@ -8260,7 +8291,7 @@ export declare const SceneViewStatesApiFp: (configuration?: Configuration | unde
|
|
|
8260
8291
|
* @param {*} [options] Override http request option.
|
|
8261
8292
|
* @throws {RequiredError}
|
|
8262
8293
|
*/
|
|
8263
|
-
updateSceneViewState(id: string, updateSceneViewStateRequest: UpdateSceneViewStateRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewState>>;
|
|
8294
|
+
updateSceneViewState(id: string, updateSceneViewStateRequest: UpdateSceneViewStateRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewState>>;
|
|
8264
8295
|
};
|
|
8265
8296
|
/**
|
|
8266
8297
|
* SceneViewStatesApi - factory interface
|
|
@@ -8296,10 +8327,11 @@ export declare const SceneViewStatesApiFactory: (configuration?: Configuration |
|
|
|
8296
8327
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
8297
8328
|
* @param {number} [pageSize] The number of items to return.
|
|
8298
8329
|
* @param {string} [fieldsSceneViewState] Comma-separated list of fields to return in response. An empty value returns no fields. `thumbnails` is only returned if explicitly requested.
|
|
8330
|
+
* @param {string} [filterId] Comma-separated list of IDs to filter on.
|
|
8299
8331
|
* @param {*} [options] Override http request option.
|
|
8300
8332
|
* @throws {RequiredError}
|
|
8301
8333
|
*/
|
|
8302
|
-
getSceneViewStates(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, fieldsSceneViewState?: string | undefined, options?: any): AxiosPromise<SceneViewStateList>;
|
|
8334
|
+
getSceneViewStates(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, fieldsSceneViewState?: string | undefined, filterId?: string | undefined, options?: any): AxiosPromise<SceneViewStateList>;
|
|
8303
8335
|
/**
|
|
8304
8336
|
* Update a `scene-view-state`.
|
|
8305
8337
|
* @param {string} id The `scene-view-state` ID.
|
|
@@ -8390,6 +8422,12 @@ export interface SceneViewStatesApiGetSceneViewStatesRequest {
|
|
|
8390
8422
|
* @memberof SceneViewStatesApiGetSceneViewStates
|
|
8391
8423
|
*/
|
|
8392
8424
|
readonly fieldsSceneViewState?: string;
|
|
8425
|
+
/**
|
|
8426
|
+
* Comma-separated list of IDs to filter on.
|
|
8427
|
+
* @type {string}
|
|
8428
|
+
* @memberof SceneViewStatesApiGetSceneViewStates
|
|
8429
|
+
*/
|
|
8430
|
+
readonly filterId?: string;
|
|
8393
8431
|
}
|
|
8394
8432
|
/**
|
|
8395
8433
|
* Request parameters for updateSceneViewState operation in SceneViewStatesApi.
|
|
@@ -8424,7 +8462,7 @@ export declare class SceneViewStatesApi extends BaseAPI {
|
|
|
8424
8462
|
* @throws {RequiredError}
|
|
8425
8463
|
* @memberof SceneViewStatesApi
|
|
8426
8464
|
*/
|
|
8427
|
-
createSceneViewState(requestParameters: SceneViewStatesApiCreateSceneViewStateRequest, options?:
|
|
8465
|
+
createSceneViewState(requestParameters: SceneViewStatesApiCreateSceneViewStateRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneViewState, any>>;
|
|
8428
8466
|
/**
|
|
8429
8467
|
* Delete a `scene-view-state`.
|
|
8430
8468
|
* @param {SceneViewStatesApiDeleteSceneViewStateRequest} requestParameters Request parameters.
|
|
@@ -8432,7 +8470,7 @@ export declare class SceneViewStatesApi extends BaseAPI {
|
|
|
8432
8470
|
* @throws {RequiredError}
|
|
8433
8471
|
* @memberof SceneViewStatesApi
|
|
8434
8472
|
*/
|
|
8435
|
-
deleteSceneViewState(requestParameters: SceneViewStatesApiDeleteSceneViewStateRequest, options?:
|
|
8473
|
+
deleteSceneViewState(requestParameters: SceneViewStatesApiDeleteSceneViewStateRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
8436
8474
|
/**
|
|
8437
8475
|
* Get a `scene-view-state` by ID.
|
|
8438
8476
|
* @param {SceneViewStatesApiGetSceneViewStateRequest} requestParameters Request parameters.
|
|
@@ -8440,7 +8478,7 @@ export declare class SceneViewStatesApi extends BaseAPI {
|
|
|
8440
8478
|
* @throws {RequiredError}
|
|
8441
8479
|
* @memberof SceneViewStatesApi
|
|
8442
8480
|
*/
|
|
8443
|
-
getSceneViewState(requestParameters: SceneViewStatesApiGetSceneViewStateRequest, options?:
|
|
8481
|
+
getSceneViewState(requestParameters: SceneViewStatesApiGetSceneViewStateRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneViewState, any>>;
|
|
8444
8482
|
/**
|
|
8445
8483
|
* Get `scene-view-states` for a `scene`.
|
|
8446
8484
|
* @param {SceneViewStatesApiGetSceneViewStatesRequest} requestParameters Request parameters.
|
|
@@ -8448,7 +8486,7 @@ export declare class SceneViewStatesApi extends BaseAPI {
|
|
|
8448
8486
|
* @throws {RequiredError}
|
|
8449
8487
|
* @memberof SceneViewStatesApi
|
|
8450
8488
|
*/
|
|
8451
|
-
getSceneViewStates(requestParameters: SceneViewStatesApiGetSceneViewStatesRequest, options?:
|
|
8489
|
+
getSceneViewStates(requestParameters: SceneViewStatesApiGetSceneViewStatesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneViewStateList, any>>;
|
|
8452
8490
|
/**
|
|
8453
8491
|
* Update a `scene-view-state`.
|
|
8454
8492
|
* @param {SceneViewStatesApiUpdateSceneViewStateRequest} requestParameters Request parameters.
|
|
@@ -8456,7 +8494,7 @@ export declare class SceneViewStatesApi extends BaseAPI {
|
|
|
8456
8494
|
* @throws {RequiredError}
|
|
8457
8495
|
* @memberof SceneViewStatesApi
|
|
8458
8496
|
*/
|
|
8459
|
-
updateSceneViewState(requestParameters: SceneViewStatesApiUpdateSceneViewStateRequest, options?:
|
|
8497
|
+
updateSceneViewState(requestParameters: SceneViewStatesApiUpdateSceneViewStateRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneViewState, any>>;
|
|
8460
8498
|
}
|
|
8461
8499
|
/**
|
|
8462
8500
|
* SceneViewsApi - axios parameter creator
|
|
@@ -8470,21 +8508,21 @@ export declare const SceneViewsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
8470
8508
|
* @param {*} [options] Override http request option.
|
|
8471
8509
|
* @throws {RequiredError}
|
|
8472
8510
|
*/
|
|
8473
|
-
createSceneView: (id: string, createSceneViewRequest: CreateSceneViewRequest, options?:
|
|
8511
|
+
createSceneView: (id: string, createSceneViewRequest: CreateSceneViewRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8474
8512
|
/**
|
|
8475
8513
|
* Delete a `scene-view`.
|
|
8476
8514
|
* @param {string} id The `scene-view` ID.
|
|
8477
8515
|
* @param {*} [options] Override http request option.
|
|
8478
8516
|
* @throws {RequiredError}
|
|
8479
8517
|
*/
|
|
8480
|
-
deleteSceneView: (id: string, options?:
|
|
8518
|
+
deleteSceneView: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8481
8519
|
/**
|
|
8482
8520
|
* Get a `scene-view` by ID.
|
|
8483
8521
|
* @param {string} id The `scene-view` ID.
|
|
8484
8522
|
* @param {*} [options] Override http request option.
|
|
8485
8523
|
* @throws {RequiredError}
|
|
8486
8524
|
*/
|
|
8487
|
-
getSceneView: (id: string, options?:
|
|
8525
|
+
getSceneView: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8488
8526
|
/**
|
|
8489
8527
|
* Get `scene-view`s for a `scene`.
|
|
8490
8528
|
* @param {string} id The `scene` ID.
|
|
@@ -8493,7 +8531,7 @@ export declare const SceneViewsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
8493
8531
|
* @param {*} [options] Override http request option.
|
|
8494
8532
|
* @throws {RequiredError}
|
|
8495
8533
|
*/
|
|
8496
|
-
getSceneViews: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, options?:
|
|
8534
|
+
getSceneViews: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8497
8535
|
/**
|
|
8498
8536
|
* Get a `scene-item` within a view by ID.
|
|
8499
8537
|
* @param {string} id The `scene-view` ID.
|
|
@@ -8503,7 +8541,7 @@ export declare const SceneViewsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
8503
8541
|
* @param {*} [options] Override http request option.
|
|
8504
8542
|
* @throws {RequiredError}
|
|
8505
8543
|
*/
|
|
8506
|
-
getViewSceneItem: (id: string, itemId: string, fieldsSceneItem?: string | undefined, include?: string | undefined, options?:
|
|
8544
|
+
getViewSceneItem: (id: string, itemId: string, fieldsSceneItem?: string | undefined, include?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8507
8545
|
/**
|
|
8508
8546
|
* 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
8547
|
* @param {string} id The `scene-view` ID.
|
|
@@ -8512,7 +8550,7 @@ export declare const SceneViewsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
8512
8550
|
* @param {*} [options] Override http request option.
|
|
8513
8551
|
* @throws {RequiredError}
|
|
8514
8552
|
*/
|
|
8515
|
-
renderSceneView: (id: string, height?: number | undefined, width?: number | undefined, options?:
|
|
8553
|
+
renderSceneView: (id: string, height?: number | undefined, width?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8516
8554
|
/**
|
|
8517
8555
|
* Update a `scene-view`.
|
|
8518
8556
|
* @param {string} id The `scene-view` ID.
|
|
@@ -8520,7 +8558,7 @@ export declare const SceneViewsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
8520
8558
|
* @param {*} [options] Override http request option.
|
|
8521
8559
|
* @throws {RequiredError}
|
|
8522
8560
|
*/
|
|
8523
|
-
updateSceneView: (id: string, updateSceneViewRequest: UpdateSceneViewRequest, options?:
|
|
8561
|
+
updateSceneView: (id: string, updateSceneViewRequest: UpdateSceneViewRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8524
8562
|
};
|
|
8525
8563
|
/**
|
|
8526
8564
|
* SceneViewsApi - functional programming interface
|
|
@@ -8534,21 +8572,21 @@ export declare const SceneViewsApiFp: (configuration?: Configuration | undefined
|
|
|
8534
8572
|
* @param {*} [options] Override http request option.
|
|
8535
8573
|
* @throws {RequiredError}
|
|
8536
8574
|
*/
|
|
8537
|
-
createSceneView(id: string, createSceneViewRequest: CreateSceneViewRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneView>>;
|
|
8575
|
+
createSceneView(id: string, createSceneViewRequest: CreateSceneViewRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneView>>;
|
|
8538
8576
|
/**
|
|
8539
8577
|
* Delete a `scene-view`.
|
|
8540
8578
|
* @param {string} id The `scene-view` ID.
|
|
8541
8579
|
* @param {*} [options] Override http request option.
|
|
8542
8580
|
* @throws {RequiredError}
|
|
8543
8581
|
*/
|
|
8544
|
-
deleteSceneView(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
8582
|
+
deleteSceneView(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
8545
8583
|
/**
|
|
8546
8584
|
* Get a `scene-view` by ID.
|
|
8547
8585
|
* @param {string} id The `scene-view` ID.
|
|
8548
8586
|
* @param {*} [options] Override http request option.
|
|
8549
8587
|
* @throws {RequiredError}
|
|
8550
8588
|
*/
|
|
8551
|
-
getSceneView(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneView>>;
|
|
8589
|
+
getSceneView(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneView>>;
|
|
8552
8590
|
/**
|
|
8553
8591
|
* Get `scene-view`s for a `scene`.
|
|
8554
8592
|
* @param {string} id The `scene` ID.
|
|
@@ -8557,7 +8595,7 @@ export declare const SceneViewsApiFp: (configuration?: Configuration | undefined
|
|
|
8557
8595
|
* @param {*} [options] Override http request option.
|
|
8558
8596
|
* @throws {RequiredError}
|
|
8559
8597
|
*/
|
|
8560
|
-
getSceneViews(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewList>>;
|
|
8598
|
+
getSceneViews(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewList>>;
|
|
8561
8599
|
/**
|
|
8562
8600
|
* Get a `scene-item` within a view by ID.
|
|
8563
8601
|
* @param {string} id The `scene-view` ID.
|
|
@@ -8567,7 +8605,7 @@ export declare const SceneViewsApiFp: (configuration?: Configuration | undefined
|
|
|
8567
8605
|
* @param {*} [options] Override http request option.
|
|
8568
8606
|
* @throws {RequiredError}
|
|
8569
8607
|
*/
|
|
8570
|
-
getViewSceneItem(id: string, itemId: string, fieldsSceneItem?: string | undefined, include?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewItem>>;
|
|
8608
|
+
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
8609
|
/**
|
|
8572
8610
|
* 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
8611
|
* @param {string} id The `scene-view` ID.
|
|
@@ -8576,7 +8614,7 @@ export declare const SceneViewsApiFp: (configuration?: Configuration | undefined
|
|
|
8576
8614
|
* @param {*} [options] Override http request option.
|
|
8577
8615
|
* @throws {RequiredError}
|
|
8578
8616
|
*/
|
|
8579
|
-
renderSceneView(id: string, height?: number | undefined, width?: number | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<any>>;
|
|
8617
|
+
renderSceneView(id: string, height?: number | undefined, width?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<any>>;
|
|
8580
8618
|
/**
|
|
8581
8619
|
* Update a `scene-view`.
|
|
8582
8620
|
* @param {string} id The `scene-view` ID.
|
|
@@ -8584,7 +8622,7 @@ export declare const SceneViewsApiFp: (configuration?: Configuration | undefined
|
|
|
8584
8622
|
* @param {*} [options] Override http request option.
|
|
8585
8623
|
* @throws {RequiredError}
|
|
8586
8624
|
*/
|
|
8587
|
-
updateSceneView(id: string, updateSceneViewRequest: UpdateSceneViewRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneView>>;
|
|
8625
|
+
updateSceneView(id: string, updateSceneViewRequest: UpdateSceneViewRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneView>>;
|
|
8588
8626
|
};
|
|
8589
8627
|
/**
|
|
8590
8628
|
* SceneViewsApi - factory interface
|
|
@@ -8809,7 +8847,7 @@ export declare class SceneViewsApi extends BaseAPI {
|
|
|
8809
8847
|
* @throws {RequiredError}
|
|
8810
8848
|
* @memberof SceneViewsApi
|
|
8811
8849
|
*/
|
|
8812
|
-
createSceneView(requestParameters: SceneViewsApiCreateSceneViewRequest, options?:
|
|
8850
|
+
createSceneView(requestParameters: SceneViewsApiCreateSceneViewRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneView, any>>;
|
|
8813
8851
|
/**
|
|
8814
8852
|
* Delete a `scene-view`.
|
|
8815
8853
|
* @param {SceneViewsApiDeleteSceneViewRequest} requestParameters Request parameters.
|
|
@@ -8817,7 +8855,7 @@ export declare class SceneViewsApi extends BaseAPI {
|
|
|
8817
8855
|
* @throws {RequiredError}
|
|
8818
8856
|
* @memberof SceneViewsApi
|
|
8819
8857
|
*/
|
|
8820
|
-
deleteSceneView(requestParameters: SceneViewsApiDeleteSceneViewRequest, options?:
|
|
8858
|
+
deleteSceneView(requestParameters: SceneViewsApiDeleteSceneViewRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
8821
8859
|
/**
|
|
8822
8860
|
* Get a `scene-view` by ID.
|
|
8823
8861
|
* @param {SceneViewsApiGetSceneViewRequest} requestParameters Request parameters.
|
|
@@ -8825,7 +8863,7 @@ export declare class SceneViewsApi extends BaseAPI {
|
|
|
8825
8863
|
* @throws {RequiredError}
|
|
8826
8864
|
* @memberof SceneViewsApi
|
|
8827
8865
|
*/
|
|
8828
|
-
getSceneView(requestParameters: SceneViewsApiGetSceneViewRequest, options?:
|
|
8866
|
+
getSceneView(requestParameters: SceneViewsApiGetSceneViewRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneView, any>>;
|
|
8829
8867
|
/**
|
|
8830
8868
|
* Get `scene-view`s for a `scene`.
|
|
8831
8869
|
* @param {SceneViewsApiGetSceneViewsRequest} requestParameters Request parameters.
|
|
@@ -8833,7 +8871,7 @@ export declare class SceneViewsApi extends BaseAPI {
|
|
|
8833
8871
|
* @throws {RequiredError}
|
|
8834
8872
|
* @memberof SceneViewsApi
|
|
8835
8873
|
*/
|
|
8836
|
-
getSceneViews(requestParameters: SceneViewsApiGetSceneViewsRequest, options?:
|
|
8874
|
+
getSceneViews(requestParameters: SceneViewsApiGetSceneViewsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneViewList, any>>;
|
|
8837
8875
|
/**
|
|
8838
8876
|
* Get a `scene-item` within a view by ID.
|
|
8839
8877
|
* @param {SceneViewsApiGetViewSceneItemRequest} requestParameters Request parameters.
|
|
@@ -8841,7 +8879,7 @@ export declare class SceneViewsApi extends BaseAPI {
|
|
|
8841
8879
|
* @throws {RequiredError}
|
|
8842
8880
|
* @memberof SceneViewsApi
|
|
8843
8881
|
*/
|
|
8844
|
-
getViewSceneItem(requestParameters: SceneViewsApiGetViewSceneItemRequest, options?:
|
|
8882
|
+
getViewSceneItem(requestParameters: SceneViewsApiGetViewSceneItemRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneViewItem, any>>;
|
|
8845
8883
|
/**
|
|
8846
8884
|
* 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
8885
|
* @param {SceneViewsApiRenderSceneViewRequest} requestParameters Request parameters.
|
|
@@ -8849,7 +8887,7 @@ export declare class SceneViewsApi extends BaseAPI {
|
|
|
8849
8887
|
* @throws {RequiredError}
|
|
8850
8888
|
* @memberof SceneViewsApi
|
|
8851
8889
|
*/
|
|
8852
|
-
renderSceneView(requestParameters: SceneViewsApiRenderSceneViewRequest, options?:
|
|
8890
|
+
renderSceneView(requestParameters: SceneViewsApiRenderSceneViewRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
|
|
8853
8891
|
/**
|
|
8854
8892
|
* Update a `scene-view`.
|
|
8855
8893
|
* @param {SceneViewsApiUpdateSceneViewRequest} requestParameters Request parameters.
|
|
@@ -8857,7 +8895,7 @@ export declare class SceneViewsApi extends BaseAPI {
|
|
|
8857
8895
|
* @throws {RequiredError}
|
|
8858
8896
|
* @memberof SceneViewsApi
|
|
8859
8897
|
*/
|
|
8860
|
-
updateSceneView(requestParameters: SceneViewsApiUpdateSceneViewRequest, options?:
|
|
8898
|
+
updateSceneView(requestParameters: SceneViewsApiUpdateSceneViewRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneView, any>>;
|
|
8861
8899
|
}
|
|
8862
8900
|
/**
|
|
8863
8901
|
* ScenesApi - axios parameter creator
|
|
@@ -8870,21 +8908,21 @@ export declare const ScenesApiAxiosParamCreator: (configuration?: Configuration
|
|
|
8870
8908
|
* @param {*} [options] Override http request option.
|
|
8871
8909
|
* @throws {RequiredError}
|
|
8872
8910
|
*/
|
|
8873
|
-
createScene: (createSceneRequest: CreateSceneRequest, options?:
|
|
8911
|
+
createScene: (createSceneRequest: CreateSceneRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8874
8912
|
/**
|
|
8875
8913
|
* Delete a `scene`.
|
|
8876
8914
|
* @param {string} id The `scene` ID.
|
|
8877
8915
|
* @param {*} [options] Override http request option.
|
|
8878
8916
|
* @throws {RequiredError}
|
|
8879
8917
|
*/
|
|
8880
|
-
deleteScene: (id: string, options?:
|
|
8918
|
+
deleteScene: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8881
8919
|
/**
|
|
8882
8920
|
* Get a `queued-scene`.
|
|
8883
8921
|
* @param {string} id The `scene` ID.
|
|
8884
8922
|
* @param {*} [options] Override http request option.
|
|
8885
8923
|
* @throws {RequiredError}
|
|
8886
8924
|
*/
|
|
8887
|
-
getQueuedScene: (id: string, options?:
|
|
8925
|
+
getQueuedScene: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8888
8926
|
/**
|
|
8889
8927
|
* Get a `scene` by ID.
|
|
8890
8928
|
* @param {string} id The `scene` ID.
|
|
@@ -8892,16 +8930,17 @@ export declare const ScenesApiAxiosParamCreator: (configuration?: Configuration
|
|
|
8892
8930
|
* @param {*} [options] Override http request option.
|
|
8893
8931
|
* @throws {RequiredError}
|
|
8894
8932
|
*/
|
|
8895
|
-
getScene: (id: string, fieldsScene?: string | undefined, options?:
|
|
8933
|
+
getScene: (id: string, fieldsScene?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8896
8934
|
/**
|
|
8897
8935
|
* Get `scenes`.
|
|
8898
8936
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
8899
8937
|
* @param {number} [pageSize] The number of items to return.
|
|
8938
|
+
* @param {string} [filterName] Comma-separated list of names to filter on.
|
|
8900
8939
|
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
8901
8940
|
* @param {*} [options] Override http request option.
|
|
8902
8941
|
* @throws {RequiredError}
|
|
8903
8942
|
*/
|
|
8904
|
-
getScenes: (pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?:
|
|
8943
|
+
getScenes: (pageCursor?: string | undefined, pageSize?: number | undefined, filterName?: string | undefined, filterSuppliedId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8905
8944
|
/**
|
|
8906
8945
|
* 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
8946
|
* @param {string} id The `scene` ID.
|
|
@@ -8910,7 +8949,7 @@ export declare const ScenesApiAxiosParamCreator: (configuration?: Configuration
|
|
|
8910
8949
|
* @param {*} [options] Override http request option.
|
|
8911
8950
|
* @throws {RequiredError}
|
|
8912
8951
|
*/
|
|
8913
|
-
renderScene: (id: string, height?: number | undefined, width?: number | undefined, options?:
|
|
8952
|
+
renderScene: (id: string, height?: number | undefined, width?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8914
8953
|
/**
|
|
8915
8954
|
* 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
8955
|
* @param {string} id The `scene` ID.
|
|
@@ -8918,7 +8957,7 @@ export declare const ScenesApiAxiosParamCreator: (configuration?: Configuration
|
|
|
8918
8957
|
* @param {*} [options] Override http request option.
|
|
8919
8958
|
* @throws {RequiredError}
|
|
8920
8959
|
*/
|
|
8921
|
-
updateScene: (id: string, updateSceneRequest: UpdateSceneRequest, options?:
|
|
8960
|
+
updateScene: (id: string, updateSceneRequest: UpdateSceneRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8922
8961
|
};
|
|
8923
8962
|
/**
|
|
8924
8963
|
* ScenesApi - functional programming interface
|
|
@@ -8931,21 +8970,21 @@ export declare const ScenesApiFp: (configuration?: Configuration | undefined) =>
|
|
|
8931
8970
|
* @param {*} [options] Override http request option.
|
|
8932
8971
|
* @throws {RequiredError}
|
|
8933
8972
|
*/
|
|
8934
|
-
createScene(createSceneRequest: CreateSceneRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Scene>>;
|
|
8973
|
+
createScene(createSceneRequest: CreateSceneRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Scene>>;
|
|
8935
8974
|
/**
|
|
8936
8975
|
* Delete a `scene`.
|
|
8937
8976
|
* @param {string} id The `scene` ID.
|
|
8938
8977
|
* @param {*} [options] Override http request option.
|
|
8939
8978
|
* @throws {RequiredError}
|
|
8940
8979
|
*/
|
|
8941
|
-
deleteScene(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
8980
|
+
deleteScene(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
8942
8981
|
/**
|
|
8943
8982
|
* Get a `queued-scene`.
|
|
8944
8983
|
* @param {string} id The `scene` ID.
|
|
8945
8984
|
* @param {*} [options] Override http request option.
|
|
8946
8985
|
* @throws {RequiredError}
|
|
8947
8986
|
*/
|
|
8948
|
-
getQueuedScene(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
8987
|
+
getQueuedScene(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
8949
8988
|
/**
|
|
8950
8989
|
* Get a `scene` by ID.
|
|
8951
8990
|
* @param {string} id The `scene` ID.
|
|
@@ -8953,16 +8992,17 @@ export declare const ScenesApiFp: (configuration?: Configuration | undefined) =>
|
|
|
8953
8992
|
* @param {*} [options] Override http request option.
|
|
8954
8993
|
* @throws {RequiredError}
|
|
8955
8994
|
*/
|
|
8956
|
-
getScene(id: string, fieldsScene?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Scene>>;
|
|
8995
|
+
getScene(id: string, fieldsScene?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Scene>>;
|
|
8957
8996
|
/**
|
|
8958
8997
|
* Get `scenes`.
|
|
8959
8998
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
8960
8999
|
* @param {number} [pageSize] The number of items to return.
|
|
9000
|
+
* @param {string} [filterName] Comma-separated list of names to filter on.
|
|
8961
9001
|
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
8962
9002
|
* @param {*} [options] Override http request option.
|
|
8963
9003
|
* @throws {RequiredError}
|
|
8964
9004
|
*/
|
|
8965
|
-
getScenes(pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneList>>;
|
|
9005
|
+
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
9006
|
/**
|
|
8967
9007
|
* 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
9008
|
* @param {string} id The `scene` ID.
|
|
@@ -8971,7 +9011,7 @@ export declare const ScenesApiFp: (configuration?: Configuration | undefined) =>
|
|
|
8971
9011
|
* @param {*} [options] Override http request option.
|
|
8972
9012
|
* @throws {RequiredError}
|
|
8973
9013
|
*/
|
|
8974
|
-
renderScene(id: string, height?: number | undefined, width?: number | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<any>>;
|
|
9014
|
+
renderScene(id: string, height?: number | undefined, width?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<any>>;
|
|
8975
9015
|
/**
|
|
8976
9016
|
* 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
9017
|
* @param {string} id The `scene` ID.
|
|
@@ -8979,7 +9019,7 @@ export declare const ScenesApiFp: (configuration?: Configuration | undefined) =>
|
|
|
8979
9019
|
* @param {*} [options] Override http request option.
|
|
8980
9020
|
* @throws {RequiredError}
|
|
8981
9021
|
*/
|
|
8982
|
-
updateScene(id: string, updateSceneRequest: UpdateSceneRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Scene>>;
|
|
9022
|
+
updateScene(id: string, updateSceneRequest: UpdateSceneRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Scene>>;
|
|
8983
9023
|
};
|
|
8984
9024
|
/**
|
|
8985
9025
|
* ScenesApi - factory interface
|
|
@@ -9019,11 +9059,12 @@ export declare const ScenesApiFactory: (configuration?: Configuration | undefine
|
|
|
9019
9059
|
* Get `scenes`.
|
|
9020
9060
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
9021
9061
|
* @param {number} [pageSize] The number of items to return.
|
|
9062
|
+
* @param {string} [filterName] Comma-separated list of names to filter on.
|
|
9022
9063
|
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
9023
9064
|
* @param {*} [options] Override http request option.
|
|
9024
9065
|
* @throws {RequiredError}
|
|
9025
9066
|
*/
|
|
9026
|
-
getScenes(pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: any): AxiosPromise<SceneList>;
|
|
9067
|
+
getScenes(pageCursor?: string | undefined, pageSize?: number | undefined, filterName?: string | undefined, filterSuppliedId?: string | undefined, options?: any): AxiosPromise<SceneList>;
|
|
9027
9068
|
/**
|
|
9028
9069
|
* 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
9070
|
* @param {string} id The `scene` ID.
|
|
@@ -9118,6 +9159,12 @@ export interface ScenesApiGetScenesRequest {
|
|
|
9118
9159
|
* @memberof ScenesApiGetScenes
|
|
9119
9160
|
*/
|
|
9120
9161
|
readonly pageSize?: number;
|
|
9162
|
+
/**
|
|
9163
|
+
* Comma-separated list of names to filter on.
|
|
9164
|
+
* @type {string}
|
|
9165
|
+
* @memberof ScenesApiGetScenes
|
|
9166
|
+
*/
|
|
9167
|
+
readonly filterName?: string;
|
|
9121
9168
|
/**
|
|
9122
9169
|
* Comma-separated list of supplied IDs to filter on.
|
|
9123
9170
|
* @type {string}
|
|
@@ -9183,7 +9230,7 @@ export declare class ScenesApi extends BaseAPI {
|
|
|
9183
9230
|
* @throws {RequiredError}
|
|
9184
9231
|
* @memberof ScenesApi
|
|
9185
9232
|
*/
|
|
9186
|
-
createScene(requestParameters: ScenesApiCreateSceneRequest, options?:
|
|
9233
|
+
createScene(requestParameters: ScenesApiCreateSceneRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Scene, any>>;
|
|
9187
9234
|
/**
|
|
9188
9235
|
* Delete a `scene`.
|
|
9189
9236
|
* @param {ScenesApiDeleteSceneRequest} requestParameters Request parameters.
|
|
@@ -9191,7 +9238,7 @@ export declare class ScenesApi extends BaseAPI {
|
|
|
9191
9238
|
* @throws {RequiredError}
|
|
9192
9239
|
* @memberof ScenesApi
|
|
9193
9240
|
*/
|
|
9194
|
-
deleteScene(requestParameters: ScenesApiDeleteSceneRequest, options?:
|
|
9241
|
+
deleteScene(requestParameters: ScenesApiDeleteSceneRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
9195
9242
|
/**
|
|
9196
9243
|
* Get a `queued-scene`.
|
|
9197
9244
|
* @param {ScenesApiGetQueuedSceneRequest} requestParameters Request parameters.
|
|
@@ -9199,7 +9246,7 @@ export declare class ScenesApi extends BaseAPI {
|
|
|
9199
9246
|
* @throws {RequiredError}
|
|
9200
9247
|
* @memberof ScenesApi
|
|
9201
9248
|
*/
|
|
9202
|
-
getQueuedScene(requestParameters: ScenesApiGetQueuedSceneRequest, options?:
|
|
9249
|
+
getQueuedScene(requestParameters: ScenesApiGetQueuedSceneRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
|
|
9203
9250
|
/**
|
|
9204
9251
|
* Get a `scene` by ID.
|
|
9205
9252
|
* @param {ScenesApiGetSceneRequest} requestParameters Request parameters.
|
|
@@ -9207,7 +9254,7 @@ export declare class ScenesApi extends BaseAPI {
|
|
|
9207
9254
|
* @throws {RequiredError}
|
|
9208
9255
|
* @memberof ScenesApi
|
|
9209
9256
|
*/
|
|
9210
|
-
getScene(requestParameters: ScenesApiGetSceneRequest, options?:
|
|
9257
|
+
getScene(requestParameters: ScenesApiGetSceneRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Scene, any>>;
|
|
9211
9258
|
/**
|
|
9212
9259
|
* Get `scenes`.
|
|
9213
9260
|
* @param {ScenesApiGetScenesRequest} requestParameters Request parameters.
|
|
@@ -9215,7 +9262,7 @@ export declare class ScenesApi extends BaseAPI {
|
|
|
9215
9262
|
* @throws {RequiredError}
|
|
9216
9263
|
* @memberof ScenesApi
|
|
9217
9264
|
*/
|
|
9218
|
-
getScenes(requestParameters?: ScenesApiGetScenesRequest, options?:
|
|
9265
|
+
getScenes(requestParameters?: ScenesApiGetScenesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SceneList, any>>;
|
|
9219
9266
|
/**
|
|
9220
9267
|
* 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
9268
|
* @param {ScenesApiRenderSceneRequest} requestParameters Request parameters.
|
|
@@ -9223,7 +9270,7 @@ export declare class ScenesApi extends BaseAPI {
|
|
|
9223
9270
|
* @throws {RequiredError}
|
|
9224
9271
|
* @memberof ScenesApi
|
|
9225
9272
|
*/
|
|
9226
|
-
renderScene(requestParameters: ScenesApiRenderSceneRequest, options?:
|
|
9273
|
+
renderScene(requestParameters: ScenesApiRenderSceneRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
|
|
9227
9274
|
/**
|
|
9228
9275
|
* 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
9276
|
* @param {ScenesApiUpdateSceneRequest} requestParameters Request parameters.
|
|
@@ -9231,7 +9278,7 @@ export declare class ScenesApi extends BaseAPI {
|
|
|
9231
9278
|
* @throws {RequiredError}
|
|
9232
9279
|
* @memberof ScenesApi
|
|
9233
9280
|
*/
|
|
9234
|
-
updateScene(requestParameters: ScenesApiUpdateSceneRequest, options?:
|
|
9281
|
+
updateScene(requestParameters: ScenesApiUpdateSceneRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Scene, any>>;
|
|
9235
9282
|
}
|
|
9236
9283
|
/**
|
|
9237
9284
|
* StreamKeysApi - axios parameter creator
|
|
@@ -9245,14 +9292,14 @@ export declare const StreamKeysApiAxiosParamCreator: (configuration?: Configurat
|
|
|
9245
9292
|
* @param {*} [options] Override http request option.
|
|
9246
9293
|
* @throws {RequiredError}
|
|
9247
9294
|
*/
|
|
9248
|
-
createSceneStreamKey: (id: string, createStreamKeyRequest: CreateStreamKeyRequest, options?:
|
|
9295
|
+
createSceneStreamKey: (id: string, createStreamKeyRequest: CreateStreamKeyRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9249
9296
|
/**
|
|
9250
9297
|
* Delete a `stream-key`.
|
|
9251
9298
|
* @param {string} id The `stream-key` ID.
|
|
9252
9299
|
* @param {*} [options] Override http request option.
|
|
9253
9300
|
* @throws {RequiredError}
|
|
9254
9301
|
*/
|
|
9255
|
-
deleteStreamKey: (id: string, options?:
|
|
9302
|
+
deleteStreamKey: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9256
9303
|
/**
|
|
9257
9304
|
* Get `stream-key`s.
|
|
9258
9305
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
@@ -9261,7 +9308,7 @@ export declare const StreamKeysApiAxiosParamCreator: (configuration?: Configurat
|
|
|
9261
9308
|
* @param {*} [options] Override http request option.
|
|
9262
9309
|
* @throws {RequiredError}
|
|
9263
9310
|
*/
|
|
9264
|
-
getStreamKeys: (pageCursor?: string | undefined, pageSize?: number | undefined, filterKey?: string | undefined, options?:
|
|
9311
|
+
getStreamKeys: (pageCursor?: string | undefined, pageSize?: number | undefined, filterKey?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9265
9312
|
};
|
|
9266
9313
|
/**
|
|
9267
9314
|
* StreamKeysApi - functional programming interface
|
|
@@ -9275,14 +9322,14 @@ export declare const StreamKeysApiFp: (configuration?: Configuration | undefined
|
|
|
9275
9322
|
* @param {*} [options] Override http request option.
|
|
9276
9323
|
* @throws {RequiredError}
|
|
9277
9324
|
*/
|
|
9278
|
-
createSceneStreamKey(id: string, createStreamKeyRequest: CreateStreamKeyRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<StreamKey>>;
|
|
9325
|
+
createSceneStreamKey(id: string, createStreamKeyRequest: CreateStreamKeyRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<StreamKey>>;
|
|
9279
9326
|
/**
|
|
9280
9327
|
* Delete a `stream-key`.
|
|
9281
9328
|
* @param {string} id The `stream-key` ID.
|
|
9282
9329
|
* @param {*} [options] Override http request option.
|
|
9283
9330
|
* @throws {RequiredError}
|
|
9284
9331
|
*/
|
|
9285
|
-
deleteStreamKey(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
9332
|
+
deleteStreamKey(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
9286
9333
|
/**
|
|
9287
9334
|
* Get `stream-key`s.
|
|
9288
9335
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
@@ -9291,7 +9338,7 @@ export declare const StreamKeysApiFp: (configuration?: Configuration | undefined
|
|
|
9291
9338
|
* @param {*} [options] Override http request option.
|
|
9292
9339
|
* @throws {RequiredError}
|
|
9293
9340
|
*/
|
|
9294
|
-
getStreamKeys(pageCursor?: string | undefined, pageSize?: number | undefined, filterKey?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<StreamKeyList>>;
|
|
9341
|
+
getStreamKeys(pageCursor?: string | undefined, pageSize?: number | undefined, filterKey?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<StreamKeyList>>;
|
|
9295
9342
|
};
|
|
9296
9343
|
/**
|
|
9297
9344
|
* StreamKeysApi - factory interface
|
|
@@ -9394,7 +9441,7 @@ export declare class StreamKeysApi extends BaseAPI {
|
|
|
9394
9441
|
* @throws {RequiredError}
|
|
9395
9442
|
* @memberof StreamKeysApi
|
|
9396
9443
|
*/
|
|
9397
|
-
createSceneStreamKey(requestParameters: StreamKeysApiCreateSceneStreamKeyRequest, options?:
|
|
9444
|
+
createSceneStreamKey(requestParameters: StreamKeysApiCreateSceneStreamKeyRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<StreamKey, any>>;
|
|
9398
9445
|
/**
|
|
9399
9446
|
* Delete a `stream-key`.
|
|
9400
9447
|
* @param {StreamKeysApiDeleteStreamKeyRequest} requestParameters Request parameters.
|
|
@@ -9402,7 +9449,7 @@ export declare class StreamKeysApi extends BaseAPI {
|
|
|
9402
9449
|
* @throws {RequiredError}
|
|
9403
9450
|
* @memberof StreamKeysApi
|
|
9404
9451
|
*/
|
|
9405
|
-
deleteStreamKey(requestParameters: StreamKeysApiDeleteStreamKeyRequest, options?:
|
|
9452
|
+
deleteStreamKey(requestParameters: StreamKeysApiDeleteStreamKeyRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
9406
9453
|
/**
|
|
9407
9454
|
* Get `stream-key`s.
|
|
9408
9455
|
* @param {StreamKeysApiGetStreamKeysRequest} requestParameters Request parameters.
|
|
@@ -9410,7 +9457,7 @@ export declare class StreamKeysApi extends BaseAPI {
|
|
|
9410
9457
|
* @throws {RequiredError}
|
|
9411
9458
|
* @memberof StreamKeysApi
|
|
9412
9459
|
*/
|
|
9413
|
-
getStreamKeys(requestParameters?: StreamKeysApiGetStreamKeysRequest, options?:
|
|
9460
|
+
getStreamKeys(requestParameters?: StreamKeysApiGetStreamKeysRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<StreamKeyList, any>>;
|
|
9414
9461
|
}
|
|
9415
9462
|
/**
|
|
9416
9463
|
* TranslationInspectionsApi - axios parameter creator
|
|
@@ -9423,21 +9470,21 @@ export declare const TranslationInspectionsApiAxiosParamCreator: (configuration?
|
|
|
9423
9470
|
* @param {*} [options] Override http request option.
|
|
9424
9471
|
* @throws {RequiredError}
|
|
9425
9472
|
*/
|
|
9426
|
-
createTranslationInspection: (createTranslationInspectionRequest: CreateTranslationInspectionRequest, options?:
|
|
9473
|
+
createTranslationInspection: (createTranslationInspectionRequest: CreateTranslationInspectionRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9427
9474
|
/**
|
|
9428
9475
|
* Get a `translation-inspection` by ID.
|
|
9429
9476
|
* @param {string} id The `translation-inspection` ID.
|
|
9430
9477
|
* @param {*} [options] Override http request option.
|
|
9431
9478
|
* @throws {RequiredError}
|
|
9432
9479
|
*/
|
|
9433
|
-
getInspectionJob: (id: string, options?:
|
|
9480
|
+
getInspectionJob: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9434
9481
|
/**
|
|
9435
9482
|
* 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
9483
|
* @param {string} id The `queued-translation` ID.
|
|
9437
9484
|
* @param {*} [options] Override http request option.
|
|
9438
9485
|
* @throws {RequiredError}
|
|
9439
9486
|
*/
|
|
9440
|
-
getQueuedTranslation: (id: string, options?:
|
|
9487
|
+
getQueuedTranslation: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9441
9488
|
/**
|
|
9442
9489
|
* Get `queued-translation`s.
|
|
9443
9490
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
@@ -9446,7 +9493,7 @@ export declare const TranslationInspectionsApiAxiosParamCreator: (configuration?
|
|
|
9446
9493
|
* @param {*} [options] Override http request option.
|
|
9447
9494
|
* @throws {RequiredError}
|
|
9448
9495
|
*/
|
|
9449
|
-
getQueuedTranslations: (pageCursor?: string | undefined, pageSize?: number | undefined, filterStatus?: string | undefined, options?:
|
|
9496
|
+
getQueuedTranslations: (pageCursor?: string | undefined, pageSize?: number | undefined, filterStatus?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9450
9497
|
};
|
|
9451
9498
|
/**
|
|
9452
9499
|
* TranslationInspectionsApi - functional programming interface
|
|
@@ -9459,21 +9506,21 @@ export declare const TranslationInspectionsApiFp: (configuration?: Configuration
|
|
|
9459
9506
|
* @param {*} [options] Override http request option.
|
|
9460
9507
|
* @throws {RequiredError}
|
|
9461
9508
|
*/
|
|
9462
|
-
createTranslationInspection(createTranslationInspectionRequest: CreateTranslationInspectionRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TranslationInspectionJob>>;
|
|
9509
|
+
createTranslationInspection(createTranslationInspectionRequest: CreateTranslationInspectionRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TranslationInspectionJob>>;
|
|
9463
9510
|
/**
|
|
9464
9511
|
* Get a `translation-inspection` by ID.
|
|
9465
9512
|
* @param {string} id The `translation-inspection` ID.
|
|
9466
9513
|
* @param {*} [options] Override http request option.
|
|
9467
9514
|
* @throws {RequiredError}
|
|
9468
9515
|
*/
|
|
9469
|
-
getInspectionJob(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TranslationInspectionJob>>;
|
|
9516
|
+
getInspectionJob(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<TranslationInspectionJob>>;
|
|
9470
9517
|
/**
|
|
9471
9518
|
* 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
9519
|
* @param {string} id The `queued-translation` ID.
|
|
9473
9520
|
* @param {*} [options] Override http request option.
|
|
9474
9521
|
* @throws {RequiredError}
|
|
9475
9522
|
*/
|
|
9476
|
-
getQueuedTranslation(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
9523
|
+
getQueuedTranslation(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
9477
9524
|
/**
|
|
9478
9525
|
* Get `queued-translation`s.
|
|
9479
9526
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
@@ -9482,7 +9529,7 @@ export declare const TranslationInspectionsApiFp: (configuration?: Configuration
|
|
|
9482
9529
|
* @param {*} [options] Override http request option.
|
|
9483
9530
|
* @throws {RequiredError}
|
|
9484
9531
|
*/
|
|
9485
|
-
getQueuedTranslations(pageCursor?: string | undefined, pageSize?: number | undefined, filterStatus?: string | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJobList>>;
|
|
9532
|
+
getQueuedTranslations(pageCursor?: string | undefined, pageSize?: number | undefined, filterStatus?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJobList>>;
|
|
9486
9533
|
};
|
|
9487
9534
|
/**
|
|
9488
9535
|
* TranslationInspectionsApi - factory interface
|
|
@@ -9598,7 +9645,7 @@ export declare class TranslationInspectionsApi extends BaseAPI {
|
|
|
9598
9645
|
* @throws {RequiredError}
|
|
9599
9646
|
* @memberof TranslationInspectionsApi
|
|
9600
9647
|
*/
|
|
9601
|
-
createTranslationInspection(requestParameters: TranslationInspectionsApiCreateTranslationInspectionRequest, options?:
|
|
9648
|
+
createTranslationInspection(requestParameters: TranslationInspectionsApiCreateTranslationInspectionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TranslationInspectionJob, any>>;
|
|
9602
9649
|
/**
|
|
9603
9650
|
* Get a `translation-inspection` by ID.
|
|
9604
9651
|
* @param {TranslationInspectionsApiGetInspectionJobRequest} requestParameters Request parameters.
|
|
@@ -9606,7 +9653,7 @@ export declare class TranslationInspectionsApi extends BaseAPI {
|
|
|
9606
9653
|
* @throws {RequiredError}
|
|
9607
9654
|
* @memberof TranslationInspectionsApi
|
|
9608
9655
|
*/
|
|
9609
|
-
getInspectionJob(requestParameters: TranslationInspectionsApiGetInspectionJobRequest, options?:
|
|
9656
|
+
getInspectionJob(requestParameters: TranslationInspectionsApiGetInspectionJobRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<TranslationInspectionJob, any>>;
|
|
9610
9657
|
/**
|
|
9611
9658
|
* 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
9659
|
* @param {TranslationInspectionsApiGetQueuedTranslationRequest} requestParameters Request parameters.
|
|
@@ -9614,7 +9661,7 @@ export declare class TranslationInspectionsApi extends BaseAPI {
|
|
|
9614
9661
|
* @throws {RequiredError}
|
|
9615
9662
|
* @memberof TranslationInspectionsApi
|
|
9616
9663
|
*/
|
|
9617
|
-
getQueuedTranslation(requestParameters: TranslationInspectionsApiGetQueuedTranslationRequest, options?:
|
|
9664
|
+
getQueuedTranslation(requestParameters: TranslationInspectionsApiGetQueuedTranslationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
|
|
9618
9665
|
/**
|
|
9619
9666
|
* Get `queued-translation`s.
|
|
9620
9667
|
* @param {TranslationInspectionsApiGetQueuedTranslationsRequest} requestParameters Request parameters.
|
|
@@ -9622,7 +9669,7 @@ export declare class TranslationInspectionsApi extends BaseAPI {
|
|
|
9622
9669
|
* @throws {RequiredError}
|
|
9623
9670
|
* @memberof TranslationInspectionsApi
|
|
9624
9671
|
*/
|
|
9625
|
-
getQueuedTranslations(requestParameters?: TranslationInspectionsApiGetQueuedTranslationsRequest, options?:
|
|
9672
|
+
getQueuedTranslations(requestParameters?: TranslationInspectionsApiGetQueuedTranslationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJobList, any>>;
|
|
9626
9673
|
}
|
|
9627
9674
|
/**
|
|
9628
9675
|
* WebhookSubscriptionsApi - axios parameter creator
|
|
@@ -9635,21 +9682,21 @@ export declare const WebhookSubscriptionsApiAxiosParamCreator: (configuration?:
|
|
|
9635
9682
|
* @param {*} [options] Override http request option.
|
|
9636
9683
|
* @throws {RequiredError}
|
|
9637
9684
|
*/
|
|
9638
|
-
createWebhookSubscription: (createWebhookSubscriptionRequest: CreateWebhookSubscriptionRequest, options?:
|
|
9685
|
+
createWebhookSubscription: (createWebhookSubscriptionRequest: CreateWebhookSubscriptionRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9639
9686
|
/**
|
|
9640
9687
|
* Delete a `webhook-subscription`.
|
|
9641
9688
|
* @param {string} id The `webhook-subscription` ID.
|
|
9642
9689
|
* @param {*} [options] Override http request option.
|
|
9643
9690
|
* @throws {RequiredError}
|
|
9644
9691
|
*/
|
|
9645
|
-
deleteWebhookSubscription: (id: string, options?:
|
|
9692
|
+
deleteWebhookSubscription: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9646
9693
|
/**
|
|
9647
9694
|
* Get a `webhook-subscription`.
|
|
9648
9695
|
* @param {string} id The `webhook-subscription` ID.
|
|
9649
9696
|
* @param {*} [options] Override http request option.
|
|
9650
9697
|
* @throws {RequiredError}
|
|
9651
9698
|
*/
|
|
9652
|
-
getWebhookSubscription: (id: string, options?:
|
|
9699
|
+
getWebhookSubscription: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9653
9700
|
/**
|
|
9654
9701
|
* Get `webhook-subscription`s.
|
|
9655
9702
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
@@ -9657,7 +9704,7 @@ export declare const WebhookSubscriptionsApiAxiosParamCreator: (configuration?:
|
|
|
9657
9704
|
* @param {*} [options] Override http request option.
|
|
9658
9705
|
* @throws {RequiredError}
|
|
9659
9706
|
*/
|
|
9660
|
-
getWebhookSubscriptions: (pageCursor?: string | undefined, pageSize?: number | undefined, options?:
|
|
9707
|
+
getWebhookSubscriptions: (pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9661
9708
|
/**
|
|
9662
9709
|
* Update a `webhook-subscription`.
|
|
9663
9710
|
* @param {string} id The `webhook-subscription` ID.
|
|
@@ -9665,7 +9712,7 @@ export declare const WebhookSubscriptionsApiAxiosParamCreator: (configuration?:
|
|
|
9665
9712
|
* @param {*} [options] Override http request option.
|
|
9666
9713
|
* @throws {RequiredError}
|
|
9667
9714
|
*/
|
|
9668
|
-
updateWebhookSubscription: (id: string, updateWebhookSubscriptionRequest: UpdateWebhookSubscriptionRequest, options?:
|
|
9715
|
+
updateWebhookSubscription: (id: string, updateWebhookSubscriptionRequest: UpdateWebhookSubscriptionRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
9669
9716
|
};
|
|
9670
9717
|
/**
|
|
9671
9718
|
* WebhookSubscriptionsApi - functional programming interface
|
|
@@ -9678,21 +9725,21 @@ export declare const WebhookSubscriptionsApiFp: (configuration?: Configuration |
|
|
|
9678
9725
|
* @param {*} [options] Override http request option.
|
|
9679
9726
|
* @throws {RequiredError}
|
|
9680
9727
|
*/
|
|
9681
|
-
createWebhookSubscription(createWebhookSubscriptionRequest: CreateWebhookSubscriptionRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WebhookSubscription>>;
|
|
9728
|
+
createWebhookSubscription(createWebhookSubscriptionRequest: CreateWebhookSubscriptionRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WebhookSubscription>>;
|
|
9682
9729
|
/**
|
|
9683
9730
|
* Delete a `webhook-subscription`.
|
|
9684
9731
|
* @param {string} id The `webhook-subscription` ID.
|
|
9685
9732
|
* @param {*} [options] Override http request option.
|
|
9686
9733
|
* @throws {RequiredError}
|
|
9687
9734
|
*/
|
|
9688
|
-
deleteWebhookSubscription(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
9735
|
+
deleteWebhookSubscription(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
|
|
9689
9736
|
/**
|
|
9690
9737
|
* Get a `webhook-subscription`.
|
|
9691
9738
|
* @param {string} id The `webhook-subscription` ID.
|
|
9692
9739
|
* @param {*} [options] Override http request option.
|
|
9693
9740
|
* @throws {RequiredError}
|
|
9694
9741
|
*/
|
|
9695
|
-
getWebhookSubscription(id: string, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WebhookSubscription>>;
|
|
9742
|
+
getWebhookSubscription(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WebhookSubscription>>;
|
|
9696
9743
|
/**
|
|
9697
9744
|
* Get `webhook-subscription`s.
|
|
9698
9745
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
@@ -9700,7 +9747,7 @@ export declare const WebhookSubscriptionsApiFp: (configuration?: Configuration |
|
|
|
9700
9747
|
* @param {*} [options] Override http request option.
|
|
9701
9748
|
* @throws {RequiredError}
|
|
9702
9749
|
*/
|
|
9703
|
-
getWebhookSubscriptions(pageCursor?: string | undefined, pageSize?: number | undefined, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WebhookSubscriptionList>>;
|
|
9750
|
+
getWebhookSubscriptions(pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WebhookSubscriptionList>>;
|
|
9704
9751
|
/**
|
|
9705
9752
|
* Update a `webhook-subscription`.
|
|
9706
9753
|
* @param {string} id The `webhook-subscription` ID.
|
|
@@ -9708,7 +9755,7 @@ export declare const WebhookSubscriptionsApiFp: (configuration?: Configuration |
|
|
|
9708
9755
|
* @param {*} [options] Override http request option.
|
|
9709
9756
|
* @throws {RequiredError}
|
|
9710
9757
|
*/
|
|
9711
|
-
updateWebhookSubscription(id: string, updateWebhookSubscriptionRequest: UpdateWebhookSubscriptionRequest, options?: any): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WebhookSubscription>>;
|
|
9758
|
+
updateWebhookSubscription(id: string, updateWebhookSubscriptionRequest: UpdateWebhookSubscriptionRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<WebhookSubscription>>;
|
|
9712
9759
|
};
|
|
9713
9760
|
/**
|
|
9714
9761
|
* WebhookSubscriptionsApi - factory interface
|
|
@@ -9844,7 +9891,7 @@ export declare class WebhookSubscriptionsApi extends BaseAPI {
|
|
|
9844
9891
|
* @throws {RequiredError}
|
|
9845
9892
|
* @memberof WebhookSubscriptionsApi
|
|
9846
9893
|
*/
|
|
9847
|
-
createWebhookSubscription(requestParameters: WebhookSubscriptionsApiCreateWebhookSubscriptionRequest, options?:
|
|
9894
|
+
createWebhookSubscription(requestParameters: WebhookSubscriptionsApiCreateWebhookSubscriptionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WebhookSubscription, any>>;
|
|
9848
9895
|
/**
|
|
9849
9896
|
* Delete a `webhook-subscription`.
|
|
9850
9897
|
* @param {WebhookSubscriptionsApiDeleteWebhookSubscriptionRequest} requestParameters Request parameters.
|
|
@@ -9852,7 +9899,7 @@ export declare class WebhookSubscriptionsApi extends BaseAPI {
|
|
|
9852
9899
|
* @throws {RequiredError}
|
|
9853
9900
|
* @memberof WebhookSubscriptionsApi
|
|
9854
9901
|
*/
|
|
9855
|
-
deleteWebhookSubscription(requestParameters: WebhookSubscriptionsApiDeleteWebhookSubscriptionRequest, options?:
|
|
9902
|
+
deleteWebhookSubscription(requestParameters: WebhookSubscriptionsApiDeleteWebhookSubscriptionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
9856
9903
|
/**
|
|
9857
9904
|
* Get a `webhook-subscription`.
|
|
9858
9905
|
* @param {WebhookSubscriptionsApiGetWebhookSubscriptionRequest} requestParameters Request parameters.
|
|
@@ -9860,7 +9907,7 @@ export declare class WebhookSubscriptionsApi extends BaseAPI {
|
|
|
9860
9907
|
* @throws {RequiredError}
|
|
9861
9908
|
* @memberof WebhookSubscriptionsApi
|
|
9862
9909
|
*/
|
|
9863
|
-
getWebhookSubscription(requestParameters: WebhookSubscriptionsApiGetWebhookSubscriptionRequest, options?:
|
|
9910
|
+
getWebhookSubscription(requestParameters: WebhookSubscriptionsApiGetWebhookSubscriptionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WebhookSubscription, any>>;
|
|
9864
9911
|
/**
|
|
9865
9912
|
* Get `webhook-subscription`s.
|
|
9866
9913
|
* @param {WebhookSubscriptionsApiGetWebhookSubscriptionsRequest} requestParameters Request parameters.
|
|
@@ -9868,7 +9915,7 @@ export declare class WebhookSubscriptionsApi extends BaseAPI {
|
|
|
9868
9915
|
* @throws {RequiredError}
|
|
9869
9916
|
* @memberof WebhookSubscriptionsApi
|
|
9870
9917
|
*/
|
|
9871
|
-
getWebhookSubscriptions(requestParameters?: WebhookSubscriptionsApiGetWebhookSubscriptionsRequest, options?:
|
|
9918
|
+
getWebhookSubscriptions(requestParameters?: WebhookSubscriptionsApiGetWebhookSubscriptionsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WebhookSubscriptionList, any>>;
|
|
9872
9919
|
/**
|
|
9873
9920
|
* Update a `webhook-subscription`.
|
|
9874
9921
|
* @param {WebhookSubscriptionsApiUpdateWebhookSubscriptionRequest} requestParameters Request parameters.
|
|
@@ -9876,5 +9923,5 @@ export declare class WebhookSubscriptionsApi extends BaseAPI {
|
|
|
9876
9923
|
* @throws {RequiredError}
|
|
9877
9924
|
* @memberof WebhookSubscriptionsApi
|
|
9878
9925
|
*/
|
|
9879
|
-
updateWebhookSubscription(requestParameters: WebhookSubscriptionsApiUpdateWebhookSubscriptionRequest, options?:
|
|
9926
|
+
updateWebhookSubscription(requestParameters: WebhookSubscriptionsApiUpdateWebhookSubscriptionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WebhookSubscription, any>>;
|
|
9880
9927
|
}
|