@vertexvis/api-client-node 0.23.1 → 0.23.4

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
@@ -1215,6 +1215,12 @@ export interface CreatePartRequestDataAttributes {
1215
1215
  * @memberof CreatePartRequestDataAttributes
1216
1216
  */
1217
1217
  suppliedRevisionId?: string;
1218
+ /**
1219
+ * ID provided for correlation of the revision. This is an optional ID to be able to create a version of a revision. For example, if and existing revision in a PLM system is modified, the suppliedIterationId can be used to allow creating a new part revision having an already existing suppliedId and suppliedRevisionId. This can be used when modification to an existing revision is made in the PLM system before the revision is released.
1220
+ * @type {string}
1221
+ * @memberof CreatePartRequestDataAttributes
1222
+ */
1223
+ suppliedIterationId?: string;
1218
1224
  /**
1219
1225
  * Whether or not to index metadata in the part file. To ignore metadata from the part file and add your own, pass `false` for `indexMetadata` and supply custom metadata using the `metadata` field.
1220
1226
  * @type {boolean}
@@ -3394,6 +3400,42 @@ export declare const PartDataRelationshipsPartRevisionsTypeEnum: {
3394
3400
  readonly PartRevision: "part-revision";
3395
3401
  };
3396
3402
  export declare type PartDataRelationshipsPartRevisionsTypeEnum = (typeof PartDataRelationshipsPartRevisionsTypeEnum)[keyof typeof PartDataRelationshipsPartRevisionsTypeEnum];
3403
+ /**
3404
+ * Relationship to a `part-instance`.
3405
+ * @export
3406
+ * @interface PartInstanceRelationship
3407
+ */
3408
+ export interface PartInstanceRelationship {
3409
+ /**
3410
+ *
3411
+ * @type {PartInstanceRelationshipData}
3412
+ * @memberof PartInstanceRelationship
3413
+ */
3414
+ data: PartInstanceRelationshipData;
3415
+ }
3416
+ /**
3417
+ *
3418
+ * @export
3419
+ * @interface PartInstanceRelationshipData
3420
+ */
3421
+ export interface PartInstanceRelationshipData {
3422
+ /**
3423
+ * Resource object type.
3424
+ * @type {string}
3425
+ * @memberof PartInstanceRelationshipData
3426
+ */
3427
+ type: PartInstanceRelationshipDataTypeEnum;
3428
+ /**
3429
+ * ID of the resource.
3430
+ * @type {string}
3431
+ * @memberof PartInstanceRelationshipData
3432
+ */
3433
+ id: string;
3434
+ }
3435
+ export declare const PartInstanceRelationshipDataTypeEnum: {
3436
+ readonly PartInstance: "part-instance";
3437
+ };
3438
+ export declare type PartInstanceRelationshipDataTypeEnum = (typeof PartInstanceRelationshipDataTypeEnum)[keyof typeof PartInstanceRelationshipDataTypeEnum];
3397
3439
  /**
3398
3440
  *
3399
3441
  * @export
@@ -3685,6 +3727,12 @@ export interface PartRevisionDataAttributes {
3685
3727
  * @memberof PartRevisionDataAttributes
3686
3728
  */
3687
3729
  suppliedId?: string;
3730
+ /**
3731
+ *
3732
+ * @type {string}
3733
+ * @memberof PartRevisionDataAttributes
3734
+ */
3735
+ suppliedIterationId?: string;
3688
3736
  /**
3689
3737
  *
3690
3738
  * @type {string}
@@ -3748,6 +3796,90 @@ export interface PartRevisionInstance {
3748
3796
  */
3749
3797
  transform?: Matrix4;
3750
3798
  }
