@vertexvis/api-client-node 0.20.4 → 0.20.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cjs/api.d.ts
CHANGED
|
@@ -1083,10 +1083,10 @@ export interface CreatePartRequestData {
|
|
|
1083
1083
|
attributes: CreatePartRequestDataAttributes;
|
|
1084
1084
|
/**
|
|
1085
1085
|
*
|
|
1086
|
-
* @type {
|
|
1086
|
+
* @type {CreatePartRequestDataRelationships}
|
|
1087
1087
|
* @memberof CreatePartRequestData
|
|
1088
1088
|
*/
|
|
1089
|
-
relationships?:
|
|
1089
|
+
relationships?: CreatePartRequestDataRelationships;
|
|
1090
1090
|
}
|
|
1091
1091
|
/**
|
|
1092
1092
|
*
|
|
@@ -1145,6 +1145,19 @@ export interface CreatePartRequestDataAttributes {
|
|
|
1145
1145
|
*/
|
|
1146
1146
|
suppliedInstanceIdKey?: string;
|
|
1147
1147
|
}
|
|
1148
|
+
/**
|
|
1149
|
+
*
|
|
1150
|
+
* @export
|
|
1151
|
+
* @interface CreatePartRequestDataRelationships
|
|
1152
|
+
*/
|
|
1153
|
+
export interface CreatePartRequestDataRelationships {
|
|
1154
|
+
/**
|
|
1155
|
+
*
|
|
1156
|
+
* @type {FileRelationship | PartAssemblyRelationship}
|
|
1157
|
+
* @memberof CreatePartRequestDataRelationships
|
|
1158
|
+
*/
|
|
1159
|
+
source: FileRelationship | PartAssemblyRelationship;
|
|
1160
|
+
}
|
|
1148
1161
|
/**
|
|
1149
1162
|
*
|
|
1150
1163
|
* @export
|
|
@@ -2786,6 +2799,40 @@ export interface Part {
|
|
|
2786
2799
|
[key: string]: Link;
|
|
2787
2800
|
};
|
|
2788
2801
|
}
|
|
2802
|
+
/**
|
|
2803
|
+
* Create Part Assembly
|
|
2804
|
+
* @export
|
|
2805
|
+
* @interface PartAssemblyRelationship
|
|
2806
|
+
*/
|
|
2807
|
+
export interface PartAssemblyRelationship {
|
|
2808
|
+
/**
|
|
2809
|
+
*
|
|
2810
|
+
* @type {PartAssemblyRelationshipData}
|
|
2811
|
+
* @memberof PartAssemblyRelationship
|
|
2812
|
+
*/
|
|
2813
|
+
data: PartAssemblyRelationshipData;
|
|
2814
|
+
}
|
|
2815
|
+
/**
|
|
2816
|
+
*
|
|
2817
|
+
* @export
|
|
2818
|
+
* @interface PartAssemblyRelationshipData
|
|
2819
|
+
*/
|
|
2820
|
+
export interface PartAssemblyRelationshipData {
|
|
2821
|
+
/**
|
|
2822
|
+
*
|
|
2823
|
+
* @type {Array<PartRevisionInstance>}
|
|
2824
|
+
* @memberof PartAssemblyRelationshipData
|
|
2825
|
+
*/
|
|
2826
|
+
children: Array<PartRevisionInstance>;
|
|
2827
|
+
/**
|
|
2828
|
+
* Additional metadata about the `part` and/or `part-revision`.
|
|
2829
|
+
* @type {{ [key: string]: MetadataStringType | MetadataFloatType | MetadataNullType; }}
|
|
2830
|
+
* @memberof PartAssemblyRelationshipData
|
|
2831
|
+
*/
|
|
2832
|
+
metadata?: {
|
|
2833
|
+
[key: string]: MetadataStringType | MetadataFloatType | MetadataNullType;
|
|
2834
|
+
};
|
|
2835
|
+
}
|
|
2789
2836
|
/**
|
|
2790
2837
|
*
|
|
2791
2838
|
* @export
|
|
@@ -3036,6 +3083,37 @@ export interface PartRevisionDataRelationships {
|
|
|
3036
3083
|
*/
|
|
3037
3084
|
part?: PartRelationshipData;
|
|
3038
3085
|
}
|
|
3086
|
+
/**
|
|
3087
|
+
* A reference to an existing PartRevision. Specify one and only one of referenceId or suppliedReferenceId to refer to a revision.
|
|
3088
|
+
* @export
|
|
3089
|
+
* @interface PartRevisionInstance
|
|
3090
|
+
*/
|
|
3091
|
+
export interface PartRevisionInstance {
|
|
3092
|
+
/**
|
|
3093
|
+
* A 0-based index used for defining a consistent ordering for children of an assembly
|
|
3094
|
+
* @type {number}
|
|
3095
|
+
* @memberof PartRevisionInstance
|
|
3096
|
+
*/
|
|
3097
|
+
ordinal: number;
|
|
3098
|
+
/**
|
|
3099
|
+
* ID of the resource.
|
|
3100
|
+
* @type {string}
|
|
3101
|
+
* @memberof PartRevisionInstance
|
|
3102
|
+
*/
|
|
3103
|
+
revisionId?: string;
|
|
3104
|
+
/**
|
|
3105
|
+
*
|
|
3106
|
+
* @type {string}
|
|
3107
|
+
* @memberof PartRevisionInstance
|
|
3108
|
+
*/
|
|
3109
|
+
suppliedRevisionId?: string;
|
|
3110
|
+
/**
|
|
3111
|
+
*
|
|
3112
|
+
* @type {Matrix4}
|
|
3113
|
+
* @memberof PartRevisionInstance
|
|
3114
|
+
*/
|
|
3115
|
+
transform?: Matrix4;
|
|
3116
|
+
}
|
|
3039
3117
|
/**
|
|
3040
3118
|
*
|
|
3041
3119
|
* @export
|
|
@@ -3119,6 +3197,12 @@ export interface PerspectiveCamera {
|
|
|
3119
3197
|
* @memberof PerspectiveCamera
|
|
3120
3198
|
*/
|
|
3121
3199
|
up: Vector3;
|
|
3200
|
+
/**
|
|
3201
|
+
* A numerical floating-point value representing the field of view
|
|
3202
|
+
* @type {number}
|
|
3203
|
+
* @memberof PerspectiveCamera
|
|
3204
|
+
*/
|
|
3205
|
+
fovY?: number;
|
|
3122
3206
|
}
|
|
3123
3207
|
/**
|
|
3124
3208
|
* 2D point.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "0.20.
|
|
1
|
+
export declare const version = "0.20.5";
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -1083,10 +1083,10 @@ export interface CreatePartRequestData {
|
|
|
1083
1083
|
attributes: CreatePartRequestDataAttributes;
|
|
1084
1084
|
/**
|
|
1085
1085
|
*
|
|
1086
|
-
* @type {
|
|
1086
|
+
* @type {CreatePartRequestDataRelationships}
|
|
1087
1087
|
* @memberof CreatePartRequestData
|
|
1088
1088
|
*/
|
|
1089
|
-
relationships?:
|
|
1089
|
+
relationships?: CreatePartRequestDataRelationships;
|
|
1090
1090
|
}
|
|
1091
1091
|
/**
|
|
1092
1092
|
*
|
|
@@ -1145,6 +1145,19 @@ export interface CreatePartRequestDataAttributes {
|
|
|
1145
1145
|
*/
|
|
1146
1146
|
suppliedInstanceIdKey?: string;
|
|
1147
1147
|
}
|
|
1148
|
+
/**
|
|
1149
|
+
*
|
|
1150
|
+
* @export
|
|
1151
|
+
* @interface CreatePartRequestDataRelationships
|
|
1152
|
+
*/
|
|
1153
|
+
export interface CreatePartRequestDataRelationships {
|
|
1154
|
+
/**
|
|
1155
|
+
*
|
|
1156
|
+
* @type {FileRelationship | PartAssemblyRelationship}
|
|
1157
|
+
* @memberof CreatePartRequestDataRelationships
|
|
1158
|
+
*/
|
|
1159
|
+
source: FileRelationship | PartAssemblyRelationship;
|
|
1160
|
+
}
|
|
1148
1161
|
/**
|
|
1149
1162
|
*
|
|
1150
1163
|
* @export
|
|
@@ -2786,6 +2799,40 @@ export interface Part {
|
|
|
2786
2799
|
[key: string]: Link;
|
|
2787
2800
|
};
|
|
2788
2801
|
}
|
|
2802
|
+
/**
|
|
2803
|
+
* Create Part Assembly
|
|
2804
|
+
* @export
|
|
2805
|
+
* @interface PartAssemblyRelationship
|
|
2806
|
+
*/
|
|
2807
|
+
export interface PartAssemblyRelationship {
|
|
2808
|
+
/**
|
|
2809
|
+
*
|
|
2810
|
+
* @type {PartAssemblyRelationshipData}
|
|
2811
|
+
* @memberof PartAssemblyRelationship
|
|
2812
|
+
*/
|
|
2813
|
+
data: PartAssemblyRelationshipData;
|
|
2814
|
+
}
|
|
2815
|
+
/**
|
|
2816
|
+
*
|
|
2817
|
+
* @export
|
|
2818
|
+
* @interface PartAssemblyRelationshipData
|
|
2819
|
+
*/
|
|
2820
|
+
export interface PartAssemblyRelationshipData {
|
|
2821
|
+
/**
|
|
2822
|
+
*
|
|
2823
|
+
* @type {Array<PartRevisionInstance>}
|
|
2824
|
+
* @memberof PartAssemblyRelationshipData
|
|
2825
|
+
*/
|
|
2826
|
+
children: Array<PartRevisionInstance>;
|
|
2827
|
+
/**
|
|
2828
|
+
* Additional metadata about the `part` and/or `part-revision`.
|
|
2829
|
+
* @type {{ [key: string]: MetadataStringType | MetadataFloatType | MetadataNullType; }}
|
|
2830
|
+
* @memberof PartAssemblyRelationshipData
|
|
2831
|
+
*/
|
|
2832
|
+
metadata?: {
|
|
2833
|
+
[key: string]: MetadataStringType | MetadataFloatType | MetadataNullType;
|
|
2834
|
+
};
|
|
2835
|
+
}
|
|
2789
2836
|
/**
|
|
2790
2837
|
*
|
|
2791
2838
|
* @export
|
|
@@ -3036,6 +3083,37 @@ export interface PartRevisionDataRelationships {
|
|
|
3036
3083
|
*/
|
|
3037
3084
|
part?: PartRelationshipData;
|
|
3038
3085
|
}
|
|
3086
|
+
/**
|
|
3087
|
+
* A reference to an existing PartRevision. Specify one and only one of referenceId or suppliedReferenceId to refer to a revision.
|
|
3088
|
+
* @export
|
|
3089
|
+
* @interface PartRevisionInstance
|
|
3090
|
+
*/
|
|
3091
|
+
export interface PartRevisionInstance {
|
|
3092
|
+
/**
|
|
3093
|
+
* A 0-based index used for defining a consistent ordering for children of an assembly
|
|
3094
|
+
* @type {number}
|
|
3095
|
+
* @memberof PartRevisionInstance
|
|
3096
|
+
*/
|
|
3097
|
+
ordinal: number;
|
|
3098
|
+
/**
|
|
3099
|
+
* ID of the resource.
|
|
3100
|
+
* @type {string}
|
|
3101
|
+
* @memberof PartRevisionInstance
|
|
3102
|
+
*/
|
|
3103
|
+
revisionId?: string;
|
|
3104
|
+
/**
|
|
3105
|
+
*
|
|
3106
|
+
* @type {string}
|
|
3107
|
+
* @memberof PartRevisionInstance
|
|
3108
|
+
*/
|
|
3109
|
+
suppliedRevisionId?: string;
|
|
3110
|
+
/**
|
|
3111
|
+
*
|
|
3112
|
+
* @type {Matrix4}
|
|
3113
|
+
* @memberof PartRevisionInstance
|
|
3114
|
+
*/
|
|
3115
|
+
transform?: Matrix4;
|
|
3116
|
+
}
|
|
3039
3117
|
/**
|
|
3040
3118
|
*
|
|
3041
3119
|
* @export
|
|
@@ -3119,6 +3197,12 @@ export interface PerspectiveCamera {
|
|
|
3119
3197
|
* @memberof PerspectiveCamera
|
|
3120
3198
|
*/
|
|
3121
3199
|
up: Vector3;
|
|
3200
|
+
/**
|
|
3201
|
+
* A numerical floating-point value representing the field of view
|
|
3202
|
+
* @type {number}
|
|
3203
|
+
* @memberof PerspectiveCamera
|
|
3204
|
+
*/
|
|
3205
|
+
fovY?: number;
|
|
3122
3206
|
}
|
|
3123
3207
|
/**
|
|
3124
3208
|
* 2D point.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "0.20.
|
|
1
|
+
export declare const version = "0.20.5";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '0.20.
|
|
1
|
+
export const version = '0.20.5';
|
package/package.json
CHANGED