@vertexvis/api-client-node 0.23.2 → 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/esm/api.js CHANGED
@@ -75,12 +75,35 @@ export const GeometrySetRelationshipDataTypeEnum = {
75
75
  export const PartDataRelationshipsPartRevisionsTypeEnum = {
76
76
  PartRevision: 'part-revision',
77
77
  };
78
+ export const PartInstanceRelationshipDataTypeEnum = {
79
+ PartInstance: 'part-instance',
80
+ };
78
81
  export const PartRelationshipDataTypeEnum = {
79
82
  Part: 'part',
80
83
  };
81
84
  export const PartRenditionRelationshipDataTypeEnum = {
82
85
  PartRendition: 'part-rendition',
83
86
  };
87
+ export const PropertyDateTypeTypeEnum = {
88
+ Date: 'date',
89
+ };
90
+ export const PropertyDoubleTypeTypeEnum = {
91
+ Double: 'double',
92
+ };
93
+ export const PropertyKeyTypeCategoryEnum = {
94
+ Vendor: 'vendor',
95
+ Vertex: 'vertex',
96
+ User: 'user',
97
+ };
98
+ export const PropertyLongTypeTypeEnum = {
99
+ Long: 'long',
100
+ };
101
+ export const PropertySetRelationshipDataTypeEnum = {
102
+ PropertySet: 'property-set',
103
+ };
104
+ export const PropertyStringTypeTypeEnum = {
105
+ String: 'string',
106
+ };
84
107
  /**
85
108
  * Resource object type.
86
109
  * @export
@@ -3172,6 +3195,119 @@ export class PartRenditionsApi extends BaseAPI {
3172
3195
  .then((request) => request(this.axios, this.basePath));
3173
3196
  }
3174
3197
  }
3198
+ /**
3199
+ * PartRevisionInstancesApi - axios parameter creator
3200
+ * @export
3201
+ */
3202
+ export const PartRevisionInstancesApiAxiosParamCreator = function (configuration) {
3203
+ return {
3204
+ /**
3205
+ * 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.
3206
+ * @param {string} [filterParent] Parent ID to filter on.
3207
+ * @param {string} [pageCursor] The cursor for the next page of items.
3208
+ * @param {number} [pageSize] The number of items to return.
3209
+ * @param {*} [options] Override http request option.
3210
+ * @throws {RequiredError}
3211
+ */
3212
+ getPartRevisionInstanceList: (filterParent, pageCursor, pageSize, options = {}) => __awaiter(this, void 0, void 0, function* () {
3213
+ var _a;
3214
+ const localVarPath = `/part-revision-instances`;
3215
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
3216
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3217
+ let baseOptions;
3218
+ if (configuration) {
3219
+ baseOptions = configuration.baseOptions;
3220
+ }
3221
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
3222
+ const localVarHeaderParameter = {};
3223
+ const localVarQueryParameter = {};
3224
+ // authentication OAuth2 required
3225
+ // oauth required
3226
+ yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
3227
+ if (filterParent !== undefined) {
3228
+ localVarQueryParameter['filter[parent]'] = filterParent;
3229
+ }
3230
+ if (pageCursor !== undefined) {
3231
+ localVarQueryParameter['page[cursor]'] = pageCursor;
3232
+ }
3233
+ if (pageSize !== undefined) {
3234
+ localVarQueryParameter['page[size]'] = pageSize;
3235
+ }
3236
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
3237
+ let headersFromBaseOptions = (_a = baseOptions === null || baseOptions === void 0 ? void 0 : baseOptions.headers) !== null && _a !== void 0 ? _a : {};
3238
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
3239
+ return {
3240
+ url: toPathString(localVarUrlObj),
3241
+ options: localVarRequestOptions,
3242
+ };
3243
+ }),
3244
+ };
3245
+ };
3246
+ /**
3247
+ * PartRevisionInstancesApi - functional programming interface
3248
+ * @export
3249
+ */
3250
+ export const PartRevisionInstancesApiFp = function (configuration) {
3251
+ const localVarAxiosParamCreator = PartRevisionInstancesApiAxiosParamCreator(configuration);
3252
+ return {
3253
+ /**
3254
+ * 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.
3255
+ * @param {string} [filterParent] Parent ID to filter on.
3256
+ * @param {string} [pageCursor] The cursor for the next page of items.
3257
+ * @param {number} [pageSize] The number of items to return.
3258
+ * @param {*} [options] Override http request option.
3259
+ * @throws {RequiredError}
3260
+ */
3261
+ getPartRevisionInstanceList(filterParent, pageCursor, pageSize, options) {
3262
+ return __awaiter(this, void 0, void 0, function* () {
3263
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.getPartRevisionInstanceList(filterParent, pageCursor, pageSize, options);
3264
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
3265
+ });
3266
+ },
3267
+ };
3268
+ };
3269
+ /**
3270
+ * PartRevisionInstancesApi - factory interface
3271
+ * @export
3272
+ */
3273
+ export const PartRevisionInstancesApiFactory = function (configuration, basePath, axios) {
3274
+ const localVarFp = PartRevisionInstancesApiFp(configuration);
3275
+ return {
3276
+ /**
3277
+ * 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.
3278
+ * @param {string} [filterParent] Parent ID to filter on.
3279
+ * @param {string} [pageCursor] The cursor for the next page of items.
3280
+ * @param {number} [pageSize] The number of items to return.
3281
+ * @param {*} [options] Override http request option.
3282
+ * @throws {RequiredError}
3283
+ */
3284
+ getPartRevisionInstanceList(filterParent, pageCursor, pageSize, options) {
3285
+ return localVarFp
3286
+ .getPartRevisionInstanceList(filterParent, pageCursor, pageSize, options)
3287
+ .then((request) => request(axios, basePath));
3288
+ },
3289
+ };
3290
+ };
3291
+ /**
3292
+ * PartRevisionInstancesApi - object-oriented interface
3293
+ * @export
3294
+ * @class PartRevisionInstancesApi
3295
+ * @extends {BaseAPI}
3296
+ */
3297
+ export class PartRevisionInstancesApi extends BaseAPI {
3298
+ /**
3299
+ * 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.
3300
+ * @param {PartRevisionInstancesApiGetPartRevisionInstanceListRequest} requestParameters Request parameters.
3301
+ * @param {*} [options] Override http request option.
3302
+ * @throws {RequiredError}
3303
+ * @memberof PartRevisionInstancesApi
3304
+ */
3305
+ getPartRevisionInstanceList(requestParameters = {}, options) {
3306
+ return PartRevisionInstancesApiFp(this.configuration)
3307
+ .getPartRevisionInstanceList(requestParameters.filterParent, requestParameters.pageCursor, requestParameters.pageSize, options)
3308
+ .then((request) => request(this.axios, this.basePath));
3309
+ }
3310
+ }
3175
3311
  /**
3176
3312
  * PartRevisionsApi - axios parameter creator
3177
3313
  * @export
@@ -4209,6 +4345,193 @@ export class PmiApi extends BaseAPI {
4209
4345
  .then((request) => request(this.axios, this.basePath));
4210
4346
  }
4211
4347
  }
4348
+ /**
4349
+ * PropertyEntriesApi - axios parameter creator
4350
+ * @export
4351
+ */
4352
+ export const PropertyEntriesApiAxiosParamCreator = function (configuration) {
4353
+ return {
4354
+ /**
4355
+ * Get `property-entries` by a resource ID **Preview:** This is a preview API and is subject to change.
4356
+ * @param {string} [pageCursor] The cursor for the next page of items.
4357
+ * @param {number} [pageSize] The number of items to return.
4358
+ * @param {string} [filterResourceId] A resource ID to filter on
4359
+ * @param {string} [filterResourceType] The provided type for the resource ids
4360
+ * @param {*} [options] Override http request option.
4361
+ * @throws {RequiredError}
4362
+ */
4363
+ getPropertyEntries: (pageCursor, pageSize, filterResourceId, filterResourceType, options = {}) => __awaiter(this, void 0, void 0, function* () {
4364
+ var _a;
4365
+ const localVarPath = `/property-entries`;
4366
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
4367
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4368
+ let baseOptions;
4369
+ if (configuration) {
4370
+ baseOptions = configuration.baseOptions;
4371
+ }
4372
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
4373
+ const localVarHeaderParameter = {};
4374
+ const localVarQueryParameter = {};
4375
+ // authentication OAuth2 required
4376
+ // oauth required
4377
+ yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
4378
+ if (pageCursor !== undefined) {
4379
+ localVarQueryParameter['page[cursor]'] = pageCursor;
4380
+ }
4381
+ if (pageSize !== undefined) {
4382
+ localVarQueryParameter['page[size]'] = pageSize;
4383
+ }
4384
+ if (filterResourceId !== undefined) {
4385
+ localVarQueryParameter['filter[resourceId]'] = filterResourceId;
4386
+ }
4387
+ if (filterResourceType !== undefined) {
4388
+ localVarQueryParameter['filter[resourceType]'] = filterResourceType;
4389
+ }
4390
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
4391
+ let headersFromBaseOptions = (_a = baseOptions === null || baseOptions === void 0 ? void 0 : baseOptions.headers) !== null && _a !== void 0 ? _a : {};
4392
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
4393
+ return {
4394
+ url: toPathString(localVarUrlObj),
4395
+ options: localVarRequestOptions,
4396
+ };
4397
+ }),
4398
+ /**
4399
+ * Upsert property-entries for a provided resource. **Preview:** This is a preview API and is subject to change.
4400
+ * @param {UpsertPropertyEntriesRequest} upsertPropertyEntriesRequest
4401
+ * @param {*} [options] Override http request option.
4402
+ * @throws {RequiredError}
4403
+ */
4404
+ upsertPropertyEntries: (upsertPropertyEntriesRequest, options = {}) => __awaiter(this, void 0, void 0, function* () {
4405
+ var _b;
4406
+ // verify required parameter 'upsertPropertyEntriesRequest' is not null or undefined
4407
+ assertParamExists('upsertPropertyEntries', 'upsertPropertyEntriesRequest', upsertPropertyEntriesRequest);
4408
+ const localVarPath = `/property-entries`;
4409
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
4410
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
4411
+ let baseOptions;
4412
+ if (configuration) {
4413
+ baseOptions = configuration.baseOptions;
4414
+ }
4415
+ const localVarRequestOptions = Object.assign(Object.assign({ method: 'PATCH' }, baseOptions), options);
4416
+ const localVarHeaderParameter = {};
4417
+ const localVarQueryParameter = {};
4418
+ // authentication OAuth2 required
4419
+ // oauth required
4420
+ yield setOAuthToObject(localVarHeaderParameter, 'OAuth2', [], configuration);
4421
+ localVarHeaderParameter['Content-Type'] = 'application/vnd.api+json';
4422
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
4423
+ let headersFromBaseOptions = (_b = baseOptions === null || baseOptions === void 0 ? void 0 : baseOptions.headers) !== null && _b !== void 0 ? _b : {};
4424
+ localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
4425
+ localVarRequestOptions.data = serializeDataIfNeeded(upsertPropertyEntriesRequest, localVarRequestOptions, configuration);
4426
+ return {
4427
+ url: toPathString(localVarUrlObj),
4428
+ options: localVarRequestOptions,
4429
+ };
4430
+ }),
4431
+ };
4432
+ };
4433
+ /**
4434
+ * PropertyEntriesApi - functional programming interface
4435
+ * @export
4436
+ */
4437
+ export const PropertyEntriesApiFp = function (configuration) {
4438
+ const localVarAxiosParamCreator = PropertyEntriesApiAxiosParamCreator(configuration);
4439
+ return {
4440
+ /**
4441
+ * Get `property-entries` by a resource ID **Preview:** This is a preview API and is subject to change.
4442
+ * @param {string} [pageCursor] The cursor for the next page of items.
4443
+ * @param {number} [pageSize] The number of items to return.
4444
+ * @param {string} [filterResourceId] A resource ID to filter on
4445
+ * @param {string} [filterResourceType] The provided type for the resource ids
4446
+ * @param {*} [options] Override http request option.
4447
+ * @throws {RequiredError}
4448
+ */
4449
+ getPropertyEntries(pageCursor, pageSize, filterResourceId, filterResourceType, options) {
4450
+ return __awaiter(this, void 0, void 0, function* () {
4451
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.getPropertyEntries(pageCursor, pageSize, filterResourceId, filterResourceType, options);
4452
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
4453
+ });
4454
+ },
4455
+ /**
4456
+ * Upsert property-entries for a provided resource. **Preview:** This is a preview API and is subject to change.
4457
+ * @param {UpsertPropertyEntriesRequest} upsertPropertyEntriesRequest
4458
+ * @param {*} [options] Override http request option.
4459
+ * @throws {RequiredError}
4460
+ */
4461
+ upsertPropertyEntries(upsertPropertyEntriesRequest, options) {
4462
+ return __awaiter(this, void 0, void 0, function* () {
4463
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.upsertPropertyEntries(upsertPropertyEntriesRequest, options);
4464
+ return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
4465
+ });
4466
+ },
4467
+ };
4468
+ };
4469
+ /**
4470
+ * PropertyEntriesApi - factory interface
4471
+ * @export
4472
+ */
4473
+ export const PropertyEntriesApiFactory = function (configuration, basePath, axios) {
4474
+ const localVarFp = PropertyEntriesApiFp(configuration);
4475
+ return {
4476
+ /**
4477
+ * Get `property-entries` by a resource ID **Preview:** This is a preview API and is subject to change.
4478
+ * @param {string} [pageCursor] The cursor for the next page of items.
4479
+ * @param {number} [pageSize] The number of items to return.
4480
+ * @param {string} [filterResourceId] A resource ID to filter on
4481
+ * @param {string} [filterResourceType] The provided type for the resource ids
4482
+ * @param {*} [options] Override http request option.
4483
+ * @throws {RequiredError}
4484
+ */
4485
+ getPropertyEntries(pageCursor, pageSize, filterResourceId, filterResourceType, options) {
4486
+ return localVarFp
4487
+ .getPropertyEntries(pageCursor, pageSize, filterResourceId, filterResourceType, options)
4488
+ .then((request) => request(axios, basePath));
4489
+ },
4490
+ /**
4491
+ * Upsert property-entries for a provided resource. **Preview:** This is a preview API and is subject to change.
4492
+ * @param {UpsertPropertyEntriesRequest} upsertPropertyEntriesRequest
4493
+ * @param {*} [options] Override http request option.
4494
+ * @throws {RequiredError}
4495
+ */
4496
+ upsertPropertyEntries(upsertPropertyEntriesRequest, options) {
4497
+ return localVarFp
4498
+ .upsertPropertyEntries(upsertPropertyEntriesRequest, options)
4499
+ .then((request) => request(axios, basePath));
4500
+ },
4501
+ };
4502
+ };
4503
+ /**
4504
+ * PropertyEntriesApi - object-oriented interface
4505
+ * @export
4506
+ * @class PropertyEntriesApi
4507
+ * @extends {BaseAPI}
4508
+ */
4509
+ export class PropertyEntriesApi extends BaseAPI {
4510
+ /**
4511
+ * Get `property-entries` by a resource ID **Preview:** This is a preview API and is subject to change.
4512
+ * @param {PropertyEntriesApiGetPropertyEntriesRequest} requestParameters Request parameters.
4513
+ * @param {*} [options] Override http request option.
4514
+ * @throws {RequiredError}
4515
+ * @memberof PropertyEntriesApi
4516
+ */
4517
+ getPropertyEntries(requestParameters = {}, options) {
4518
+ return PropertyEntriesApiFp(this.configuration)
4519
+ .getPropertyEntries(requestParameters.pageCursor, requestParameters.pageSize, requestParameters.filterResourceId, requestParameters.filterResourceType, options)
4520
+ .then((request) => request(this.axios, this.basePath));
4521
+ }
4522
+ /**
4523
+ * Upsert property-entries for a provided resource. **Preview:** This is a preview API and is subject to change.
4524
+ * @param {PropertyEntriesApiUpsertPropertyEntriesRequest} requestParameters Request parameters.
4525
+ * @param {*} [options] Override http request option.
4526
+ * @throws {RequiredError}
4527
+ * @memberof PropertyEntriesApi
4528
+ */
4529
+ upsertPropertyEntries(requestParameters, options) {
4530
+ return PropertyEntriesApiFp(this.configuration)
4531
+ .upsertPropertyEntries(requestParameters.upsertPropertyEntriesRequest, options)
4532
+ .then((request) => request(this.axios, this.basePath));
4533
+ }
4534
+ }
4212
4535
  /**
4213
4536
  * SceneAlterationsApi - axios parameter creator
4214
4537
  * @export
@@ -33,6 +33,8 @@ export interface GetPartRevisionBySuppliedIdReq extends BaseReq {
33
33
  readonly suppliedPartId: string;
34
34
  /** A supplied part revision ID. */
35
35
  readonly suppliedRevisionId: string;
36
+ /** An optional supplied part revision iteration ID. */
37
+ readonly suppliedIterationId?: string;
36
38
  }