3799
+ /**
3800
+ *
3801
+ * @export
3802
+ * @interface PartRevisionInstanceData
3803
+ */
3804
+ export interface PartRevisionInstanceData {
3805
+ /**
3806
+ *
3807
+ * @type {string}
3808
+ * @memberof PartRevisionInstanceData
3809
+ */
3810
+ type: string;
3811
+ /**
3812
+ * ID of the resource.
3813
+ * @type {string}
3814
+ * @memberof PartRevisionInstanceData
3815
+ */
3816
+ id: string;
3817
+ /**
3818
+ *
3819
+ * @type {PartRevisionInstanceDataAttributes}
3820
+ * @memberof PartRevisionInstanceData
3821
+ */
3822
+ attributes: PartRevisionInstanceDataAttributes;
3823
+ /**
3824
+ *
3825
+ * @type {PartRevisionInstanceDataRelationships}
3826
+ * @memberof PartRevisionInstanceData
3827
+ */
3828
+ relationships: PartRevisionInstanceDataRelationships;
3829
+ }
3830
+ /**
3831
+ *
3832
+ * @export
3833
+ * @interface PartRevisionInstanceDataAttributes
3834
+ */
3835
+ export interface PartRevisionInstanceDataAttributes {
3836
+ /**
3837
+ * A 0-based index used for defining a consistent ordering for children of an assembly
3838
+ * @type {number}
3839
+ * @memberof PartRevisionInstanceDataAttributes
3840
+ */
3841
+ ordinal?: number;
3842
+ /**
3843
+ *
3844
+ * @type {Matrix4}
3845
+ * @memberof PartRevisionInstanceDataAttributes
3846
+ */
3847
+ transform?: Matrix4;
3848
+ }
3849
+ /**
3850
+ * This is the relationship from the instance to the parent revision
3851
+ * @export
3852
+ * @interface PartRevisionInstanceDataRelationships
3853
+ */
3854
+ export interface PartRevisionInstanceDataRelationships {
3855
+ /**
3856
+ *
3857
+ * @type {PartRevisionRelationship}
3858
+ * @memberof PartRevisionInstanceDataRelationships
3859
+ */
3860
+ partRevision: PartRevisionRelationship;
3861
+ }
3862
+ /**
3863
+ *
3864
+ * @export
3865
+ * @interface PartRevisionInstanceList
3866
+ */
3867
+ export interface PartRevisionInstanceList {
3868
+ /**
3869
+ *
3870
+ * @type {Array<PartRevisionInstanceData>}
3871
+ * @memberof PartRevisionInstanceList
3872
+ */
3873
+ data: Array<PartRevisionInstanceData>;
3874
+ /**
3875
+ *
3876
+ * @type {{ [key: string]: Link; }}
3877
+ * @memberof PartRevisionInstanceList
3878
+ */
3879
+ links: {
3880
+ [key: string]: Link;
3881
+ };
3882
+ }
3751
3883
  /**
3752
3884
  *
3753
3885
  * @export
@@ -3800,6 +3932,12 @@ export interface PartRevisionSuppliedId {
3800
3932
  * @memberof PartRevisionSuppliedId
3801
3933
  */
3802
3934
  suppliedRevisionId: string;
3935
+ /**
3936
+ * Optional iteration ID for the revision. For example, a generated version id from a PLM system to a specific revision. Used when a existing revision is modified.
3937
+ * @type {string}
3938
+ * @memberof PartRevisionSuppliedId
3939
+ */
3940
+ suppliedIterationId?: string;
3803
3941
  }
3804
3942
  /**
3805
3943
  * A camera type that mimics the way the human eye sees.
@@ -3911,6 +4049,232 @@ export interface Point {
3911
4049
  */
3912
4050
  dy: number;
3913
4051
  }
