@vertexvis/api-client-node 0.20.5 → 0.20.7
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 +260 -28
- package/dist/cjs/api.js +71 -6
- package/dist/cjs/client/version.d.ts +1 -1
- package/dist/cjs/client/version.js +1 -1
- package/dist/esm/api.d.ts +260 -28
- package/dist/esm/api.js +71 -6
- package/dist/esm/client/version.d.ts +1 -1
- package/dist/esm/client/version.js +1 -1
- package/package.json +1 -1
package/dist/esm/api.d.ts
CHANGED
|
@@ -1114,11 +1114,11 @@ export interface CreatePartRequestDataAttributes {
|
|
|
1114
1114
|
indexMetadata?: boolean;
|
|
1115
1115
|
/**
|
|
1116
1116
|
* Additional metadata about the `part` and/or `part-revision`. This metadata will take precedence over any metadata that belongs to the part file if `indexMetadata` is specified.
|
|
1117
|
-
* @type {{ [key: string]:
|
|
1117
|
+
* @type {{ [key: string]: MetadataLongType | MetadataFloatType | MetadataDateType | MetadataStringType | MetadataNullType; }}
|
|
1118
1118
|
* @memberof CreatePartRequestDataAttributes
|
|
1119
1119
|
*/
|
|
1120
1120
|
metadata?: {
|
|
1121
|
-
[key: string]:
|
|
1121
|
+
[key: string]: MetadataLongType | MetadataFloatType | MetadataDateType | MetadataStringType | MetadataNullType;
|
|
1122
1122
|
};
|
|
1123
1123
|
/**
|
|
1124
1124
|
* Name to be used for the root part.
|
|
@@ -1126,6 +1126,12 @@ export interface CreatePartRequestDataAttributes {
|
|
|
1126
1126
|
* @memberof CreatePartRequestDataAttributes
|
|
1127
1127
|
*/
|
|
1128
1128
|
name?: string;
|
|
1129
|
+
/**
|
|
1130
|
+
* Optional name to be used for the part revision.
|
|
1131
|
+
* @type {string}
|
|
1132
|
+
* @memberof CreatePartRequestDataAttributes
|
|
1133
|
+
*/
|
|
1134
|
+
revisionName?: string;
|
|
1129
1135
|
/**
|
|
1130
1136
|
* Metadata key used to extract an ID used for correlation.
|
|
1131
1137
|
* @type {string}
|
|
@@ -1379,11 +1385,11 @@ export interface CreateSceneItemRequestDataAttributes {
|
|
|
1379
1385
|
visible?: boolean;
|
|
1380
1386
|
/**
|
|
1381
1387
|
* Additional metadata for the scene-item. This metadata will take precedence over any metadata that belongs to the part file.
|
|
1382
|
-
* @type {{ [key: string]:
|
|
1388
|
+
* @type {{ [key: string]: MetadataLongType | MetadataFloatType | MetadataDateType | MetadataStringType | MetadataNullType; }}
|
|
1383
1389
|
* @memberof CreateSceneItemRequestDataAttributes
|
|
1384
1390
|
*/
|
|
1385
1391
|
metadata?: {
|
|
1386
|
-
[key: string]:
|
|
1392
|
+
[key: string]: MetadataLongType | MetadataFloatType | MetadataDateType | MetadataStringType | MetadataNullType;
|
|
1387
1393
|
};
|
|
1388
1394
|
}
|
|
1389
1395
|
/**
|
|
@@ -1555,6 +1561,12 @@ export interface CreateSceneViewRequestDataAttributes {
|
|
|
1555
1561
|
* @memberof CreateSceneViewRequestDataAttributes
|
|
1556
1562
|
*/
|
|
1557
1563
|
crossSectioning?: CrossSectioning | null;
|
|
1564
|
+
/**
|
|
1565
|
+
* Whether to exclude non-visible items in the view
|
|
1566
|
+
* @type {boolean}
|
|
1567
|
+
* @memberof CreateSceneViewRequestDataAttributes
|
|
1568
|
+
*/
|
|
1569
|
+
excludePrunedItems?: boolean;
|
|
1558
1570
|
}
|
|
1559
1571
|
/**
|
|
1560
1572
|
*
|
|
@@ -1683,6 +1695,12 @@ export interface CreateStreamKeyRequestDataAttributes {
|
|
|
1683
1695
|
* @memberof CreateStreamKeyRequestDataAttributes
|
|
1684
1696
|
*/
|
|
1685
1697
|
expiry?: number;
|
|
1698
|
+
/**
|
|
1699
|
+
* Whether to exclude non-visible items in the view
|
|
1700
|
+
* @type {boolean}
|
|
1701
|
+
* @memberof CreateStreamKeyRequestDataAttributes
|
|
1702
|
+
*/
|
|
1703
|
+
excludePrunedItems?: boolean;
|
|
1686
1704
|
}
|
|
1687
1705
|
/**
|
|
1688
1706
|
*
|
|
@@ -2609,6 +2627,25 @@ export interface Matrix4Nullable {
|
|
|
2609
2627
|
*/
|
|
2610
2628
|
r3: Vector4;
|
|
2611
2629
|
}
|
|
2630
|
+
/**
|
|
2631
|
+
*
|
|
2632
|
+
* @export
|
|
2633
|
+
* @interface MetadataDateType
|
|
2634
|
+
*/
|
|
2635
|
+
export interface MetadataDateType {
|
|
2636
|
+
/**
|
|
2637
|
+
* Type of metadata value.
|
|
2638
|
+
* @type {string}
|
|
2639
|
+
* @memberof MetadataDateType
|
|
2640
|
+
*/
|
|
2641
|
+
type: string;
|
|
2642
|
+
/**
|
|
2643
|
+
* A date value.
|
|
2644
|
+
* @type {string}
|
|
2645
|
+
* @memberof MetadataDateType
|
|
2646
|
+
*/
|
|
2647
|
+
value: string;
|
|
2648
|
+
}
|
|
2612
2649
|
/**
|
|
2613
2650
|
*
|
|
2614
2651
|
* @export
|
|
@@ -2628,6 +2665,25 @@ export interface MetadataFloatType {
|
|
|
2628
2665
|
*/
|
|
2629
2666
|
value: number;
|
|
2630
2667
|
}
|
|
2668
|
+
/**
|
|
2669
|
+
*
|
|
2670
|
+
* @export
|
|
2671
|
+
* @interface MetadataLongType
|
|
2672
|
+
*/
|
|
2673
|
+
export interface MetadataLongType {
|
|
2674
|
+
/**
|
|
2675
|
+
* Type of metadata value.
|
|
2676
|
+
* @type {string}
|
|
2677
|
+
* @memberof MetadataLongType
|
|
2678
|
+
*/
|
|
2679
|
+
type: string;
|
|
2680
|
+
/**
|
|
2681
|
+
* A numerical long value.
|
|
2682
|
+
* @type {number}
|
|
2683
|
+
* @memberof MetadataLongType
|
|
2684
|
+
*/
|
|
2685
|
+
value: number;
|
|
2686
|
+
}
|
|
2631
2687
|
/**
|
|
2632
2688
|
*
|
|
2633
2689
|
* @export
|
|
@@ -2826,11 +2882,11 @@ export interface PartAssemblyRelationshipData {
|
|
|
2826
2882
|
children: Array<PartRevisionInstance>;
|
|
2827
2883
|
/**
|
|
2828
2884
|
* Additional metadata about the `part` and/or `part-revision`.
|
|
2829
|
-
* @type {{ [key: string]:
|
|
2885
|
+
* @type {{ [key: string]: MetadataLongType | MetadataFloatType | MetadataDateType | MetadataStringType | MetadataNullType; }}
|
|
2830
2886
|
* @memberof PartAssemblyRelationshipData
|
|
2831
2887
|
*/
|
|
2832
2888
|
metadata?: {
|
|
2833
|
-
[key: string]:
|
|
2889
|
+
[key: string]: MetadataLongType | MetadataFloatType | MetadataDateType | MetadataStringType | MetadataNullType;
|
|
2834
2890
|
};
|
|
2835
2891
|
}
|
|
2836
2892
|
/**
|
|
@@ -3051,11 +3107,11 @@ export interface PartRevisionDataAttributes {
|
|
|
3051
3107
|
created?: string;
|
|
3052
3108
|
/**
|
|
3053
3109
|
*
|
|
3054
|
-
* @type {{ [key: string]:
|
|
3110
|
+
* @type {{ [key: string]: MetadataLongType | MetadataFloatType | MetadataDateType | MetadataStringType | MetadataNullType; }}
|
|
3055
3111
|
* @memberof PartRevisionDataAttributes
|
|
3056
3112
|
*/
|
|
3057
3113
|
metadata?: {
|
|
3058
|
-
[key: string]:
|
|
3114
|
+
[key: string]: MetadataLongType | MetadataFloatType | MetadataDateType | MetadataStringType | MetadataNullType;
|
|
3059
3115
|
};
|
|
3060
3116
|
/**
|
|
3061
3117
|
*
|
|
@@ -3063,6 +3119,12 @@ export interface PartRevisionDataAttributes {
|
|
|
3063
3119
|
* @memberof PartRevisionDataAttributes
|
|
3064
3120
|
*/
|
|
3065
3121
|
suppliedId?: string;
|
|
3122
|
+
/**
|
|
3123
|
+
*
|
|
3124
|
+
* @type {string}
|
|
3125
|
+
* @memberof PartRevisionDataAttributes
|
|
3126
|
+
*/
|
|
3127
|
+
name?: string;
|
|
3066
3128
|
}
|
|
3067
3129
|
/**
|
|
3068
3130
|
*
|
|
@@ -3452,6 +3514,122 @@ export interface QueuedJobList {
|
|
|
3452
3514
|
[key: string]: Link;
|
|
3453
3515
|
};
|
|
3454
3516
|
}
|
|
3517
|
+
/**
|
|
3518
|
+
*
|
|
3519
|
+
* @export
|
|
3520
|
+
* @interface QueuedTranslationJob
|
|
3521
|
+
*/
|
|
3522
|
+
export interface QueuedTranslationJob {
|
|
3523
|
+
/**
|
|
3524
|
+
*
|
|
3525
|
+
* @type {QueuedTranslationJobData}
|
|
3526
|
+
* @memberof QueuedTranslationJob
|
|
3527
|
+
*/
|
|
3528
|
+
data: QueuedTranslationJobData;
|
|
3529
|
+
/**
|
|
3530
|
+
*
|
|
3531
|
+
* @type {Array<GeometrySetData | PartRevisionData>}
|
|
3532
|
+
* @memberof QueuedTranslationJob
|
|
3533
|
+
*/
|
|
3534
|
+
included?: Array<GeometrySetData | PartRevisionData>;
|
|
3535
|
+
/**
|
|
3536
|
+
*
|
|
3537
|
+
* @type {{ [key: string]: Link; }}
|
|
3538
|
+
* @memberof QueuedTranslationJob
|
|
3539
|
+
*/
|
|
3540
|
+
links?: {
|
|
3541
|
+
[key: string]: Link;
|
|
3542
|
+
};
|
|
3543
|
+
}
|
|
3544
|
+
/**
|
|
3545
|
+
*
|
|
3546
|
+
* @export
|
|
3547
|
+
* @interface QueuedTranslationJobData
|
|
3548
|
+
*/
|
|
3549
|
+
export interface QueuedTranslationJobData {
|
|
3550
|
+
/**
|
|
3551
|
+
*
|
|
3552
|
+
* @type {string}
|
|
3553
|
+
* @memberof QueuedTranslationJobData
|
|
3554
|
+
*/
|
|
3555
|
+
type: string;
|
|
3556
|
+
/**
|
|
3557
|
+
* ID of the resource.
|
|
3558
|
+
* @type {string}
|
|
3559
|
+
* @memberof QueuedTranslationJobData
|
|
3560
|
+
*/
|
|
3561
|
+
id: string;
|
|
3562
|
+
/**
|
|
3563
|
+
*
|
|
3564
|
+
* @type {QueuedTranslationJobDataAttributes}
|
|
3565
|
+
* @memberof QueuedTranslationJobData
|
|
3566
|
+
*/
|
|
3567
|
+
attributes: QueuedTranslationJobDataAttributes;
|
|
3568
|
+
/**
|
|
3569
|
+
*
|
|
3570
|
+
* @type {QueuedTranslationJobDataRelationships}
|
|
3571
|
+
* @memberof QueuedTranslationJobData
|
|
3572
|
+
*/
|
|
3573
|
+
relationships?: QueuedTranslationJobDataRelationships;
|
|
3574
|
+
/**
|
|
3575
|
+
*
|
|
3576
|
+
* @type {{ [key: string]: Link; }}
|
|
3577
|
+
* @memberof QueuedTranslationJobData
|
|
3578
|
+
*/
|
|
3579
|
+
links?: {
|
|
3580
|
+
[key: string]: Link;
|
|
3581
|
+
};
|
|
3582
|
+
}
|
|
3583
|
+
/**
|
|
3584
|
+
*
|
|
3585
|
+
* @export
|
|
3586
|
+
* @interface QueuedTranslationJobDataAttributes
|
|
3587
|
+
*/
|
|
3588
|
+
export interface QueuedTranslationJobDataAttributes {
|
|
3589
|
+
/**
|
|
3590
|
+
*
|
|
3591
|
+
* @type {string}
|
|
3592
|
+
* @memberof QueuedTranslationJobDataAttributes
|
|
3593
|
+
*/
|
|
3594
|
+
status: string;
|
|
3595
|
+
/**
|
|
3596
|
+
*
|
|
3597
|
+
* @type {string}
|
|
3598
|
+
* @memberof QueuedTranslationJobDataAttributes
|
|
3599
|
+
*/
|
|
3600
|
+
created: string;
|
|
3601
|
+
/**
|
|
3602
|
+
*
|
|
3603
|
+
* @type {string}
|
|
3604
|
+
* @memberof QueuedTranslationJobDataAttributes
|
|
3605
|
+
*/
|
|
3606
|
+
completed?: string;
|
|
3607
|
+
/**
|
|
3608
|
+
*
|
|
3609
|
+
* @type {Set<ApiError>}
|
|
3610
|
+
* @memberof QueuedTranslationJobDataAttributes
|
|
3611
|
+
*/
|
|
3612
|
+
errors?: Set<ApiError>;
|
|
3613
|
+
}
|
|
3614
|
+
/**
|
|
3615
|
+
*
|
|
3616
|
+
* @export
|
|
3617
|
+
* @interface QueuedTranslationJobDataRelationships
|
|
3618
|
+
*/
|
|
3619
|
+
export interface QueuedTranslationJobDataRelationships {
|
|
3620
|
+
/**
|
|
3621
|
+
*
|
|
3622
|
+
* @type {GeometrySetRelationship}
|
|
3623
|
+
* @memberof QueuedTranslationJobDataRelationships
|
|
3624
|
+
*/
|
|
3625
|
+
geometrySet?: GeometrySetRelationship;
|
|
3626
|
+
/**
|
|
3627
|
+
*
|
|
3628
|
+
* @type {PartRevisionRelationship}
|
|
3629
|
+
* @memberof QueuedTranslationJobDataRelationships
|
|
3630
|
+
*/
|
|
3631
|
+
partRevision?: PartRevisionRelationship;
|
|
3632
|
+
}
|
|
3455
3633
|
/**
|
|
3456
3634
|
*
|
|
3457
3635
|
* @export
|
|
@@ -3824,11 +4002,11 @@ export interface SceneItemDataAttributes {
|
|
|
3824
4002
|
materialOverride?: ColorMaterial;
|
|
3825
4003
|
/**
|
|
3826
4004
|
*
|
|
3827
|
-
* @type {{ [key: string]:
|
|
4005
|
+
* @type {{ [key: string]: MetadataLongType | MetadataFloatType | MetadataDateType | MetadataStringType | MetadataNullType; }}
|
|
3828
4006
|
* @memberof SceneItemDataAttributes
|
|
3829
4007
|
*/
|
|
3830
4008
|
metadata?: {
|
|
3831
|
-
[key: string]:
|
|
4009
|
+
[key: string]: MetadataLongType | MetadataFloatType | MetadataDateType | MetadataStringType | MetadataNullType;
|
|
3832
4010
|
};
|
|
3833
4011
|
/**
|
|
3834
4012
|
*
|
|
@@ -4232,6 +4410,12 @@ export interface SceneViewDataAttributes {
|
|
|
4232
4410
|
* @memberof SceneViewDataAttributes
|
|
4233
4411
|
*/
|
|
4234
4412
|
worldOrientation?: Orientation;
|
|
4413
|
+
/**
|
|
4414
|
+
* Whether to exclude non-visible items in the view
|
|
4415
|
+
* @type {boolean}
|
|
4416
|
+
* @memberof SceneViewDataAttributes
|
|
4417
|
+
*/
|
|
4418
|
+
excludePrunedItems?: boolean;
|
|
4235
4419
|
}
|
|
4236
4420
|
/**
|
|
4237
4421
|
*
|
|
@@ -4521,12 +4705,6 @@ export interface SelectOperation {
|
|
|
4521
4705
|
* @memberof SelectOperation
|
|
4522
4706
|
*/
|
|
4523
4707
|
type: SelectOperationTypeEnum;
|
|
4524
|
-
/**
|
|
4525
|
-
*
|
|
4526
|
-
* @type {ColorMaterial}
|
|
4527
|
-
* @memberof SelectOperation
|
|
4528
|
-
*/
|
|
4529
|
-
material: ColorMaterial;
|
|
4530
4708
|
}
|
|
4531
4709
|
export declare const SelectOperationTypeEnum: {
|
|
4532
4710
|
readonly Select: "select";
|
|
@@ -4616,6 +4794,12 @@ export interface StreamKeyDataAttributes {
|
|
|
4616
4794
|
* @memberof StreamKeyDataAttributes
|
|
4617
4795
|
*/
|
|
4618
4796
|
created: string;
|
|
4797
|
+
/**
|
|
4798
|
+
*
|
|
4799
|
+
* @type {boolean}
|
|
4800
|
+
* @memberof StreamKeyDataAttributes
|
|
4801
|
+
*/
|
|
4802
|
+
excludePrunedItems?: boolean;
|
|
4619
4803
|
}
|
|
4620
4804
|
/**
|
|
4621
4805
|
*
|
|
@@ -4874,11 +5058,11 @@ export interface UpdatePartRevisionRequestData {
|
|
|
4874
5058
|
export interface UpdatePartRevisionRequestDataAttributes {
|
|
4875
5059
|
/**
|
|
4876
5060
|
* Metadata about the `part` and/or `part-revision`. This metadata will take precedence over any metadata that belongs to the part file if `indexMetadata` is specified.
|
|
4877
|
-
* @type {{ [key: string]:
|
|
5061
|
+
* @type {{ [key: string]: MetadataLongType | MetadataFloatType | MetadataDateType | MetadataStringType | MetadataNullType; }}
|
|
4878
5062
|
* @memberof UpdatePartRevisionRequestDataAttributes
|
|
4879
5063
|
*/
|
|
4880
5064
|
metadata?: {
|
|
4881
|
-
[key: string]:
|
|
5065
|
+
[key: string]: MetadataLongType | MetadataFloatType | MetadataDateType | MetadataStringType | MetadataNullType;
|
|
4882
5066
|
};
|
|
4883
5067
|
/**
|
|
4884
5068
|
* Whether or not to index metadata in the part file when sending a file relationship - not used otherwise. To ignore metadata from the part file and add your own, pass `false` for `indexMetadata` and supply custom metadata using the `metadata` field.
|
|
@@ -5056,11 +5240,11 @@ export interface UpdateSceneItemRequestDataAttributes {
|
|
|
5056
5240
|
suppliedId?: string;
|
|
5057
5241
|
/**
|
|
5058
5242
|
* Additional metadata for the scene-item. This metadata will take precedence over any metadata that belongs to the part file.
|
|
5059
|
-
* @type {{ [key: string]:
|
|
5243
|
+
* @type {{ [key: string]: MetadataLongType | MetadataFloatType | MetadataDateType | MetadataStringType | MetadataNullType; }}
|
|
5060
5244
|
* @memberof UpdateSceneItemRequestDataAttributes
|
|
5061
5245
|
*/
|
|
5062
5246
|
metadata?: {
|
|
5063
|
-
[key: string]:
|
|
5247
|
+
[key: string]: MetadataLongType | MetadataFloatType | MetadataDateType | MetadataStringType | MetadataNullType;
|
|
5064
5248
|
};
|
|
5065
5249
|
}
|
|
5066
5250
|
/**
|
|
@@ -5206,6 +5390,12 @@ export interface UpdateSceneViewRequestDataAttributes {
|
|
|
5206
5390
|
* @memberof UpdateSceneViewRequestDataAttributes
|
|
5207
5391
|
*/
|
|
5208
5392
|
crossSectioning?: CrossSectioning | null;
|
|
5393
|
+
/**
|
|
5394
|
+
* Whether or not to turn off default lighting
|
|
5395
|
+
* @type {boolean}
|
|
5396
|
+
* @memberof UpdateSceneViewRequestDataAttributes
|
|
5397
|
+
*/
|
|
5398
|
+
noDefaultLights?: boolean;
|
|
5209
5399
|
}
|
|
5210
5400
|
/**
|
|
5211
5401
|
*
|
|
@@ -8464,7 +8654,7 @@ export declare const SceneItemsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
8464
8654
|
/**
|
|
8465
8655
|
* Get a `scene-item` by ID.
|
|
8466
8656
|
* @param {string} id The `scene-item` ID.
|
|
8467
|
-
* @param {string} [fieldsSceneItem] Comma-separated list of fields to return in response. An empty value returns no fields. `boundingBox` and `metadata` are only returned if explicitly requested.
|
|
8657
|
+
* @param {string} [fieldsSceneItem] Comma-separated list of fields to return in response. An empty value returns no fields. `boundingBox`, `worldTransform` and `metadata` are only returned if explicitly requested.
|
|
8468
8658
|
* @param {*} [options] Override http request option.
|
|
8469
8659
|
* @throws {RequiredError}
|
|
8470
8660
|
*/
|
|
@@ -8527,7 +8717,7 @@ export declare const SceneItemsApiFp: (configuration?: Configuration | undefined
|
|
|
8527
8717
|
/**
|
|
8528
8718
|
* Get a `scene-item` by ID.
|
|
8529
8719
|
* @param {string} id The `scene-item` ID.
|
|
8530
|
-
* @param {string} [fieldsSceneItem] Comma-separated list of fields to return in response. An empty value returns no fields. `boundingBox` and `metadata` are only returned if explicitly requested.
|
|
8720
|
+
* @param {string} [fieldsSceneItem] Comma-separated list of fields to return in response. An empty value returns no fields. `boundingBox`, `worldTransform` and `metadata` are only returned if explicitly requested.
|
|
8531
8721
|
* @param {*} [options] Override http request option.
|
|
8532
8722
|
* @throws {RequiredError}
|
|
8533
8723
|
*/
|
|
@@ -8590,7 +8780,7 @@ export declare const SceneItemsApiFactory: (configuration?: Configuration | unde
|
|
|
8590
8780
|
/**
|
|
8591
8781
|
* Get a `scene-item` by ID.
|
|
8592
8782
|
* @param {string} id The `scene-item` ID.
|
|
8593
|
-
* @param {string} [fieldsSceneItem] Comma-separated list of fields to return in response. An empty value returns no fields. `boundingBox` and `metadata` are only returned if explicitly requested.
|
|
8783
|
+
* @param {string} [fieldsSceneItem] Comma-separated list of fields to return in response. An empty value returns no fields. `boundingBox`, `worldTransform` and `metadata` are only returned if explicitly requested.
|
|
8594
8784
|
* @param {*} [options] Override http request option.
|
|
8595
8785
|
* @throws {RequiredError}
|
|
8596
8786
|
*/
|
|
@@ -8687,7 +8877,7 @@ export interface SceneItemsApiGetSceneItemRequest {
|
|
|
8687
8877
|
*/
|
|
8688
8878
|
readonly id: string;
|
|
8689
8879
|
/**
|
|
8690
|
-
* Comma-separated list of fields to return in response. An empty value returns no fields. `boundingBox` and `metadata` are only returned if explicitly requested.
|
|
8880
|
+
* Comma-separated list of fields to return in response. An empty value returns no fields. `boundingBox`, `worldTransform` and `metadata` are only returned if explicitly requested.
|
|
8691
8881
|
* @type {string}
|
|
8692
8882
|
* @memberof SceneItemsApiGetSceneItem
|
|
8693
8883
|
*/
|
|
@@ -9167,7 +9357,7 @@ export declare const SceneViewsApiAxiosParamCreator: (configuration?: Configurat
|
|
|
9167
9357
|
* Get a `scene-item` within a view by ID.
|
|
9168
9358
|
* @param {string} id The `scene-view` ID.
|
|
9169
9359
|
* @param {string} itemId The `scene-item` ID.
|
|
9170
|
-
* @param {string} [fieldsSceneItem] Comma-separated list of fields to return in response. An empty value returns no fields. `boundingBox` and `metadata` are only returned if explicitly requested.
|
|
9360
|
+
* @param {string} [fieldsSceneItem] Comma-separated list of fields to return in response. An empty value returns no fields. `boundingBox`, `worldTransform` and `metadata` are only returned if explicitly requested.
|
|
9171
9361
|
* @param {string} [include] Comma-separated list of relationships to include in response.
|
|
9172
9362
|
* @param {*} [options] Override http request option.
|
|
9173
9363
|
* @throws {RequiredError}
|
|
@@ -9231,7 +9421,7 @@ export declare const SceneViewsApiFp: (configuration?: Configuration | undefined
|
|
|
9231
9421
|
* Get a `scene-item` within a view by ID.
|
|
9232
9422
|
* @param {string} id The `scene-view` ID.
|
|
9233
9423
|
* @param {string} itemId The `scene-item` ID.
|
|
9234
|
-
* @param {string} [fieldsSceneItem] Comma-separated list of fields to return in response. An empty value returns no fields. `boundingBox` and `metadata` are only returned if explicitly requested.
|
|
9424
|
+
* @param {string} [fieldsSceneItem] Comma-separated list of fields to return in response. An empty value returns no fields. `boundingBox`, `worldTransform` and `metadata` are only returned if explicitly requested.
|
|
9235
9425
|
* @param {string} [include] Comma-separated list of relationships to include in response.
|
|
9236
9426
|
* @param {*} [options] Override http request option.
|
|
9237
9427
|
* @throws {RequiredError}
|
|
@@ -9295,7 +9485,7 @@ export declare const SceneViewsApiFactory: (configuration?: Configuration | unde
|
|
|
9295
9485
|
* Get a `scene-item` within a view by ID.
|
|
9296
9486
|
* @param {string} id The `scene-view` ID.
|
|
9297
9487
|
* @param {string} itemId The `scene-item` ID.
|
|
9298
|
-
* @param {string} [fieldsSceneItem] Comma-separated list of fields to return in response. An empty value returns no fields. `boundingBox` and `metadata` are only returned if explicitly requested.
|
|
9488
|
+
* @param {string} [fieldsSceneItem] Comma-separated list of fields to return in response. An empty value returns no fields. `boundingBox`, `worldTransform` and `metadata` are only returned if explicitly requested.
|
|
9299
9489
|
* @param {string} [include] Comma-separated list of relationships to include in response.
|
|
9300
9490
|
* @param {*} [options] Override http request option.
|
|
9301
9491
|
* @throws {RequiredError}
|
|
@@ -9408,7 +9598,7 @@ export interface SceneViewsApiGetViewSceneItemRequest {
|
|
|
9408
9598
|
*/
|
|
9409
9599
|
readonly itemId: string;
|
|
9410
9600
|
/**
|
|
9411
|
-
* Comma-separated list of fields to return in response. An empty value returns no fields. `boundingBox` and `metadata` are only returned if explicitly requested.
|
|
9601
|
+
* Comma-separated list of fields to return in response. An empty value returns no fields. `boundingBox`, `worldTransform` and `metadata` are only returned if explicitly requested.
|
|
9412
9602
|
* @type {string}
|
|
9413
9603
|
* @memberof SceneViewsApiGetViewSceneItem
|
|
9414
9604
|
*/
|
|
@@ -10116,6 +10306,13 @@ export declare const TranslationInspectionsApiAxiosParamCreator: (configuration?
|
|
|
10116
10306
|
* @throws {RequiredError}
|
|
10117
10307
|
*/
|
|
10118
10308
|
getQueuedTranslation: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10309
|
+
/**
|
|
10310
|
+
* Get a `queued-translation-job`. The response is either the status if `running` or `error` or, upon completion, the `part-revision` that was created. 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.
|
|
10311
|
+
* @param {string} id The `queued-translation` ID.
|
|
10312
|
+
* @param {*} [options] Override http request option.
|
|
10313
|
+
* @throws {RequiredError}
|
|
10314
|
+
*/
|
|
10315
|
+
getQueuedTranslationJob: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10119
10316
|
/**
|
|
10120
10317
|
* Get `queued-translation`s.
|
|
10121
10318
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
@@ -10152,6 +10349,13 @@ export declare const TranslationInspectionsApiFp: (configuration?: Configuration
|
|
|
10152
10349
|
* @throws {RequiredError}
|
|
10153
10350
|
*/
|
|
10154
10351
|
getQueuedTranslation(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
10352
|
+
/**
|
|
10353
|
+
* Get a `queued-translation-job`. The response is either the status if `running` or `error` or, upon completion, the `part-revision` that was created. 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.
|
|
10354
|
+
* @param {string} id The `queued-translation` ID.
|
|
10355
|
+
* @param {*} [options] Override http request option.
|
|
10356
|
+
* @throws {RequiredError}
|
|
10357
|
+
*/
|
|
10358
|
+
getQueuedTranslationJob(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedTranslationJob>>;
|
|
10155
10359
|
/**
|
|
10156
10360
|
* Get `queued-translation`s.
|
|
10157
10361
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
@@ -10188,6 +10392,13 @@ export declare const TranslationInspectionsApiFactory: (configuration?: Configur
|
|
|
10188
10392
|
* @throws {RequiredError}
|
|
10189
10393
|
*/
|
|
10190
10394
|
getQueuedTranslation(id: string, options?: any): AxiosPromise<QueuedJob>;
|
|
10395
|
+
/**
|
|
10396
|
+
* Get a `queued-translation-job`. The response is either the status if `running` or `error` or, upon completion, the `part-revision` that was created. 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.
|
|
10397
|
+
* @param {string} id The `queued-translation` ID.
|
|
10398
|
+
* @param {*} [options] Override http request option.
|
|
10399
|
+
* @throws {RequiredError}
|
|
10400
|
+
*/
|
|
10401
|
+
getQueuedTranslationJob(id: string, options?: any): AxiosPromise<QueuedTranslationJob>;
|
|
10191
10402
|
/**
|
|
10192
10403
|
* Get `queued-translation`s.
|
|
10193
10404
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
@@ -10237,6 +10448,19 @@ export interface TranslationInspectionsApiGetQueuedTranslationRequest {
|
|
|
10237
10448
|
*/
|
|
10238
10449
|
readonly id: string;
|
|
10239
10450
|
}
|
|
10451
|
+
/**
|
|
10452
|
+
* Request parameters for getQueuedTranslationJob operation in TranslationInspectionsApi.
|
|
10453
|
+
* @export
|
|
10454
|
+
* @interface TranslationInspectionsApiGetQueuedTranslationJobRequest
|
|
10455
|
+
*/
|
|
10456
|
+
export interface TranslationInspectionsApiGetQueuedTranslationJobRequest {
|
|
10457
|
+
/**
|
|
10458
|
+
* The `queued-translation` ID.
|
|
10459
|
+
* @type {string}
|
|
10460
|
+
* @memberof TranslationInspectionsApiGetQueuedTranslationJob
|
|
10461
|
+
*/
|
|
10462
|
+
readonly id: string;
|
|
10463
|
+
}
|
|
10240
10464
|
/**
|
|
10241
10465
|
* Request parameters for getQueuedTranslations operation in TranslationInspectionsApi.
|
|
10242
10466
|
* @export
|
|
@@ -10293,6 +10517,14 @@ export declare class TranslationInspectionsApi extends BaseAPI {
|
|
|
10293
10517
|
* @memberof TranslationInspectionsApi
|
|
10294
10518
|
*/
|
|
10295
10519
|
getQueuedTranslation(requestParameters: TranslationInspectionsApiGetQueuedTranslationRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
|
|
10520
|
+
/**
|
|
10521
|
+
* Get a `queued-translation-job`. The response is either the status if `running` or `error` or, upon completion, the `part-revision` that was created. 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.
|
|
10522
|
+
* @param {TranslationInspectionsApiGetQueuedTranslationJobRequest} requestParameters Request parameters.
|
|
10523
|
+
* @param {*} [options] Override http request option.
|
|
10524
|
+
* @throws {RequiredError}
|
|
10525
|
+
* @memberof TranslationInspectionsApi
|
|
10526
|
+
*/
|
|
10527
|
+
getQueuedTranslationJob(requestParameters: TranslationInspectionsApiGetQueuedTranslationJobRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedTranslationJob, any>>;
|
|
10296
10528
|
/**
|
|
10297
10529
|
* Get `queued-translation`s.
|
|
10298
10530
|
* @param {TranslationInspectionsApiGetQueuedTranslationsRequest} requestParameters Request parameters.
|
package/dist/esm/api.js
CHANGED
|
@@ -4174,7 +4174,7 @@ export const SceneItemsApiAxiosParamCreator = function (configuration) {
|
|
|
4174
4174
|
/**
|
|
4175
4175
|
* Get a `scene-item` by ID.
|
|
4176
4176
|
* @param {string} id The `scene-item` ID.
|
|
4177
|
-
* @param {string} [fieldsSceneItem] Comma-separated list of fields to return in response. An empty value returns no fields. `boundingBox` and `metadata` are only returned if explicitly requested.
|
|
4177
|
+
* @param {string} [fieldsSceneItem] Comma-separated list of fields to return in response. An empty value returns no fields. `boundingBox`, `worldTransform` and `metadata` are only returned if explicitly requested.
|
|
4178
4178
|
* @param {*} [options] Override http request option.
|
|
4179
4179
|
* @throws {RequiredError}
|
|
4180
4180
|
*/
|
|
@@ -4351,7 +4351,7 @@ export const SceneItemsApiFp = function (configuration) {
|
|
|
4351
4351
|
/**
|
|
4352
4352
|
* Get a `scene-item` by ID.
|
|
4353
4353
|
* @param {string} id The `scene-item` ID.
|
|
4354
|
-
* @param {string} [fieldsSceneItem] Comma-separated list of fields to return in response. An empty value returns no fields. `boundingBox` and `metadata` are only returned if explicitly requested.
|
|
4354
|
+
* @param {string} [fieldsSceneItem] Comma-separated list of fields to return in response. An empty value returns no fields. `boundingBox`, `worldTransform` and `metadata` are only returned if explicitly requested.
|
|
4355
4355
|
* @param {*} [options] Override http request option.
|
|
4356
4356
|
* @throws {RequiredError}
|
|
4357
4357
|
*/
|
|
@@ -4448,7 +4448,7 @@ export const SceneItemsApiFactory = function (configuration, basePath, axios) {
|
|
|
4448
4448
|
/**
|
|
4449
4449
|
* Get a `scene-item` by ID.
|
|
4450
4450
|
* @param {string} id The `scene-item` ID.
|
|
4451
|
-
* @param {string} [fieldsSceneItem] Comma-separated list of fields to return in response. An empty value returns no fields. `boundingBox` and `metadata` are only returned if explicitly requested.
|
|
4451
|
+
* @param {string} [fieldsSceneItem] Comma-separated list of fields to return in response. An empty value returns no fields. `boundingBox`, `worldTransform` and `metadata` are only returned if explicitly requested.
|
|
4452
4452
|
* @param {*} [options] Override http request option.
|
|
4453
4453
|
* @throws {RequiredError}
|
|
4454
4454
|
*/
|
|
@@ -5133,7 +5133,7 @@ export const SceneViewsApiAxiosParamCreator = function (configuration) {
|
|
|
5133
5133
|
* Get a `scene-item` within a view by ID.
|
|
5134
5134
|
* @param {string} id The `scene-view` ID.
|
|
5135
5135
|
* @param {string} itemId The `scene-item` ID.
|
|
5136
|
-
* @param {string} [fieldsSceneItem] Comma-separated list of fields to return in response. An empty value returns no fields. `boundingBox` and `metadata` are only returned if explicitly requested.
|
|
5136
|
+
* @param {string} [fieldsSceneItem] Comma-separated list of fields to return in response. An empty value returns no fields. `boundingBox`, `worldTransform` and `metadata` are only returned if explicitly requested.
|
|
5137
5137
|
* @param {string} [include] Comma-separated list of relationships to include in response.
|
|
5138
5138
|
* @param {*} [options] Override http request option.
|
|
5139
5139
|
* @throws {RequiredError}
|
|
@@ -5309,7 +5309,7 @@ export const SceneViewsApiFp = function (configuration) {
|
|
|
5309
5309
|
* Get a `scene-item` within a view by ID.
|
|
5310
5310
|
* @param {string} id The `scene-view` ID.
|
|
5311
5311
|
* @param {string} itemId The `scene-item` ID.
|
|
5312
|
-
* @param {string} [fieldsSceneItem] Comma-separated list of fields to return in response. An empty value returns no fields. `boundingBox` and `metadata` are only returned if explicitly requested.
|
|
5312
|
+
* @param {string} [fieldsSceneItem] Comma-separated list of fields to return in response. An empty value returns no fields. `boundingBox`, `worldTransform` and `metadata` are only returned if explicitly requested.
|
|
5313
5313
|
* @param {string} [include] Comma-separated list of relationships to include in response.
|
|
5314
5314
|
* @param {*} [options] Override http request option.
|
|
5315
5315
|
* @throws {RequiredError}
|
|
@@ -5407,7 +5407,7 @@ export const SceneViewsApiFactory = function (configuration, basePath, axios) {
|
|
|
5407
5407
|
* Get a `scene-item` within a view by ID.
|
|
5408
5408
|
* @param {string} id The `scene-view` ID.
|
|
5409
5409
|
* @param {string} itemId The `scene-item` ID.
|
|
5410
|
-
* @param {string} [fieldsSceneItem] Comma-separated list of fields to return in response. An empty value returns no fields. `boundingBox` and `metadata` are only returned if explicitly requested.
|
|
5410
|
+
* @param {string} [fieldsSceneItem] Comma-separated list of fields to return in response. An empty value returns no fields. `boundingBox`, `worldTransform` and `metadata` are only returned if explicitly requested.
|
|
5411
5411
|
* @param {string} [include] Comma-separated list of relationships to include in response.
|
|
5412
5412
|
* @param {*} [options] Override http request option.
|
|
5413
5413
|
* @throws {RequiredError}
|
|
@@ -6418,6 +6418,36 @@ export const TranslationInspectionsApiAxiosParamCreator = function (configuratio
|
|
|
6418
6418
|
options: localVarRequestOptions,
|
|
6419
6419
|
};
|
|
6420
6420
|
}),
|
|
6421
|
+
/**
|
|
6422
|
+
* Get a `queued-translation-job`. The response is either the status if `running` or `error` or, upon completion, the `part-revision` that was created. 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.
|
|
6423
|
+
* @param {string} id The `queued-translation` ID.
|
|
6424
|
+
* @param {*} [options] Override http request option.
|
|
6425
|
+
* @throws {RequiredError}
|
|
6426
|
+
*/
|
|
6427
|
+
getQueuedTranslationJob: (id, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
6428
|
+
// verify required parameter 'id' is not null or undefined
|
|
6429
|
+
assertParamExists('getQueuedTranslationJob', 'id', id);
|
|
6430
|
+
const localVarPath = `/queued-translation-jobs/{id}`.replace(`{${'id'}}`, encodeURIComponent(String(id)));
|
|
6431
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
6432
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
6433
|
+
let baseOptions;
|
|
6434
|
+
if (configuration) {
|
|
6435
|
+
baseOptions = configuration.baseOptions;
|
|
6436
|
+
}
|
|
6437
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
6438
|
+
const localVarHeaderParameter = {};
|
|
6439
|
+
const localVarQueryParameter = {};
|
|
6440
|
+
// authentication OAuth2 required
|
|
6441
|
+
// oauth required
|
|
6442
|
+
yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
|
|
6443
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
6444
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
6445
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
6446
|
+
return {
|
|
6447
|
+
url: toPathString(localVarUrlObj),
|
|
6448
|
+
options: localVarRequestOptions,
|
|
6449
|
+
};
|
|
6450
|
+
}),
|
|
6421
6451
|
/**
|
|
6422
6452
|
* Get `queued-translation`s.
|
|
6423
6453
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
@@ -6502,6 +6532,18 @@ export const TranslationInspectionsApiFp = function (configuration) {
|
|
|
6502
6532
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
6503
6533
|
});
|
|
6504
6534
|
},
|
|
6535
|
+
/**
|
|
6536
|
+
* Get a `queued-translation-job`. The response is either the status if `running` or `error` or, upon completion, the `part-revision` that was created. 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.
|
|
6537
|
+
* @param {string} id The `queued-translation` ID.
|
|
6538
|
+
* @param {*} [options] Override http request option.
|
|
6539
|
+
* @throws {RequiredError}
|
|
6540
|
+
*/
|
|
6541
|
+
getQueuedTranslationJob(id, options) {
|
|
6542
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
6543
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getQueuedTranslationJob(id, options);
|
|
6544
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
6545
|
+
});
|
|
6546
|
+
},
|
|
6505
6547
|
/**
|
|
6506
6548
|
* Get `queued-translation`s.
|
|
6507
6549
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
@@ -6558,6 +6600,17 @@ export const TranslationInspectionsApiFactory = function (configuration, basePat
|
|
|
6558
6600
|
.getQueuedTranslation(id, options)
|
|
6559
6601
|
.then((request) => request(axios, basePath));
|
|
6560
6602
|
},
|
|
6603
|
+
/**
|
|
6604
|
+
* Get a `queued-translation-job`. The response is either the status if `running` or `error` or, upon completion, the `part-revision` that was created. 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.
|
|
6605
|
+
* @param {string} id The `queued-translation` ID.
|
|
6606
|
+
* @param {*} [options] Override http request option.
|
|
6607
|
+
* @throws {RequiredError}
|
|
6608
|
+
*/
|
|
6609
|
+
getQueuedTranslationJob(id, options) {
|
|
6610
|
+
return localVarFp
|
|
6611
|
+
.getQueuedTranslationJob(id, options)
|
|
6612
|
+
.then((request) => request(axios, basePath));
|
|
6613
|
+
},
|
|
6561
6614
|
/**
|
|
6562
6615
|
* Get `queued-translation`s.
|
|
6563
6616
|
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
@@ -6616,6 +6669,18 @@ export class TranslationInspectionsApi extends BaseAPI {
|
|
|
6616
6669
|
.getQueuedTranslation(requestParameters.id, options)
|
|
6617
6670
|
.then((request) => request(this.axios, this.basePath));
|
|
6618
6671
|
}
|
|
6672
|
+
/**
|
|
6673
|
+
* Get a `queued-translation-job`. The response is either the status if `running` or `error` or, upon completion, the `part-revision` that was created. 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.
|
|
6674
|
+
* @param {TranslationInspectionsApiGetQueuedTranslationJobRequest} requestParameters Request parameters.
|
|
6675
|
+
* @param {*} [options] Override http request option.
|
|
6676
|
+
* @throws {RequiredError}
|
|
6677
|
+
* @memberof TranslationInspectionsApi
|
|
6678
|
+
*/
|
|
6679
|
+
getQueuedTranslationJob(requestParameters, options) {
|
|
6680
|
+
return TranslationInspectionsApiFp(this.configuration)
|
|
6681
|
+
.getQueuedTranslationJob(requestParameters.id, options)
|
|
6682
|
+
.then((request) => request(this.axios, this.basePath));
|
|
6683
|
+
}
|
|
6619
6684
|
/**
|
|
6620
6685
|
* Get `queued-translation`s.
|
|
6621
6686
|
* @param {TranslationInspectionsApiGetQueuedTranslationsRequest} requestParameters Request parameters.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "0.20.
|
|
1
|
+
export declare const version = "0.20.7";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '0.20.
|
|
1
|
+
export const version = '0.20.7';
|