37
39
  /**
38
40
  * Create part and file resources if they don't already exist.
@@ -59,7 +61,7 @@ export declare function deleteAllParts({ client, pageSize, exceptions, }: Delete
59
61
  *
60
62
  * @param args - The {@link GetPartRevisionBySuppliedIdReq}.
61
63
  */
62
- export declare function getPartRevisionBySuppliedId({ client, suppliedPartId, suppliedRevisionId, }: GetPartRevisionBySuppliedIdReq): Promise<PartRevisionData | undefined>;
64
+ export declare function getPartRevisionBySuppliedId({ client, suppliedPartId, suppliedRevisionId, suppliedIterationId, }: GetPartRevisionBySuppliedIdReq): Promise<PartRevisionData | undefined>;
63
65
  /**
64
66
  * Render a part revision.
65
67
  *
@@ -33,18 +33,27 @@ export function createPartFromFile(_a) {
33
33
  const createPartRequest = createPartReq(file.id);
34
34
  const suppliedPartId = createPartRequest.data.attributes.suppliedId;
35
35
  const suppliedRevisionId = createPartRequest.data.attributes.suppliedRevisionId;
36
+ const suppliedIterationId = createPartRequest.data.attributes.suppliedIterationId;
36
37
  if (suppliedPartId && suppliedRevisionId) {
37
38
  const existingPartRev = yield getPartRevisionBySuppliedId({
38
39
  client,
39
40
  suppliedPartId,
40
41
  suppliedRevisionId,
42
+ suppliedIterationId,
41
43
  verbose,
42
44
  onMsg,
43
45
  });
44
46
  if (existingPartRev) {
45
47
  if (verbose) {
46
- onMsg(`part-revision with suppliedId '${suppliedPartId}' and suppliedRevisionId ` +
47
- `'${suppliedRevisionId}' already exists, using it, ${existingPartRev.id}`);
48
+ if (suppliedIterationId) {
49
+ onMsg(`part-revision with suppliedId '${suppliedPartId}', suppliedRevisionId ` +
50
+ `'${suppliedRevisionId}' and suppliedIterationId ` +
51
+ `'${suppliedIterationId}' already exists, using it, ${existingPartRev.id}`);
52
+ }
53
+ else {
54
+ onMsg(`part-revision with suppliedId '${suppliedPartId}' and suppliedRevisionId ` +
55
+ `'${suppliedRevisionId}' already exists, using it, ${existingPartRev.id}`);
56
+ }
48
57
  }
49
58
  return {
50
59
  partRevision: existingPartRev,
@@ -115,7 +124,7 @@ export function deleteAllParts({ client, pageSize = 100, exceptions = new Set(),
115
124
  *
116
125
  * @param args - The {@link GetPartRevisionBySuppliedIdReq}.
117
126
  */