4052
+ /**
4053
+ *
4054
+ * @export
4055
+ * @interface PropertyDateType
4056
+ */
4057
+ export interface PropertyDateType {
4058
+ /**
4059
+ * Type of property value.
4060
+ * @type {string}
4061
+ * @memberof PropertyDateType
4062
+ */
4063
+ type: PropertyDateTypeTypeEnum;
4064
+ /**
4065
+ * A date value.
4066
+ * @type {string}
4067
+ * @memberof PropertyDateType
4068
+ */
4069
+ value: string;
4070
+ }
4071
+ export declare const PropertyDateTypeTypeEnum: {
4072
+ readonly Date: "date";
4073
+ };
4074
+ export declare type PropertyDateTypeTypeEnum = (typeof PropertyDateTypeTypeEnum)[keyof typeof PropertyDateTypeTypeEnum];
4075
+ /**
4076
+ *
4077
+ * @export
4078
+ * @interface PropertyDoubleType
4079
+ */
4080
+ export interface PropertyDoubleType {
4081
+ /**
4082
+ * Type of property value.
4083
+ * @type {string}
4084
+ * @memberof PropertyDoubleType
4085
+ */
4086
+ type: PropertyDoubleTypeTypeEnum;
4087
+ /**
4088
+ *
4089
+ * @type {number}
4090
+ * @memberof PropertyDoubleType
4091
+ */
4092
+ value: number;
4093
+ }
4094
+ export declare const PropertyDoubleTypeTypeEnum: {
4095
+ readonly Double: "double";
4096
+ };
4097
+ export declare type PropertyDoubleTypeTypeEnum = (typeof PropertyDoubleTypeTypeEnum)[keyof typeof PropertyDoubleTypeTypeEnum];
4098
+ /**
4099
+ *
4100
+ * @export
4101
+ * @interface PropertyEntryData
4102
+ */
4103
+ export interface PropertyEntryData {
4104
+ /**
4105
+ *
4106
+ * @type {string}
4107
+ * @memberof PropertyEntryData
4108
+ */
4109
+ type: string;
4110
+ /**
4111
+ *
4112
+ * @type {string}
4113
+ * @memberof PropertyEntryData
4114
+ */
4115
+ id: string;
4116
+ /**
4117
+ *
4118
+ * @type {PropertyEntryDataAttributes}
4119
+ * @memberof PropertyEntryData
4120
+ */
4121
+ attributes: PropertyEntryDataAttributes;
4122
+ /**
4123
+ *
4124
+ * @type {{ [key: string]: Link; }}
4125
+ * @memberof PropertyEntryData
4126
+ */
4127
+ links?: {
4128
+ [key: string]: Link;
4129
+ };
4130
+ }
4131
+ /**
4132
+ *
4133
+ * @export
4134
+ * @interface PropertyEntryDataAttributes
4135
+ */
4136
+ export interface PropertyEntryDataAttributes {
4137
+ /**
4138
+ *
4139
+ * @type {PropertyStringType | PropertyDoubleType | PropertyLongType | PropertyDateType}
4140
+ * @memberof PropertyEntryDataAttributes
4141
+ */
4142
+ value: PropertyStringType | PropertyDoubleType | PropertyLongType | PropertyDateType;
4143
+ /**
4144
+ *
4145
+ * @type {PropertyKeyType}
4146
+ * @memberof PropertyEntryDataAttributes
4147
+ */
4148
+ key: PropertyKeyType;
4149
+ }
4150
+ /**
4151
+ *
4152
+ * @export
4153
+ * @interface PropertyEntryList
4154
+ */
4155
+ export interface PropertyEntryList {
4156
+ /**
4157
+ *
4158
+ * @type {Array<PropertyEntryData>}
4159
+ * @memberof PropertyEntryList
4160
+ */
4161
+ data: Array<PropertyEntryData>;
4162
+ /**
4163
+ *
4164
+ * @type {{ [key: string]: Link; }}
4165
+ * @memberof PropertyEntryList
4166
+ */
4167
+ links: {
4168
+ [key: string]: Link;
4169
+ };
4170
+ }
4171
+ /**
4172
+ *
4173
+ * @export
4174
+ * @interface PropertyKeyType
4175
+ */
4176
+ export interface PropertyKeyType {
4177
+ /**
4178
+ * The key category
4179
+ * @type {string}
4180
+ * @memberof PropertyKeyType
4181
+ */
4182
+ category: PropertyKeyTypeCategoryEnum;
4183
+ /**
4184
+ *
4185
+ * @type {string}
4186
+ * @memberof PropertyKeyType
4187
+ */
4188
+ name: string;
4189
+ }
4190
+ export declare const PropertyKeyTypeCategoryEnum: {
4191
+ readonly Vendor: "vendor";
4192
+ readonly Vertex: "vertex";
4193
+ readonly User: "user";
4194
+ };
4195
+ export declare type PropertyKeyTypeCategoryEnum = (typeof PropertyKeyTypeCategoryEnum)[keyof typeof PropertyKeyTypeCategoryEnum];
4196
+ /**
4197
+ *
4198
+ * @export
4199
+ * @interface PropertyLongType
4200
+ */
4201
+ export interface PropertyLongType {
4202
+ /**
4203
+ * Type of property-entry value.
4204
+ * @type {string}
4205
+ * @memberof PropertyLongType
4206
+ */
4207
+ type: PropertyLongTypeTypeEnum;
4208
+ /**
4209
+ * A numerical long value.
4210
+ * @type {number}
4211
+ * @memberof PropertyLongType
4212
+ */
4213
+ value: number;
4214
+ }
4215
+ export declare const PropertyLongTypeTypeEnum: {
4216
+ readonly Long: "long";
4217
+ };
4218
+ export declare type PropertyLongTypeTypeEnum = (typeof PropertyLongTypeTypeEnum)[keyof typeof PropertyLongTypeTypeEnum];
4219
+ /**
4220
+ * Relationship to a `property-set`.
4221
+ * @export
4222
+ * @interface PropertySetRelationship
4223
+ */
4224
+ export interface PropertySetRelationship {
4225
+ /**
4226
+ *
4227
+ * @type {PropertySetRelationshipData}
4228
+ * @memberof PropertySetRelationship
4229
+ */
4230
+ data: PropertySetRelationshipData;
4231
+ }
4232
+ /**
4233
+ *
4234
+ * @export
4235
+ * @interface PropertySetRelationshipData
4236
+ */
4237
+ export interface PropertySetRelationshipData {
4238
+ /**
4239
+ * Resource object type.
4240
+ * @type {string}
4241
+ * @memberof PropertySetRelationshipData
4242
+ */
4243
+ type: PropertySetRelationshipDataTypeEnum;
4244
+ /**
4245
+ * ID of the resource.
4246
+ * @type {string}
4247
+ * @memberof PropertySetRelationshipData
4248
+ */
4249
+ id: string;
4250
+ }
4251
+ export declare const PropertySetRelationshipDataTypeEnum: {
4252
+ readonly PropertySet: "property-set";
4253
+ };
4254
+ export declare type PropertySetRelationshipDataTypeEnum = (typeof PropertySetRelationshipDataTypeEnum)[keyof typeof PropertySetRelationshipDataTypeEnum];
4255
+ /**
4256
+ *
4257
+ * @export
4258
+ * @interface PropertyStringType
4259
+ */
4260
+ export interface PropertyStringType {
4261
+ /**
4262
+ * Type of property-entry value.
4263
+ * @type {string}
4264
+ * @memberof PropertyStringType
4265
+ */
4266
+ type: PropertyStringTypeTypeEnum;
4267
+ /**
4268
+ * A string value.
4269
+ * @type {string}
4270
+ * @memberof PropertyStringType
4271
+ */
4272
+ value: string;
4273
+ }
4274
+ export declare const PropertyStringTypeTypeEnum: {
4275
+ readonly String: "string";
4276
+ };
4277
+ export declare type PropertyStringTypeTypeEnum = (typeof PropertyStringTypeTypeEnum)[keyof typeof PropertyStringTypeTypeEnum];
3914
4278
  /**
3915
4279
  * Resource object type.
3916
4280
  * @export
@@ -6602,7 +6966,7 @@ export interface UpdateSceneRequestDataAttributes {
6602
6966
  * @type {string}
6603
6967
  * @memberof UpdateSceneRequestDataAttributes
6604
6968
  */
6605
- suppliedId?: string;
6969
+ suppliedId?: string | null;
6606
6970
  /**
6607
6971
  *
6608
6972
  * @type {string}
@@ -6786,6 +7150,72 @@ export declare const UpdateWebhookSubscriptionRequestDataAttributesStatusEnum: {
6786
7150
  readonly Paused: "paused";
6787
7151
  };
6788
7152
  export declare type UpdateWebhookSubscriptionRequestDataAttributesStatusEnum = (typeof UpdateWebhookSubscriptionRequestDataAttributesStatusEnum)[keyof typeof UpdateWebhookSubscriptionRequestDataAttributesStatusEnum];
7153
+ /**
7154
+ *
7155
+ * @export
7156
+ * @interface UpsertPropertyEntriesRequest
7157
+ */
7158
+ export interface UpsertPropertyEntriesRequest {
7159
+ /**
7160
+ *
7161
+ * @type {UpsertPropertyEntriesRequestData}
7162
+ * @memberof UpsertPropertyEntriesRequest
7163
+ */
7164
+ data: UpsertPropertyEntriesRequestData;
7165
+ }
7166
+ /**
7167
+ *
7168
+ * @export
7169
+ * @interface UpsertPropertyEntriesRequestData
7170
+ */
7171
+ export interface UpsertPropertyEntriesRequestData {
7172
+ /**
7173
+ * Resource object type.
7174
+ * @type {string}
7175
+ * @memberof UpsertPropertyEntriesRequestData
7176
+ */
7177
+ type: string;
7178
+ /**
7179
+ *
7180
+ * @type {UpsertPropertyEntriesRequestDataAttributes}
7181
+ * @memberof UpsertPropertyEntriesRequestData
7182
+ */
7183
+ attributes: UpsertPropertyEntriesRequestDataAttributes;
7184
+ /**
7185
+ *
7186
+ * @type {UpsertPropertyEntriesRequestDataRelationships}
7187
+ * @memberof UpsertPropertyEntriesRequestData
7188
+ */
7189
+ relationships: UpsertPropertyEntriesRequestDataRelationships;
7190
+ }
7191
+ /**
7192
+ *
7193
+ * @export
7194
+ * @interface UpsertPropertyEntriesRequestDataAttributes
7195
+ */
7196
+ export interface UpsertPropertyEntriesRequestDataAttributes {
7197
+ /**
7198
+ * Property entries for a provided resource or property set.
7199
+ * @type {{ [key: string]: PropertyStringType | PropertyDoubleType | PropertyLongType | PropertyDateType | object; }}
7200
+ * @memberof UpsertPropertyEntriesRequestDataAttributes
7201
+ */
7202
+ entries: {
7203
+ [key: string]: PropertyStringType | PropertyDoubleType | PropertyLongType | PropertyDateType | object;
7204
+ };
7205
+ }
7206
+ /**
7207
+ *
7208
+ * @export
7209
+ * @interface UpsertPropertyEntriesRequestDataRelationships
7210
+ */
7211
+ export interface UpsertPropertyEntriesRequestDataRelationships {
7212
+ /**
7213
+ * Relationship to the property set by `property-set`, `part-revision`, `part-instance` or `scene-item`.
7214
+ * @type {PropertySetRelationship | PartRevisionRelationship | SceneItemRelationship | PartInstanceRelationship}
7215
+ * @memberof UpsertPropertyEntriesRequestDataRelationships
7216
+ */
7217
+ propertySet: PropertySetRelationship | PartRevisionRelationship | SceneItemRelationship | PartInstanceRelationship;
7218
+ }
6789
7219
  /**
6790
7220
  * 3D vector.
6791
7221
  * @export
@@ -9477,6 +9907,92 @@ export declare class PartRenditionsApi extends BaseAPI {
9477
9907
  */