118
- export function getPartRevisionBySuppliedId({ client, suppliedPartId, suppliedRevisionId, }) {
127
+ export function getPartRevisionBySuppliedId({ client, suppliedPartId, suppliedRevisionId, suppliedIterationId, }) {
119
128
  return __awaiter(this, void 0, void 0, function* () {
120
129
  const existingPart = yield getBySuppliedId(() => client.parts.getParts({
121
130
  pageSize: 1,
@@ -126,7 +135,7 @@ export function getPartRevisionBySuppliedId({ client, suppliedPartId, suppliedRe
126
135
  id: existingPart.id,
127
136
  pageSize: 1,
128
137
  filterSuppliedId: encodeIfNotEncoded(suppliedRevisionId),
129
- }), suppliedRevisionId);
138
+ }), suppliedRevisionId, suppliedIterationId);
130
139
  if (existingPartRev)
131
140
  return existingPartRev;
132
141
  }
@@ -75,10 +75,11 @@ export declare function envVar(key: string): string;
75
75
  export declare function getBySuppliedId<T extends {
76
76
  attributes: {
77
77
  suppliedId?: string;
78
+ suppliedIterationId?: string;
78
79
  };
79
80
  }, TRes extends {
80
81
  data: T[];
81
- }>(getter: () => Promise<AxiosResponse<TRes>>, suppliedId?: string): Promise<T | undefined>;
82
+ }>(getter: () => Promise<AxiosResponse<TRes>>, suppliedId?: string, suppliedIterationId?: string): Promise<T | undefined>;
82
83
  /**
83
84
  * Get an Error message produced by {@link VertexClient}.
84
85
  *
@@ -92,15 +92,17 @@ export function envVar(key) {
92
92
  * @param suppliedId - ID to match.
93
93
  * @returns Item if and only if it matches ID.
94
94
  */
95
- export function getBySuppliedId(getter, suppliedId) {
95
+ export function getBySuppliedId(getter, suppliedId, suppliedIterationId) {
96
96
  return __awaiter(this, void 0, void 0, function* () {
97
97
  if (!suppliedId)
98
98
  return undefined;
99
99
  const res = yield getter();
100
100
  if (res.data.data.length > 0) {
101
101
  const item = head(res.data.data);
102
- if (item.attributes.suppliedId === suppliedId)
102
+ if (item.attributes.suppliedId === suppliedId &&
103
+ item.attributes.suppliedIterationId === suppliedIterationId) {
103
104
  return item;
105
+ }
104
106
  }
105
107
  return undefined;
106
108
  });
@@ -1 +1 @@
1
- export declare const version = "0.23.2";
1
+ export declare const version = "0.23.4";
@@ -1 +1 @@
1
- export const version = '0.23.2';
1
+ export const version = '0.23.4';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertexvis/api-client-node",
3
- "version": "0.23.2",
3
+ "version": "0.23.4",
4
4
  "description": "The Vertex REST API client for Node.js.",
5
5
  "license": "MIT",
6
6
  "author": "Vertex Developers <support@vertexvis.com> (https://developer.vertexvis.com)",