9478
9908
  getPartRenditions(requestParameters?: PartRenditionsApiGetPartRenditionsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PartRenditionList, any>>;
9479
9909
  }
9910
+ /**
9911
+ * PartRevisionInstancesApi - axios parameter creator
9912
+ * @export
9913
+ */
9914
+ export declare const PartRevisionInstancesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
9915
+ /**
9916
+ * Gets a page of \'part-revision\' instances. An instance is an occurence of a revision that is a child of a parent revision. The returned data will have the ordinal used for ordering and the transform matrix for each occurrence.
9917
+ * @param {string} [filterParent] Parent ID to filter on.
9918
+ * @param {string} [pageCursor] The cursor for the next page of items.
9919
+ * @param {number} [pageSize] The number of items to return.
9920
+ * @param {*} [options] Override http request option.
9921
+ * @throws {RequiredError}
9922
+ */
9923
+ getPartRevisionInstanceList: (filterParent?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
9924
+ };
9925
+ /**
9926
+ * PartRevisionInstancesApi - functional programming interface
9927
+ * @export
9928
+ */
9929
+ export declare const PartRevisionInstancesApiFp: (configuration?: Configuration | undefined) => {
9930
+ /**
9931
+ * Gets a page of \'part-revision\' instances. An instance is an occurence of a revision that is a child of a parent revision. The returned data will have the ordinal used for ordering and the transform matrix for each occurrence.
9932
+ * @param {string} [filterParent] Parent ID to filter on.
9933
+ * @param {string} [pageCursor] The cursor for the next page of items.
9934
+ * @param {number} [pageSize] The number of items to return.
9935
+ * @param {*} [options] Override http request option.
9936
+ * @throws {RequiredError}
9937
+ */
9938
+ getPartRevisionInstanceList(filterParent?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PartRevisionInstanceList>>;
9939
+ };
9940
+ /**
9941
+ * PartRevisionInstancesApi - factory interface
9942
+ * @export
9943
+ */
9944
+ export declare const PartRevisionInstancesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
9945
+ /**
9946
+ * Gets a page of \'part-revision\' instances. An instance is an occurence of a revision that is a child of a parent revision. The returned data will have the ordinal used for ordering and the transform matrix for each occurrence.
9947
+ * @param {string} [filterParent] Parent ID to filter on.
9948
+ * @param {string} [pageCursor] The cursor for the next page of items.
9949
+ * @param {number} [pageSize] The number of items to return.
9950
+ * @param {*} [options] Override http request option.
9951
+ * @throws {RequiredError}
9952
+ */
9953
+ getPartRevisionInstanceList(filterParent?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, options?: any): AxiosPromise<PartRevisionInstanceList>;
9954
+ };
9955
+ /**
9956
+ * Request parameters for getPartRevisionInstanceList operation in PartRevisionInstancesApi.
9957
+ * @export
9958
+ * @interface PartRevisionInstancesApiGetPartRevisionInstanceListRequest
9959
+ */
9960
+ export interface PartRevisionInstancesApiGetPartRevisionInstanceListRequest {
9961
+ /**
9962
+ * Parent ID to filter on.
9963
+ * @type {string}
9964
+ * @memberof PartRevisionInstancesApiGetPartRevisionInstanceList
9965
+ */
9966
+ readonly filterParent?: string;
9967
+ /**
9968
+ * The cursor for the next page of items.
9969
+ * @type {string}
9970
+ * @memberof PartRevisionInstancesApiGetPartRevisionInstanceList
9971
+ */
9972
+ readonly pageCursor?: string;
9973
+ /**
9974
+ * The number of items to return.
9975
+ * @type {number}
9976
+ * @memberof PartRevisionInstancesApiGetPartRevisionInstanceList
9977
+ */
9978
+ readonly pageSize?: number;
9979
+ }
9980
+ /**
9981
+ * PartRevisionInstancesApi - object-oriented interface
9982
+ * @export
9983
+ * @class PartRevisionInstancesApi
9984
+ * @extends {BaseAPI}
9985
+ */
9986
+ export declare class PartRevisionInstancesApi extends BaseAPI {
9987
+ /**
9988
+ * Gets a page of \'part-revision\' instances. An instance is an occurence of a revision that is a child of a parent revision. The returned data will have the ordinal used for ordering and the transform matrix for each occurrence.
9989
+ * @param {PartRevisionInstancesApiGetPartRevisionInstanceListRequest} requestParameters Request parameters.
9990
+ * @param {*} [options] Override http request option.
9991
+ * @throws {RequiredError}
9992
+ * @memberof PartRevisionInstancesApi
9993
+ */
9994
+ getPartRevisionInstanceList(requestParameters?: PartRevisionInstancesApiGetPartRevisionInstanceListRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PartRevisionInstanceList, any>>;
9995
+ }
9480
9996
  /**
9481
9997
  * PartRevisionsApi - axios parameter creator
9482
9998
  * @export
@@ -10257,6 +10773,143 @@ export declare class PmiApi extends BaseAPI {
10257
10773
  */
10258
10774
  getPmiAnnotations(requestParameters?: PmiApiGetPmiAnnotationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PmiAnnotationList, any>>;
10259
10775
  }
10776
+ /**
10777
+ * PropertyEntriesApi - axios parameter creator
10778
+ * @export
10779
+ */
10780
+ export declare const PropertyEntriesApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
10781
+ /**
10782
+ * Get `property-entries` by a resource ID **Preview:** This is a preview API and is subject to change.
10783
+ * @param {string} [pageCursor] The cursor for the next page of items.
10784
+ * @param {number} [pageSize] The number of items to return.
10785
+ * @param {string} [filterResourceId] A resource ID to filter on
10786
+ * @param {string} [filterResourceType] The provided type for the resource ids
10787
+ * @param {*} [options] Override http request option.
10788
+ * @throws {RequiredError}
10789
+ */
10790
+ getPropertyEntries: (pageCursor?: string | undefined, pageSize?: number | undefined, filterResourceId?: string | undefined, filterResourceType?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10791
+ /**
10792
+ * Upsert property-entries for a provided resource. **Preview:** This is a preview API and is subject to change.
10793
+ * @param {UpsertPropertyEntriesRequest} upsertPropertyEntriesRequest
10794
+ * @param {*} [options] Override http request option.
10795
+ * @throws {RequiredError}
10796
+ */
10797
+ upsertPropertyEntries: (upsertPropertyEntriesRequest: UpsertPropertyEntriesRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
10798
+ };
10799
+ /**
10800
+ * PropertyEntriesApi - functional programming interface
10801
+ * @export
10802
+ */
10803
+ export declare const PropertyEntriesApiFp: (configuration?: Configuration | undefined) => {
10804
+ /**
10805
+ * Get `property-entries` by a resource ID **Preview:** This is a preview API and is subject to change.
10806
+ * @param {string} [pageCursor] The cursor for the next page of items.
10807
+ * @param {number} [pageSize] The number of items to return.
10808
+ * @param {string} [filterResourceId] A resource ID to filter on
10809
+ * @param {string} [filterResourceType] The provided type for the resource ids
10810
+ * @param {*} [options] Override http request option.
10811
+ * @throws {RequiredError}
10812
+ */
10813
+ getPropertyEntries(pageCursor?: string | undefined, pageSize?: number | undefined, filterResourceId?: string | undefined, filterResourceType?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PropertyEntryList>>;
10814
+ /**
10815
+ * Upsert property-entries for a provided resource. **Preview:** This is a preview API and is subject to change.
10816
+ * @param {UpsertPropertyEntriesRequest} upsertPropertyEntriesRequest
10817
+ * @param {*} [options] Override http request option.
10818
+ * @throws {RequiredError}
10819
+ */
10820
+ upsertPropertyEntries(upsertPropertyEntriesRequest: UpsertPropertyEntriesRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<void>>;
10821
+ };
10822
+ /**
10823
+ * PropertyEntriesApi - factory interface
10824
+ * @export
10825
+ */
10826
+ export declare const PropertyEntriesApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
10827
+ /**
10828
+ * Get `property-entries` by a resource ID **Preview:** This is a preview API and is subject to change.
10829
+ * @param {string} [pageCursor] The cursor for the next page of items.
10830
+ * @param {number} [pageSize] The number of items to return.
10831
+ * @param {string} [filterResourceId] A resource ID to filter on
10832
+ * @param {string} [filterResourceType] The provided type for the resource ids
10833
+ * @param {*} [options] Override http request option.
10834
+ * @throws {RequiredError}
10835
+ */
10836
+ getPropertyEntries(pageCursor?: string | undefined, pageSize?: number | undefined, filterResourceId?: string | undefined, filterResourceType?: string | undefined, options?: any): AxiosPromise<PropertyEntryList>;
10837
+ /**
10838
+ * Upsert property-entries for a provided resource. **Preview:** This is a preview API and is subject to change.
10839
+ * @param {UpsertPropertyEntriesRequest} upsertPropertyEntriesRequest
10840
+ * @param {*} [options] Override http request option.
10841
+ * @throws {RequiredError}
10842
+ */
10843
+ upsertPropertyEntries(upsertPropertyEntriesRequest: UpsertPropertyEntriesRequest, options?: any): AxiosPromise<void>;
10844
+ };
10845
+ /**
10846
+ * Request parameters for getPropertyEntries operation in PropertyEntriesApi.
10847
+ * @export
10848
+ * @interface PropertyEntriesApiGetPropertyEntriesRequest
10849
+ */
10850
+ export interface PropertyEntriesApiGetPropertyEntriesRequest {
10851
+ /**
10852
+ * The cursor for the next page of items.
10853
+ * @type {string}
10854
+ * @memberof PropertyEntriesApiGetPropertyEntries
10855
+ */
10856
+ readonly pageCursor?: string;
10857
+ /**
10858
+ * The number of items to return.
10859
+ * @type {number}
10860
+ * @memberof PropertyEntriesApiGetPropertyEntries
10861
+ */
10862
+ readonly pageSize?: number;
10863
+ /**
10864
+ * A resource ID to filter on
10865
+ * @type {string}
10866
+ * @memberof PropertyEntriesApiGetPropertyEntries
10867
+ */
10868
+ readonly filterResourceId?: string;
10869
+ /**
10870
+ * The provided type for the resource ids
10871
+ * @type {string}
10872
+ * @memberof PropertyEntriesApiGetPropertyEntries
10873
+ */
10874
+ readonly filterResourceType?: string;
10875
+ }
10876
+ /**
10877
+ * Request parameters for upsertPropertyEntries operation in PropertyEntriesApi.
10878
+ * @export
10879
+ * @interface PropertyEntriesApiUpsertPropertyEntriesRequest
10880
+ */
10881
+ export interface PropertyEntriesApiUpsertPropertyEntriesRequest {
10882
+ /**
10883
+ *
10884
+ * @type {UpsertPropertyEntriesRequest}
10885
+ * @memberof PropertyEntriesApiUpsertPropertyEntries
10886
+ */
10887
+ readonly upsertPropertyEntriesRequest: UpsertPropertyEntriesRequest;
10888
+ }
10889
+ /**
10890
+ * PropertyEntriesApi - object-oriented interface
10891
+ * @export
10892
+ * @class PropertyEntriesApi
10893
+ * @extends {BaseAPI}
10894
+ */
10895
+ export declare class PropertyEntriesApi extends BaseAPI {
10896
+ /**
10897
+ * Get `property-entries` by a resource ID **Preview:** This is a preview API and is subject to change.
10898
+ * @param {PropertyEntriesApiGetPropertyEntriesRequest} requestParameters Request parameters.
10899
+ * @param {*} [options] Override http request option.
10900
+ * @throws {RequiredError}
10901
+ * @memberof PropertyEntriesApi
10902
+ */
10903
+ getPropertyEntries(requestParameters?: PropertyEntriesApiGetPropertyEntriesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PropertyEntryList, any>>;
10904
+ /**
10905
+ * Upsert property-entries for a provided resource. **Preview:** This is a preview API and is subject to change.
10906
+ * @param {PropertyEntriesApiUpsertPropertyEntriesRequest} requestParameters Request parameters.
10907
+ * @param {*} [options] Override http request option.
10908
+ * @throws {RequiredError}
10909
+ * @memberof PropertyEntriesApi
10910
+ */
10911
+ upsertPropertyEntries(requestParameters: PropertyEntriesApiUpsertPropertyEntriesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
10912
+ }
10260
10913
  /**
10261
10914
  * SceneAlterationsApi - axios parameter creator
10262
10915
  * @export